Skip to content

Instantly share code, notes, and snippets.

@epickrram
Created March 10, 2017 08:12
Show Gist options
  • Save epickrram/3743b80d4be19e022a88c6310887c3a5 to your computer and use it in GitHub Desktop.
Save epickrram/3743b80d4be19e022a88c6310887c3a5 to your computer and use it in GitHub Desktop.
framework-server-perf-flames.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="1970" onload="init(evt)" viewBox="0 0 1200 1970" 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="1970.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="1953" 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="1953" 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>finish_task_switch (1 samples, 0.08%)</title><rect x="107.9" y="1745" width="0.9" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="110.88" 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>Lio/dropwizard/jersey/jackson/JacksonMessageBodyProvider:::readFrom (3 samples, 0.23%)</title><rect x="943.5" y="737" width="2.7" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="946.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>Lorg/glassfish/jersey/servlet/WebComponent:::service (84 samples, 6.45%)</title><rect x="364.4" y="1185" width="76.1" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="367.36" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gla..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (2 samples, 0.15%)</title><rect x="997.9" y="1729" width="1.8" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="1000.86" 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>iov_iter_init (1 samples, 0.08%)</title><rect x="995.1" y="1777" width="1.0" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="998.15" y="1787.5" font-size="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_nmi_exit (1 samples, 0.08%)</title><rect x="1169.2" y="1521" width="0.9" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="1172.16" 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_finish_output2 (1 samples, 0.08%)</title><rect x="1096.7" y="337" width="0.9" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="1099.65" 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>Ljava/lang/String:::getChars (1 samples, 0.08%)</title><rect x="363.5" y="1025" width="0.9" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="366.46" 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 (1 samples, 0.08%)</title><rect x="1094.8" y="241" width="0.9" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="1097.84" 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>Lorg/glassfish/jersey/server/ServerRuntime$Responder:::writeResponse (6 samples, 0.46%)</title><rect x="933.5" y="977" width="5.5" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text text-anchor="" x="936.52" 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>Lch/qos/logback/core/encoder/LayoutWrappingEncoder:::convertToBytes (2 samples, 0.15%)</title><rect x="228.4" y="1633" width="1.8" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="231.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>copy_user_enhanced_fast_string (1 samples, 0.08%)</title><rect x="493.1" y="1681" width="0.9" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="496.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>native_write_msr_safe (1 samples, 0.08%)</title><rect x="129.6" y="1649" width="0.9" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="132.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>Lorg/glassfish/jersey/server/ServerRuntime:::process (64 samples, 4.92%)</title><rect x="558.3" y="1137" width="58.0" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="561.31" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/g..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/codahale/metrics/jersey2/InstrumentedResourceMethodApplicationListener$TimerRequestEventListener:::onEvent (1 samples, 0.08%)</title><rect x="1181.8" y="913" width="0.9" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text text-anchor="" x="1184.84" 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>os::javaTimeMillis (1 samples, 0.08%)</title><rect x="448.6" y="1473" width="1.0" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text text-anchor="" x="451.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>Ljava/net/URI:::normalize (2 samples, 0.15%)</title><rect x="616.3" y="1137" width="1.8" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="619.31" 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>Lorg/hibernate/validator/internal/util/CollectionHelper:::newHashSet (1 samples, 0.08%)</title><rect x="801.2" y="817" width="0.9" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="804.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>Lorg/jvnet/hk2/internal/ClazzCreator:::resolveAllDependencies (5 samples, 0.38%)</title><rect x="610.0" y="945" width="4.5" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text text-anchor="" x="612.97" 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>Ljava/util/Collections$UnmodifiableCollection:::toArray (1 samples, 0.08%)</title><rect x="1076.7" y="865" width="0.9" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="1079.71" 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>writeBytes (9 samples, 0.69%)</title><rect x="235.7" y="1505" width="8.1" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="238.67" 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>futex_wait_queue_me (3 samples, 0.23%)</title><rect x="261.0" y="1633" width="2.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="264.04" 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>Lsun/nio/ch/FileDispatcherImpl:::writev0 (1 samples, 0.08%)</title><rect x="394.3" y="593" width="0.9" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text text-anchor="" x="397.27" 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>Parker::park (1 samples, 0.08%)</title><rect x="1020.5" y="1601" width="0.9" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="1023.52" 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>Ljava/util/Collections$UnmodifiableCollection:::iterator (1 samples, 0.08%)</title><rect x="1106.6" y="881" width="0.9" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="1109.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>JNIHandleBlock::oops_do (1 samples, 0.08%)</title><rect x="59.8" y="1761" width="1.0" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="62.85" 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>vfs_writev (6 samples, 0.46%)</title><rect x="687.9" y="1809" width="5.4" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="690.91" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/servlet/ServletHandler$CachedChain:::doFilter (117 samples, 8.99%)</title><rect x="1043.2" y="1345" width="106.0" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text text-anchor="" x="1046.18" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_label_sk_perm (1 samples, 0.08%)</title><rect x="1004.2" y="1665" width="0.9" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="1007.21" 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>Ljava/lang/String:::substring (1 samples, 0.08%)</title><rect x="360.7" y="1137" width="0.9" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="363.74" 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>Lsun/nio/ch/EPollArrayWrapper:::updateRegistrations (2 samples, 0.15%)</title><rect x="323.6" y="1537" width="1.8" height="15.0" fill="rgb(60,175,175)" rx="2" ry="2" />
<text text-anchor="" x="326.58" 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>Lch/qos/logback/classic/Logger:::callTurboFilters (1 samples, 0.08%)</title><rect x="447.7" y="1393" width="0.9" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="450.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>Ljava/util/LinkedHashMap:::get (1 samples, 0.08%)</title><rect x="416.0" y="705" width="0.9" height="15.0" fill="rgb(82,195,195)" rx="2" ry="2" />
<text text-anchor="" x="419.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>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.31%)</title><rect x="65.3" y="1825" width="3.6" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="68.28" y="1835.5" font-size="12" font-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 (1 samples, 0.08%)</title><rect x="1016.0" y="1873" width="0.9" height="15.0" fill="rgb(180,180,52)" rx="2" ry="2" />
<text text-anchor="" x="1018.99" y="1883.5" font-size="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.08%)</title><rect x="130.5" y="1873" width="0.9" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="133.54" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/uri/internal/JerseyUriBuilder:::schemeSpecificPart (15 samples, 1.15%)</title><rect x="538.4" y="1153" width="13.6" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="541.37" 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>Lorg/eclipse/jetty/server/handler/HandlerWrapper:::handle (122 samples, 9.37%)</title><rect x="734.1" y="1441" width="110.6" height="15.0" fill="rgb(94,206,206)" rx="2" ry="2" />
<text text-anchor="" x="737.13" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Formatter:::format (7 samples, 0.54%)</title><rect x="745.9" y="1073" width="6.4" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text text-anchor="" x="748.91" 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>pick_next_task_idle (1 samples, 0.08%)</title><rect x="876.4" y="1745" width="0.9" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="879.42" 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>__intel_pmu_enable_all (1 samples, 0.08%)</title><rect x="107.9" y="1649" width="0.9" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="110.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>futex_wait_queue_me (5 samples, 0.38%)</title><rect x="308.2" y="1793" width="4.5" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="311.17" y="1803.5" font-size="12" 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.15%)</title><rect x="705.1" y="1713" width="1.8" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="708.13" 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>Lorg/glassfish/jersey/server/model/internal/JavaResourceMethodDispatcherProvider$AbstractMethodParamInvoker:::getParamValues (20 samples, 1.54%)</title><rect x="409.7" y="929" width="18.1" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="412.68" 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>Ljava/util/HashSet:::add (1 samples, 0.08%)</title><rect x="728.7" y="1361" width="0.9" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="731.69" 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>Ljava/util/concurrent/locks/ReentrantLock:::lock (1 samples, 0.08%)</title><rect x="527.5" y="1457" width="0.9" height="15.0" fill="rgb(54,169,169)" rx="2" ry="2" />
<text text-anchor="" x="530.50" 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>Ljava/util/concurrent/ConcurrentHashMap:::put (1 samples, 0.08%)</title><rect x="615.4" y="1025" width="0.9" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="618.41" 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>Lorg/eclipse/jetty/http/HttpParser:::parseContent (1 samples, 0.08%)</title><rect x="415.1" y="481" width="0.9" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text text-anchor="" x="418.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_q (1 samples, 0.08%)</title><rect x="73.4" y="1729" width="0.9" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="76.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>Ljersey/repackaged/com/google/common/collect/Sets:::newHashSet (1 samples, 0.08%)</title><rect x="825.7" y="1089" width="0.9" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="828.67" 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>Ljava/lang/String:::subSequence (1 samples, 0.08%)</title><rect x="919.9" y="977" width="0.9" height="15.0" fill="rgb(103,213,213)" rx="2" ry="2" />
<text text-anchor="" x="922.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>perf_event_context_sched_in (2 samples, 0.15%)</title><rect x="194.9" y="1665" width="1.8" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="197.88" 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 (1 samples, 0.08%)</title><rect x="129.6" y="1745" width="0.9" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="132.63" 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-?/6463 (193 samples, 14.82%)</title><rect x="677.0" y="1905" width="175.0" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text text-anchor="" x="680.04" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java-?/6463</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (3 samples, 0.23%)</title><rect x="282.8" y="1873" width="2.7" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="285.80" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/model/internal/AbstractJavaResourceMethodDispatcher:::dispatch (14 samples, 1.08%)</title><rect x="941.7" y="961" width="12.7" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="944.67" 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>Ljava/util/Arrays:::copyOfRange (1 samples, 0.08%)</title><rect x="620.8" y="961" width="1.0" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="623.84" 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>nf_iterate (1 samples, 0.08%)</title><rect x="1015.1" y="1585" width="0.9" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="1018.08" 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_recvmsg (1 samples, 0.08%)</title><rect x="480.4" y="1761" width="0.9" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="483.37" 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>__perf_event_task_sched_in (2 samples, 0.15%)</title><rect x="1161.9" y="1729" width="1.8" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="1164.90" 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>Lch/qos/logback/classic/LoggerContext:::getTurboFilterChainDecision_0_3OrMore (1 samples, 0.08%)</title><rect x="447.7" y="1377" width="0.9" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="450.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>do_futex (1 samples, 0.08%)</title><rect x="694.3" y="1809" width="0.9" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="697.25" y="1819.5" font-size="12" 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.15%)</title><rect x="20.9" y="1633" width="1.8" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="23.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>Lorg/glassfish/jersey/server/internal/process/ServerProcessingBinder$ContainerRequestFactory:::provide (3 samples, 0.23%)</title><rect x="1121.1" y="737" width="2.7" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="1124.12" 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>Lorg/glassfish/jersey/server/ContainerRequest:::readEntity (8 samples, 0.61%)</title><rect x="409.7" y="865" width="7.2" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="412.68" 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>Lorg/eclipse/jetty/server/HttpConnection:::onFillable (14 samples, 1.08%)</title><rect x="1177.3" y="1601" width="12.7" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text text-anchor="" x="1180.31" 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>Lorg/jvnet/hk2/internal/ConstantActiveDescriptor:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="951.6" y="561" width="0.9" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="954.64" 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>process_backlog (2 samples, 0.15%)</title><rect x="1007.8" y="1473" width="1.8" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="1010.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>Lorg/jvnet/hk2/internal/Utilities:::createService (6 samples, 0.46%)</title><rect x="1130.2" y="1009" width="5.4" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text text-anchor="" x="1133.18" 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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getServiceHandleImpl (1 samples, 0.08%)</title><rect x="419.6" y="561" width="1.0" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="422.65" 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>[unknown] (8 samples, 0.61%)</title><rect x="1165.5" y="1873" width="7.3" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="1168.53" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getUnqualifiedService (2 samples, 0.15%)</title><rect x="764.0" y="929" width="1.9" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="767.04" 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>Lorg/glassfish/jersey/servlet/WebComponent:::addRequestHeaders (2 samples, 0.15%)</title><rect x="836.5" y="1137" width="1.9" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text text-anchor="" x="839.54" 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>aa_sk_perm (1 samples, 0.08%)</title><rect x="283.7" y="1697" width="0.9" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="286.70" 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.08%)</title><rect x="463.1" y="1585" width="1.0" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="466.15" 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>[libpthread-2.23.so] (1 samples, 0.08%)</title><rect x="494.9" y="1841" width="0.9" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text text-anchor="" x="497.87" y="1851.5" font-size="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.15%)</title><rect x="633.5" y="1409" width="1.8" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="636.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>try_to_wake_up (3 samples, 0.23%)</title><rect x="305.5" y="1777" width="2.7" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="308.45" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/databind/ObjectReader:::readValue (2 samples, 0.15%)</title><rect x="410.6" y="705" width="1.8" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="413.58" 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>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="50.8" y="1841" width="0.9" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="53.78" y="1851.5" font-size="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.08%)</title><rect x="391.6" y="625" width="0.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="394.55" 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>tcp_transmit_skb (1 samples, 0.08%)</title><rect x="1015.1" y="1665" width="0.9" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="1018.08" 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>Lorg/glassfish/jersey/uri/internal/UriParser:::parseComponentWithIP (1 samples, 0.08%)</title><rect x="1064.9" y="1105" width="0.9" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="1067.93" 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>Lsun/nio/ch/FileDispatcherImpl:::read0 (1 samples, 0.08%)</title><rect x="1031.4" y="1361" width="0.9" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text text-anchor="" x="1034.40" 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>Ljava/lang/String:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="967.1" y="1057" width="0.9" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="970.05" 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>end_repeat_nmi (1 samples, 0.08%)</title><rect x="1161.9" y="1633" width="0.9" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="1164.90" 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>Ljava/util/concurrent/ConcurrentHashMap$Traverser:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="212.1" y="1521" width="0.9" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="215.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>Ljava/text/SimpleDateFormat:::format (1 samples, 0.08%)</title><rect x="192.2" y="1825" width="0.9" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text text-anchor="" x="195.17" y="1835.5" font-size="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 (1 samples, 0.08%)</title><rect x="46.3" y="1825" width="0.9" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="49.25" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_free (1 samples, 0.08%)</title><rect x="407.9" y="657" width="0.9" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="410.86" 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>Ljava/util/HashSet:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="801.2" y="801" width="0.9" height="15.0" fill="rgb(78,191,191)" rx="2" ry="2" />
<text text-anchor="" x="804.20" 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>Lch/qos/logback/classic/Logger:::callTurboFilters (2 samples, 0.15%)</title><rect x="631.7" y="1393" width="1.8" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="634.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>Ljava/util/HashMap:::hash (1 samples, 0.08%)</title><rect x="1043.2" y="1265" width="0.9" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="1046.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>Ljava/lang/String:::toLowerCase (1 samples, 0.08%)</title><rect x="1083.1" y="673" width="0.9" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text text-anchor="" x="1086.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_start (10 samples, 0.77%)</title><rect x="663.4" y="1873" width="9.1" height="15.0" fill="rgb(248,121,121)" rx="2" ry="2" />
<text text-anchor="" x="666.44" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceHandleImpl:::getService (7 samples, 0.54%)</title><rect x="608.2" y="1025" width="6.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="611.16" 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>native_write_msr_safe (3 samples, 0.23%)</title><rect x="862.8" y="1617" width="2.7" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="865.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>Lorg/glassfish/jersey/message/internal/MessageBodyFactory:::readFrom (11 samples, 0.84%)</title><rect x="1110.2" y="833" width="10.0" height="15.0" fill="rgb(56,171,171)" rx="2" ry="2" />
<text text-anchor="" x="1113.25" 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 (1 samples, 0.08%)</title><rect x="50.8" y="1777" width="0.9" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="53.78" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:::release (1 samples, 0.08%)</title><rect x="982.5" y="1825" width="0.9" height="15.0" fill="rgb(105,216,216)" rx="2" ry="2" />
<text text-anchor="" x="985.46" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="1042.3" y="1345" width="0.9" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="1045.27" 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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getInjecteeDescriptor (2 samples, 0.15%)</title><rect x="610.0" y="897" width="1.8" height="15.0" fill="rgb(103,213,213)" rx="2" ry="2" />
<text text-anchor="" x="612.97" 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>futex_wait (5 samples, 0.38%)</title><rect x="203.0" y="1777" width="4.6" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="206.04" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap$KeyIterator:::next (1 samples, 0.08%)</title><rect x="429.6" y="1089" width="0.9" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="432.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>Lorg/glassfish/jersey/uri/internal/UriParser:::parseAuthority (1 samples, 0.08%)</title><rect x="754.1" y="1121" width="0.9" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="757.07" 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>Lorg/eclipse/jetty/io/ManagedSelector$SelectorProducer:::runActions (1 samples, 0.08%)</title><rect x="322.7" y="1633" width="0.9" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text text-anchor="" x="325.67" 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>Ljava/util/Arrays:::copyOfRange (1 samples, 0.08%)</title><rect x="444.1" y="1073" width="0.9" height="15.0" fill="rgb(82,195,195)" rx="2" ry="2" />
<text text-anchor="" x="447.12" 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>Lorg/jvnet/hk2/internal/SystemDescriptor:::create (3 samples, 0.23%)</title><rect x="1185.5" y="977" width="2.7" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text text-anchor="" x="1188.47" 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>Lorg/eclipse/jetty/server/HttpConnection:::parseRequestBuffer (1 samples, 0.08%)</title><rect x="1189.1" y="1585" width="0.9" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="1192.09" 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>itable stub (1 samples, 0.08%)</title><rect x="800.3" y="769" width="0.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="803.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>Lorg/eclipse/jetty/io/ManagedSelector:::submit (1 samples, 0.08%)</title><rect x="1031.4" y="1489" width="0.9" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1034.40" 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>__intel_pmu_enable_all (2 samples, 0.15%)</title><rect x="56.2" y="1585" width="1.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="59.22" 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_futex (2 samples, 0.15%)</title><rect x="56.2" y="1777" width="1.8" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="59.22" y="1787.5" font-size="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.15%)</title><rect x="153.2" y="1585" width="1.8" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="156.20" 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>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::keyComparatorHash (2 samples, 0.15%)</title><rect x="1141.1" y="1041" width="1.8" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="1144.06" 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>tcp_sendmsg (1 samples, 0.08%)</title><rect x="585.5" y="833" width="0.9" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="588.50" 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>__intel_pmu_enable_all (1 samples, 0.08%)</title><rect x="103.3" y="1633" width="1.0" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="106.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>Lorg/eclipse/jetty/http/HttpParser:::takeString (1 samples, 0.08%)</title><rect x="641.7" y="1537" width="0.9" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="644.69" 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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getService (2 samples, 0.15%)</title><rect x="1073.1" y="929" width="1.8" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="1076.09" 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>Ljava/util/regex/Pattern$Curly:::match0 (1 samples, 0.08%)</title><rect x="749.5" y="897" width="0.9" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="752.54" 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>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:::release (1 samples, 0.08%)</title><rect x="526.6" y="1457" width="0.9" height="15.0" fill="rgb(65,178,178)" rx="2" ry="2" />
<text text-anchor="" x="529.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>net_rx_action (1 samples, 0.08%)</title><rect x="1094.8" y="209" width="0.9" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="1097.84" 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>Lcom/fasterxml/jackson/core/json/ByteSourceJsonBootstrapper:::detectEncoding (2 samples, 0.15%)</title><rect x="594.6" y="641" width="1.8" height="15.0" fill="rgb(89,200,200)" rx="2" ry="2" />
<text text-anchor="" x="597.56" 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>Lch/qos/logback/core/encoder/LayoutWrappingEncoder:::doEncode (30 samples, 2.30%)</title><rect x="219.4" y="1649" width="27.1" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="222.35" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/servlet/WebComponent:::initContainerRequest (6 samples, 0.46%)</title><rect x="434.1" y="1153" width="5.5" height="15.0" fill="rgb(104,214,214)" rx="2" ry="2" />
<text text-anchor="" x="437.15" 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>Lorg/glassfish/jersey/message/internal/OutboundMessageContext:::close (10 samples, 0.77%)</title><rect x="1090.3" y="945" width="9.1" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="1093.31" 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>Lorg/glassfish/jersey/server/internal/routing/MethodSelectingRouter:::getMethodRouter (2 samples, 0.15%)</title><rect x="929.9" y="865" width="1.8" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text text-anchor="" x="932.89" 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>schedule (2 samples, 0.15%)</title><rect x="165.0" y="1777" width="1.8" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="167.98" y="1787.5" font-size="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.15%)</title><rect x="68.9" y="1761" width="1.8" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="71.91" 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>itable stub (1 samples, 0.08%)</title><rect x="600.9" y="641" width="0.9" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text text-anchor="" x="603.91" 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>Ljava/lang/AbstractStringBuilder:::append (1 samples, 0.08%)</title><rect x="922.6" y="1153" width="0.9" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text text-anchor="" x="925.64" 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>default_do_nmi (1 samples, 0.08%)</title><rect x="203.0" y="1569" width="0.9" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="206.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>Ljava/net/Inet4Address:::getHostAddress (1 samples, 0.08%)</title><rect x="329.0" y="1361" width="0.9" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="332.02" 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>native_write_msr_safe (2 samples, 0.15%)</title><rect x="1163.7" y="1857" width="1.8" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="1166.72" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Unsafe_Park (1 samples, 0.08%)</title><rect x="1020.5" y="1617" width="0.9" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="1023.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>Ljava/text/SimpleDateFormat:::format (1 samples, 0.08%)</title><rect x="198.5" y="1841" width="0.9" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text text-anchor="" x="201.51" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/CopyOnWriteArrayList:::iterator (1 samples, 0.08%)</title><rect x="732.3" y="1473" width="0.9" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="735.32" 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>G1RootProcessor::process_java_roots (4 samples, 0.31%)</title><rect x="25.4" y="1809" width="3.6" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="28.41" y="1819.5" font-size="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.08%)</title><rect x="672.5" y="1729" width="0.9" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="675.50" 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>Lorg/eclipse/jetty/servlet/ServletHandler:::doHandle (121 samples, 9.29%)</title><rect x="735.0" y="1361" width="109.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="738.04" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (2 samples, 0.15%)</title><rect x="983.4" y="1489" width="1.8" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="986.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>schedule (3 samples, 0.23%)</title><rect x="133.3" y="1777" width="2.7" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="136.26" y="1787.5" font-size="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.08%)</title><rect x="361.6" y="1089" width="0.9" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="364.64" 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>Ljava/util/regex/Pattern$BitClass:::isSatisfiedBy (1 samples, 0.08%)</title><rect x="749.5" y="865" width="0.9" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="752.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>ip_queue_xmit (4 samples, 0.31%)</title><rect x="689.7" y="1633" width="3.6" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="692.72" 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>wake_up_q (3 samples, 0.23%)</title><rect x="305.5" y="1793" width="2.7" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="308.45" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/hk2/utilities/general/GeneralUtilities:::safeEquals (1 samples, 0.08%)</title><rect x="948.9" y="513" width="0.9" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="951.92" 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>Ljava/util/TreeMap:::getEntry (2 samples, 0.15%)</title><rect x="223.9" y="1505" width="1.8" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="226.89" 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>Ljava/util/Formatter:::parse (1 samples, 0.08%)</title><rect x="550.2" y="1041" width="0.9" height="15.0" fill="rgb(93,204,204)" rx="2" ry="2" />
<text text-anchor="" x="553.15" 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>Lorg/glassfish/jersey/message/internal/WriterInterceptorExecutor:::proceed (1 samples, 0.08%)</title><rect x="1089.4" y="945" width="0.9" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="1092.40" 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>end_repeat_nmi (1 samples, 0.08%)</title><rect x="1011.5" y="1617" width="0.9" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="1014.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>CodeHeap::find_start (1 samples, 0.08%)</title><rect x="1161.0" y="1409" width="0.9" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text text-anchor="" x="1164.00" 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>Lorg/glassfish/jersey/process/internal/RequestScope$Instance:::release (8 samples, 0.61%)</title><rect x="1128.4" y="1105" width="7.2" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text text-anchor="" x="1131.37" 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>Ljava/util/Formatter:::format (6 samples, 0.46%)</title><rect x="355.3" y="1057" width="5.4" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text text-anchor="" x="358.30" 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>Lcom/fasterxml/jackson/jaxrs/cfg/ObjectReaderInjector:::getAndClear (1 samples, 0.08%)</title><rect x="809.4" y="705" width="0.9" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text text-anchor="" x="812.35" 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>select_task_rq_fair (1 samples, 0.08%)</title><rect x="692.4" y="1249" width="0.9" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="695.44" 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>sys_futex (1 samples, 0.08%)</title><rect x="694.3" y="1825" width="0.9" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="697.25" y="1835.5" font-size="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.08%)</title><rect x="198.5" y="1697" width="0.9" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="201.51" 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_push_pending_frames (1 samples, 0.08%)</title><rect x="838.4" y="993" width="0.9" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="841.36" 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] (31 samples, 2.38%)</title><rect x="484.9" y="1873" width="28.1" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text text-anchor="" x="487.90" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::substring (1 samples, 0.08%)</title><rect x="1146.5" y="1105" width="0.9" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="1149.50" 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>Lorg/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (1 samples, 0.08%)</title><rect x="409.7" y="721" width="0.9" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="412.68" 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_start (1 samples, 0.08%)</title><rect x="128.7" y="1873" width="0.9" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text text-anchor="" x="131.73" y="1883.5" font-size="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.08%)</title><rect x="815.7" y="593" width="0.9" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text text-anchor="" x="818.70" 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>inet_sendmsg (1 samples, 0.08%)</title><rect x="623.6" y="1041" width="0.9" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="626.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>entry_SYSCALL_64_fastpath (2 samples, 0.15%)</title><rect x="855.6" y="1777" width="1.8" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="858.58" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Threads::possibly_parallel_oops_do (1 samples, 0.08%)</title><rect x="83.4" y="1793" width="0.9" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="86.41" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::matcher (1 samples, 0.08%)</title><rect x="1103.0" y="865" width="0.9" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="1106.00" 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>Lorg/glassfish/jersey/uri/internal/UriParser:::parseComponent (1 samples, 0.08%)</title><rect x="361.6" y="1121" width="0.9" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text text-anchor="" x="364.64" 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>Ljava/lang/String:::indexOf (1 samples, 0.08%)</title><rect x="555.6" y="1073" width="0.9" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="558.59" 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>Ljava/util/HashSet:::add (1 samples, 0.08%)</title><rect x="825.7" y="1041" width="0.9" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="828.67" 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>native_write_msr_safe (1 samples, 0.08%)</title><rect x="69.8" y="1585" width="0.9" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="72.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>hrtimer_start_range_ns (1 samples, 0.08%)</title><rect x="1017.8" y="1777" width="0.9" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="1020.80" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/util/ArrayTrie:::getBest (2 samples, 0.15%)</title><rect x="973.4" y="1537" width="1.8" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="976.39" 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>sys_read (1 samples, 0.08%)</title><rect x="721.4" y="1585" width="1.0" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="724.44" 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>Lorg/glassfish/jersey/message/internal/ReaderInterceptorExecutor:::proceed (7 samples, 0.54%)</title><rect x="410.6" y="785" width="6.3" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="413.58" 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>Lorg/hibernate/validator/internal/engine/ValidationContext$ValidationContextBuilder:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="587.3" y="833" width="0.9" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text text-anchor="" x="590.31" 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>JavaThread::run (14 samples, 1.08%)</title><rect x="147.8" y="1857" width="12.6" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text text-anchor="" x="150.76" y="1867.5" font-size="12" 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.15%)</title><rect x="56.2" y="1633" width="1.8" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="59.22" 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>tcp_recvmsg (1 samples, 0.08%)</title><rect x="291.0" y="1697" width="0.9" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="293.95" 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>Lcom/fasterxml/jackson/core/json/UTF8StreamJsonParser:::_isNextTokenNameYes (1 samples, 0.08%)</title><rect x="804.8" y="641" width="0.9" height="15.0" fill="rgb(52,166,166)" rx="2" ry="2" />
<text text-anchor="" x="807.82" 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>ip_output (1 samples, 0.08%)</title><rect x="396.1" y="385" width="0.9" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="399.08" 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>Monitor::IWait (9 samples, 0.69%)</title><rect x="94.3" y="1809" width="8.1" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="97.29" y="1819.5" font-size="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.15%)</title><rect x="29.0" y="1585" width="1.8" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="32.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>Lorg/eclipse/jetty/util/IteratingCallback:::iterate (7 samples, 0.54%)</title><rect x="390.6" y="753" width="6.4" height="15.0" fill="rgb(90,201,201)" rx="2" ry="2" />
<text text-anchor="" x="393.65" 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>ipv4_conntrack_local (1 samples, 0.08%)</title><rect x="853.8" y="1569" width="0.9" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="856.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>futex_wait_queue_me (2 samples, 0.15%)</title><rect x="1165.5" y="1649" width="1.8" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="1168.53" 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>Lorg/glassfish/jersey/server/ContainerRequest:::getProperty (1 samples, 0.08%)</title><rect x="835.6" y="1105" width="0.9" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="838.64" 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.08%)</title><rect x="177.7" y="1793" width="0.9" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="180.67" y="1803.5" font-size="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_commit_txn (1 samples, 0.08%)</title><rect x="423.3" y="481" width="0.9" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="426.27" 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>Lorg/glassfish/hk2/utilities/cache/internal/WeakCARCacheImpl:::getValueFromT (1 samples, 0.08%)</title><rect x="948.9" y="593" width="0.9" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="951.92" 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>finish_task_switch (2 samples, 0.15%)</title><rect x="710.6" y="1745" width="1.8" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="713.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>intel_pmu_enable_all (2 samples, 0.15%)</title><rect x="111.5" y="1665" width="1.8" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="114.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>Lorg/glassfish/jersey/message/internal/MessageBodyFactory:::writeTo (1 samples, 0.08%)</title><rect x="388.8" y="961" width="0.9" height="15.0" fill="rgb(80,193,193)" rx="2" ry="2" />
<text text-anchor="" x="391.83" 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>Lorg/glassfish/jersey/process/internal/Stages:::process (15 samples, 1.15%)</title><rect x="558.3" y="1009" width="13.6" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="561.31" 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>sock_sendmsg (1 samples, 0.08%)</title><rect x="677.0" y="1713" width="0.9" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="680.04" 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>__fget_light (1 samples, 0.08%)</title><rect x="683.4" y="1761" width="0.9" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="686.38" 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>[unknown] (4 samples, 0.31%)</title><rect x="20.9" y="1825" width="3.6" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="23.88" y="1835.5" font-size="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.08%)</title><rect x="997.9" y="1537" width="0.9" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="1000.86" 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_nmi (1 samples, 0.08%)</title><rect x="1011.5" y="1601" width="0.9" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="1014.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>Ljava/util/TreeMap:::entrySet (1 samples, 0.08%)</title><rect x="590.9" y="641" width="0.9" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="593.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>os::javaTimeMillis (1 samples, 0.08%)</title><rect x="1018.7" y="1889" width="0.9" height="15.0" fill="rgb(216,216,64)" rx="2" ry="2" />
<text text-anchor="" x="1021.71" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/servlet/WebComponent$4$1:::initialize (2 samples, 0.15%)</title><rect x="760.4" y="945" width="1.8" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="763.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>ip_output (3 samples, 0.23%)</title><rect x="294.6" y="1601" width="2.7" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="297.58" 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>Lorg/eclipse/jetty/http/HttpGenerator:::generateResponseLine (1 samples, 0.08%)</title><rect x="934.4" y="689" width="0.9" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="937.42" 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 (1 samples, 0.08%)</title><rect x="129.6" y="1665" width="0.9" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="132.63" 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>Lorg/glassfish/jersey/message/internal/InboundMessageContext:::getMediaType (1 samples, 0.08%)</title><rect x="929.9" y="833" width="0.9" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="932.89" 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>ep_poll (2 samples, 0.15%)</title><rect x="1169.2" y="1745" width="1.8" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="1172.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>Ljava/util/Collections$UnmodifiableCollection:::iterator (1 samples, 0.08%)</title><rect x="827.5" y="849" width="0.9" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="830.48" 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>new_sync_read (2 samples, 0.15%)</title><rect x="852.0" y="1793" width="1.8" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="854.95" y="1803.5" font-size="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.15%)</title><rect x="1007.8" y="1441" width="1.8" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="1010.83" 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>x86_pmu_enable (2 samples, 0.15%)</title><rect x="169.5" y="1553" width="1.8" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="172.51" 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 (1 samples, 0.08%)</title><rect x="133.3" y="1633" width="0.9" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="136.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>sys_futex (4 samples, 0.31%)</title><rect x="664.3" y="1569" width="3.7" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="667.35" 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>finish_task_switch (1 samples, 0.08%)</title><rect x="129.6" y="1761" width="0.9" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="132.63" 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>pthread_cond_timedwait@@GLIBC_2.3.2 (18 samples, 1.38%)</title><rect x="463.1" y="1857" width="16.4" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text text-anchor="" x="466.15" y="1867.5" font-size="12" 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.15%)</title><rect x="486.7" y="1777" width="1.8" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="489.71" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/inject/EntityParamValueFactoryProvider$EntityValueFactory:::provide (3 samples, 0.23%)</title><rect x="1182.7" y="881" width="2.8" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="1185.75" 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>G1RootProcessor::process_java_roots (1 samples, 0.08%)</title><rect x="45.3" y="1809" width="1.0" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="48.35" y="1819.5" font-size="12" 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.23%)</title><rect x="665.3" y="1425" width="2.7" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="668.25" 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 (1 samples, 0.08%)</title><rect x="685.2" y="1761" width="0.9" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="688.19" 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>ip_rcv_finish (1 samples, 0.08%)</title><rect x="1094.8" y="129" width="0.9" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="1097.84" y="139.5" font-size="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 (1 samples, 0.08%)</title><rect x="116.0" y="1761" width="0.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="119.04" 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>default_do_nmi (1 samples, 0.08%)</title><rect x="148.7" y="1457" width="0.9" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="151.66" 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>Ljava/util/Formatter$FormatSpecifier:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="919.9" y="1025" width="0.9" height="15.0" fill="rgb(54,169,169)" rx="2" ry="2" />
<text text-anchor="" x="922.92" 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>Lorg/glassfish/jersey/servlet/ServletContainer:::service (4 samples, 0.31%)</title><rect x="1165.5" y="1809" width="3.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1168.53" y="1819.5" font-size="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.08%)</title><rect x="494.0" y="1713" width="0.9" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="496.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>schedule (2 samples, 0.15%)</title><rect x="10.0" y="1681" width="1.8" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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_epoll_wait (1 samples, 0.08%)</title><rect x="858.3" y="1841" width="0.9" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="861.29" y="1851.5" font-size="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.08%)</title><rect x="1038.6" y="1457" width="1.0" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="1041.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>Lsun/misc/Unsafe:::park (1 samples, 0.08%)</title><rect x="320.0" y="1633" width="0.9" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text text-anchor="" x="322.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>Lcom/fasterxml/jackson/core/json/ByteSourceJsonBootstrapper:::ensureLoaded (3 samples, 0.23%)</title><rect x="806.6" y="625" width="2.8" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text text-anchor="" x="809.64" 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>Lsun/nio/ch/SelectorImpl:::processDeregisterQueue (1 samples, 0.08%)</title><rect x="325.4" y="1553" width="0.9" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="328.39" 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>Lsun/nio/ch/EPollSelectorImpl:::putEventOps (1 samples, 0.08%)</title><rect x="1030.5" y="1537" width="0.9" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="1033.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>sys_futex (1 samples, 0.08%)</title><rect x="129.6" y="1857" width="0.9" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="132.63" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/SystemDescriptor:::dispose (7 samples, 0.54%)</title><rect x="608.2" y="1073" width="6.3" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="611.16" 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>Ljava/util/AbstractSequentialList:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="1137.4" y="1089" width="0.9" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="1140.43" 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>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::keyComparatorHash (2 samples, 0.15%)</title><rect x="436.9" y="1041" width="1.8" height="15.0" fill="rgb(53,167,167)" rx="2" ry="2" />
<text text-anchor="" x="439.87" 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>sys_futex (1 samples, 0.08%)</title><rect x="1017.8" y="1841" width="0.9" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="1020.80" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::toLowerCase (1 samples, 0.08%)</title><rect x="404.2" y="801" width="0.9" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text text-anchor="" x="407.24" 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>Ljava/util/concurrent/locks/ReentrantLock$NonfairSync:::lock (1 samples, 0.08%)</title><rect x="1023.2" y="1569" width="0.9" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="1026.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>Lcom/fasterxml/jackson/core/JsonFactory:::createParser (4 samples, 0.31%)</title><rect x="412.4" y="689" width="3.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="415.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>Lorg/glassfish/jersey/server/internal/routing/PushMethodHandlerRouter:::apply (1 samples, 0.08%)</title><rect x="383.4" y="897" width="0.9" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text text-anchor="" x="386.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>Lorg/jvnet/hk2/internal/CacheKey:::equals (1 samples, 0.08%)</title><rect x="948.9" y="529" width="0.9" height="15.0" fill="rgb(93,204,204)" rx="2" ry="2" />
<text text-anchor="" x="951.92" 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>__schedule (1 samples, 0.08%)</title><rect x="889.1" y="1489" width="0.9" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="892.11" 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.08%)</title><rect x="316.3" y="1857" width="0.9" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="319.33" y="1867.5" font-size="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 (157 samples, 12.06%)</title><rect x="1019.6" y="1745" width="142.3" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text text-anchor="" x="1022.62" y="1755.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>Lorg/glassfish/hk2/utilities/reflection/ParameterizedTypeImpl:::getRawType (1 samples, 0.08%)</title><rect x="611.8" y="849" width="0.9" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="614.78" 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>[libc-2.23.so] (1 samples, 0.08%)</title><rect x="858.3" y="1873" width="0.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="861.29" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getInjectionResolverForInjectee (7 samples, 0.54%)</title><rect x="420.6" y="625" width="6.3" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="423.55" 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>__perf_event_task_sched_in (2 samples, 0.15%)</title><rect x="884.6" y="1729" width="1.8" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="887.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>tcp_sendmsg (2 samples, 0.15%)</title><rect x="1007.8" y="1713" width="1.8" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="1010.83" 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>Lorg/glassfish/jersey/server/internal/routing/RoutingStage:::_apply (3 samples, 0.23%)</title><rect x="381.6" y="929" width="2.7" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text text-anchor="" x="384.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>Lorg/eclipse/jetty/io/SelectChannelEndPoint$2:::run (142 samples, 10.91%)</title><rect x="723.3" y="1649" width="128.7" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="726.26" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/jet..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/aitusoftware/workshop/usvc/common/Request$Creator4JacksonDeserializer2e54f9ac:::createUsingDefault (1 samples, 0.08%)</title><rect x="1112.1" y="673" width="0.9" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="1115.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>schedule_hrtimeout_range_clock (2 samples, 0.15%)</title><rect x="1161.9" y="1793" width="1.8" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="1164.90" y="1803.5" font-size="12" 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 (2 samples, 0.15%)</title><rect x="309.1" y="1617" width="1.8" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="312.08" 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>JVM_FillInStackTrace (19 samples, 1.46%)</title><rect x="336.3" y="977" width="17.2" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text text-anchor="" x="339.27" 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>__vdso_clock_gettime (1 samples, 0.08%)</title><rect x="661.6" y="1857" width="0.9" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="664.63" y="1867.5" font-size="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.08%)</title><rect x="857.4" y="1793" width="0.9" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="860.39" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/nio/ch/SelectionKeyImpl:::nioInterestOps (1 samples, 0.08%)</title><rect x="1030.5" y="1569" width="0.9" height="15.0" fill="rgb(68,181,181)" rx="2" ry="2" />
<text text-anchor="" x="1033.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>Ljava/lang/AbstractStringBuilder:::append (1 samples, 0.08%)</title><rect x="1001.5" y="1809" width="0.9" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="1004.49" y="1819.5" font-size="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.15%)</title><rect x="153.2" y="1761" width="1.8" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="156.20" 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>__intel_pmu_enable_all (3 samples, 0.23%)</title><rect x="665.3" y="1377" width="2.7" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="668.25" 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>autoremove_wake_function (1 samples, 0.08%)</title><rect x="1008.7" y="1297" width="0.9" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="1011.74" 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>Lorg/glassfish/jersey/uri/internal/UriParser:::parseComponent (2 samples, 0.15%)</title><rect x="1062.2" y="1137" width="1.8" height="15.0" fill="rgb(103,213,213)" rx="2" ry="2" />
<text text-anchor="" x="1065.21" 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>Lch/qos/logback/access/spi/AccessEvent:::buildRequestHeaderMap (1 samples, 0.08%)</title><rect x="1035.9" y="1425" width="0.9" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text text-anchor="" x="1038.93" 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>Lorg/glassfish/jersey/process/internal/RequestScope$Instance:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="757.7" y="1105" width="0.9" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="760.70" 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>Lorg/glassfish/jersey/message/internal/InboundMessageContext$5:::apply (1 samples, 0.08%)</title><rect x="569.2" y="817" width="0.9" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="572.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>native_write_msr_safe (1 samples, 0.08%)</title><rect x="706.0" y="1585" width="0.9" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="709.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 (2 samples, 0.15%)</title><rect x="1003.3" y="1825" width="1.8" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="1006.30" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/uri/internal/UriParser:::parseHierarchicalUri (1 samples, 0.08%)</title><rect x="921.7" y="1137" width="0.9" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="924.74" 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>Lorg/jvnet/hk2/internal/ClazzCreator:::create (3 samples, 0.23%)</title><rect x="431.4" y="961" width="2.7" height="15.0" fill="rgb(56,171,171)" rx="2" ry="2" />
<text text-anchor="" x="434.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>ip_output (1 samples, 0.08%)</title><rect x="854.7" y="1617" width="0.9" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="857.67" 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>Lio/dropwizard/request/logging/async/AsyncAccessEventAppenderFactory$1:::preprocess (5 samples, 0.38%)</title><rect x="1034.1" y="1489" width="4.5" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="1037.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>start_thread (8 samples, 0.61%)</title><rect x="140.5" y="1889" width="7.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="143.51" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/text/DecimalFormatSymbols:::initialize (2 samples, 0.15%)</title><rect x="1055.9" y="977" width="1.8" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="1058.87" 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>intel_pmu_enable_all (2 samples, 0.15%)</title><rect x="95.2" y="1569" width="1.8" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="98.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>__wake_up_common (1 samples, 0.08%)</title><rect x="245.6" y="1457" width="0.9" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="248.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>Ljava/util/HashSet:::isEmpty (1 samples, 0.08%)</title><rect x="720.5" y="1537" width="0.9" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="723.54" 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>Ljava/util/HashSet:::add (1 samples, 0.08%)</title><rect x="1129.3" y="1041" width="0.9" height="15.0" fill="rgb(68,181,181)" rx="2" ry="2" />
<text text-anchor="" x="1132.28" 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>Lorg/glassfish/jersey/process/internal/RequestScope$Instance:::release (1 samples, 0.08%)</title><rect x="682.5" y="1665" width="0.9" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text text-anchor="" x="685.47" 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>generic_smp_call_function_single_interrupt (1 samples, 0.08%)</title><rect x="423.3" y="561" width="0.9" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="426.27" 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>__clock_gettime (1 samples, 0.08%)</title><rect x="515.7" y="1889" width="0.9" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text text-anchor="" x="518.71" y="1899.5" font-size="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.31%)</title><rect x="987.0" y="1665" width="3.6" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="989.99" 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>__wake_up_common (1 samples, 0.08%)</title><rect x="528.4" y="1329" width="0.9" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="531.40" 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>end_repeat_nmi (2 samples, 0.15%)</title><rect x="695.2" y="1617" width="1.8" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="698.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>native_sched_clock (1 samples, 0.08%)</title><rect x="668.0" y="1585" width="0.9" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="670.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>DirtyCardQueueSet::apply_closure_to_completed_buffer (1 samples, 0.08%)</title><rect x="46.3" y="1777" width="0.9" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="49.25" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/ReaderInterceptorExecutor:::proceed (10 samples, 0.77%)</title><rect x="802.1" y="785" width="9.1" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="805.10" 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>Lorg/eclipse/jetty/util/thread/QueuedThreadPool$2:::run (146 samples, 11.21%)</title><rect x="517.5" y="1729" width="132.3" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text text-anchor="" x="520.53" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/jet..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Arrays:::sort (1 samples, 0.08%)</title><rect x="769.5" y="913" width="0.9" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="772.48" 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>thread_entry (69 samples, 5.30%)</title><rect x="211.2" y="1825" width="62.5" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text text-anchor="" x="214.20" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >thread..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (2 samples, 0.15%)</title><rect x="111.5" y="1697" width="1.8" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="114.51" 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>futex_wait (2 samples, 0.15%)</title><rect x="1165.5" y="1665" width="1.8" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="1168.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>Lch/qos/logback/core/AsyncAppenderBase:::append (6 samples, 0.46%)</title><rect x="328.1" y="1505" width="5.4" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text text-anchor="" x="331.11" 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>Ljava/lang/String:::charAt (1 samples, 0.08%)</title><rect x="399.7" y="801" width="0.9" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="402.71" 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_local_deliver_finish (1 samples, 0.08%)</title><rect x="856.5" y="1313" width="0.9" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="859.48" 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>Ljava/util/Arrays:::copyOfRange (1 samples, 0.08%)</title><rect x="919.9" y="929" width="0.9" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="922.92" 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_Throwable::fill_in_stack_trace (8 samples, 0.61%)</title><rect x="542.0" y="945" width="7.2" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="545.00" 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 (2 samples, 0.15%)</title><rect x="120.6" y="1649" width="1.8" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="123.57" 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>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="1017.8" y="1857" width="0.9" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="1020.80" y="1867.5" font-size="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.23%)</title><rect x="1003.3" y="1841" width="2.7" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="1006.30" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="735.0" y="1233" width="0.9" height="15.0" fill="rgb(93,205,205)" rx="2" ry="2" />
<text text-anchor="" x="738.04" 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>pthread_mutex_unlock@plt (1 samples, 0.08%)</title><rect x="259.2" y="1649" width="0.9" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text text-anchor="" x="262.23" 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>entry_SYSCALL_64_fastpath (2 samples, 0.15%)</title><rect x="859.2" y="1857" width="1.8" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="862.20" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (2 samples, 0.15%)</title><rect x="621.8" y="1025" width="1.8" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="624.75" 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>try_to_wake_up (1 samples, 0.08%)</title><rect x="528.4" y="1297" width="0.9" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="531.40" 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>Lorg/eclipse/jetty/server/HttpConnection:::send (9 samples, 0.69%)</title><rect x="1090.3" y="769" width="8.2" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="1093.31" 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.15%)</title><rect x="712.4" y="1857" width="1.8" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="715.38" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>set_next_entity (1 samples, 0.08%)</title><rect x="661.6" y="1697" width="0.9" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="664.63" 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>Lorg/eclipse/jetty/io/ArrayByteBufferPool:::release (1 samples, 0.08%)</title><rect x="1161.0" y="1553" width="0.9" height="15.0" fill="rgb(80,192,192)" rx="2" ry="2" />
<text text-anchor="" x="1164.00" 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>Lorg/eclipse/jetty/util/ArrayTrie:::get (1 samples, 0.08%)</title><rect x="580.1" y="785" width="0.9" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="583.06" 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>Ljersey/repackaged/com/google/common/net/InetAddresses:::forUriString (27 samples, 2.07%)</title><rect x="336.3" y="1105" width="24.4" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="339.27" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (1 samples, 0.08%)</title><rect x="677.0" y="1649" width="0.9" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="680.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>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="304.5" y="1841" width="1.0" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="307.55" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::getChars (1 samples, 0.08%)</title><rect x="799.4" y="849" width="0.9" height="15.0" fill="rgb(91,203,203)" rx="2" ry="2" />
<text text-anchor="" x="802.39" 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>Lorg/jvnet/hk2/internal/FactoryCreator:::dispose (3 samples, 0.23%)</title><rect x="1185.5" y="1057" width="2.7" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="1188.47" 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_java_lang_Throwable_fillInStackTrace (12 samples, 0.92%)</title><rect x="1044.1" y="993" width="10.9" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="1047.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>sys_futex (1 samples, 0.08%)</title><rect x="880.0" y="1793" width="1.0" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="883.05" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/net/URI$Parser:::parseAuthority (2 samples, 0.15%)</title><rect x="442.3" y="1105" width="1.8" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="445.30" 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>Lorg/glassfish/hk2/utilities/AbstractActiveDescriptor:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="610.0" y="849" width="0.9" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text text-anchor="" x="612.97" 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>Lorg/eclipse/jetty/server/Request:::extractContentParameters (1 samples, 0.08%)</title><rect x="729.6" y="1377" width="0.9" height="15.0" fill="rgb(56,171,171)" rx="2" ry="2" />
<text text-anchor="" x="732.60" 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_sched_clock (1 samples, 0.08%)</title><rect x="84.3" y="1569" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="87.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>fdval (1 samples, 0.08%)</title><rect x="844.7" y="1457" width="0.9" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="847.70" 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>G1CollectedHeap::can_elide_initializing_store_barrier (1 samples, 0.08%)</title><rect x="826.6" y="913" width="0.9" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="829.57" 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>pthread_cond_timedwait@@GLIBC_2.3.2 (1 samples, 0.08%)</title><rect x="175.9" y="1793" width="0.9" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text text-anchor="" x="178.85" y="1803.5" font-size="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.08%)</title><rect x="286.4" y="1793" width="0.9" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="289.42" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_remove (1 samples, 0.08%)</title><rect x="484.9" y="1761" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="487.90" 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>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="481.3" y="1729" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="484.27" 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_readv_writev (4 samples, 0.31%)</title><rect x="293.7" y="1793" width="3.6" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="296.67" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/io/ChannelEndPoint:::flush (4 samples, 0.31%)</title><rect x="786.7" y="657" width="3.6" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="789.70" 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>entry_SYSCALL_64 (1 samples, 0.08%)</title><rect x="877.3" y="1857" width="0.9" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="880.33" y="1867.5" font-size="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.08%)</title><rect x="140.5" y="1729" width="0.9" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text text-anchor="" x="143.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>native_write_msr_safe (1 samples, 0.08%)</title><rect x="423.3" y="385" width="0.9" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="426.27" 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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetDescriptor (1 samples, 0.08%)</title><rect x="948.9" y="625" width="0.9" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text text-anchor="" x="951.92" 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>Ljava/lang/StringBuffer:::append (1 samples, 0.08%)</title><rect x="794.9" y="785" width="0.9" height="15.0" fill="rgb(79,191,191)" rx="2" ry="2" />
<text text-anchor="" x="797.85" 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>Ljava/lang/ThreadLocal:::set (1 samples, 0.08%)</title><rect x="333.5" y="1537" width="1.0" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="336.55" 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_Throwable::fill_in_stack_trace (9 samples, 0.69%)</title><rect x="904.5" y="945" width="8.2" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text text-anchor="" x="907.52" 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>__vfs_read (1 samples, 0.08%)</title><rect x="494.0" y="1729" width="0.9" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="496.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>security_file_permission (1 samples, 0.08%)</title><rect x="637.2" y="1473" width="0.9" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="640.16" 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>HandleMarkCleaner::~HandleMarkCleaner (1 samples, 0.08%)</title><rect x="735.9" y="1217" width="1.0" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" />
<text text-anchor="" x="738.94" 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>Ljava/util/concurrent/atomic/AtomicReferenceArray:::checkedByteOffset (1 samples, 0.08%)</title><rect x="1116.6" y="433" width="0.9" height="15.0" fill="rgb(80,192,192)" rx="2" ry="2" />
<text text-anchor="" x="1119.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>Lch/qos/logback/access/spi/AccessEvent:::buildRequestParameterMap (4 samples, 0.31%)</title><rect x="213.9" y="1633" width="3.6" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="216.92" 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_futex (2 samples, 0.15%)</title><rect x="20.9" y="1777" width="1.8" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="23.88" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/nio/ch/SelectionKeyImpl:::interestOps (1 samples, 0.08%)</title><rect x="1030.5" y="1585" width="0.9" height="15.0" fill="rgb(80,192,192)" rx="2" ry="2" />
<text text-anchor="" x="1033.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>Lorg/glassfish/jersey/server/internal/routing/MethodSelectingRouter:::access$000 (2 samples, 0.15%)</title><rect x="929.9" y="881" width="1.8" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="932.89" 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>Lorg/glassfish/jersey/message/internal/MessageBodyFactory:::writeTo (2 samples, 0.15%)</title><rect x="781.3" y="961" width="1.8" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="784.26" 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>Lorg/glassfish/jersey/internal/Errors$1:::call (6 samples, 0.46%)</title><rect x="1180.0" y="1041" width="5.5" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text text-anchor="" x="1183.03" 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>__vfs_read (1 samples, 0.08%)</title><rect x="291.0" y="1777" width="0.9" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="293.95" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/io/BufferedOutputStream:::flush (1 samples, 0.08%)</title><rect x="230.2" y="1601" width="0.9" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="233.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>Lorg/jvnet/hk2/internal/Utilities:::createService (1 samples, 0.08%)</title><rect x="764.0" y="897" width="0.9" height="15.0" fill="rgb(78,225,78)" rx="2" ry="2" />
<text text-anchor="" x="767.04" 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>Ljava/lang/String:::toLowerCase (1 samples, 0.08%)</title><rect x="385.2" y="785" width="0.9" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="388.21" 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>vfs_write (5 samples, 0.38%)</title><rect x="265.6" y="1681" width="4.5" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="268.58" 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>Lorg/eclipse/jetty/util/ArrayTrie:::getBest (2 samples, 0.15%)</title><rect x="459.5" y="1537" width="1.8" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="462.52" 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.08%)</title><rect x="985.2" y="1841" width="0.9" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="988.18" y="1851.5" font-size="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.08%)</title><rect x="857.4" y="1857" width="0.9" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="860.39" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/http/HttpGenerator:::generateResponse (2 samples, 0.15%)</title><rect x="1090.3" y="705" width="1.8" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text text-anchor="" x="1093.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>do_futex (5 samples, 0.38%)</title><rect x="308.2" y="1825" width="4.5" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="311.17" y="1835.5" font-size="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 (2 samples, 0.15%)</title><rect x="679.8" y="1873" width="1.8" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text text-anchor="" x="682.75" y="1883.5" font-size="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] (20 samples, 1.54%)</title><rect x="997.0" y="1873" width="18.1" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text text-anchor="" x="999.96" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/nio/ch/SocketChannelImpl:::read (1 samples, 0.08%)</title><rect x="969.8" y="1553" width="0.9" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text text-anchor="" x="972.77" 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>Ljava/util/AbstractList:::listIterator (1 samples, 0.08%)</title><rect x="368.0" y="817" width="0.9" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="370.99" 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>Ljava/util/concurrent/CopyOnWriteArrayList$COWIterator:::next (1 samples, 0.08%)</title><rect x="246.5" y="1665" width="1.0" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="249.54" 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>Lorg/glassfish/jersey/servlet/ServletContainer:::service (84 samples, 6.45%)</title><rect x="364.4" y="1201" width="76.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="367.36" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gla..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (2 samples, 0.15%)</title><rect x="61.7" y="1761" width="1.8" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="64.66" 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>Lsun/nio/ch/SelectorImpl:::lockAndDoSelect (6 samples, 0.46%)</title><rect x="1025.1" y="1585" width="5.4" height="15.0" fill="rgb(80,192,192)" rx="2" ry="2" />
<text text-anchor="" x="1028.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>Lorg/glassfish/jersey/server/model/MethodHandler$ClassBasedMethodHandler:::getInstance (1 samples, 0.08%)</title><rect x="383.4" y="881" width="0.9" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="386.39" 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>entry_SYSCALL_64_fastpath (2 samples, 0.15%)</title><rect x="636.3" y="1537" width="1.8" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="639.25" 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.23%)</title><rect x="133.3" y="1825" width="2.7" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="136.26" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Character:::toLowerCase (1 samples, 0.08%)</title><rect x="589.1" y="657" width="0.9" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="592.12" 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_push (1 samples, 0.08%)</title><rect x="395.2" y="465" width="0.9" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="398.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>Ljava/lang/AbstractStringBuilder:::ensureCapacityInternal (1 samples, 0.08%)</title><rect x="794.9" y="753" width="0.9" height="15.0" fill="rgb(64,177,177)" rx="2" ry="2" />
<text text-anchor="" x="797.85" 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>sock_recvmsg (1 samples, 0.08%)</title><rect x="283.7" y="1761" width="0.9" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="286.70" 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>call_stub (69 samples, 5.30%)</title><rect x="211.2" y="1761" width="62.5" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text text-anchor="" x="214.20" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >call_s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (1 samples, 0.08%)</title><rect x="484.0" y="1761" width="0.9" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="486.99" 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>Lorg/glassfish/jersey/server/ServerRuntime$2:::run (59 samples, 4.53%)</title><rect x="1073.1" y="1025" width="53.5" height="15.0" fill="rgb(56,171,171)" rx="2" ry="2" />
<text text-anchor="" x="1076.09" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (2 samples, 0.15%)</title><rect x="705.1" y="1777" width="1.8" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="708.13" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>flush_smp_call_function_queue (1 samples, 0.08%)</title><rect x="423.3" y="545" width="0.9" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="426.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>__perf_event_task_sched_in (2 samples, 0.15%)</title><rect x="116.9" y="1633" width="1.9" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="119.94" 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_futex (7 samples, 0.54%)</title><rect x="501.2" y="1825" width="6.4" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="504.21" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ClazzCreator:::resolve (3 samples, 0.23%)</title><rect x="957.1" y="929" width="2.7" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="960.08" 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>Lorg/eclipse/jetty/http/HttpParser:::parseContent (1 samples, 0.08%)</title><rect x="595.5" y="481" width="0.9" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="598.47" 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>Ljava/util/HashMap:::get (1 samples, 0.08%)</title><rect x="782.2" y="865" width="0.9" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="785.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>Lorg/jvnet/hk2/internal/ServiceHandleImpl:::getService (6 samples, 0.46%)</title><rect x="1130.2" y="1025" width="5.4" height="15.0" fill="rgb(69,218,69)" rx="2" ry="2" />
<text text-anchor="" x="1133.18" 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>Lorg/eclipse/jetty/server/handler/StatisticsHandler:::handle (127 samples, 9.75%)</title><rect x="335.4" y="1537" width="115.1" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text text-anchor="" x="338.36" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/j..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (2 samples, 0.15%)</title><rect x="705.1" y="1761" width="1.8" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="708.13" 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>Lorg/jvnet/hk2/internal/CacheKey:::equals (1 samples, 0.08%)</title><rect x="761.3" y="849" width="0.9" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="764.32" 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>Lorg/glassfish/jersey/internal/util/collection/ConcurrentHashMapV8:::get (1 samples, 0.08%)</title><rect x="590.9" y="721" width="0.9" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text text-anchor="" x="593.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>Lch/qos/logback/core/AsyncAppenderBase:::isQueueBelowDiscardingThreshold (1 samples, 0.08%)</title><rect x="1033.2" y="1489" width="0.9" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="1036.21" 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 (1 samples, 0.08%)</title><rect x="288.2" y="1745" width="0.9" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="291.23" 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>Ljava/lang/Thread:::setNativeName (1 samples, 0.08%)</title><rect x="482.2" y="1761" width="0.9" height="15.0" fill="rgb(59,209,59)" rx="2" ry="2" />
<text text-anchor="" x="485.18" 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>Lorg/jvnet/hk2/internal/Utilities:::createService (1 samples, 0.08%)</title><rect x="1125.7" y="561" width="0.9" height="15.0" fill="rgb(60,210,60)" rx="2" ry="2" />
<text text-anchor="" x="1128.65" 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>Lio/dropwizard/jersey/filter/AllowedMethodsFilter:::doFilter (1 samples, 0.08%)</title><rect x="678.8" y="1841" width="1.0" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="681.85" y="1851.5" font-size="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.08%)</title><rect x="856.5" y="1569" width="0.9" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="859.48" 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>perf_pmu_enable.part.89 (4 samples, 0.31%)</title><rect x="987.0" y="1697" width="3.6" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="989.99" 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>vfs_writev (1 samples, 0.08%)</title><rect x="585.5" y="929" width="0.9" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="588.50" 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>Ljava/util/regex/Pattern$GroupHead:::match (2 samples, 0.15%)</title><rect x="358.0" y="929" width="1.8" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="361.02" 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>native_sched_clock (2 samples, 0.15%)</title><rect x="76.2" y="1793" width="1.8" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="79.16" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Throwable:::fillInStackTrace (1 samples, 0.08%)</title><rect x="1055.0" y="1041" width="0.9" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text text-anchor="" x="1057.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>Lorg/jvnet/hk2/internal/ClazzCreator:::create (11 samples, 0.84%)</title><rect x="813.9" y="657" width="10.0" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="816.89" 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.15%)</title><rect x="153.2" y="1729" width="1.8" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="156.20" 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>__perf_event_task_sched_in (2 samples, 0.15%)</title><rect x="194.9" y="1681" width="1.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="197.88" 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>Ljava/lang/reflect/AnnotatedElement:::isAnnotationPresent (1 samples, 0.08%)</title><rect x="368.9" y="849" width="0.9" height="15.0" fill="rgb(54,168,168)" rx="2" ry="2" />
<text text-anchor="" x="371.89" 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>intel_pmu_enable_all (6 samples, 0.46%)</title><rect x="502.1" y="1649" width="5.5" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="505.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>entry_SYSCALL_64_fastpath (2 samples, 0.15%)</title><rect x="116.9" y="1761" width="1.9" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="119.94" 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>Lorg/jvnet/hk2/internal/Utilities:::createService (1 samples, 0.08%)</title><rect x="559.2" y="897" width="0.9" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="562.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>sock_recvmsg (1 samples, 0.08%)</title><rect x="970.7" y="1441" width="0.9" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="973.68" 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>Ljava/lang/StringBuilder:::append (1 samples, 0.08%)</title><rect x="356.2" y="977" width="0.9" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="359.21" 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.08%)</title><rect x="678.8" y="1777" width="1.0" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="681.85" y="1787.5" font-size="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.08%)</title><rect x="497.6" y="1729" width="0.9" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="500.59" 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>Lorg/eclipse/jetty/util/thread/QueuedThreadPool$2:::run (15 samples, 1.15%)</title><rect x="1176.4" y="1729" width="13.6" height="15.0" fill="rgb(102,247,102)" rx="2" ry="2" />
<text text-anchor="" x="1179.41" 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>Ljava/lang/StringBuffer:::append (1 samples, 0.08%)</title><rect x="794.9" y="801" width="0.9" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="797.85" 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>ttwu_do_activate.constprop.90 (1 samples, 0.08%)</title><rect x="648.9" y="1537" width="0.9" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="651.94" 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>Ljava/lang/ref/WeakReference:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="1071.3" y="977" width="0.9" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="1074.27" 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 (2 samples, 0.15%)</title><rect x="310.9" y="1633" width="1.8" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="313.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>Ljava/util/concurrent/locks/ReentrantLock:::lock (1 samples, 0.08%)</title><rect x="1032.3" y="1457" width="0.9" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="1035.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>frame::adjust_unextended_sp (1 samples, 0.08%)</title><rect x="743.2" y="929" width="0.9" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text text-anchor="" x="746.20" 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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getService (1 samples, 0.08%)</title><rect x="952.5" y="593" width="1.0" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="955.55" 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>Lorg/hibernate/validator/internal/engine/ValidationContext:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="941.7" y="865" width="0.9" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text text-anchor="" x="944.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>sock_write_iter (1 samples, 0.08%)</title><rect x="578.2" y="545" width="1.0" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="581.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>entry_SYSCALL_64_fastpath (7 samples, 0.54%)</title><rect x="463.1" y="1841" width="6.4" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="466.15" y="1851.5" font-size="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.08%)</title><rect x="273.7" y="1857" width="0.9" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="276.73" y="1867.5" font-size="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.08%)</title><rect x="977.9" y="1521" width="0.9" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="980.93" 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>Lorg/eclipse/jetty/server/handler/StatisticsHandler:::handle (122 samples, 9.37%)</title><rect x="734.1" y="1537" width="110.6" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text text-anchor="" x="737.13" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::replace (3 samples, 0.23%)</title><rect x="1101.2" y="881" width="2.7" height="15.0" fill="rgb(90,201,201)" rx="2" ry="2" />
<text text-anchor="" x="1104.18" 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_start (12 samples, 0.92%)</title><rect x="54.4" y="1873" width="10.9" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="57.41" y="1883.5" font-size="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.15%)</title><rect x="15.4" y="1617" width="1.9" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="18.44" 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>Lorg/glassfish/hk2/utilities/general/Hk2ThreadLocal:::get (1 samples, 0.08%)</title><rect x="951.6" y="529" width="0.9" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text text-anchor="" x="954.64" 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>enqueue_task_fair (1 samples, 0.08%)</title><rect x="648.9" y="1505" width="0.9" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="651.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>inet_sendmsg (2 samples, 0.15%)</title><rect x="1007.8" y="1729" width="1.8" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="1010.83" 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>Lorg/jvnet/hk2/internal/IterableProviderImpl:::justInTime (3 samples, 0.23%)</title><rect x="1074.9" y="929" width="2.7" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="1077.90" 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>Ljersey/repackaged/com/google/common/net/InetAddresses:::forUriString (1 samples, 0.08%)</title><rect x="1178.2" y="1105" width="0.9" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="1181.22" 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>Ljava/lang/Thread:::setName (2 samples, 0.15%)</title><rect x="900.9" y="1265" width="1.8" height="15.0" fill="rgb(89,200,200)" rx="2" ry="2" />
<text text-anchor="" x="903.89" 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>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="977.9" y="1569" width="0.9" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="980.93" 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>Lcom/codahale/metrics/Histogram:::update (1 samples, 0.08%)</title><rect x="406.1" y="833" width="0.9" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="409.05" 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>Lsun/nio/ch/Util:::offerFirstTemporaryDirectBuffer (2 samples, 0.15%)</title><rect x="455.0" y="1521" width="1.8" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="457.99" 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>Lch/qos/logback/core/util/CachingDateFormatter:::format (1 samples, 0.08%)</title><rect x="225.7" y="1569" width="0.9" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text text-anchor="" x="228.70" 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>Lorg/glassfish/jersey/server/internal/routing/MethodSelectingRouter:::apply (1 samples, 0.08%)</title><rect x="771.3" y="913" width="0.9" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text text-anchor="" x="774.29" 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>Ljava/lang/Thread:::setName (1 samples, 0.08%)</title><rect x="735.9" y="1265" width="1.0" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="738.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>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::put (1 samples, 0.08%)</title><rect x="1140.2" y="1073" width="0.9" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="1143.15" 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>Ljava/net/InetSocketAddress$InetSocketAddressHolder:::getHostString (1 samples, 0.08%)</title><rect x="329.0" y="1377" width="0.9" height="15.0" fill="rgb(87,198,198)" rx="2" ry="2" />
<text text-anchor="" x="332.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>[libpthread-2.23.so] (1 samples, 0.08%)</title><rect x="872.8" y="1857" width="0.9" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text text-anchor="" x="875.80" y="1867.5" font-size="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.08%)</title><rect x="884.6" y="1633" width="0.9" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="887.58" 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>Lch/qos/logback/access/spi/AccessEvent:::buildRequestHeaderMap (1 samples, 0.08%)</title><rect x="529.3" y="1425" width="0.9" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text text-anchor="" x="532.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>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="687.0" y="1841" width="0.9" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="690.00" y="1851.5" font-size="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.08%)</title><rect x="439.6" y="929" width="0.9" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="442.59" 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] (2 samples, 0.15%)</title><rect x="274.6" y="1841" width="1.9" height="15.0" fill="rgb(215,73,73)" rx="2" ry="2" />
<text text-anchor="" x="277.64" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__clock_gettime (2 samples, 0.15%)</title><rect x="300.0" y="1873" width="1.8" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text text-anchor="" x="303.02" y="1883.5" font-size="12" 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.31%)</title><rect x="13.6" y="1697" width="3.7" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="16.63" 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 (1 samples, 0.08%)</title><rect x="838.4" y="1137" width="0.9" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="841.36" 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>ipv4_conntrack_local (1 samples, 0.08%)</title><rect x="293.7" y="1553" width="0.9" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="296.67" 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>Lorg/eclipse/jetty/server/HttpConnection:::onCompleted (1 samples, 0.08%)</title><rect x="639.0" y="1585" width="0.9" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
<text text-anchor="" x="641.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>Ljava/lang/String:::regionMatches (1 samples, 0.08%)</title><rect x="930.8" y="785" width="0.9" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text text-anchor="" x="933.80" 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>hrtimer_cancel (1 samples, 0.08%)</title><rect x="276.5" y="1665" width="0.9" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="279.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>Lorg/hibernate/validator/internal/metadata/descriptor/BeanDescriptorImpl:::getConstrainedConstructors (1 samples, 0.08%)</title><rect x="800.3" y="833" width="0.9" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="803.29" 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>itable stub (1 samples, 0.08%)</title><rect x="598.2" y="737" width="0.9" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text text-anchor="" x="601.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>[unknown] (4 samples, 0.31%)</title><rect x="68.9" y="1873" width="3.6" height="15.0" fill="rgb(206,60,60)" rx="2" ry="2" />
<text text-anchor="" x="71.91" y="1883.5" font-size="12" 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.08%)</title><rect x="278.3" y="1617" width="0.9" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="281.26" 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_epoll_wait (2 samples, 0.15%)</title><rect x="486.7" y="1825" width="1.8" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="489.71" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljersey/repackaged/com/google/common/net/InetAddresses:::forUriString (15 samples, 1.15%)</title><rect x="538.4" y="1105" width="13.6" height="15.0" fill="rgb(108,219,219)" rx="2" ry="2" />
<text text-anchor="" x="541.37" 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>Lorg/glassfish/jersey/message/internal/WriterInterceptorExecutor:::proceed (1 samples, 0.08%)</title><rect x="781.3" y="881" width="0.9" height="15.0" fill="rgb(68,181,181)" rx="2" ry="2" />
<text text-anchor="" x="784.26" 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>Lorg/jvnet/hk2/internal/ClazzCreator:::resolveAllDependencies (3 samples, 0.23%)</title><rect x="1123.8" y="641" width="2.8" height="15.0" fill="rgb(82,230,82)" rx="2" ry="2" />
<text text-anchor="" x="1126.84" 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>Ljava/util/LinkedList$ListItr:::checkForComodification (1 samples, 0.08%)</title><rect x="383.4" y="753" width="0.9" height="15.0" fill="rgb(54,168,168)" rx="2" ry="2" />
<text text-anchor="" x="386.39" 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>Interpreter (1 samples, 0.08%)</title><rect x="653.5" y="1697" width="0.9" height="15.0" fill="rgb(204,57,57)" rx="2" ry="2" />
<text text-anchor="" x="656.47" 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>Lorg/glassfish/jersey/server/internal/routing/MethodSelectingRouter$3:::apply (2 samples, 0.15%)</title><rect x="385.2" y="945" width="1.8" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text text-anchor="" x="388.21" 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>Lorg/eclipse/jetty/servlet/ServletHandler$CachedChain:::doFilter (1 samples, 0.08%)</title><rect x="678.8" y="1809" width="1.0" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="681.85" y="1819.5" font-size="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 (6 samples, 0.46%)</title><rect x="186.7" y="1825" width="5.5" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="189.73" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap$KeySet:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="214.8" y="1585" width="0.9" height="15.0" fill="rgb(105,216,216)" rx="2" ry="2" />
<text text-anchor="" x="217.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>schedule (2 samples, 0.15%)</title><rect x="95.2" y="1681" width="1.8" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="98.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>sock_read_iter (1 samples, 0.08%)</title><rect x="480.4" y="1777" width="0.9" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="483.37" y="1787.5" font-size="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.08%)</title><rect x="882.8" y="1745" width="0.9" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="885.76" 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>C2Compiler::compile_method (7 samples, 0.54%)</title><rect x="140.5" y="1793" width="6.4" height="15.0" fill="rgb(183,183,52)" rx="2" ry="2" />
<text text-anchor="" x="143.51" y="1803.5" font-size="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.15%)</title><rect x="633.5" y="1441" width="1.8" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="636.53" 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>Lorg/eclipse/jetty/util/ConcurrentArrayQueue$Block:::head (2 samples, 0.15%)</title><rect x="855.6" y="1809" width="1.8" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="858.58" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/ReentrantLock:::isHeldByCurrentThread (1 samples, 0.08%)</title><rect x="1022.3" y="1569" width="0.9" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="1025.33" 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::thread_main_inner (152 samples, 11.67%)</title><rect x="714.2" y="1841" width="137.8" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="717.19" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaThread::threa..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_rcv (1 samples, 0.08%)</title><rect x="578.2" y="145" width="1.0" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="581.25" 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>__vfs_write (1 samples, 0.08%)</title><rect x="528.4" y="1441" width="0.9" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="531.40" 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>Lorg/eclipse/jetty/util/thread/QueuedThreadPool$2:::run (103 samples, 7.91%)</title><rect x="888.2" y="1729" width="93.4" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text text-anchor="" x="891.20" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclips..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="582.8" y="849" width="0.9" height="15.0" fill="rgb(67,180,180)" rx="2" ry="2" />
<text text-anchor="" x="585.78" 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>wake_up_q (2 samples, 0.15%)</title><rect x="881.0" y="1793" width="1.8" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="883.95" y="1803.5" font-size="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.08%)</title><rect x="860.1" y="1777" width="0.9" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="863.11" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/CharacterDataLatin1:::toUpperCase (1 samples, 0.08%)</title><rect x="579.2" y="673" width="0.9" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="582.16" 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>Ljava/lang/AbstractStringBuilder:::append (1 samples, 0.08%)</title><rect x="1036.8" y="1409" width="0.9" height="15.0" fill="rgb(79,191,191)" rx="2" ry="2" />
<text text-anchor="" x="1039.84" 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>x86_pmu_enable (2 samples, 0.15%)</title><rect x="10.0" y="1585" width="1.8" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>Ljava/util/concurrent/ConcurrentHashMap$TreeNode:::findTreeNode (1 samples, 0.08%)</title><rect x="953.5" y="529" width="0.9" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="956.46" 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>__perf_event_task_sched_in (2 samples, 0.15%)</title><rect x="997.9" y="1665" width="1.8" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="1000.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>Lorg/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (1 samples, 0.08%)</title><rect x="571.9" y="769" width="0.9" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="574.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>do_iter_readv_writev (1 samples, 0.08%)</title><rect x="1015.1" y="1793" width="0.9" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="1018.08" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljersey/repackaged/com/google/common/util/concurrent/AbstractFuture$Sync:::set (1 samples, 0.08%)</title><rect x="397.9" y="801" width="0.9" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="400.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>Lorg/glassfish/jersey/message/internal/ReaderInterceptorExecutor:::proceed (11 samples, 0.84%)</title><rect x="1110.2" y="785" width="10.0" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="1113.25" 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>Lorg/glassfish/jersey/internal/Errors:::process (36 samples, 2.76%)</title><rect x="923.5" y="1073" width="32.7" height="15.0" fill="rgb(78,225,78)" rx="2" ry="2" />
<text text-anchor="" x="926.55" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="321.8" y="1585" width="0.9" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="324.77" 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.08%)</title><rect x="650.8" y="1425" width="0.9" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="653.75" 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>Lorg/glassfish/jersey/message/internal/ReaderInterceptorExecutor:::proceed (11 samples, 0.84%)</title><rect x="1110.2" y="817" width="10.0" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1113.25" 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>Lorg/eclipse/jetty/io/AbstractEndPoint$1:::needsFillInterest (1 samples, 0.08%)</title><rect x="723.3" y="1537" width="0.9" height="15.0" fill="rgb(104,214,214)" rx="2" ry="2" />
<text text-anchor="" x="726.26" 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>__nf_conntrack_find_get (1 samples, 0.08%)</title><rect x="1015.1" y="1537" width="0.9" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="1018.08" 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_nmi (1 samples, 0.08%)</title><rect x="1165.5" y="1473" width="0.9" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="1168.53" 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>futex_wait (1 samples, 0.08%)</title><rect x="889.1" y="1537" width="0.9" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="892.11" 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>ep_scan_ready_list (1 samples, 0.08%)</title><rect x="682.5" y="1521" width="0.9" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="685.47" 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>Lorg/eclipse/jetty/util/thread/QueuedThreadPool:::idleJobPoll (2 samples, 0.15%)</title><rect x="888.2" y="1697" width="1.8" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="891.20" 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>Ljava/lang/String:::toLowerCase (1 samples, 0.08%)</title><rect x="397.0" y="689" width="0.9" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="399.99" 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>Ljava/util/HashMap:::put (1 samples, 0.08%)</title><rect x="837.5" y="1057" width="0.9" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="840.45" 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>Lcom/fasterxml/jackson/jaxrs/base/ProviderBase:::_createParser (5 samples, 0.38%)</title><rect x="1115.7" y="705" width="4.5" height="15.0" fill="rgb(65,178,178)" rx="2" ry="2" />
<text text-anchor="" x="1118.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>nmethod::fix_oop_relocations (2 samples, 0.15%)</title><rect x="27.2" y="1761" width="1.8" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" />
<text text-anchor="" x="30.22" 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>Ljava/lang/String:::substring (1 samples, 0.08%)</title><rect x="552.0" y="1137" width="0.9" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="554.97" 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>Lorg/eclipse/jetty/server/HttpConnection:::releaseRequestBuffer (1 samples, 0.08%)</title><rect x="850.1" y="1569" width="0.9" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="853.14" 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>vfs_write (1 samples, 0.08%)</title><rect x="194.0" y="1825" width="0.9" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="196.98" y="1835.5" font-size="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.08%)</title><rect x="479.5" y="1585" width="0.9" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="482.46" 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 (4 samples, 0.31%)</title><rect x="309.1" y="1665" width="3.6" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="312.08" 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_stub (1 samples, 0.08%)</title><rect x="128.7" y="1761" width="0.9" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text text-anchor="" x="131.73" 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>ObjectMonitor::TrySpin_VaryDuration (1 samples, 0.08%)</title><rect x="479.5" y="1601" width="0.9" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="482.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>try_to_wake_up (1 samples, 0.08%)</title><rect x="244.7" y="1281" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="247.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>Lorg/eclipse/jetty/server/HttpConnection$SendCallback:::process (6 samples, 0.46%)</title><rect x="391.6" y="721" width="5.4" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text text-anchor="" x="394.55" 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>Lch/qos/logback/access/jetty/RequestLogImpl:::log (10 samples, 0.77%)</title><rect x="724.2" y="1553" width="9.0" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="727.16" 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>Lch/qos/logback/access/spi/AccessEvent:::getRequestURL (2 samples, 0.15%)</title><rect x="1036.8" y="1441" width="1.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1039.84" 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.15%)</title><rect x="262.0" y="1617" width="1.8" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="264.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>futex_wait_queue_me (4 samples, 0.31%)</title><rect x="13.6" y="1777" width="3.7" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="16.63" y="1787.5" font-size="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 (2 samples, 0.15%)</title><rect x="203.0" y="1601" width="1.9" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="206.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>tcp_poll (1 samples, 0.08%)</title><rect x="682.5" y="1473" width="0.9" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="685.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>Ljava/lang/String:::toLowerCase (2 samples, 0.15%)</title><rect x="436.9" y="993" width="1.8" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="439.87" 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>Lorg/eclipse/jetty/io/ChannelEndPoint:::flush (6 samples, 0.46%)</title><rect x="1092.1" y="657" width="5.5" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="1095.12" 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>copy_page_to_iter (1 samples, 0.08%)</title><rect x="290.0" y="1745" width="1.0" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="293.05" 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>Ljava/lang/ThreadLocal$ThreadLocalMap:::access$100 (4 samples, 0.31%)</title><rect x="194.9" y="1841" width="3.6" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="197.88" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lio/dropwizard/jetty/NonblockingServletHolder:::handle (1 samples, 0.08%)</title><rect x="682.5" y="1857" width="0.9" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text text-anchor="" x="685.47" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/InboundMessageContext$5:::apply (1 samples, 0.08%)</title><rect x="929.9" y="785" width="0.9" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="932.89" 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>Lorg/glassfish/jersey/server/ServerRuntime$CompletionCallbackRunner:::onComplete (1 samples, 0.08%)</title><rect x="607.3" y="1041" width="0.9" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text text-anchor="" x="610.25" 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>Ljava/util/concurrent/ConcurrentHashMap:::put (1 samples, 0.08%)</title><rect x="960.7" y="1025" width="0.9" height="15.0" fill="rgb(78,190,190)" rx="2" ry="2" />
<text text-anchor="" x="963.71" 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>Ljava/util/concurrent/ConcurrentHashMap$KeyIterator:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="212.1" y="1553" width="0.9" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="215.10" 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>Ljava/lang/ThreadLocal$ThreadLocalMap:::access$000 (1 samples, 0.08%)</title><rect x="786.7" y="577" width="0.9" height="15.0" fill="rgb(78,191,191)" rx="2" ry="2" />
<text text-anchor="" x="789.70" 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>ip_queue_xmit (1 samples, 0.08%)</title><rect x="396.1" y="417" width="0.9" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="399.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>Ljava/util/Collections:::enumeration (1 samples, 0.08%)</title><rect x="836.5" y="1089" width="1.0" height="15.0" fill="rgb(64,177,177)" rx="2" ry="2" />
<text text-anchor="" x="839.54" 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>Lorg/jvnet/hk2/internal/FactoryCreator:::create (11 samples, 0.84%)</title><rect x="417.8" y="753" width="10.0" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="420.83" 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>Lorg/glassfish/hk2/utilities/cache/Cache:::compute (3 samples, 0.23%)</title><rect x="420.6" y="609" width="2.7" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text text-anchor="" x="423.55" 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>futex_wait_queue_me (1 samples, 0.08%)</title><rect x="1017.8" y="1793" width="0.9" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="1020.80" y="1803.5" font-size="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 (2 samples, 0.15%)</title><rect x="987.0" y="1633" width="1.8" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="989.99" 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>Lorg/glassfish/jersey/message/internal/WriterInterceptorExecutor:::proceed (1 samples, 0.08%)</title><rect x="933.5" y="913" width="0.9" height="15.0" fill="rgb(78,191,191)" rx="2" ry="2" />
<text text-anchor="" x="936.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>sys_epoll_ctl (1 samples, 0.08%)</title><rect x="324.5" y="1473" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="327.49" 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>Lorg/eclipse/jetty/server/handler/HandlerWrapper:::handle (13 samples, 1.00%)</title><rect x="1177.3" y="1553" width="11.8" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="1180.31" 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 (1 samples, 0.08%)</title><rect x="161.4" y="1681" width="0.9" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="164.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>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="73.4" y="1793" width="0.9" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="76.44" y="1803.5" font-size="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.08%)</title><rect x="293.7" y="1585" width="0.9" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="296.67" 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>Lorg/eclipse/jetty/http/HttpFields$Itr:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="1138.3" y="1057" width="0.9" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="1141.34" 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>Lch/qos/logback/access/spi/AccessEvent:::getRemoteHost (1 samples, 0.08%)</title><rect x="329.0" y="1441" width="0.9" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text text-anchor="" x="332.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>CodeHeap::find_start (1 samples, 0.08%)</title><rect x="546.5" y="913" width="0.9" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="549.53" 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.08%)</title><rect x="708.8" y="1841" width="0.9" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="711.76" y="1851.5" font-size="12" 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.08%)</title><rect x="883.7" y="1761" width="0.9" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="886.67" 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>call_function_single_interrupt (1 samples, 0.08%)</title><rect x="423.3" y="593" width="0.9" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="426.27" 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>Lorg/glassfish/hk2/utilities/AbstractActiveDescriptor:::isReified (1 samples, 0.08%)</title><rect x="432.3" y="849" width="0.9" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="435.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>nf_hook_slow (1 samples, 0.08%)</title><rect x="853.8" y="1601" width="0.9" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="856.76" 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>JavaCalls::call_helper (1 samples, 0.08%)</title><rect x="128.7" y="1777" width="0.9" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="131.73" y="1787.5" font-size="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.08%)</title><rect x="721.4" y="1537" width="1.0" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="724.44" 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>Ljava/lang/StringBuffer:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="1101.2" y="849" width="0.9" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="1104.18" 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>Ljava/lang/Object:::notify (1 samples, 0.08%)</title><rect x="808.4" y="417" width="1.0" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text text-anchor="" x="811.45" 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>Ljava/util/BitSet:::expandTo (1 samples, 0.08%)</title><rect x="523.0" y="1505" width="0.9" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="525.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>Lorg/glassfish/jersey/server/ContainerFilteringStage$ResponseFilterStage:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="766.8" y="977" width="0.9" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text text-anchor="" x="769.76" 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>sys_futex (2 samples, 0.15%)</title><rect x="165.0" y="1841" width="1.8" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="167.98" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc (1 samples, 0.08%)</title><rect x="324.5" y="1457" width="0.9" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="327.49" 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>Lch/qos/logback/access/spi/AccessEvent:::getRequestHeaderMap (1 samples, 0.08%)</title><rect x="529.3" y="1441" width="0.9" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="532.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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getService (2 samples, 0.15%)</title><rect x="923.5" y="929" width="1.9" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="926.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>Ljava/util/regex/Pattern:::compile (2 samples, 0.15%)</title><rect x="581.0" y="865" width="1.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="583.97" 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>Lorg/glassfish/jersey/message/internal/OutboundMessageContext:::singleHeader (1 samples, 0.08%)</title><rect x="397.0" y="817" width="0.9" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="399.99" 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>sys_futex (2 samples, 0.15%)</title><rect x="881.0" y="1841" width="1.8" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="883.95" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject:::addConditionWaiter (1 samples, 0.08%)</title><rect x="319.0" y="1649" width="1.0" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="322.05" 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>native_write_cr2 (1 samples, 0.08%)</title><rect x="987.9" y="1601" width="0.9" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="990.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>sock_recvmsg (1 samples, 0.08%)</title><rect x="1004.2" y="1745" width="0.9" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="1007.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>Lcom/fasterxml/jackson/core/util/TextBuffer:::buf (1 samples, 0.08%)</title><rect x="804.8" y="593" width="0.9" height="15.0" fill="rgb(69,183,183)" rx="2" ry="2" />
<text text-anchor="" x="807.82" 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>Lorg/jvnet/hk2/internal/ClazzCreator:::resolve (1 samples, 0.08%)</title><rect x="419.6" y="625" width="1.0" height="15.0" fill="rgb(93,205,205)" rx="2" ry="2" />
<text text-anchor="" x="422.65" 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>oop_Relocation::unpack_data (1 samples, 0.08%)</title><rect x="116.0" y="1729" width="0.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="119.04" 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>Lcom/codahale/metrics/Timer:::update (1 samples, 0.08%)</title><rect x="1040.5" y="1425" width="0.9" height="15.0" fill="rgb(81,194,194)" rx="2" ry="2" />
<text text-anchor="" x="1043.46" 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>Lorg/glassfish/jersey/server/internal/routing/MethodSelectingRouter:::getMethodRouter (1 samples, 0.08%)</title><rect x="771.3" y="865" width="0.9" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text text-anchor="" x="774.29" 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>Ljava/lang/String:::toLowerCase (1 samples, 0.08%)</title><rect x="622.7" y="977" width="0.9" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text text-anchor="" x="625.66" 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>Lorg/eclipse/jetty/io/WriteFlusher:::write (6 samples, 0.46%)</title><rect x="391.6" y="689" width="5.4" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="394.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>do_futex (1 samples, 0.08%)</title><rect x="977.9" y="1537" width="0.9" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="980.93" 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_cond_wait@@GLIBC_2.3.2 (4 samples, 0.31%)</title><rect x="50.8" y="1857" width="3.6" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text text-anchor="" x="53.78" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl$IgdCacheKey:::equals (1 samples, 0.08%)</title><rect x="761.3" y="865" width="0.9" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" />
<text text-anchor="" x="764.32" 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>pick_next_task_fair (1 samples, 0.08%)</title><rect x="467.7" y="1729" width="0.9" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="470.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>Lorg/glassfish/jersey/message/internal/MessageBodyFactory:::getMessageBodyWriter (1 samples, 0.08%)</title><rect x="933.5" y="849" width="0.9" height="15.0" fill="rgb(54,168,168)" rx="2" ry="2" />
<text text-anchor="" x="936.52" 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>Lorg/eclipse/jetty/server/handler/HandlerWrapper:::handle (123 samples, 9.45%)</title><rect x="336.3" y="1441" width="111.4" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="339.27" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/net/URI$Parser:::scan (1 samples, 0.08%)</title><rect x="1142.9" y="1089" width="0.9" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="1145.87" 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_futex (2 samples, 0.15%)</title><rect x="884.6" y="1825" width="1.8" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="887.58" y="1835.5" font-size="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.08%)</title><rect x="796.7" y="833" width="0.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="799.67" 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>Lorg/glassfish/jersey/message/internal/CommittingOutputStream:::commit (3 samples, 0.23%)</title><rect x="578.2" y="913" width="2.8" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="581.25" 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>Ljavax/ws/rs/core/AbstractMultivaluedMap:::get (1 samples, 0.08%)</title><rect x="381.6" y="817" width="0.9" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="384.58" 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_Throwable::fill_in_stack_trace (7 samples, 0.54%)</title><rect x="737.8" y="961" width="6.3" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="740.76" 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 (1 samples, 0.08%)</title><rect x="677.0" y="1761" width="0.9" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="680.04" 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_softirq (1 samples, 0.08%)</title><rect x="785.8" y="561" width="0.9" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="788.79" 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>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:::release (1 samples, 0.08%)</title><rect x="980.6" y="1585" width="1.0" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="983.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>Lorg/eclipse/jetty/util/thread/Locker:::lock (2 samples, 0.15%)</title><rect x="519.3" y="1617" width="1.9" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="522.34" 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>new_sync_read (1 samples, 0.08%)</title><rect x="1018.7" y="1793" width="0.9" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="1021.71" y="1803.5" font-size="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 (161 samples, 12.37%)</title><rect x="317.2" y="1889" width="145.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="320.24" y="1899.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>Lorg/glassfish/jersey/server/ServerRuntime$Responder:::process (23 samples, 1.77%)</title><rect x="384.3" y="1009" width="20.8" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="387.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>process_backlog (3 samples, 0.23%)</title><rect x="690.6" y="1473" width="2.7" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="693.63" 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>Lsun/nio/ch/SelectorImpl:::lockAndDoSelect (1 samples, 0.08%)</title><rect x="720.5" y="1585" width="0.9" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="723.54" 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>Lcom/codahale/metrics/ExponentiallyDecayingReservoir:::update (1 samples, 0.08%)</title><rect x="1181.8" y="801" width="0.9" height="15.0" fill="rgb(90,236,90)" rx="2" ry="2" />
<text text-anchor="" x="1184.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>ip_output (3 samples, 0.23%)</title><rect x="690.6" y="1601" width="2.7" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="693.63" 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>Lorg/glassfish/jersey/server/model/ResourceMethodInvoker:::invoke (20 samples, 1.54%)</title><rect x="587.3" y="977" width="18.1" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="590.31" 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>Lorg/glassfish/jersey/uri/internal/JerseyUriBuilder:::schemeSpecificPart (21 samples, 1.61%)</title><rect x="902.7" y="1153" width="19.0" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="905.70" 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>tcp_established_options (1 samples, 0.08%)</title><rect x="623.6" y="945" width="0.9" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="626.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>Ljava/util/regex/Pattern$Start:::match (4 samples, 0.31%)</title><rect x="748.6" y="993" width="3.7" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" />
<text text-anchor="" x="751.63" 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>[libpthread-2.23.so] (1 samples, 0.08%)</title><rect x="970.7" y="1553" width="0.9" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="973.68" 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>default_wake_function (1 samples, 0.08%)</title><rect x="245.6" y="1425" width="0.9" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="248.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>Ljava/lang/ThreadLocal$ThreadLocalMap:::getEntry (1 samples, 0.08%)</title><rect x="969.8" y="1473" width="0.9" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="972.77" 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>Ljava/lang/String:::length (2 samples, 0.15%)</title><rect x="1135.6" y="1073" width="1.8" height="15.0" fill="rgb(105,216,216)" rx="2" ry="2" />
<text text-anchor="" x="1138.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>Lorg/glassfish/jersey/server/model/internal/JavaResourceMethodDispatcherProvider$AbstractMethodParamInvoker:::getParamValues (18 samples, 1.38%)</title><rect x="1110.2" y="929" width="16.4" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="1113.25" 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>native_sched_clock (1 samples, 0.08%)</title><rect x="488.5" y="1841" width="0.9" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="491.53" y="1851.5" font-size="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.08%)</title><rect x="396.1" y="257" width="0.9" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="399.08" 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>Lorg/glassfish/hk2/utilities/reflection/ReflectionHelper:::getRawClass (1 samples, 0.08%)</title><rect x="812.1" y="753" width="0.9" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="815.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>vfs_write (1 samples, 0.08%)</title><rect x="199.4" y="1793" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="202.42" y="1803.5" font-size="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_to_backlog (1 samples, 0.08%)</title><rect x="1096.7" y="241" width="0.9" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="1099.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>Ljava/util/AbstractCollection:::addAll (1 samples, 0.08%)</title><rect x="800.3" y="785" width="0.9" height="15.0" fill="rgb(104,214,214)" rx="2" ry="2" />
<text text-anchor="" x="803.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>pipe_write (3 samples, 0.23%)</title><rect x="267.4" y="1633" width="2.7" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="270.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>Lorg/eclipse/jetty/server/handler/gzip/GzipHandler:::handle (125 samples, 9.60%)</title><rect x="336.3" y="1489" width="113.3" height="15.0" fill="rgb(78,225,78)" rx="2" ry="2" />
<text text-anchor="" x="339.27" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/j..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (2 samples, 0.15%)</title><rect x="1011.5" y="1809" width="1.8" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="1014.46" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/io/ManagedSelector$SelectorProducer:::produce (6 samples, 0.46%)</title><rect x="890.0" y="1649" width="5.5" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="893.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>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::keyComparatorHash (1 samples, 0.08%)</title><rect x="1104.8" y="849" width="0.9" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="1107.81" 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_event_nmi_handler (1 samples, 0.08%)</title><rect x="13.6" y="1553" width="0.9" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="16.63" 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>Lorg/eclipse/jetty/server/Request:::extractContentParameters (1 samples, 0.08%)</title><rect x="731.4" y="1393" width="0.9" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="734.41" 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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getService (1 samples, 0.08%)</title><rect x="828.4" y="897" width="0.9" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="831.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>native_write_msr_safe (1 samples, 0.08%)</title><rect x="161.4" y="1617" width="0.9" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="164.35" 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>process_backlog (1 samples, 0.08%)</title><rect x="578.2" y="257" width="1.0" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="581.25" 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>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.31%)</title><rect x="107.9" y="1873" width="3.6" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="110.88" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (1 samples, 0.08%)</title><rect x="572.8" y="785" width="0.9" height="15.0" fill="rgb(79,191,191)" rx="2" ry="2" />
<text text-anchor="" x="575.81" 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.08%)</title><rect x="285.5" y="1793" width="0.9" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="288.51" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/process/ReferencesInitializer:::apply (9 samples, 0.69%)</title><rect x="366.2" y="977" width="8.1" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text text-anchor="" x="369.18" 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>Lorg/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (1 samples, 0.08%)</title><rect x="409.7" y="705" width="0.9" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="412.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>Ljava/util/TimSort:::sort (1 samples, 0.08%)</title><rect x="377.1" y="897" width="0.9" height="15.0" fill="rgb(71,185,185)" rx="2" ry="2" />
<text text-anchor="" x="380.05" 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 (1 samples, 0.08%)</title><rect x="50.8" y="1761" width="0.9" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="53.78" 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>Lorg/eclipse/jetty/server/HttpChannelOverHttp:::content (1 samples, 0.08%)</title><rect x="595.5" y="465" width="0.9" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="598.47" 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 (2 samples, 0.15%)</title><rect x="95.2" y="1553" width="1.8" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="98.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>Lcom/fasterxml/jackson/core/json/ByteSourceJsonBootstrapper:::ensureLoaded (2 samples, 0.15%)</title><rect x="594.6" y="625" width="1.8" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text text-anchor="" x="597.56" 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>do_futex (6 samples, 0.46%)</title><rect x="695.2" y="1809" width="5.4" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="698.16" y="1819.5" font-size="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.15%)</title><rect x="204.9" y="1601" width="1.8" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="207.85" 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>BacktraceBuilder::push (3 samples, 0.23%)</title><rect x="738.7" y="929" width="2.7" height="15.0" fill="rgb(218,218,65)" rx="2" ry="2" />
<text text-anchor="" x="741.66" 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>Lorg/jvnet/hk2/internal/SystemDescriptor:::create (6 samples, 0.46%)</title><rect x="600.0" y="769" width="5.4" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text text-anchor="" x="603.00" 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>sock_poll (1 samples, 0.08%)</title><rect x="291.9" y="1777" width="0.9" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="294.86" y="1787.5" font-size="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 (1 samples, 0.08%)</title><rect x="1006.0" y="1777" width="0.9" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="1009.02" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/net/URI$Parser:::substring (1 samples, 0.08%)</title><rect x="1146.5" y="1121" width="0.9" height="15.0" fill="rgb(104,214,214)" rx="2" ry="2" />
<text text-anchor="" x="1149.50" 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>intel_pmu_enable_all (2 samples, 0.15%)</title><rect x="710.6" y="1665" width="1.8" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="713.57" 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>Lorg/eclipse/jetty/io/ManagedSelector$SelectorProducer:::select (5 samples, 0.38%)</title><rect x="521.2" y="1633" width="4.5" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text text-anchor="" x="524.15" 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>Lorg/glassfish/jersey/message/internal/InboundMessageContext$5:::apply (1 samples, 0.08%)</title><rect x="438.7" y="1073" width="0.9" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="441.68" 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>JavaThread::run (146 samples, 11.21%)</title><rect x="517.5" y="1857" width="132.3" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text text-anchor="" x="520.53" y="1867.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>vtable stub (1 samples, 0.08%)</title><rect x="227.5" y="1585" width="0.9" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text text-anchor="" x="230.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>Lsun/nio/ch/SelectorImpl:::select (3 samples, 0.23%)</title><rect x="890.9" y="1601" width="2.7" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="893.92" 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>Lch/qos/logback/core/UnsynchronizedAppenderBase:::doAppend (2 samples, 0.15%)</title><rect x="895.5" y="1521" width="1.8" height="15.0" fill="rgb(54,169,169)" rx="2" ry="2" />
<text text-anchor="" x="898.45" 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>Lorg/glassfish/jersey/server/model/ResourceMethodInvoker:::apply (17 samples, 1.31%)</title><rect x="939.0" y="993" width="15.4" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="941.96" 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>Lorg/hibernate/validator/internal/metadata/raw/ExecutableElement:::forMethod (2 samples, 0.15%)</title><rect x="407.9" y="881" width="1.8" height="15.0" fill="rgb(71,185,185)" rx="2" ry="2" />
<text text-anchor="" x="410.86" 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>nmi_handle (2 samples, 0.15%)</title><rect x="84.3" y="1585" width="1.8" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="87.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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetService (1 samples, 0.08%)</title><rect x="383.4" y="833" width="0.9" height="15.0" fill="rgb(107,218,218)" rx="2" ry="2" />
<text text-anchor="" x="386.39" 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>Ljava/util/BitSet:::set (1 samples, 0.08%)</title><rect x="323.6" y="1521" width="0.9" height="15.0" fill="rgb(92,203,203)" rx="2" ry="2" />
<text text-anchor="" x="326.58" 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>Ljava/util/HashMap:::getNode (1 samples, 0.08%)</title><rect x="810.3" y="689" width="0.9" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="813.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>Ljava/lang/Thread:::setNativeName (1 samples, 0.08%)</title><rect x="735.9" y="1249" width="1.0" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text text-anchor="" x="738.94" 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_write_xmit (1 samples, 0.08%)</title><rect x="1015.1" y="1681" width="0.9" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="1018.08" 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>Lorg/eclipse/jetty/io/ChannelEndPoint:::fill (3 samples, 0.23%)</title><rect x="844.7" y="1569" width="2.7" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="847.70" 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_read (1 samples, 0.08%)</title><rect x="981.6" y="1697" width="0.9" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="984.55" 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>[unknown] (4 samples, 0.31%)</title><rect x="649.8" y="1889" width="3.7" height="15.0" fill="rgb(202,54,54)" rx="2" ry="2" />
<text text-anchor="" x="652.85" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::indexOf (1 samples, 0.08%)</title><rect x="1068.6" y="1057" width="0.9" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="1071.56" 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>Lorg/jvnet/hk2/internal/ClazzCreator:::resolve (2 samples, 0.15%)</title><rect x="431.4" y="929" width="1.8" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="434.43" 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_pmu_enable.part.89 (2 samples, 0.15%)</title><rect x="169.5" y="1569" width="1.8" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="172.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>Lsun/nio/ch/SocketDispatcher:::writev (1 samples, 0.08%)</title><rect x="788.5" y="609" width="0.9" height="15.0" fill="rgb(69,183,183)" rx="2" ry="2" />
<text text-anchor="" x="791.51" 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>Lorg/eclipse/jetty/server/handler/ContextHandler:::doHandle (12 samples, 0.92%)</title><rect x="1178.2" y="1377" width="10.9" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" />
<text text-anchor="" x="1181.22" 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>Lorg/glassfish/jersey/server/model/internal/AbstractJavaResourceMethodDispatcher:::dispatch (23 samples, 1.77%)</title><rect x="407.0" y="961" width="20.8" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="409.96" 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>Lorg/glassfish/jersey/server/internal/MappableExceptionWrapperInterceptor:::aroundWriteTo (4 samples, 0.31%)</title><rect x="574.6" y="929" width="3.6" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text text-anchor="" x="577.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>apparmor_socket_recvmsg (1 samples, 0.08%)</title><rect x="1004.2" y="1713" width="0.9" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="1007.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>Lorg/glassfish/jersey/uri/UriTemplate:::createURIWithStringValues (3 samples, 0.23%)</title><rect x="839.3" y="1137" width="2.7" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text text-anchor="" x="842.26" 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>G1ParPreserveCMReferentsTask::work (1 samples, 0.08%)</title><rect x="44.4" y="1841" width="0.9" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text text-anchor="" x="47.44" y="1851.5" font-size="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 (1 samples, 0.08%)</title><rect x="25.4" y="1745" width="0.9" height="15.0" fill="rgb(188,188,54)" rx="2" ry="2" />
<text text-anchor="" x="28.41" 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>pthread_cond_timedwait@@GLIBC_2.3.2 (1 samples, 0.08%)</title><rect x="498.5" y="1841" width="0.9" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text text-anchor="" x="501.49" y="1851.5" font-size="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 samples, 0.08%)</title><rect x="124.2" y="1857" width="0.9" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="127.19" y="1867.5" font-size="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.23%)</title><rect x="873.7" y="1729" width="2.7" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="876.70" 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>Lorg/glassfish/jersey/uri/internal/JerseyUriBuilder:::uri (21 samples, 1.61%)</title><rect x="538.4" y="1169" width="19.0" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="541.37" 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>pthread_cond_timedwait@@GLIBC_2.3.2 (5 samples, 0.38%)</title><rect x="709.7" y="1873" width="4.5" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="712.66" y="1883.5" font-size="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::ReduceInst_Interior (1 samples, 0.08%)</title><rect x="140.5" y="1681" width="0.9" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="143.51" 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>Lorg/eclipse/jetty/http/HttpParser:::parseLine (1 samples, 0.08%)</title><rect x="1158.3" y="1553" width="0.9" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text text-anchor="" x="1161.28" 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>vfs_writev (1 samples, 0.08%)</title><rect x="1150.1" y="1345" width="0.9" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="1153.12" 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>Lorg/eclipse/jetty/http/HttpParser:::quickStart (2 samples, 0.15%)</title><rect x="1159.2" y="1553" width="1.8" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="1162.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>Lorg/glassfish/jersey/server/spi/internal/ParameterValueHelper:::getParameterValues (20 samples, 1.54%)</title><rect x="409.7" y="913" width="18.1" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="412.68" 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 (1 samples, 0.08%)</title><rect x="396.1" y="353" width="0.9" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="399.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>intel_pmu_enable_all (2 samples, 0.15%)</title><rect x="120.6" y="1665" width="1.8" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="123.57" 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>itable stub (2 samples, 0.15%)</title><rect x="570.1" y="929" width="1.8" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" />
<text text-anchor="" x="573.09" 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>Lorg/glassfish/jersey/message/internal/ReaderInterceptorExecutor$TerminalReaderInterceptor:::invokeReadFrom (10 samples, 0.77%)</title><rect x="1111.2" y="753" width="9.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1114.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>Lcom/codahale/metrics/Histogram:::update (1 samples, 0.08%)</title><rect x="1181.8" y="833" width="0.9" height="15.0" fill="rgb(78,190,190)" rx="2" ry="2" />
<text text-anchor="" x="1184.84" 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>Lorg/glassfish/jersey/server/internal/inject/AbstractContainerRequestValueFactory:::getContainerRequest (12 samples, 0.92%)</title><rect x="416.9" y="865" width="10.9" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" />
<text text-anchor="" x="419.93" 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>sys_futex (2 samples, 0.15%)</title><rect x="882.8" y="1841" width="1.8" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="885.76" y="1851.5" font-size="12" 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.15%)</title><rect x="68.9" y="1777" width="1.8" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="71.91" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BacktraceBuilder::push (4 samples, 0.31%)</title><rect x="1049.5" y="929" width="3.6" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text text-anchor="" x="1052.52" 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>x86_pmu_enable (2 samples, 0.15%)</title><rect x="194.9" y="1633" width="1.8" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="197.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>Ljava/lang/String:::format (7 samples, 0.54%)</title><rect x="1055.9" y="1089" width="6.3" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="1058.87" 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>end_repeat_nmi (1 samples, 0.08%)</title><rect x="997.9" y="1569" width="0.9" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="1000.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>Ljava/lang/Throwable:::fillInStackTrace (1 samples, 0.08%)</title><rect x="1178.2" y="1025" width="0.9" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text text-anchor="" x="1181.22" 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>Lorg/hibernate/validator/internal/engine/ValidatorImpl:::validateParameters (1 samples, 0.08%)</title><rect x="587.3" y="897" width="0.9" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="590.31" 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>call_stub (1 samples, 0.08%)</title><rect x="653.5" y="1761" width="0.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="656.47" 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>sys_read (1 samples, 0.08%)</title><rect x="494.9" y="1809" width="0.9" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="497.87" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/Request:::recycle (1 samples, 0.08%)</title><rect x="733.2" y="1505" width="0.9" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="736.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>Lorg/glassfish/jersey/message/internal/WriterInterceptorExecutor:::proceed (4 samples, 0.31%)</title><rect x="574.6" y="913" width="3.6" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="577.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>CollectedHeap::new_store_pre_barrier (1 samples, 0.08%)</title><rect x="1185.5" y="833" width="0.9" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" />
<text text-anchor="" x="1188.47" 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>Lorg/glassfish/hk2/utilities/reflection/ReflectionHelper:::getRawClass (1 samples, 0.08%)</title><rect x="558.3" y="897" width="0.9" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="561.31" 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 (3 samples, 0.23%)</title><rect x="665.3" y="1505" width="2.7" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="668.25" 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_local_out (1 samples, 0.08%)</title><rect x="439.6" y="913" width="0.9" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="442.59" 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>Lorg/glassfish/jersey/internal/Errors$1:::call (6 samples, 0.46%)</title><rect x="1180.0" y="1057" width="5.5" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="1183.03" 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>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.31%)</title><rect x="1172.8" y="1873" width="3.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="1175.78" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljersey/repackaged/com/google/common/net/InetAddresses:::forUriString (21 samples, 1.61%)</title><rect x="902.7" y="1105" width="19.0" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="905.70" 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>Lorg/glassfish/jersey/process/internal/Stages$LinkedStage:::apply (4 samples, 0.31%)</title><rect x="923.5" y="993" width="3.7" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text text-anchor="" x="926.55" 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 (4 samples, 0.31%)</title><rect x="987.0" y="1761" width="3.6" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="989.99" 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>Lorg/eclipse/jetty/server/Request:::getHeaderNames (1 samples, 0.08%)</title><rect x="1138.3" y="1121" width="0.9" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="1141.34" 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.08%)</title><rect x="1038.6" y="1473" width="1.0" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="1041.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>tcp_push (1 samples, 0.08%)</title><rect x="1015.1" y="1713" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="1018.08" 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 (4 samples, 0.31%)</title><rect x="664.3" y="1553" width="3.7" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="667.35" 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>Lorg/glassfish/jersey/uri/internal/UriParser:::parseComponent (2 samples, 0.15%)</title><rect x="1065.8" y="1105" width="1.8" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="1068.84" 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_lang_Throwable::fill_in_stack_trace (17 samples, 1.31%)</title><rect x="337.2" y="945" width="15.4" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" />
<text text-anchor="" x="340.17" 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>Ljava/util/Collections:::sort (1 samples, 0.08%)</title><rect x="378.0" y="945" width="0.9" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="380.96" 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>ip_output (1 samples, 0.08%)</title><rect x="1096.7" y="369" width="0.9" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="1099.65" 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>_IO_vsnprintf (5 samples, 0.38%)</title><rect x="102.4" y="1873" width="4.6" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text text-anchor="" x="105.44" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/net/URI:::&lt;init&gt; (3 samples, 0.23%)</title><rect x="626.3" y="1153" width="2.7" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="629.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>_cond_resched (1 samples, 0.08%)</title><rect x="873.7" y="1697" width="0.9" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="876.70" 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>native_write_msr_safe (2 samples, 0.15%)</title><rect x="425.1" y="593" width="1.8" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="428.08" 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>Lsun/nio/ch/SocketChannelImpl:::write (6 samples, 0.46%)</title><rect x="1092.1" y="641" width="5.5" height="15.0" fill="rgb(69,218,69)" rx="2" ry="2" />
<text text-anchor="" x="1095.12" 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>Lorg/eclipse/jetty/http/HttpParser:::parseHeaders (2 samples, 0.15%)</title><rect x="847.4" y="1553" width="1.8" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text text-anchor="" x="850.42" 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.08%)</title><rect x="528.4" y="1281" width="0.9" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="531.40" 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>Ljava/lang/AbstractStringBuilder:::append (1 samples, 0.08%)</title><rect x="730.5" y="1409" width="0.9" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="733.51" 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>GangWorker::loop (3 samples, 0.23%)</title><rect x="44.4" y="1857" width="2.8" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="47.44" y="1867.5" font-size="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.08%)</title><rect x="291.0" y="1793" width="0.9" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="293.95" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/util/thread/strategy/ExecuteProduceConsume:::run (101 samples, 7.76%)</title><rect x="890.0" y="1697" width="91.6" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="893.02" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclip..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (1 samples, 0.08%)</title><rect x="439.6" y="1041" width="0.9" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="442.59" 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>Lorg/eclipse/jetty/server/HttpOutput:::write (3 samples, 0.23%)</title><rect x="934.4" y="817" width="2.7" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="937.42" 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>Lorg/eclipse/jetty/server/HttpChannelState:::handling (1 samples, 0.08%)</title><rect x="532.0" y="1569" width="0.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="535.03" 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>current_kernel_time64 (1 samples, 0.08%)</title><rect x="491.2" y="1713" width="1.0" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="494.24" 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>Ljava/lang/Character:::toString (1 samples, 0.08%)</title><rect x="1062.2" y="1073" width="0.9" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="1065.21" 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>Lorg/glassfish/jersey/server/ServerRuntime$2:::run (68 samples, 5.22%)</title><rect x="366.2" y="1025" width="61.6" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="369.18" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/g..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.15%)</title><rect x="105.2" y="1841" width="1.8" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="108.16" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/SystemDescriptor:::create (6 samples, 0.46%)</title><rect x="1130.2" y="977" width="5.4" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text text-anchor="" x="1133.18" 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 (2 samples, 0.15%)</title><rect x="165.0" y="1761" width="1.8" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="167.98" 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>Ljava/lang/ThreadLocal:::get (1 samples, 0.08%)</title><rect x="758.6" y="1057" width="0.9" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="761.60" 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>GangWorker::loop (9 samples, 0.69%)</title><rect x="20.9" y="1857" width="8.1" height="15.0" fill="rgb(194,194,56)" rx="2" ry="2" />
<text text-anchor="" x="23.88" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer:::&lt;init&gt; (2 samples, 0.15%)</title><rect x="596.4" y="625" width="1.8" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="599.37" 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>Lio/dropwizard/jersey/validation/DropwizardConfiguredValidator:::getGroup (1 samples, 0.08%)</title><rect x="1106.6" y="897" width="0.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1109.62" 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>Lch/qos/logback/core/AsyncAppenderBase:::put (1 samples, 0.08%)</title><rect x="895.5" y="1489" width="0.9" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="898.45" 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>Lorg/eclipse/jetty/http/MimeTypes:::getCharsetFromContentType (1 samples, 0.08%)</title><rect x="1098.5" y="801" width="0.9" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text text-anchor="" x="1101.46" 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>[unknown] (8 samples, 0.61%)</title><rect x="47.2" y="1889" width="7.2" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text text-anchor="" x="50.16" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.08%)</title><rect x="653.5" y="1681" width="0.9" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text text-anchor="" x="656.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>JavaCalls::call_virtual (152 samples, 11.67%)</title><rect x="714.2" y="1793" width="137.8" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="717.19" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaCalls::call_v..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::oop_oop_iterate_nv (1 samples, 0.08%)</title><rect x="46.3" y="1713" width="0.9" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" />
<text text-anchor="" x="49.25" 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>Ljava/lang/String:::length (1 samples, 0.08%)</title><rect x="922.6" y="1137" width="0.9" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="925.64" 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>Lorg/eclipse/jetty/server/Response:::addHeader (1 samples, 0.08%)</title><rect x="1098.5" y="833" width="0.9" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="1101.46" 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>Lorg/eclipse/jetty/server/HttpChannelOverHttp:::messageComplete (1 samples, 0.08%)</title><rect x="481.3" y="1857" width="0.9" height="15.0" fill="rgb(80,192,192)" rx="2" ry="2" />
<text text-anchor="" x="484.27" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lio/dropwizard/jersey/validation/DropwizardConfiguredValidator:::validateResourceAndInputParams (1 samples, 0.08%)</title><rect x="587.3" y="913" width="0.9" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="590.31" 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>itable stub (1 samples, 0.08%)</title><rect x="428.7" y="1041" width="0.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="431.71" 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>do_futex (1 samples, 0.08%)</title><rect x="880.0" y="1777" width="1.0" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="883.05" y="1787.5" font-size="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.08%)</title><rect x="291.0" y="1665" width="0.9" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="293.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>Lorg/eclipse/jetty/server/HttpConnection:::fillRequestBuffer (2 samples, 0.15%)</title><rect x="1152.8" y="1585" width="1.9" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text text-anchor="" x="1155.84" 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>Lorg/eclipse/jetty/server/HttpConnection:::onFillable (92 samples, 7.07%)</title><rect x="895.5" y="1601" width="83.3" height="15.0" fill="rgb(90,236,90)" rx="2" ry="2" />
<text text-anchor="" x="898.45" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/ecli..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/routing/MethodSelectingRouter$4:::apply (1 samples, 0.08%)</title><rect x="569.2" y="897" width="0.9" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="572.19" 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 (2 samples, 0.15%)</title><rect x="1013.3" y="1841" width="1.8" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="1016.27" y="1851.5" font-size="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.15%)</title><rect x="68.9" y="1697" width="1.8" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="71.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>tcp_push (2 samples, 0.15%)</title><rect x="1007.8" y="1697" width="1.8" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="1010.83" 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>[libc-2.23.so] (1 samples, 0.08%)</title><rect x="682.5" y="1585" width="0.9" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text text-anchor="" x="685.47" 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.08%)</title><rect x="636.3" y="1377" width="0.9" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="639.25" 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>G1CollectedHeap::can_elide_initializing_store_barrier (1 samples, 0.08%)</title><rect x="1185.5" y="817" width="0.9" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text text-anchor="" x="1188.47" 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>Lsun/nio/ch/SocketChannelImpl:::read (3 samples, 0.23%)</title><rect x="844.7" y="1553" width="2.7" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text text-anchor="" x="847.70" 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>Lorg/eclipse/jetty/server/HttpInput:::consumeNonContent (1 samples, 0.08%)</title><rect x="1184.6" y="561" width="0.9" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text text-anchor="" x="1187.56" 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>ep_poll (2 samples, 0.15%)</title><rect x="486.7" y="1809" width="1.8" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="489.71" y="1819.5" font-size="12" 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.15%)</title><rect x="486.7" y="1761" width="1.8" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="489.71" 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>Lorg/eclipse/jetty/http/HttpParser:::parseNext (3 samples, 0.23%)</title><rect x="847.4" y="1569" width="2.7" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text text-anchor="" x="850.42" 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>Lorg/glassfish/jersey/message/internal/InboundMessageContext:::singleHeader (1 samples, 0.08%)</title><rect x="771.3" y="833" width="0.9" height="15.0" fill="rgb(72,221,72)" rx="2" ry="2" />
<text text-anchor="" x="774.29" 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>Lch/qos/logback/access/spi/AccessEvent:::getRequestURL (1 samples, 0.08%)</title><rect x="896.4" y="1441" width="0.9" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text text-anchor="" x="899.36" 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>Lorg/eclipse/jetty/servlet/ServletHandler:::doHandle (78 samples, 5.99%)</title><rect x="899.1" y="1361" width="70.7" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="902.08" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/ec..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jlong_disjoint_arraycopy (1 samples, 0.08%)</title><rect x="1064.9" y="1041" width="0.9" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text text-anchor="" x="1067.93" 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>Lorg/glassfish/jersey/internal/util/collection/ConcurrentHashMapV8:::get (1 samples, 0.08%)</title><rect x="590.0" y="737" width="0.9" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text text-anchor="" x="593.03" 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>futex_wait_queue_me (2 samples, 0.15%)</title><rect x="125.1" y="1729" width="1.8" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="128.10" 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>schedule (4 samples, 0.31%)</title><rect x="37.2" y="1761" width="3.6" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="40.19" 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>jlong_disjoint_arraycopy (1 samples, 0.08%)</title><rect x="648.0" y="1553" width="0.9" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="651.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>Lorg/jvnet/hk2/internal/ThreeThirtyResolver:::resolve (2 samples, 0.15%)</title><rect x="827.5" y="913" width="1.8" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text text-anchor="" x="830.48" 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>__wake_up_common (1 samples, 0.08%)</title><rect x="1008.7" y="1313" width="0.9" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="1011.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>Lsun/nio/ch/Util:::getTemporaryDirectBuffer (1 samples, 0.08%)</title><rect x="454.1" y="1521" width="0.9" height="15.0" fill="rgb(104,215,215)" rx="2" ry="2" />
<text text-anchor="" x="457.09" 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>deactivate_task (1 samples, 0.08%)</title><rect x="273.7" y="1745" width="0.9" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="276.73" 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>new_sync_read (1 samples, 0.08%)</title><rect x="977.0" y="1505" width="0.9" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="980.02" 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.15%)</title><rect x="710.6" y="1697" width="1.8" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="713.57" 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>Lsun/nio/ch/NativeThread:::current (1 samples, 0.08%)</title><rect x="451.4" y="1553" width="0.9" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="454.37" 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>SpinPause (1 samples, 0.08%)</title><rect x="24.5" y="1809" width="0.9" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="27.50" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/EntityInputStream:::read (2 samples, 0.15%)</title><rect x="594.6" y="593" width="1.8" height="15.0" fill="rgb(93,205,205)" rx="2" ry="2" />
<text text-anchor="" x="597.56" 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>Ljava/util/HashMap:::containsKey (1 samples, 0.08%)</title><rect x="537.5" y="1201" width="0.9" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="540.47" 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>__wake_up_common (1 samples, 0.08%)</title><rect x="677.0" y="1281" width="0.9" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="680.04" 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>pthread_cond_timedwait@@GLIBC_2.3.2 (2 samples, 0.15%)</title><rect x="882.8" y="1873" width="1.8" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text text-anchor="" x="885.76" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceHandleImpl:::getService (9 samples, 0.69%)</title><rect x="419.6" y="721" width="8.2" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="422.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_finish_output2 (1 samples, 0.08%)</title><rect x="578.2" y="353" width="1.0" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="581.25" 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>apparmor_socket_sendmsg (1 samples, 0.08%)</title><rect x="513.0" y="1729" width="0.9" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="516.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>new_sync_write (1 samples, 0.08%)</title><rect x="723.3" y="1425" width="0.9" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="726.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>rb_insert_color (1 samples, 0.08%)</title><rect x="1017.8" y="1729" width="0.9" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="1020.80" 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>__fdget_pos (1 samples, 0.08%)</title><rect x="1006.0" y="1809" width="0.9" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="1009.02" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetServiceHandle (1 samples, 0.08%)</title><rect x="419.6" y="577" width="1.0" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="422.65" 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>Ljava/text/SimpleDateFormat:::format (1 samples, 0.08%)</title><rect x="222.1" y="1505" width="0.9" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="225.07" 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>Lorg/glassfish/jersey/server/model/ResourceMethodInvoker:::apply (20 samples, 1.54%)</title><rect x="587.3" y="993" width="18.1" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="590.31" 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>Ljava/nio/HeapByteBuffer:::get (1 samples, 0.08%)</title><rect x="807.5" y="545" width="0.9" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="810.54" 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>Lorg/eclipse/jetty/io/AbstractEndPoint$1:::needsFillInterest (1 samples, 0.08%)</title><rect x="326.3" y="1537" width="0.9" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="329.30" 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.15%)</title><rect x="120.6" y="1697" width="1.8" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="123.57" 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>Lorg/glassfish/hk2/utilities/cache/internal/WeakCARCacheImpl:::compute (1 samples, 0.08%)</title><rect x="949.8" y="609" width="0.9" height="15.0" fill="rgb(82,230,82)" rx="2" ry="2" />
<text text-anchor="" x="952.83" 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>end_repeat_nmi (2 samples, 0.15%)</title><rect x="84.3" y="1633" width="1.8" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="87.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>ClassLoaderDataGraph::roots_cld_do (2 samples, 0.15%)</title><rect x="81.6" y="1793" width="1.8" height="15.0" fill="rgb(213,213,63)" rx="2" ry="2" />
<text text-anchor="" x="84.60" y="1803.5" font-size="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.08%)</title><rect x="295.5" y="1329" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="298.48" 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>Ljava/util/concurrent/locks/LockSupport:::unpark (1 samples, 0.08%)</title><rect x="982.5" y="1793" width="0.9" height="15.0" fill="rgb(104,215,215)" rx="2" ry="2" />
<text text-anchor="" x="985.46" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/PerLookupContext:::findOrCreate (3 samples, 0.23%)</title><rect x="1185.5" y="993" width="2.7" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text text-anchor="" x="1188.47" 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>Lorg/eclipse/jetty/server/HttpChannel:::sendResponse (9 samples, 0.69%)</title><rect x="784.0" y="785" width="8.1" height="15.0" fill="rgb(68,182,182)" rx="2" ry="2" />
<text text-anchor="" x="786.98" 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>x86_pmu_enable (6 samples, 0.46%)</title><rect x="502.1" y="1665" width="5.5" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="505.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>__vfs_write (4 samples, 0.31%)</title><rect x="266.5" y="1665" width="3.6" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="269.48" 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>nmi_handle (1 samples, 0.08%)</title><rect x="165.0" y="1585" width="0.9" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="167.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>Lorg/eclipse/jetty/server/handler/StatisticsHandler:::handle (1 samples, 0.08%)</title><rect x="976.1" y="1585" width="0.9" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text text-anchor="" x="979.11" 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>Lsun/nio/ch/IOUtil:::drain (1 samples, 0.08%)</title><rect x="522.1" y="1617" width="0.9" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text text-anchor="" x="525.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>Lorg/eclipse/jetty/io/AbstractEndPoint:::fillInterested (3 samples, 0.23%)</title><rect x="526.6" y="1569" width="2.7" height="15.0" fill="rgb(83,196,196)" rx="2" ry="2" />
<text text-anchor="" x="529.59" 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>Ljava/lang/String:::toLowerCase (1 samples, 0.08%)</title><rect x="409.7" y="689" width="0.9" height="15.0" fill="rgb(104,214,214)" rx="2" ry="2" />
<text text-anchor="" x="412.68" 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>Lorg/glassfish/jersey/uri/internal/JerseyUriBuilder:::createURI (3 samples, 0.23%)</title><rect x="626.3" y="1169" width="2.7" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="629.28" 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 (2 samples, 0.15%)</title><rect x="169.5" y="1681" width="1.8" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="172.51" 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-?/6379 (5 samples, 0.38%)</title><rect x="649.8" y="1905" width="4.6" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text text-anchor="" x="652.85" y="1915.5" font-size="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.08%)</title><rect x="785.8" y="625" width="0.9" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text text-anchor="" x="788.79" 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>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorLinkedHashMap:::get (1 samples, 0.08%)</title><rect x="381.6" y="785" width="0.9" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="384.58" 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>schedule_hrtimeout_range (5 samples, 0.38%)</title><rect x="861.0" y="1793" width="4.5" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="864.01" y="1803.5" font-size="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.15%)</title><rect x="1007.8" y="1377" width="1.8" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="1010.83" 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_sched_clock (1 samples, 0.08%)</title><rect x="104.3" y="1841" width="0.9" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="107.25" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ClazzCreator:::resolveAllDependencies (4 samples, 0.31%)</title><rect x="827.5" y="945" width="3.6" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text text-anchor="" x="830.48" 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>Lorg/glassfish/jersey/process/internal/Stages:::process (20 samples, 1.54%)</title><rect x="760.4" y="1009" width="18.1" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="763.41" 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>Interpreter (1 samples, 0.08%)</title><rect x="479.5" y="1729" width="0.9" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text text-anchor="" x="482.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>smp_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="288.2" y="1713" width="0.9" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="291.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>Lorg/glassfish/jersey/message/internal/InboundMessageContext:::singleHeader (1 samples, 0.08%)</title><rect x="569.2" y="833" width="0.9" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text text-anchor="" x="572.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>Ljersey/repackaged/com/google/common/net/InetAddresses:::forUriString (20 samples, 1.54%)</title><rect x="1044.1" y="1105" width="18.1" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="1047.09" 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>Lio/dropwizard/request/logging/async/AsyncAccessEventAppenderFactory$1:::preprocess (2 samples, 0.15%)</title><rect x="529.3" y="1489" width="1.8" height="15.0" fill="rgb(91,203,203)" rx="2" ry="2" />
<text text-anchor="" x="532.31" 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>Ljava/lang/AbstractStringBuilder:::append (1 samples, 0.08%)</title><rect x="938.0" y="817" width="1.0" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="941.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>__wake_up_sync_key (1 samples, 0.08%)</title><rect x="677.0" y="1297" width="0.9" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="680.04" 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>futex_wait (2 samples, 0.15%)</title><rect x="47.2" y="1761" width="1.8" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="50.16" 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>__schedule (3 samples, 0.23%)</title><rect x="277.4" y="1761" width="2.7" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="280.36" 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>Lorg/eclipse/jetty/io/ManagedSelector$SelectorProducer:::runActions (1 samples, 0.08%)</title><rect x="1023.2" y="1633" width="0.9" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text text-anchor="" x="1026.24" 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>Lcom/codahale/metrics/Timer$Context:::close (1 samples, 0.08%)</title><rect x="1181.8" y="897" width="0.9" height="15.0" fill="rgb(52,166,166)" rx="2" ry="2" />
<text text-anchor="" x="1184.84" 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>__GI___writev (1 samples, 0.08%)</title><rect x="578.2" y="641" width="1.0" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text text-anchor="" x="581.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>Lorg/eclipse/jetty/util/log/Slf4jLog:::debug (1 samples, 0.08%)</title><rect x="447.7" y="1473" width="0.9" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="450.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>security_file_permission (1 samples, 0.08%)</title><rect x="860.1" y="1793" width="0.9" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="863.11" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BarrierSet::static_write_ref_array_pre (1 samples, 0.08%)</title><rect x="919.0" y="993" width="0.9" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text text-anchor="" x="922.02" 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>NMethodSweeper::process_nmethod (1 samples, 0.08%)</title><rect x="173.1" y="1761" width="0.9" height="15.0" fill="rgb(216,216,64)" rx="2" ry="2" />
<text text-anchor="" x="176.13" 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>Lcom/codahale/metrics/Timer$Context:::close (1 samples, 0.08%)</title><rect x="406.1" y="897" width="0.9" height="15.0" fill="rgb(64,177,177)" rx="2" ry="2" />
<text text-anchor="" x="409.05" 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>Lorg/glassfish/jersey/server/internal/routing/MethodSelectingRouter:::access$000 (1 samples, 0.08%)</title><rect x="771.3" y="881" width="0.9" height="15.0" fill="rgb(102,212,212)" rx="2" ry="2" />
<text text-anchor="" x="774.29" 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>Lorg/jvnet/hk2/internal/ServiceHandleImpl:::getService (3 samples, 0.23%)</title><rect x="1123.8" y="737" width="2.8" height="15.0" fill="rgb(96,208,208)" rx="2" ry="2" />
<text text-anchor="" x="1126.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>Lorg/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (1 samples, 0.08%)</title><rect x="589.1" y="705" width="0.9" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="592.12" 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>Lorg/jvnet/hk2/internal/Utilities:::createService (3 samples, 0.23%)</title><rect x="1123.8" y="705" width="2.8" height="15.0" fill="rgb(87,233,87)" rx="2" ry="2" />
<text text-anchor="" x="1126.84" 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>jni_GetObjectField (1 samples, 0.08%)</title><rect x="234.8" y="1505" width="0.9" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="237.76" 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_read (1 samples, 0.08%)</title><rect x="857.4" y="1761" width="0.9" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="860.39" 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>Ljava/util/Collections:::sort (2 samples, 0.15%)</title><rect x="778.5" y="913" width="1.9" height="15.0" fill="rgb(54,169,169)" rx="2" ry="2" />
<text text-anchor="" x="781.54" 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>Lorg/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (1 samples, 0.08%)</title><rect x="434.1" y="1041" width="1.0" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="437.15" 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>sock_write_iter (1 samples, 0.08%)</title><rect x="1094.8" y="481" width="0.9" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="1097.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>[libpthread-2.23.so] (2 samples, 0.15%)</title><rect x="636.3" y="1553" width="1.8" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="639.25" 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>remove_entity_load_avg (1 samples, 0.08%)</title><rect x="980.6" y="1377" width="1.0" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="983.65" 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>[unknown] (14 samples, 1.08%)</title><rect x="102.4" y="1889" width="12.7" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text text-anchor="" x="105.44" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/IterableProviderImpl:::get (2 samples, 0.15%)</title><rect x="925.4" y="945" width="1.8" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text text-anchor="" x="928.36" 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>Ljava/text/DecimalFormatSymbols:::initialize (2 samples, 0.15%)</title><rect x="744.1" y="977" width="1.8" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="747.10" 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>irq_exit (1 samples, 0.08%)</title><rect x="361.6" y="1073" width="0.9" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="364.64" 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>Lorg/eclipse/jetty/http/HttpFields:::getFieldNamesCollection (1 samples, 0.08%)</title><rect x="1188.2" y="1089" width="0.9" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="1191.19" 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_event_context_sched_in (2 samples, 0.15%)</title><rect x="125.1" y="1649" width="1.8" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="128.10" 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>Ljava/util/Collections$UnmodifiableCollection$1:::hasNext (1 samples, 0.08%)</title><rect x="485.8" y="1857" width="0.9" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text text-anchor="" x="488.81" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/ReentrantReadWriteLock$ReadLock:::lock (1 samples, 0.08%)</title><rect x="432.3" y="833" width="0.9" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text text-anchor="" x="435.33" 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>Ljava/lang/AbstractStringBuilder:::append (1 samples, 0.08%)</title><rect x="1110.2" y="657" width="1.0" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="1113.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>os::is_interrupted (1 samples, 0.08%)</title><rect x="716.9" y="1601" width="0.9" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="719.91" 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>update_blocked_averages (1 samples, 0.08%)</title><rect x="361.6" y="1009" width="0.9" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="364.64" 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 (6 samples, 0.46%)</title><rect x="687.9" y="1681" width="5.4" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="690.91" 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>__lock_text_start (1 samples, 0.08%)</title><rect x="684.3" y="1777" width="0.9" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="687.29" y="1787.5" font-size="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.08%)</title><rect x="194.0" y="1809" width="0.9" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="196.98" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getService (3 samples, 0.23%)</title><rect x="772.2" y="849" width="2.7" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="775.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>Lorg/eclipse/jetty/util/BlockingArrayQueue:::poll (2 samples, 0.15%)</title><rect x="888.2" y="1681" width="1.8" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="891.20" 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>Lorg/glassfish/jersey/servlet/ServletContainer:::service (1 samples, 0.08%)</title><rect x="285.5" y="1841" width="0.9" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="288.51" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/util/log/JettyAwareLogger:::isDebugEnabled (1 samples, 0.08%)</title><rect x="850.1" y="1537" width="0.9" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="853.14" 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>x86_pmu_enable (3 samples, 0.23%)</title><rect x="133.3" y="1681" width="2.7" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="136.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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetInjecteeDescriptor (1 samples, 0.08%)</title><rect x="1180.0" y="945" width="0.9" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text text-anchor="" x="1183.03" 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>Lorg/eclipse/jetty/servlet/ServletHandler$CachedChain:::doFilter (77 samples, 5.91%)</title><rect x="900.0" y="1297" width="69.8" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="902.98" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/ec..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (1 samples, 0.08%)</title><rect x="385.2" y="817" width="0.9" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="388.21" 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_signal@@GLIBC_2.3.2 (1 samples, 0.08%)</title><rect x="977.9" y="1585" width="0.9" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text text-anchor="" x="980.93" 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>Lsun/nio/ch/Util$3:::iterator (1 samples, 0.08%)</title><rect x="722.4" y="1617" width="0.9" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="725.35" 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>Lorg/glassfish/hk2/utilities/reflection/ReflectionHelper:::getRawClass (1 samples, 0.08%)</title><rect x="560.1" y="849" width="0.9" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="563.12" 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>VMThread::loop (6 samples, 0.46%)</title><rect x="115.1" y="1841" width="5.5" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="118.13" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject:::awaitNanos (2 samples, 0.15%)</title><rect x="888.2" y="1665" width="1.8" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="891.20" 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>Lorg/glassfish/jersey/server/internal/routing/RoutingStage:::apply (5 samples, 0.38%)</title><rect x="567.4" y="993" width="4.5" height="15.0" fill="rgb(102,247,102)" rx="2" ry="2" />
<text text-anchor="" x="570.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>IRScope::IRScope (1 samples, 0.08%)</title><rect x="168.6" y="1697" width="0.9" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" />
<text text-anchor="" x="171.60" 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>Lorg/eclipse/jetty/util/thread/QueuedThreadPool:::idleJobPoll (3 samples, 0.23%)</title><rect x="319.0" y="1697" width="2.8" height="15.0" fill="rgb(108,219,219)" rx="2" ry="2" />
<text text-anchor="" x="322.05" 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>__GI___mprotect (1 samples, 0.08%)</title><rect x="107.0" y="1873" width="0.9" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text text-anchor="" x="109.97" y="1883.5" font-size="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.23%)</title><rect x="1006.9" y="1809" width="2.7" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="1009.93" y="1819.5" font-size="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.08%)</title><rect x="1096.7" y="481" width="0.9" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="1099.65" 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>Lorg/eclipse/jetty/server/Request:::getAttribute (1 samples, 0.08%)</title><rect x="755.0" y="1169" width="0.9" height="15.0" fill="rgb(78,225,78)" rx="2" ry="2" />
<text text-anchor="" x="757.98" 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>G1RootProcessor::evacuate_roots (3 samples, 0.23%)</title><rect x="81.6" y="1825" width="2.7" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text text-anchor="" x="84.60" y="1835.5" font-size="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.15%)</title><rect x="169.5" y="1729" width="1.8" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="172.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>file_update_time (1 samples, 0.08%)</title><rect x="194.0" y="1761" width="0.9" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="196.98" 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_iter_readv_writev (1 samples, 0.08%)</title><rect x="851.0" y="1505" width="1.0" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="854.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>ObjArrayKlass::allocate (1 samples, 0.08%)</title><rect x="740.5" y="897" width="0.9" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="743.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>tcp_sendmsg (1 samples, 0.08%)</title><rect x="578.2" y="497" width="1.0" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="581.25" 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>Lch/qos/logback/core/UnsynchronizedAppenderBase:::doAppend (8 samples, 0.61%)</title><rect x="726.0" y="1521" width="7.2" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="728.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>Ljava/util/concurrent/ConcurrentHashMap$TreeBin:::find (3 samples, 0.23%)</title><rect x="420.6" y="577" width="2.7" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="423.55" 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>Lorg/eclipse/jetty/io/SelectChannelEndPoint$2:::run (136 samples, 10.45%)</title><rect x="525.7" y="1649" width="123.2" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="528.68" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/je..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/process/internal/RequestScope:::retrieveCurrent (1 samples, 0.08%)</title><rect x="614.5" y="1105" width="0.9" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="617.50" 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>Lio/dropwizard/jetty/NonblockingServletHolder:::handle (4 samples, 0.31%)</title><rect x="1165.5" y="1857" width="3.7" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
<text text-anchor="" x="1168.53" y="1867.5" font-size="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 (157 samples, 12.06%)</title><rect x="1019.6" y="1841" width="142.3" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text text-anchor="" x="1022.62" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaThread::thread..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceHandleImpl:::addSubHandle (1 samples, 0.08%)</title><rect x="818.4" y="577" width="0.9" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="821.42" 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>epoll_wait (1 samples, 0.08%)</title><rect x="1026.0" y="1521" width="0.9" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="1028.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>native_write_msr_safe (2 samples, 0.15%)</title><rect x="95.2" y="1537" width="1.8" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="98.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>do_futex (1 samples, 0.08%)</title><rect x="1016.9" y="1825" width="0.9" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="1019.90" y="1835.5" font-size="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.15%)</title><rect x="111.5" y="1745" width="1.8" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="114.51" 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>tcp_transmit_skb (2 samples, 0.15%)</title><rect x="1007.8" y="1649" width="1.8" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="1010.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>ip_queue_xmit (4 samples, 0.31%)</title><rect x="293.7" y="1633" width="3.6" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="296.67" 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>ttwu_do_activate.constprop.90 (1 samples, 0.08%)</title><rect x="307.3" y="1761" width="0.9" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="310.27" 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>schedule (3 samples, 0.23%)</title><rect x="277.4" y="1777" width="2.7" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="280.36" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/ConcurrentHashMap:::putVal (1 samples, 0.08%)</title><rect x="367.1" y="817" width="0.9" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text text-anchor="" x="370.08" 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>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorLinkedHashMap:::get (1 samples, 0.08%)</title><rect x="409.7" y="769" width="0.9" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="412.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>sys_futex (1 samples, 0.08%)</title><rect x="202.1" y="1825" width="0.9" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="205.14" y="1835.5" font-size="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 (1 samples, 0.08%)</title><rect x="1031.4" y="1265" width="0.9" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="1034.40" 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>Ljava/util/Formatter:::format (3 samples, 0.23%)</title><rect x="549.2" y="1073" width="2.8" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" />
<text text-anchor="" x="552.25" 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>Lio/dropwizard/jersey/filter/AllowedMethodsFilter:::handle (121 samples, 9.29%)</title><rect x="336.3" y="1313" width="109.6" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="339.27" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lio/dropwizar..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/http/HttpParser:::parseHeaders (3 samples, 0.23%)</title><rect x="972.5" y="1553" width="2.7" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text text-anchor="" x="975.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>Lorg/glassfish/jersey/message/internal/ReaderInterceptorExecutor$TerminalReaderInterceptor:::aroundReadFrom (10 samples, 0.77%)</title><rect x="802.1" y="769" width="9.1" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text text-anchor="" x="805.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>java_start (1 samples, 0.08%)</title><rect x="124.2" y="1873" width="0.9" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="127.19" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/LinkedHashMap:::newNode (1 samples, 0.08%)</title><rect x="814.8" y="577" width="0.9" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text text-anchor="" x="817.79" 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>Lorg/glassfish/jersey/servlet/WebComponent:::addRequestHeaders (6 samples, 0.46%)</title><rect x="618.1" y="1137" width="5.5" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text text-anchor="" x="621.13" 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>Lorg/glassfish/hk2/utilities/cache/Cache:::compute (2 samples, 0.15%)</title><rect x="1133.8" y="913" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1136.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>__intel_pmu_enable_all (4 samples, 0.31%)</title><rect x="309.1" y="1649" width="3.6" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="312.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>Lcom/fasterxml/jackson/core/json/ByteSourceJsonBootstrapper:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="1115.7" y="657" width="0.9" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="1118.68" 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>net_rx_action (1 samples, 0.08%)</title><rect x="856.5" y="1425" width="0.9" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="859.48" 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>Lorg/glassfish/hk2/utilities/InjecteeImpl:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="1074.9" y="913" width="0.9" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="1077.90" 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>Lorg/glassfish/jersey/servlet/WebComponent$4$1:::initialize (2 samples, 0.15%)</title><rect x="923.5" y="945" width="1.9" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="926.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>do_futex (1 samples, 0.08%)</title><rect x="50.8" y="1809" width="0.9" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="53.78" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/hibernate/validator/internal/engine/ValidatorImpl:::validateParameters (2 samples, 0.15%)</title><rect x="407.9" y="897" width="1.8" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="410.86" 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>Lorg/glassfish/jersey/process/internal/RequestScope:::runInScope (41 samples, 3.15%)</title><rect x="923.5" y="1121" width="37.2" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="926.55" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lor..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Thread:::setNativeName (1 samples, 0.08%)</title><rect x="536.6" y="1249" width="0.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="539.56" 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>Lorg/glassfish/hk2/utilities/cache/internal/WeakCARCacheImpl:::compute (1 samples, 0.08%)</title><rect x="948.9" y="609" width="0.9" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text text-anchor="" x="951.92" 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_event_enable (1 samples, 0.08%)</title><rect x="423.3" y="513" width="0.9" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="426.27" 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>update_curr (1 samples, 0.08%)</title><rect x="307.3" y="1697" width="0.9" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="310.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>Ljava/util/regex/Pattern$Curly:::match (1 samples, 0.08%)</title><rect x="358.9" y="913" width="0.9" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text text-anchor="" x="361.92" 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>Lorg/glassfish/jersey/message/internal/InboundMessageContext:::readEntity (3 samples, 0.23%)</title><rect x="1182.7" y="849" width="2.8" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="1185.75" 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>vfs_writev (1 samples, 0.08%)</title><rect x="1094.8" y="529" width="0.9" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="1097.84" 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_rcv_finish (1 samples, 0.08%)</title><rect x="875.5" y="1409" width="0.9" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="878.51" 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>Ljava/io/FileOutputStream:::write (16 samples, 1.23%)</title><rect x="231.1" y="1553" width="14.5" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="234.14" 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>x86_pmu_enable (2 samples, 0.15%)</title><rect x="29.0" y="1617" width="1.8" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="32.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>do_futex (1 samples, 0.08%)</title><rect x="672.5" y="1809" width="0.9" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="675.50" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.08%)</title><rect x="407.9" y="721" width="0.9" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="410.86" 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>Lcom/codahale/metrics/ExponentiallyDecayingReservoir:::update (1 samples, 0.08%)</title><rect x="406.1" y="817" width="0.9" height="15.0" fill="rgb(82,195,195)" rx="2" ry="2" />
<text text-anchor="" x="409.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>ObjArrayKlass::allocate (1 samples, 0.08%)</title><rect x="908.1" y="897" width="0.9" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="911.14" 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>Lsun/nio/ch/SelectorImpl:::select (6 samples, 0.46%)</title><rect x="1025.1" y="1601" width="5.4" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="1028.05" 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>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::getEntry (1 samples, 0.08%)</title><rect x="381.6" y="769" width="0.9" height="15.0" fill="rgb(100,210,210)" rx="2" ry="2" />
<text text-anchor="" x="384.58" 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>Lcom/fasterxml/jackson/core/json/UTF8StreamJsonParser:::_nextAfterName (1 samples, 0.08%)</title><rect x="1182.7" y="689" width="1.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1185.75" 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>Ljavax/ws/rs/core/UriBuilder:::fromUri (2 samples, 0.15%)</title><rect x="1178.2" y="1201" width="1.8" height="15.0" fill="rgb(68,181,181)" rx="2" ry="2" />
<text text-anchor="" x="1181.22" 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_readv_writev (6 samples, 0.46%)</title><rect x="687.9" y="1793" width="5.4" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="690.91" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/servlet/WebComponent:::service (1 samples, 0.08%)</title><rect x="682.5" y="1793" width="0.9" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="685.47" y="1803.5" font-size="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.23%)</title><rect x="261.0" y="1697" width="2.8" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="264.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>G1ParTask::work (5 samples, 0.38%)</title><rect x="24.5" y="1841" width="4.5" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="27.50" y="1851.5" font-size="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.08%)</title><rect x="1009.6" y="1681" width="1.0" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="1012.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>Ljavax/ws/rs/core/UriBuilder:::fromUri (22 samples, 1.69%)</title><rect x="902.7" y="1201" width="19.9" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="905.70" 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>__perf_event_task_sched_in (2 samples, 0.15%)</title><rect x="125.1" y="1665" width="1.8" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="128.10" 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.15%)</title><rect x="1161.9" y="1745" width="1.8" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="1164.90" 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>futex_wait_queue_me (2 samples, 0.15%)</title><rect x="61.7" y="1729" width="1.8" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="64.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>try_to_wake_up (1 samples, 0.08%)</title><rect x="875.5" y="1265" width="0.9" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="878.51" 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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getInjecteeDescriptor (1 samples, 0.08%)</title><rect x="560.1" y="913" width="0.9" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="563.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>__perf_event_task_sched_in (2 samples, 0.15%)</title><rect x="56.2" y="1665" width="1.8" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="59.22" 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_pmu_enable.part.89 (2 samples, 0.15%)</title><rect x="47.2" y="1649" width="1.8" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="50.16" 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>inet_sendmsg (2 samples, 0.15%)</title><rect x="855.6" y="1665" width="1.8" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="858.58" 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_context_sched_in (2 samples, 0.15%)</title><rect x="278.3" y="1713" width="1.8" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="281.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>Lorg/eclipse/jetty/io/ArrayByteBufferPool:::acquire (1 samples, 0.08%)</title><rect x="1153.7" y="1553" width="1.0" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="1156.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>Lorg/eclipse/jetty/io/WriteFlusher:::write (5 samples, 0.38%)</title><rect x="786.7" y="689" width="4.5" height="15.0" fill="rgb(80,192,192)" rx="2" ry="2" />
<text text-anchor="" x="789.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>check_preempt_curr (1 samples, 0.08%)</title><rect x="677.0" y="1185" width="0.9" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="680.04" 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>vfs_write (2 samples, 0.15%)</title><rect x="243.8" y="1409" width="1.8" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="246.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>Lorg/eclipse/jetty/http/HttpFields:::getFieldNamesCollection (1 samples, 0.08%)</title><rect x="217.5" y="1585" width="0.9" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="220.54" 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>Lch/qos/logback/access/jetty/RequestLogImpl:::log (8 samples, 0.61%)</title><rect x="327.2" y="1553" width="7.3" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="330.20" 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.15%)</title><rect x="165.0" y="1697" width="1.8" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="167.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>Lorg/glassfish/jersey/servlet/WebComponent:::service (93 samples, 7.14%)</title><rect x="755.0" y="1185" width="84.3" height="15.0" fill="rgb(69,183,183)" rx="2" ry="2" />
<text text-anchor="" x="757.98" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/glas..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (2 samples, 0.15%)</title><rect x="874.6" y="1569" width="1.8" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="877.61" 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>Ljava/lang/String:::substring (1 samples, 0.08%)</title><rect x="747.7" y="961" width="0.9" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="750.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>sock_write_iter (1 samples, 0.08%)</title><rect x="838.4" y="1073" width="0.9" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="841.36" 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>mutex_lock (1 samples, 0.08%)</title><rect x="1028.7" y="1441" width="0.9" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="1031.68" 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>Ljava/util/concurrent/ConcurrentHashMap$TreeBin:::find (1 samples, 0.08%)</title><rect x="603.6" y="577" width="0.9" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="606.63" 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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getInjectionResolverForInjectee (1 samples, 0.08%)</title><rect x="953.5" y="625" width="0.9" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="956.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>Lorg/eclipse/jetty/util/thread/Locker$Lock:::close (1 samples, 0.08%)</title><rect x="1021.4" y="1681" width="0.9" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="1024.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>entry_SYSCALL_64_fastpath (2 samples, 0.15%)</title><rect x="148.7" y="1713" width="1.8" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="151.66" 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>Lorg/jvnet/hk2/internal/SystemDescriptor:::dispose (5 samples, 0.38%)</title><rect x="826.6" y="1073" width="4.5" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="829.57" 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>Lorg/eclipse/jetty/server/HttpChannel:::sendResponse (9 samples, 0.69%)</title><rect x="1090.3" y="785" width="8.2" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="1093.31" 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.08%)</title><rect x="245.6" y="1569" width="0.9" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="248.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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetService (14 samples, 1.08%)</title><rect x="812.1" y="817" width="12.7" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="815.07" 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>select_task_rq_fair (2 samples, 0.15%)</title><rect x="267.4" y="1537" width="1.8" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="270.39" 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>JavaCalls::call_virtual (104 samples, 7.99%)</title><rect x="888.2" y="1793" width="94.3" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="891.20" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaCalls::..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.15%)</title><rect x="988.8" y="1633" width="1.8" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="991.80" 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>Lorg/glassfish/jersey/uri/internal/JerseyUriBuilder:::uri (29 samples, 2.23%)</title><rect x="1044.1" y="1169" width="26.3" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="1047.09" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Throwable:::fillInStackTrace (12 samples, 0.92%)</title><rect x="1044.1" y="1009" width="10.9" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text text-anchor="" x="1047.09" 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>ip_local_deliver_finish (2 samples, 0.15%)</title><rect x="983.4" y="1313" width="1.8" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="986.36" 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 (1 samples, 0.08%)</title><rect x="578.2" y="241" width="1.0" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="581.25" 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>Ljava/util/regex/Pattern$Slice:::match (1 samples, 0.08%)</title><rect x="929.0" y="865" width="0.9" height="15.0" fill="rgb(58,173,173)" rx="2" ry="2" />
<text text-anchor="" x="931.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>Lorg/glassfish/jersey/uri/internal/UriParser:::parseComponent (1 samples, 0.08%)</title><rect x="552.9" y="1121" width="0.9" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text text-anchor="" x="555.87" 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>Ljava/util/LinkedList$ListItr:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="568.3" y="865" width="0.9" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="571.28" 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>CompileBroker::invoke_compiler_on_method (5 samples, 0.38%)</title><rect x="148.7" y="1809" width="4.5" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="151.66" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpChannelOverHttp:::recycle (1 samples, 0.08%)</title><rect x="733.2" y="1537" width="0.9" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="736.23" 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>nmi_restore (1 samples, 0.08%)</title><rect x="48.1" y="1585" width="0.9" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="51.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>Lorg/eclipse/jetty/http/HttpParser:::parseNext (3 samples, 0.23%)</title><rect x="972.5" y="1569" width="2.7" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text text-anchor="" x="975.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>native_write_msr_safe (2 samples, 0.15%)</title><rect x="196.7" y="1809" width="1.8" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="199.70" y="1819.5" font-size="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 samples, 0.08%)</title><rect x="128.7" y="1841" width="0.9" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="131.73" y="1851.5" font-size="12" 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.08%)</title><rect x="513.0" y="1809" width="0.9" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="516.00" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/spi/internal/ParamValueFactoryWithSource:::provide (19 samples, 1.46%)</title><rect x="588.2" y="897" width="17.2" height="15.0" fill="rgb(55,169,169)" rx="2" ry="2" />
<text text-anchor="" x="591.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>Lorg/eclipse/jetty/server/HttpChannelOverHttp:::startRequest (1 samples, 0.08%)</title><rect x="1158.3" y="1537" width="0.9" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="1161.28" 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>JfrBackend::is_event_enabled (1 samples, 0.08%)</title><rect x="715.1" y="1617" width="0.9" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="718.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>Lorg/glassfish/jersey/process/internal/RequestScope$Instance:::release (5 samples, 0.38%)</title><rect x="429.6" y="1105" width="4.5" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text text-anchor="" x="432.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>call_stub (146 samples, 11.21%)</title><rect x="517.5" y="1761" width="132.3" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text text-anchor="" x="520.53" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >call_stub</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BacktraceBuilder::expand (1 samples, 0.08%)</title><rect x="740.5" y="913" width="0.9" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" />
<text text-anchor="" x="743.48" 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>Lorg/glassfish/jersey/server/internal/inject/AbstractContainerRequestValueFactory:::getContainerRequest (15 samples, 1.15%)</title><rect x="811.2" y="865" width="13.6" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text text-anchor="" x="814.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>native_sched_clock (2 samples, 0.15%)</title><rect x="184.9" y="1825" width="1.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="187.92" y="1835.5" font-size="12" 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.15%)</title><rect x="1172.8" y="1761" width="1.8" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="1175.78" 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>tcp_push (2 samples, 0.15%)</title><rect x="983.4" y="1633" width="1.8" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="986.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>vfs_writev (1 samples, 0.08%)</title><rect x="513.0" y="1825" width="0.9" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="516.00" y="1835.5" font-size="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.08%)</title><rect x="497.6" y="1697" width="0.9" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="500.59" 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>__vfs_read (1 samples, 0.08%)</title><rect x="316.3" y="1809" width="0.9" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="319.33" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/net/URI$Parser:::scan (1 samples, 0.08%)</title><rect x="627.2" y="1089" width="0.9" height="15.0" fill="rgb(82,195,195)" rx="2" ry="2" />
<text text-anchor="" x="630.19" 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>Lorg/glassfish/jersey/server/ServerRuntime:::process (72 samples, 5.53%)</title><rect x="1070.4" y="1137" width="65.2" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="1073.37" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/nio/ch/SocketChannelImpl:::read (1 samples, 0.08%)</title><rect x="635.3" y="1553" width="1.0" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text text-anchor="" x="638.35" 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>__tcp_push_pending_frames (1 samples, 0.08%)</title><rect x="1094.8" y="401" width="0.9" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="1097.84" 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_v4_rcv (2 samples, 0.15%)</title><rect x="983.4" y="1297" width="1.8" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="986.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>__do_softirq (2 samples, 0.15%)</title><rect x="874.6" y="1505" width="1.8" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="877.61" 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 (1 samples, 0.08%)</title><rect x="487.6" y="1681" width="0.9" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="490.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>x86_pmu_enable (2 samples, 0.15%)</title><rect x="649.8" y="1473" width="1.9" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="652.85" 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>Lorg/glassfish/jersey/uri/internal/JerseyUriBuilder:::uri (31 samples, 2.38%)</title><rect x="336.3" y="1185" width="28.1" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="339.27" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (1 samples, 0.08%)</title><rect x="687.0" y="1825" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="690.00" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetInjecteeDescriptor (1 samples, 0.08%)</title><rect x="816.6" y="577" width="0.9" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text text-anchor="" x="819.61" 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>Ljersey/repackaged/com/google/common/net/InetAddresses:::isUriInetAddress (18 samples, 1.38%)</title><rect x="736.9" y="1121" width="16.3" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="739.85" 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>skb_release_data (1 samples, 0.08%)</title><rect x="291.0" y="1649" width="0.9" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="293.95" 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>perf_pmu_enable.part.89 (2 samples, 0.15%)</title><rect x="33.6" y="1649" width="1.8" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="36.56" 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>do_futex (1 samples, 0.08%)</title><rect x="481.3" y="1697" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="484.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>G1ParEvacuateFollowersClosure::do_void (1 samples, 0.08%)</title><rect x="24.5" y="1825" width="0.9" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text text-anchor="" x="27.50" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/uri/internal/JerseyUriBuilder:::createURI (3 samples, 0.23%)</title><rect x="442.3" y="1169" width="2.7" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="445.30" 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>Lorg/glassfish/jersey/uri/internal/JerseyUriBuilder:::host (27 samples, 2.07%)</title><rect x="336.3" y="1137" width="24.4" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="339.27" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (1 samples, 0.08%)</title><rect x="177.7" y="1729" width="0.9" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="180.67" 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>JavaCalls::call_virtual (104 samples, 7.99%)</title><rect x="888.2" y="1809" width="94.3" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="891.20" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaCalls::..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (2 samples, 0.15%)</title><rect x="95.2" y="1585" width="1.8" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="98.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>Lcom/fasterxml/jackson/jaxrs/base/ProviderBase:::_createParser (3 samples, 0.23%)</title><rect x="806.6" y="705" width="2.8" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="809.64" 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>net_rx_action (2 samples, 0.15%)</title><rect x="1007.8" y="1489" width="1.8" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="1010.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>G1CollectorPolicy::predict_region_elapsed_time_ms (9 samples, 0.69%)</title><rect x="94.3" y="1793" width="8.1" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="97.29" y="1803.5" font-size="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.08%)</title><rect x="1096.7" y="513" width="0.9" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="1099.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>frame::oops_do_internal (4 samples, 0.31%)</title><rect x="47.2" y="1841" width="3.6" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="50.16" y="1851.5" font-size="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 samples, 0.08%)</title><rect x="128.7" y="1793" width="0.9" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="131.73" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/util/thread/QueuedThreadPool:::runJob (155 samples, 11.90%)</title><rect x="1021.4" y="1713" width="140.5" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="1024.43" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/jett..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/CommittingOutputStream:::commit (10 samples, 0.77%)</title><rect x="1090.3" y="913" width="9.1" height="15.0" fill="rgb(106,217,217)" rx="2" ry="2" />
<text text-anchor="" x="1093.31" 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>Lorg/eclipse/jetty/http/HttpParser:::parseNext (10 samples, 0.77%)</title><rect x="639.9" y="1569" width="9.0" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text text-anchor="" x="642.88" 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>Ljava/lang/String:::toLowerCase (1 samples, 0.08%)</title><rect x="397.0" y="673" width="0.9" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="399.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>Lorg/glassfish/jersey/uri/internal/JerseyUriBuilder:::uri (20 samples, 1.54%)</title><rect x="736.9" y="1185" width="18.1" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="739.85" 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>Ljava/util/HashMap:::getNode (1 samples, 0.08%)</title><rect x="782.2" y="849" width="0.9" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="785.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>Lorg/eclipse/jetty/server/handler/gzip/GzipHandler:::handle (78 samples, 5.99%)</title><rect x="899.1" y="1489" width="70.7" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text text-anchor="" x="902.08" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/ec..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Formatter$FormatSpecifier:::flags (1 samples, 0.08%)</title><rect x="1060.4" y="1009" width="0.9" height="15.0" fill="rgb(58,173,173)" rx="2" ry="2" />
<text text-anchor="" x="1063.40" 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>sys_futex (3 samples, 0.23%)</title><rect x="709.7" y="1841" width="2.7" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="712.66" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java-?/6330 (5 samples, 0.38%)</title><rect x="125.1" y="1905" width="4.5" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text text-anchor="" x="128.10" y="1915.5" font-size="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.08%)</title><rect x="1010.6" y="1841" width="0.9" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="1013.55" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/CommonProperties:::getValue (4 samples, 0.31%)</title><rect x="398.8" y="929" width="3.6" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="401.80" 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>remove_entity_load_avg (1 samples, 0.08%)</title><rect x="1010.6" y="1713" width="0.9" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="1013.55" 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_after_swapgs (1 samples, 0.08%)</title><rect x="496.7" y="1841" width="0.9" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="499.68" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/AbstractStringBuilder:::append (1 samples, 0.08%)</title><rect x="754.1" y="1041" width="0.9" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="757.07" 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>Lorg/glassfish/jersey/internal/Errors$1:::call (62 samples, 4.76%)</title><rect x="1072.2" y="1057" width="56.2" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="1075.18" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/net/URI$Parser:::parse (3 samples, 0.23%)</title><rect x="626.3" y="1137" width="2.7" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="629.28" 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>Ljava/lang/RuntimeException:::&lt;init&gt; (19 samples, 1.46%)</title><rect x="336.3" y="1073" width="17.2" height="15.0" fill="rgb(90,201,201)" rx="2" ry="2" />
<text text-anchor="" x="339.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>Ljava/util/concurrent/ConcurrentHashMap$TreeNode:::findTreeNode (1 samples, 0.08%)</title><rect x="830.2" y="833" width="0.9" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text text-anchor="" x="833.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>Lorg/glassfish/jersey/server/model/internal/JavaResourceMethodDispatcherProvider$TypeOutInvoker:::doDispatch (23 samples, 1.77%)</title><rect x="1105.7" y="945" width="20.9" height="15.0" fill="rgb(52,166,166)" rx="2" ry="2" />
<text text-anchor="" x="1108.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>skb_release_all (1 samples, 0.08%)</title><rect x="480.4" y="1697" width="0.9" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="483.37" 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>__intel_pmu_enable_all (2 samples, 0.15%)</title><rect x="165.0" y="1649" width="1.8" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="167.98" 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>Parker::park (5 samples, 0.38%)</title><rect x="252.0" y="1649" width="4.5" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="254.98" 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>Lorg/glassfish/jersey/uri/internal/UriParser:::parse (1 samples, 0.08%)</title><rect x="1179.1" y="1153" width="0.9" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="1182.12" 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_context_sched_in (5 samples, 0.38%)</title><rect x="463.1" y="1697" width="4.6" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="466.15" 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>ep_send_events_proc (1 samples, 0.08%)</title><rect x="321.8" y="1521" width="0.9" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="324.77" 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>Ljava/util/ArrayList:::toArray (2 samples, 0.15%)</title><rect x="745.9" y="1025" width="1.8" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text text-anchor="" x="748.91" 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>_raw_spin_lock_irq (1 samples, 0.08%)</title><rect x="1026.0" y="1425" width="0.9" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="1028.96" 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>futex_wait_queue_me (2 samples, 0.15%)</title><rect x="74.3" y="1729" width="1.9" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="77.35" 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>Lorg/eclipse/jetty/server/handler/ScopedHandler:::handle (123 samples, 9.45%)</title><rect x="336.3" y="1425" width="111.4" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="339.27" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetInjecteeDescriptor (2 samples, 0.15%)</title><rect x="762.2" y="897" width="1.8" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="765.23" 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>Lorg/eclipse/jetty/util/thread/QueuedThreadPool:::access$800 (3 samples, 0.23%)</title><rect x="319.0" y="1713" width="2.8" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text text-anchor="" x="322.05" 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_rcv (1 samples, 0.08%)</title><rect x="1094.8" y="145" width="0.9" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="1097.84" 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>Lorg/glassfish/jersey/server/ContainerFilteringStage:::apply (3 samples, 0.23%)</title><rect x="767.7" y="977" width="2.7" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text text-anchor="" x="770.67" 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>sys_epoll_wait (1 samples, 0.08%)</title><rect x="682.5" y="1553" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="685.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>WatcherThread::run (20 samples, 1.54%)</title><rect x="174.0" y="1857" width="18.2" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text text-anchor="" x="177.04" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/handler/HandlerWrapper:::handle (124 samples, 9.52%)</title><rect x="1040.5" y="1553" width="112.3" height="15.0" fill="rgb(54,169,169)" rx="2" ry="2" />
<text text-anchor="" x="1043.46" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/hibernate/validator/internal/engine/ValidatorImpl:::validateParameters (1 samples, 0.08%)</title><rect x="941.7" y="881" width="0.9" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="944.67" 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>nmi_handle (1 samples, 0.08%)</title><rect x="203.0" y="1553" width="0.9" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="206.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>Ljava/util/Formatter$FormatSpecifier:::print (1 samples, 0.08%)</title><rect x="1058.6" y="1041" width="0.9" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text text-anchor="" x="1061.59" 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>Ljava/text/DecimalFormatSymbols:::&lt;init&gt; (2 samples, 0.15%)</title><rect x="1055.9" y="993" width="1.8" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="1058.87" 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>Ljava/lang/String:::format (8 samples, 0.61%)</title><rect x="914.5" y="1089" width="7.2" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="917.49" 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>__ip_local_out (1 samples, 0.08%)</title><rect x="838.4" y="913" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="841.36" 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>tcp_prequeue (1 samples, 0.08%)</title><rect x="875.5" y="1345" width="0.9" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="878.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>Lorg/glassfish/jersey/process/internal/Stage$Continuation:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="384.3" y="945" width="0.9" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="387.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>Lorg/glassfish/jersey/message/internal/WriterInterceptorExecutor:::proceed (1 samples, 0.08%)</title><rect x="388.8" y="881" width="0.9" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="391.83" 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>__intel_pmu_enable_all (2 samples, 0.15%)</title><rect x="20.9" y="1585" width="1.8" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="23.88" 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_hrtimeout_range_clock (1 samples, 0.08%)</title><rect x="288.2" y="1777" width="0.9" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="291.23" y="1787.5" font-size="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.08%)</title><rect x="590.9" y="609" width="0.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="593.94" 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>G1RootProcessor::process_java_roots (3 samples, 0.23%)</title><rect x="81.6" y="1809" width="2.7" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="84.60" y="1819.5" font-size="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.08%)</title><rect x="1094.8" y="465" width="0.9" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="1097.84" 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>sys_futex (1 samples, 0.08%)</title><rect x="982.5" y="1745" width="0.9" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="985.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>intel_pmu_enable_all (2 samples, 0.15%)</title><rect x="169.5" y="1537" width="1.8" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="172.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>Lorg/jvnet/hk2/internal/ServiceHandleImpl:::getService (4 samples, 0.31%)</title><rect x="950.7" y="721" width="3.7" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="953.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>Ljava/net/URI$Parser:::parseServer (1 samples, 0.08%)</title><rect x="443.2" y="1089" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="446.21" 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>atime_needs_update (1 samples, 0.08%)</title><rect x="491.2" y="1729" width="1.0" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="494.24" 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_start (6 samples, 0.46%)</title><rect x="168.6" y="1873" width="5.4" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text text-anchor="" x="171.60" y="1883.5" font-size="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.08%)</title><rect x="1015.1" y="1777" width="0.9" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="1018.08" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::group (1 samples, 0.08%)</title><rect x="919.9" y="1009" width="0.9" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="922.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>[libpthread-2.23.so] (1 samples, 0.08%)</title><rect x="198.5" y="1825" width="0.9" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" />
<text text-anchor="" x="201.51" y="1835.5" font-size="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.15%)</title><rect x="33.6" y="1697" width="1.8" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="36.56" 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>IR::IR (1 samples, 0.08%)</title><rect x="168.6" y="1713" width="0.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="171.60" 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_finish_output (2 samples, 0.15%)</title><rect x="874.6" y="1585" width="1.8" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="877.61" 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>Lcom/codahale/metrics/Histogram:::update (1 samples, 0.08%)</title><rect x="1040.5" y="1393" width="0.9" height="15.0" fill="rgb(101,211,211)" rx="2" ry="2" />
<text text-anchor="" x="1043.46" 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>Ljava/util/concurrent/locks/AbstractOwnableSynchronizer:::setExclusiveOwnerThread (2 samples, 0.15%)</title><rect x="853.8" y="1889" width="1.8" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text text-anchor="" x="856.76" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:::acquire (1 samples, 0.08%)</title><rect x="1023.2" y="1553" width="0.9" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="1026.24" 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>__vfs_read (1 samples, 0.08%)</title><rect x="1004.2" y="1793" width="0.9" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="1007.21" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/process/internal/RequestScope$Instance:::remove (5 samples, 0.38%)</title><rect x="826.6" y="1089" width="4.5" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="829.57" 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>ep_poll_callback (1 samples, 0.08%)</title><rect x="687.0" y="1713" width="0.9" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="690.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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetDescriptor (3 samples, 0.23%)</title><rect x="772.2" y="801" width="2.7" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text text-anchor="" x="775.20" 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>Lsun/reflect/generics/reflectiveObjects/ParameterizedTypeImpl:::equals (1 samples, 0.08%)</title><rect x="1122.0" y="497" width="0.9" height="15.0" fill="rgb(78,190,190)" rx="2" ry="2" />
<text text-anchor="" x="1125.03" 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>GangWorker::~GangWorker (9 samples, 0.69%)</title><rect x="29.0" y="1873" width="8.2" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="32.03" y="1883.5" font-size="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.15%)</title><rect x="47.2" y="1745" width="1.8" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="50.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>perf_event_context_sched_in (2 samples, 0.15%)</title><rect x="1161.9" y="1713" width="1.8" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="1164.90" 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>futex_wait_queue_me (2 samples, 0.15%)</title><rect x="65.3" y="1745" width="1.8" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="68.28" 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>Ljava/lang/String:::toLowerCase (2 samples, 0.15%)</title><rect x="619.9" y="1009" width="1.9" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="622.94" 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>finish_task_switch (2 samples, 0.15%)</title><rect x="20.9" y="1681" width="1.8" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="23.88" 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>Ljava/util/concurrent/locks/ReentrantLock:::unlock (1 samples, 0.08%)</title><rect x="980.6" y="1601" width="1.0" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="983.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>Ljava/nio/channels/spi/AbstractInterruptibleChannel:::begin (1 samples, 0.08%)</title><rect x="453.2" y="1537" width="0.9" height="15.0" fill="rgb(80,192,192)" rx="2" ry="2" />
<text text-anchor="" x="456.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>Ljava/util/regex/Matcher:::replaceAll (1 samples, 0.08%)</title><rect x="938.0" y="865" width="1.0" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="941.05" 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>Lch/qos/logback/access/spi/AccessEvent:::buildRequestParameterMap (1 samples, 0.08%)</title><rect x="331.7" y="1425" width="0.9" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="334.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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getInjecteeDescriptor (1 samples, 0.08%)</title><rect x="948.9" y="657" width="0.9" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="951.92" 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>ip_queue_xmit (1 samples, 0.08%)</title><rect x="851.0" y="1361" width="1.0" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="854.04" 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>Lorg/glassfish/jersey/process/internal/RequestScope:::retrieveCurrent (1 samples, 0.08%)</title><rect x="832.0" y="1105" width="0.9" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="835.01" 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>ep_poll (4 samples, 0.31%)</title><rect x="277.4" y="1825" width="3.6" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="280.36" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/OutboundMessageContext:::close (10 samples, 0.77%)</title><rect x="389.7" y="945" width="9.1" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="392.74" 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>JavaCalls::call_helper (15 samples, 1.15%)</title><rect x="1176.4" y="1777" width="13.6" height="15.0" fill="rgb(210,210,63)" rx="2" ry="2" />
<text text-anchor="" x="1179.41" y="1787.5" font-size="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.08%)</title><rect x="828.4" y="865" width="0.9" height="15.0" fill="rgb(204,57,57)" rx="2" ry="2" />
<text text-anchor="" x="831.39" 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>Lorg/glassfish/jersey/message/internal/MessageBodyFactory:::readFrom (10 samples, 0.77%)</title><rect x="802.1" y="833" width="9.1" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="805.10" 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>Lorg/jvnet/hk2/internal/ThreeThirtyResolver:::resolve (1 samples, 0.08%)</title><rect x="419.6" y="609" width="1.0" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text text-anchor="" x="422.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>ip_queue_xmit (1 samples, 0.08%)</title><rect x="838.4" y="945" width="0.9" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="841.36" 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>schedule (4 samples, 0.31%)</title><rect x="203.0" y="1745" width="3.7" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="206.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>Ljava/util/HashMap:::put (1 samples, 0.08%)</title><rect x="728.7" y="1345" width="0.9" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="731.69" 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>Ljava/util/concurrent/ConcurrentHashMap:::put (1 samples, 0.08%)</title><rect x="417.8" y="737" width="0.9" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="420.83" 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>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::keyComparatorHash (2 samples, 0.15%)</title><rect x="621.8" y="1041" width="1.8" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="624.75" 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>Lorg/eclipse/jetty/server/Response:::closeOutput (1 samples, 0.08%)</title><rect x="334.5" y="1569" width="0.9" height="15.0" fill="rgb(76,188,188)" rx="2" ry="2" />
<text text-anchor="" x="337.45" 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>Ljava/util/regex/Pattern$Branch:::match (1 samples, 0.08%)</title><rect x="358.9" y="833" width="0.9" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text text-anchor="" x="361.92" 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>do_iter_readv_writev (1 samples, 0.08%)</title><rect x="623.6" y="1089" width="0.9" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="626.56" 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>new_sync_write (2 samples, 0.15%)</title><rect x="995.1" y="1793" width="1.9" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="998.15" y="1803.5" font-size="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 (3 samples, 0.23%)</title><rect x="294.6" y="1553" width="2.7" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="297.58" 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>SpinPause (1 samples, 0.08%)</title><rect x="663.4" y="1601" width="0.9" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text text-anchor="" x="666.44" 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>__GI___writev (1 samples, 0.08%)</title><rect x="851.0" y="1585" width="1.0" height="15.0" fill="rgb(248,119,119)" rx="2" ry="2" />
<text text-anchor="" x="854.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>__GI___writev (6 samples, 0.46%)</title><rect x="687.9" y="1857" width="5.4" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" />
<text text-anchor="" x="690.91" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/ContainerResponse:::setEntityType (2 samples, 0.15%)</title><rect x="1086.7" y="913" width="1.8" height="15.0" fill="rgb(58,173,173)" rx="2" ry="2" />
<text text-anchor="" x="1089.68" 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>Lsun/nio/ch/SelectionKeyImpl:::nioInterestOps (1 samples, 0.08%)</title><rect x="322.7" y="1553" width="0.9" height="15.0" fill="rgb(67,180,180)" rx="2" ry="2" />
<text text-anchor="" x="325.67" 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>futex_wait (2 samples, 0.15%)</title><rect x="61.7" y="1745" width="1.8" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="64.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>perf_event_context_sched_in (2 samples, 0.15%)</title><rect x="47.2" y="1665" width="1.8" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="50.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>JavaThread::handle_special_suspend_equivalent_condition (1 samples, 0.08%)</title><rect x="1020.5" y="1585" width="0.9" height="15.0" fill="rgb(188,188,54)" rx="2" ry="2" />
<text text-anchor="" x="1023.52" 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.08%)</title><rect x="585.5" y="961" width="0.9" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="588.50" 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>ip_rcv (2 samples, 0.15%)</title><rect x="1007.8" y="1425" width="1.8" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="1010.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>Ljava/lang/IllegalArgumentException:::&lt;init&gt; (8 samples, 0.61%)</title><rect x="736.9" y="1089" width="7.2" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text text-anchor="" x="739.85" 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>Lorg/jvnet/hk2/internal/Utilities:::isProxiable (1 samples, 0.08%)</title><rect x="368.9" y="881" width="0.9" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text text-anchor="" x="371.89" 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>Ljavax/ws/rs/core/AbstractMultivaluedMap:::get (1 samples, 0.08%)</title><rect x="381.6" y="801" width="0.9" height="15.0" fill="rgb(53,167,167)" rx="2" ry="2" />
<text text-anchor="" x="384.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>G1RemSet::oops_into_collection_set_do (1 samples, 0.08%)</title><rect x="46.3" y="1809" width="0.9" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="49.25" y="1819.5" font-size="12" 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.31%)</title><rect x="181.3" y="1745" width="3.6" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="184.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>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="889.1" y="1585" width="0.9" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="892.11" 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_epoll_ctl (1 samples, 0.08%)</title><rect x="274.6" y="1793" width="0.9" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="277.64" y="1803.5" font-size="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.08%)</title><rect x="396.1" y="545" width="0.9" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="399.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>intel_pmu_enable_all (1 samples, 0.08%)</title><rect x="423.3" y="417" width="0.9" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="426.27" 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>__tcp_push_pending_frames (1 samples, 0.08%)</title><rect x="1150.1" y="1217" width="0.9" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="1153.12" 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_finish_output (1 samples, 0.08%)</title><rect x="1096.7" y="353" width="0.9" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="1099.65" 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>tcp_transmit_skb (1 samples, 0.08%)</title><rect x="677.0" y="1617" width="0.9" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="680.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>__intel_pmu_enable_all (2 samples, 0.15%)</title><rect x="997.9" y="1585" width="1.8" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="1000.86" 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>Lorg/glassfish/jersey/server/internal/routing/RoutingStage:::apply (7 samples, 0.54%)</title><rect x="1079.4" y="977" width="6.4" height="15.0" fill="rgb(80,192,192)" rx="2" ry="2" />
<text text-anchor="" x="1082.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>tcp_transmit_skb (1 samples, 0.08%)</title><rect x="439.6" y="961" width="0.9" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="442.59" 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>JavaThread::thread_main_inner (1 samples, 0.08%)</title><rect x="479.5" y="1841" width="0.9" height="15.0" fill="rgb(221,221,67)" rx="2" ry="2" />
<text text-anchor="" x="482.46" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/model/ResourceMethodInvoker:::apply (17 samples, 1.31%)</title><rect x="939.0" y="1009" width="15.4" height="15.0" fill="rgb(84,197,197)" rx="2" ry="2" />
<text text-anchor="" x="941.96" 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>Lorg/eclipse/jetty/http/HttpParser:::parseNext (4 samples, 0.31%)</title><rect x="457.7" y="1569" width="3.6" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text text-anchor="" x="460.71" 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>Lorg/glassfish/jersey/server/internal/routing/MethodSelectingRouter$4:::apply (1 samples, 0.08%)</title><rect x="771.3" y="897" width="0.9" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="774.29" 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 (2 samples, 0.15%)</title><rect x="38.1" y="1617" width="1.8" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="41.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>Ljava/lang/String:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="747.7" y="945" width="0.9" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="750.73" 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>Matcher::ReduceInst (1 samples, 0.08%)</title><rect x="140.5" y="1697" width="0.9" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="143.51" 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>Lorg/glassfish/jersey/server/model/internal/JavaResourceMethodDispatcherProvider$AbstractMethodParamInvoker:::getParamValues (19 samples, 1.46%)</title><rect x="588.2" y="929" width="17.2" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="591.22" 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>__fdget_pos (1 samples, 0.08%)</title><rect x="985.2" y="1809" width="0.9" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="988.18" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/http/HttpFields:::getFieldNames (1 samples, 0.08%)</title><rect x="217.5" y="1601" width="0.9" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="220.54" 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>Ljava/util/HashMap$HashIterator:::nextNode (1 samples, 0.08%)</title><rect x="1128.4" y="1073" width="0.9" height="15.0" fill="rgb(92,203,203)" rx="2" ry="2" />
<text text-anchor="" x="1131.37" 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>default_wake_function (1 samples, 0.08%)</title><rect x="1008.7" y="1281" width="0.9" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="1011.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>vfs_writev (1 samples, 0.08%)</title><rect x="1096.7" y="577" width="0.9" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="1099.65" 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>__GI___writev (3 samples, 0.23%)</title><rect x="873.7" y="1857" width="2.7" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text text-anchor="" x="876.70" y="1867.5" font-size="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.08%)</title><rect x="978.8" y="1601" width="0.9" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="981.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>Lorg/jvnet/hk2/internal/SystemDescriptor:::create (12 samples, 0.92%)</title><rect x="813.0" y="769" width="10.9" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text text-anchor="" x="815.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>Ljavax/ws/rs/core/UriBuilder:::fromUri (31 samples, 2.38%)</title><rect x="336.3" y="1201" width="28.1" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="339.27" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (3 samples, 0.23%)</title><rect x="294.6" y="1585" width="2.7" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="297.58" 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.08%)</title><rect x="994.2" y="1841" width="0.9" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="997.24" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/Response:::setContentType (1 samples, 0.08%)</title><rect x="1098.5" y="817" width="0.9" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text text-anchor="" x="1101.46" 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_iter_readv_writev (2 samples, 0.15%)</title><rect x="855.6" y="1713" width="1.8" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="858.58" 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_readv_writev (3 samples, 0.23%)</title><rect x="1006.9" y="1793" width="2.7" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="1009.93" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/net/URI:::normalize (2 samples, 0.15%)</title><rect x="616.3" y="1105" width="1.8" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="619.31" 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>Lorg/glassfish/jersey/process/internal/Stages:::process (2 samples, 0.15%)</title><rect x="571.9" y="977" width="1.8" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="574.90" 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>Ljava/util/regex/Matcher:::match (1 samples, 0.08%)</title><rect x="379.8" y="929" width="0.9" height="15.0" fill="rgb(53,202,53)" rx="2" ry="2" />
<text text-anchor="" x="382.77" 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>default_wake_function (1 samples, 0.08%)</title><rect x="634.4" y="961" width="0.9" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="637.44" 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 (1 samples, 0.08%)</title><rect x="791.2" y="705" width="0.9" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="794.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>do_iter_readv_writev (2 samples, 0.15%)</title><rect x="633.5" y="1457" width="1.8" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="636.53" 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>kmem_cache_alloc (1 samples, 0.08%)</title><rect x="514.8" y="1809" width="0.9" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="517.81" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/model/MethodHandler$ClassBasedMethodHandler:::getInstance (3 samples, 0.23%)</title><rect x="772.2" y="881" width="2.7" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="775.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>do_readv_writev (1 samples, 0.08%)</title><rect x="843.8" y="1185" width="0.9" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="846.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>tcp_write_xmit (1 samples, 0.08%)</title><rect x="1150.1" y="1201" width="0.9" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="1153.12" 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>native_write_msr_safe (2 samples, 0.15%)</title><rect x="142.3" y="1665" width="1.8" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="145.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>Lorg/glassfish/jersey/process/internal/RequestScope:::findOrCreate (6 samples, 0.46%)</title><rect x="1121.1" y="785" width="5.5" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text text-anchor="" x="1124.12" 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>Universe::should_fill_in_stack_trace (1 samples, 0.08%)</title><rect x="1044.1" y="961" width="0.9" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="1047.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>sched_clock (1 samples, 0.08%)</title><rect x="502.1" y="1569" width="0.9" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="505.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>Lorg/eclipse/jetty/server/handler/ContextHandler:::doHandle (122 samples, 9.37%)</title><rect x="336.3" y="1377" width="110.5" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text text-anchor="" x="339.27" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (2 samples, 0.15%)</title><rect x="705.1" y="1793" width="1.8" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="708.13" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::toLowerCase (1 samples, 0.08%)</title><rect x="622.7" y="993" width="0.9" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="625.66" 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>futex_wait (2 samples, 0.15%)</title><rect x="997.9" y="1745" width="1.8" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="1000.86" 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>Lcom/codahale/metrics/ExponentiallyDecayingReservoir:::weight (1 samples, 0.08%)</title><rect x="940.8" y="785" width="0.9" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="943.77" 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>Ljava/util/HashMap:::get (1 samples, 0.08%)</title><rect x="951.6" y="513" width="0.9" height="15.0" fill="rgb(107,218,218)" rx="2" ry="2" />
<text text-anchor="" x="954.64" 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>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:::acquireShared (1 samples, 0.08%)</title><rect x="432.3" y="817" width="0.9" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="435.33" 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>__fget_light (1 samples, 0.08%)</title><rect x="872.8" y="1793" width="0.9" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="875.80" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/handler/StatisticsHandler:::handle (79 samples, 6.07%)</title><rect x="898.2" y="1537" width="71.6" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text text-anchor="" x="901.17" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/ecl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/http/HttpGenerator:::generateResponse (1 samples, 0.08%)</title><rect x="934.4" y="705" width="0.9" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text text-anchor="" x="937.42" 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_start (104 samples, 7.99%)</title><rect x="888.2" y="1873" width="94.3" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text text-anchor="" x="891.20" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java_start</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (1 samples, 0.08%)</title><rect x="291.0" y="1761" width="0.9" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="293.95" 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>intel_pmu_enable_all (2 samples, 0.15%)</title><rect x="278.3" y="1665" width="1.8" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="281.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>ep_scan_ready_list (1 samples, 0.08%)</title><rect x="286.4" y="1729" width="0.9" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="289.42" 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>Lorg/eclipse/jetty/server/Response:::getHeader (1 samples, 0.08%)</title><rect x="530.2" y="1393" width="0.9" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="533.22" 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_softirq (1 samples, 0.08%)</title><rect x="1094.8" y="225" width="0.9" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="1097.84" 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>Lorg/glassfish/hk2/utilities/reflection/ReflectionHelper:::getNameFromAllQualifiers (1 samples, 0.08%)</title><rect x="598.2" y="785" width="0.9" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="601.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>Lorg/glassfish/jersey/message/internal/CommittingOutputStream:::close (4 samples, 0.31%)</title><rect x="934.4" y="929" width="3.6" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="937.42" 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>[libc-2.23.so] (8 samples, 0.61%)</title><rect x="987.0" y="1873" width="7.2" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="989.99" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/io/ChannelEndPoint:::flush (6 samples, 0.46%)</title><rect x="391.6" y="657" width="5.4" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="394.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>tcp_push (4 samples, 0.31%)</title><rect x="293.7" y="1697" width="3.6" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="296.67" 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_v4_rcv (1 samples, 0.08%)</title><rect x="634.4" y="1041" width="0.9" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="637.44" 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>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="276.5" y="1729" width="0.9" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="279.45" 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_epoll_wait (2 samples, 0.15%)</title><rect x="1169.2" y="1761" width="1.8" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="1172.16" 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>Lorg/eclipse/jetty/http/HttpFields$1:::nextElement (1 samples, 0.08%)</title><rect x="618.1" y="1121" width="0.9" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="621.13" 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>_new_array_Java (1 samples, 0.08%)</title><rect x="226.6" y="1553" width="0.9" height="15.0" fill="rgb(219,77,77)" rx="2" ry="2" />
<text text-anchor="" x="229.61" 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>Ljavax/ws/rs/core/AbstractMultivaluedMap:::getValues (1 samples, 0.08%)</title><rect x="572.8" y="865" width="0.9" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text text-anchor="" x="575.81" 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>Lorg/jvnet/hk2/internal/FactoryCreator:::dispose (7 samples, 0.54%)</title><rect x="608.2" y="1057" width="6.3" height="15.0" fill="rgb(66,179,179)" rx="2" ry="2" />
<text text-anchor="" x="611.16" 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>perf_pmu_enable.part.89 (2 samples, 0.15%)</title><rect x="74.3" y="1633" width="1.9" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="77.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>__vfs_write (2 samples, 0.15%)</title><rect x="995.1" y="1809" width="1.9" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="998.15" y="1819.5" font-size="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 (157 samples, 12.06%)</title><rect x="1019.6" y="1889" width="142.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="1022.62" y="1899.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>Lsun/nio/ch/EPollArrayWrapper:::updateRegistrations (1 samples, 0.08%)</title><rect x="891.8" y="1537" width="0.9" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="894.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>pthread_cond_wait@@GLIBC_2.3.2 (8 samples, 0.61%)</title><rect x="13.6" y="1857" width="7.3" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text text-anchor="" x="16.63" y="1867.5" font-size="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.15%)</title><rect x="651.7" y="1649" width="1.8" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="654.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>Lorg/eclipse/jetty/server/HttpConnection:::onCompleted (1 samples, 0.08%)</title><rect x="733.2" y="1553" width="0.9" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text text-anchor="" x="736.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>x86_pmu_enable (1 samples, 0.08%)</title><rect x="50.8" y="1665" width="0.9" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="53.78" 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>Ljava/util/concurrent/ConcurrentHashMap:::putVal (1 samples, 0.08%)</title><rect x="559.2" y="817" width="0.9" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text text-anchor="" x="562.22" 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>sys_futex (2 samples, 0.15%)</title><rect x="1011.5" y="1825" width="1.8" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="1014.46" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/http/HttpParser:::parseContent (2 samples, 0.15%)</title><rect x="1118.4" y="481" width="1.8" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text text-anchor="" x="1121.40" 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>Lorg/glassfish/jersey/server/internal/routing/RoutingStage:::apply (5 samples, 0.38%)</title><rect x="567.4" y="977" width="4.5" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="570.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>thread_entry (161 samples, 12.37%)</title><rect x="317.2" y="1825" width="145.9" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" />
<text text-anchor="" x="320.24" y="1835.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>Ljava/util/LinkedList:::toArray (1 samples, 0.08%)</title><rect x="376.1" y="929" width="1.0" height="15.0" fill="rgb(101,211,211)" rx="2" ry="2" />
<text text-anchor="" x="379.14" 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>mark_wake_futex (1 samples, 0.08%)</title><rect x="1016.9" y="1793" width="0.9" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="1019.90" y="1803.5" font-size="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.08%)</title><rect x="968.0" y="1089" width="0.9" height="15.0" fill="rgb(219,77,77)" rx="2" ry="2" />
<text text-anchor="" x="970.96" 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_start (146 samples, 11.21%)</title><rect x="517.5" y="1873" width="132.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="520.53" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java_start</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (1 samples, 0.08%)</title><rect x="623.6" y="993" width="0.9" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="626.56" 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>Lorg/glassfish/jersey/message/internal/ReaderInterceptorExecutor$TerminalReaderInterceptor:::invokeReadFrom (7 samples, 0.54%)</title><rect x="591.8" y="753" width="6.4" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="594.84" 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_writev (2 samples, 0.15%)</title><rect x="633.5" y="1505" width="1.8" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="636.53" 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>Lorg/eclipse/jetty/http/HttpURI:::parseRequestTarget (1 samples, 0.08%)</title><rect x="1158.3" y="1521" width="0.9" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="1161.28" 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>Ljava/util/concurrent/ArrayBlockingQueue:::remainingCapacity (1 samples, 0.08%)</title><rect x="1033.2" y="1473" width="0.9" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="1036.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>Lsun/nio/ch/SelectionKeyImpl:::interestOps (1 samples, 0.08%)</title><rect x="322.7" y="1569" width="0.9" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="325.67" 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>Lorg/eclipse/jetty/server/handler/HandlerWrapper:::handle (122 samples, 9.37%)</title><rect x="734.1" y="1553" width="110.6" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="737.13" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/routing/PushMethodHandlerRouter:::apply (3 samples, 0.23%)</title><rect x="772.2" y="897" width="2.7" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text text-anchor="" x="775.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>futex_wait (2 samples, 0.15%)</title><rect x="74.3" y="1745" width="1.9" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="77.35" 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>Lorg/glassfish/jersey/message/internal/WriterInterceptorExecutor:::proceed (1 samples, 0.08%)</title><rect x="388.8" y="945" width="0.9" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="391.83" 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>nmi_handle (1 samples, 0.08%)</title><rect x="262.0" y="1425" width="0.9" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="264.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>Lorg/eclipse/jetty/server/HttpChannel:::sendResponse (8 samples, 0.61%)</title><rect x="389.7" y="785" width="7.3" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="392.74" 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>Lorg/glassfish/jersey/servlet/WebComponent:::addRequestHeaders (1 samples, 0.08%)</title><rect x="1188.2" y="1137" width="0.9" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="1191.19" 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>smp_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="785.8" y="593" width="0.9" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="788.79" 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>Lorg/eclipse/jetty/server/HttpOutput:::write (9 samples, 0.69%)</title><rect x="784.0" y="833" width="8.1" height="15.0" fill="rgb(93,204,204)" rx="2" ry="2" />
<text text-anchor="" x="786.98" 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 (2 samples, 0.15%)</title><rect x="649.8" y="1489" width="1.9" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="652.85" 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>Lorg/eclipse/jetty/util/ArrayTrie:::getBest (2 samples, 0.15%)</title><rect x="643.5" y="1537" width="1.8" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="646.50" 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>Lorg/glassfish/jersey/server/ContainerResponse:::close (3 samples, 0.23%)</title><rect x="578.2" y="961" width="2.8" height="15.0" fill="rgb(83,196,196)" rx="2" ry="2" />
<text text-anchor="" x="581.25" 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>Lch/qos/logback/access/jetty/JettyServerAdapter:::buildResponseHeaderMap (1 samples, 0.08%)</title><rect x="217.5" y="1617" width="0.9" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="220.54" 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>Ljava/util/concurrent/atomic/AtomicReferenceArray:::checkedByteOffset (1 samples, 0.08%)</title><rect x="806.6" y="433" width="0.9" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="809.64" 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>Lcom/fasterxml/jackson/databind/ObjectReader:::_bind (1 samples, 0.08%)</title><rect x="803.0" y="721" width="0.9" height="15.0" fill="rgb(54,203,54)" rx="2" ry="2" />
<text text-anchor="" x="806.01" 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>Runtime1::counter_overflow (1 samples, 0.08%)</title><rect x="1161.0" y="1473" width="0.9" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="1164.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>vfs_read (1 samples, 0.08%)</title><rect x="524.8" y="1569" width="0.9" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="527.78" 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 (4 samples, 0.31%)</title><rect x="78.0" y="1793" width="3.6" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="80.97" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/core/JsonFactory:::_getBufferRecycler (1 samples, 0.08%)</title><rect x="944.4" y="657" width="0.9" height="15.0" fill="rgb(78,191,191)" rx="2" ry="2" />
<text text-anchor="" x="947.39" 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>update_curr (1 samples, 0.08%)</title><rect x="861.0" y="1681" width="0.9" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="864.01" 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_write (1 samples, 0.08%)</title><rect x="200.3" y="1793" width="0.9" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="203.32" y="1803.5" font-size="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.15%)</title><rect x="144.1" y="1633" width="1.8" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="147.13" 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>Lsun/nio/ch/SocketDispatcher:::read (1 samples, 0.08%)</title><rect x="635.3" y="1505" width="1.0" height="15.0" fill="rgb(103,213,213)" rx="2" ry="2" />
<text text-anchor="" x="638.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>Ljava/util/concurrent/locks/ReentrantLock:::lock (1 samples, 0.08%)</title><rect x="1023.2" y="1585" width="0.9" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="1026.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>Klass::class_loader (1 samples, 0.08%)</title><rect x="213.0" y="1601" width="0.9" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text text-anchor="" x="216.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>Lsun/nio/ch/Util:::offerFirstTemporaryDirectBuffer (1 samples, 0.08%)</title><rect x="846.5" y="1521" width="0.9" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="849.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>apic_timer_interrupt (1 samples, 0.08%)</title><rect x="407.9" y="753" width="0.9" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="410.86" 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>nmi_handle (1 samples, 0.08%)</title><rect x="120.6" y="1585" width="0.9" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="123.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>Klass::class_loader (1 samples, 0.08%)</title><rect x="223.0" y="1473" width="0.9" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="225.98" 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_read (1 samples, 0.08%)</title><rect x="1028.7" y="1489" width="0.9" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="1031.68" 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>JavaCalls::call_virtual (1 samples, 0.08%)</title><rect x="653.5" y="1793" width="0.9" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="656.47" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/ServerRuntime$Responder:::processResponse (24 samples, 1.84%)</title><rect x="778.5" y="993" width="21.8" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="781.54" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/nio/ch/IOUtil:::read (3 samples, 0.23%)</title><rect x="454.1" y="1537" width="2.7" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="457.09" 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>Lorg/glassfish/jersey/message/internal/HttpHeaderReaderImpl:::skipWhiteSpace (1 samples, 0.08%)</title><rect x="965.2" y="977" width="0.9" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="968.24" 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>tcp_sendmsg (1 samples, 0.08%)</title><rect x="838.4" y="1025" width="0.9" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="841.36" 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>Ljava/util/LinkedHashMap:::get (2 samples, 0.15%)</title><rect x="574.6" y="817" width="1.8" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="577.62" 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>Ljava/util/LinkedHashMap$LinkedKeySet:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="836.5" y="1025" width="1.0" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="839.54" 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>end_repeat_nmi (1 samples, 0.08%)</title><rect x="463.1" y="1617" width="1.0" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="466.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>Ljava/util/concurrent/ConcurrentHashMap:::putVal (1 samples, 0.08%)</title><rect x="615.4" y="1009" width="0.9" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text text-anchor="" x="618.41" 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>Lorg/glassfish/jersey/server/internal/monitoring/CompositeRequestEventListener:::onEvent (3 samples, 0.23%)</title><rect x="939.0" y="945" width="2.7" height="15.0" fill="rgb(88,199,199)" rx="2" ry="2" />
<text text-anchor="" x="941.96" 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>Lorg/eclipse/jetty/io/SelectChannelEndPoint:::updateKey (1 samples, 0.08%)</title><rect x="1030.5" y="1601" width="0.9" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text text-anchor="" x="1033.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>Lch/qos/logback/core/util/CachingDateFormatter:::format (2 samples, 0.15%)</title><rect x="221.2" y="1537" width="1.8" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text text-anchor="" x="224.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>ip_local_deliver_finish (1 samples, 0.08%)</title><rect x="875.5" y="1377" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="878.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>Ljava/util/HashSet:::isEmpty (1 samples, 0.08%)</title><rect x="325.4" y="1537" width="0.9" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="328.39" 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.08%)</title><rect x="1084.9" y="929" width="0.9" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text text-anchor="" x="1087.87" 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>Monitor::wait (7 samples, 0.54%)</title><rect x="174.9" y="1825" width="6.4" height="15.0" fill="rgb(188,188,55)" rx="2" ry="2" />
<text text-anchor="" x="177.95" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/StringBuilder:::append (1 samples, 0.08%)</title><rect x="356.2" y="1025" width="0.9" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="359.21" 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>Ljersey/repackaged/com/google/common/collect/Lists:::newLinkedList (1 samples, 0.08%)</title><rect x="780.4" y="897" width="0.9" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="783.35" 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>__local_bh_enable_ip (1 samples, 0.08%)</title><rect x="677.0" y="1521" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="680.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>Lorg/glassfish/jersey/uri/internal/UriParser:::parseComponent (2 samples, 0.15%)</title><rect x="361.6" y="1137" width="1.9" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="364.64" 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>Ljava/util/BitSet:::recalculateWordsInUse (1 samples, 0.08%)</title><rect x="1024.1" y="1617" width="1.0" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text text-anchor="" x="1027.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>__fsnotify_parent (1 samples, 0.08%)</title><rect x="265.6" y="1665" width="0.9" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="268.58" 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>[libpthread-2.23.so] (2 samples, 0.15%)</title><rect x="289.1" y="1857" width="1.9" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" />
<text text-anchor="" x="292.14" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpChannel:::handle (132 samples, 10.14%)</title><rect x="1033.2" y="1585" width="119.6" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text text-anchor="" x="1036.21" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/j..</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.08%)</title><rect x="202.1" y="1857" width="0.9" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="205.14" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/EntityInputStream:::read (2 samples, 0.15%)</title><rect x="414.2" y="593" width="1.8" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="417.21" 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>__intel_pmu_enable_all (2 samples, 0.15%)</title><rect x="33.6" y="1601" width="1.8" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="36.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>JavaCalls::call_virtual (15 samples, 1.15%)</title><rect x="1176.4" y="1793" width="13.6" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="1179.41" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/CommittingOutputStream:::enableBuffering (1 samples, 0.08%)</title><rect x="402.4" y="929" width="0.9" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="405.43" 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>sys_epoll_ctl (1 samples, 0.08%)</title><rect x="514.8" y="1825" width="0.9" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="517.81" y="1835.5" font-size="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.08%)</title><rect x="362.5" y="1121" width="1.0" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="365.55" 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>_new_array_nozero_Java (1 samples, 0.08%)</title><rect x="620.8" y="945" width="1.0" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text text-anchor="" x="623.84" 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>entry_SYSCALL_64_fastpath (2 samples, 0.15%)</title><rect x="633.5" y="1521" width="1.8" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="636.53" 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>Lch/qos/logback/core/AsyncAppenderBase:::put (1 samples, 0.08%)</title><rect x="982.5" y="1873" width="0.9" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text text-anchor="" x="985.46" y="1883.5" font-size="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.08%)</title><rect x="1185.5" y="849" width="0.9" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="1188.47" 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>Ljava/text/SimpleDateFormat:::format (2 samples, 0.15%)</title><rect x="243.8" y="1473" width="1.8" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text text-anchor="" x="246.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>Lsun/nio/ch/IOUtil:::readIntoNativeBuffer (1 samples, 0.08%)</title><rect x="635.3" y="1521" width="1.0" height="15.0" fill="rgb(63,176,176)" rx="2" ry="2" />
<text text-anchor="" x="638.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>Lorg/eclipse/jetty/util/thread/QueuedThreadPool$2:::run (161 samples, 12.37%)</title><rect x="317.2" y="1729" width="145.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="320.24" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/jetty..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashSet:::iterator (1 samples, 0.08%)</title><rect x="893.6" y="1601" width="0.9" height="15.0" fill="rgb(101,246,101)" rx="2" ry="2" />
<text text-anchor="" x="896.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>__tcp_push_pending_frames (2 samples, 0.15%)</title><rect x="983.4" y="1617" width="1.8" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="986.36" 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_Throwable::fill_in_stack_trace (9 samples, 0.69%)</title><rect x="541.1" y="961" width="8.1" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="544.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>Lorg/eclipse/jetty/server/HttpConnection:::fillRequestBuffer (4 samples, 0.31%)</title><rect x="635.3" y="1585" width="3.7" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text text-anchor="" x="638.35" 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>OptoRuntime::new_instance_C (1 samples, 0.08%)</title><rect x="826.6" y="945" width="0.9" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="829.57" 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>Interpreter (152 samples, 11.67%)</title><rect x="714.2" y="1745" width="137.8" height="15.0" fill="rgb(213,68,68)" rx="2" ry="2" />
<text text-anchor="" x="717.19" y="1755.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>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="681.6" y="1857" width="0.9" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="684.57" y="1867.5" font-size="12" 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.08%)</title><rect x="273.7" y="1793" width="0.9" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="276.73" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__clock_gettime (1 samples, 0.08%)</title><rect x="704.2" y="1873" width="0.9" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text text-anchor="" x="707.22" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/SystemDescriptor:::dispose (4 samples, 0.31%)</title><rect x="430.5" y="1073" width="3.6" height="15.0" fill="rgb(94,206,206)" rx="2" ry="2" />
<text text-anchor="" x="433.52" 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>x86_pmu_enable (5 samples, 0.38%)</title><rect x="695.2" y="1665" width="4.5" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="698.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>Lorg/glassfish/jersey/message/internal/OutboundMessageContext:::getLocation (1 samples, 0.08%)</title><rect x="584.6" y="945" width="0.9" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="587.59" 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>dequeue_task_fair (1 samples, 0.08%)</title><rect x="880.0" y="1681" width="1.0" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="883.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>__intel_pmu_enable_all (4 samples, 0.31%)</title><rect x="181.3" y="1617" width="3.6" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="184.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>Lorg/glassfish/jersey/process/internal/RequestScope$Instance:::remove (6 samples, 0.46%)</title><rect x="1130.2" y="1089" width="5.4" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="1133.18" 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>Lorg/glassfish/jersey/uri/UriTemplate:::createURIWithStringValues (3 samples, 0.23%)</title><rect x="839.3" y="1153" width="2.7" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="842.26" 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>[unknown] (24 samples, 1.84%)</title><rect x="682.5" y="1873" width="21.7" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text text-anchor="" x="685.47" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/WriterInterceptorExecutor:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="573.7" y="945" width="0.9" height="15.0" fill="rgb(78,190,190)" rx="2" ry="2" />
<text text-anchor="" x="576.72" 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_iter_readv_writev (2 samples, 0.15%)</title><rect x="983.4" y="1713" width="1.8" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="986.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>Lsun/nio/ch/SelectorImpl:::processDeregisterQueue (1 samples, 0.08%)</title><rect x="1029.6" y="1553" width="0.9" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="1032.59" 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>OptoRuntime::new_instance_C (1 samples, 0.08%)</title><rect x="816.6" y="545" width="0.9" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="819.61" 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>Lorg/glassfish/jersey/server/model/internal/JavaResourceMethodDispatcherProvider$AbstractMethodParamInvoker:::getParamValues (25 samples, 1.92%)</title><rect x="802.1" y="929" width="22.7" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="805.10" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/servlet/ServletHandler$CachedChain:::doFilter (121 samples, 9.29%)</title><rect x="336.3" y="1345" width="109.6" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text text-anchor="" x="339.27" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>HandleMarkCleaner::~HandleMarkCleaner (1 samples, 0.08%)</title><rect x="240.2" y="1473" width="0.9" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="243.20" 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.08%)</title><rect x="50.8" y="1633" width="0.9" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="53.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>Ljava/net/URI$Parser:::checkChars (1 samples, 0.08%)</title><rect x="1142.9" y="1105" width="0.9" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="1145.87" 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>Lorg/glassfish/jersey/server/ContainerResponse:::close (1 samples, 0.08%)</title><rect x="586.4" y="977" width="0.9" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="589.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>Ljava/util/regex/Pattern$BranchConn:::match (1 samples, 0.08%)</title><rect x="358.9" y="865" width="0.9" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text text-anchor="" x="361.92" 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>perf_pmu_enable.part.89 (2 samples, 0.15%)</title><rect x="153.2" y="1649" width="1.8" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="156.20" 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>Lch/qos/logback/access/spi/AccessEvent:::prepareForDeferredProcessing (6 samples, 0.46%)</title><rect x="328.1" y="1457" width="5.4" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text text-anchor="" x="331.11" 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_task_sched_in (1 samples, 0.08%)</title><rect x="50.8" y="1713" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="53.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>hrtimer_try_to_cancel (1 samples, 0.08%)</title><rect x="276.5" y="1649" width="0.9" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="279.45" 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_Throwable::fill_in_stack_trace (1 samples, 0.08%)</title><rect x="514.8" y="1873" width="0.9" height="15.0" fill="rgb(175,175,50)" rx="2" ry="2" />
<text text-anchor="" x="517.81" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/PerLookupContext:::findOrCreate (3 samples, 0.23%)</title><rect x="1123.8" y="689" width="2.8" height="15.0" fill="rgb(99,244,99)" rx="2" ry="2" />
<text text-anchor="" x="1126.84" 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_nmi (2 samples, 0.15%)</title><rect x="84.3" y="1617" width="1.8" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="87.32" 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>run_rebalance_domains (1 samples, 0.08%)</title><rect x="288.2" y="1665" width="0.9" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="291.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>Lorg/eclipse/jetty/util/IteratingCallback:::reset (1 samples, 0.08%)</title><rect x="389.7" y="721" width="0.9" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="392.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>Lorg/glassfish/jersey/server/ContainerResponse:::getMediaType (1 samples, 0.08%)</title><rect x="571.9" y="913" width="0.9" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="574.90" 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>futex_wait_queue_me (1 samples, 0.08%)</title><rect x="482.2" y="1649" width="0.9" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="485.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>tcp_transmit_skb (1 samples, 0.08%)</title><rect x="1096.7" y="417" width="0.9" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="1099.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>Lorg/glassfish/jersey/message/internal/OutboundMessageContext:::enableBuffering (1 samples, 0.08%)</title><rect x="938.0" y="945" width="1.0" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="941.05" 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>Interpreter (15 samples, 1.15%)</title><rect x="1176.4" y="1745" width="13.6" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="1179.41" 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>sock_write_iter (1 samples, 0.08%)</title><rect x="851.0" y="1489" width="1.0" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="854.04" 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>Lorg/glassfish/jersey/internal/inject/Providers:::mergeAndSortRankedProviders (5 samples, 0.38%)</title><rect x="561.9" y="961" width="4.6" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="564.94" 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>perf_pmu_enable.part.89 (1 samples, 0.08%)</title><rect x="672.5" y="1681" width="0.9" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="675.50" 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>JVM_FillInStackTrace (10 samples, 0.77%)</title><rect x="540.2" y="977" width="9.0" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text text-anchor="" x="543.18" 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>Ljava/util/concurrent/ConcurrentHashMap:::get (1 samples, 0.08%)</title><rect x="914.5" y="945" width="0.9" height="15.0" fill="rgb(84,197,197)" rx="2" ry="2" />
<text text-anchor="" x="917.49" 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>Lorg/eclipse/jetty/util/thread/Locker:::concLock (1 samples, 0.08%)</title><rect x="527.5" y="1473" width="0.9" height="15.0" fill="rgb(105,216,216)" rx="2" ry="2" />
<text text-anchor="" x="530.50" 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>jshort_arraycopy (1 samples, 0.08%)</title><rect x="1069.5" y="1089" width="0.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="1072.46" 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>Ljava/lang/String:::valueOf (1 samples, 0.08%)</title><rect x="1062.2" y="1057" width="0.9" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="1065.21" 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>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::put (1 samples, 0.08%)</title><rect x="385.2" y="849" width="0.9" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="388.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>pthread_cond_wait@@GLIBC_2.3.2 (9 samples, 0.69%)</title><rect x="203.0" y="1841" width="8.2" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text text-anchor="" x="206.04" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>IndexSetIterator::IndexSetIterator (1 samples, 0.08%)</title><rect x="145.9" y="1713" width="1.0" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text text-anchor="" x="148.94" 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>Lio/dropwizard/jersey/filter/AllowedMethodsFilter:::doFilter (12 samples, 0.92%)</title><rect x="1178.2" y="1329" width="10.9" height="15.0" fill="rgb(68,182,182)" rx="2" ry="2" />
<text text-anchor="" x="1181.22" 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>Lorg/glassfish/jersey/server/ServerRuntime$2:::run (52 samples, 3.99%)</title><rect x="558.3" y="1025" width="47.1" height="15.0" fill="rgb(70,184,184)" rx="2" ry="2" />
<text text-anchor="" x="561.31" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/servlet/WebComponent:::serviceImpl (1 samples, 0.08%)</title><rect x="682.5" y="1777" width="0.9" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text text-anchor="" x="685.47" y="1787.5" font-size="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.08%)</title><rect x="423.3" y="433" width="0.9" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="426.27" 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>Lorg/eclipse/jetty/servlet/FilterMapping:::dispatch (1 samples, 0.08%)</title><rect x="445.9" y="1329" width="0.9" height="15.0" fill="rgb(55,169,169)" rx="2" ry="2" />
<text text-anchor="" x="448.93" 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 (4 samples, 0.31%)</title><rect x="668.9" y="1585" width="3.6" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="671.88" 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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getServiceHandle (1 samples, 0.08%)</title><rect x="826.6" y="1025" width="0.9" height="15.0" fill="rgb(108,219,219)" rx="2" ry="2" />
<text text-anchor="" x="829.57" 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>finish_task_switch (2 samples, 0.15%)</title><rect x="884.6" y="1745" width="1.8" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="887.58" 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>Lorg/eclipse/jetty/util/BlockingArrayQueue:::poll (1 samples, 0.08%)</title><rect x="317.2" y="1713" width="0.9" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="320.24" 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>Lorg/eclipse/jetty/io/ManagedSelector:::submit (1 samples, 0.08%)</title><rect x="326.3" y="1489" width="0.9" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="329.30" 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>Lorg/glassfish/jersey/server/internal/process/RequestProcessingContext:::triggerEvent (3 samples, 0.23%)</title><rect x="939.0" y="961" width="2.7" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="941.96" 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>new_sync_write (1 samples, 0.08%)</title><rect x="200.3" y="1777" width="0.9" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="203.32" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/reflect/Constructor:::newInstance (1 samples, 0.08%)</title><rect x="1185.5" y="913" width="0.9" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1188.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>perf_pmu_enable.part.89 (2 samples, 0.15%)</title><rect x="68.9" y="1649" width="1.8" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="71.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>Ljava/util/regex/Matcher:::find (4 samples, 0.31%)</title><rect x="748.6" y="1025" width="3.7" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="751.63" 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>Lio/dropwizard/request/logging/async/AsyncAccessEventAppenderFactory$1:::preprocess (1 samples, 0.08%)</title><rect x="896.4" y="1489" width="0.9" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="899.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>Lorg/glassfish/jersey/server/internal/JsonWithPaddingInterceptor:::aroundWriteTo (2 samples, 0.15%)</title><rect x="781.3" y="897" width="1.8" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text text-anchor="" x="784.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>Ljava/util/regex/Matcher:::matches (1 samples, 0.08%)</title><rect x="770.4" y="897" width="0.9" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="773.38" 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>Ljava/net/URI$Parser:::parse (3 samples, 0.23%)</title><rect x="442.3" y="1137" width="2.7" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text text-anchor="" x="445.30" 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 (2 samples, 0.15%)</title><rect x="120.6" y="1857" width="1.8" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="123.57" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/io/ArrayByteBufferPool:::acquire (2 samples, 0.15%)</title><rect x="983.4" y="1857" width="1.8" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="986.36" y="1867.5" font-size="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 (1 samples, 0.08%)</title><rect x="1002.4" y="1777" width="0.9" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="1005.40" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorLinkedHashMap:::get (1 samples, 0.08%)</title><rect x="1083.1" y="769" width="0.9" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="1086.06" 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_epoll_ctl (1 samples, 0.08%)</title><rect x="1016.0" y="1825" width="0.9" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="1018.99" y="1835.5" font-size="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.08%)</title><rect x="286.4" y="1761" width="0.9" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="289.42" 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>Lorg/eclipse/jetty/server/handler/HandlerWrapper:::handle (78 samples, 5.99%)</title><rect x="899.1" y="1441" width="70.7" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="902.08" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/ec..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_do_nmi (1 samples, 0.08%)</title><rect x="987.0" y="1601" width="0.9" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="989.99" 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_sun_nio_ch_FileDispatcherImpl_writev0 (1 samples, 0.08%)</title><rect x="273.7" y="1889" width="0.9" height="15.0" fill="rgb(211,67,67)" rx="2" ry="2" />
<text text-anchor="" x="276.73" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/routing/RoutingStage:::apply (5 samples, 0.38%)</title><rect x="379.8" y="977" width="4.5" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="382.77" 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>Ljava/util/concurrent/ConcurrentHashMap$TreeBin:::find (2 samples, 0.15%)</title><rect x="829.3" y="881" width="1.8" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="832.29" 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>ip_rcv (2 samples, 0.15%)</title><rect x="983.4" y="1361" width="1.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="986.36" 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>Ljava/util/HashMap:::put (2 samples, 0.15%)</title><rect x="814.8" y="609" width="1.8" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="817.79" 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>aa_sock_msg_perm (1 samples, 0.08%)</title><rect x="484.0" y="1713" width="0.9" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="486.99" 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>Ljava/nio/channels/spi/AbstractSelector:::begin (1 samples, 0.08%)</title><rect x="1025.1" y="1553" width="0.9" height="15.0" fill="rgb(55,169,169)" rx="2" ry="2" />
<text text-anchor="" x="1028.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>Lorg/glassfish/jersey/message/internal/ReaderInterceptorExecutor$TerminalReaderInterceptor:::invokeReadFrom (3 samples, 0.23%)</title><rect x="1182.7" y="753" width="2.8" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="1185.75" 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>JavaThread::oops_do (4 samples, 0.31%)</title><rect x="25.4" y="1777" width="3.6" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="28.41" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_event_new_data_sent (1 samples, 0.08%)</title><rect x="855.6" y="1585" width="0.9" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="858.58" 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.15%)</title><rect x="68.9" y="1617" width="1.8" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="71.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>Lorg/jvnet/hk2/internal/IterableProviderImpl:::get (5 samples, 0.38%)</title><rect x="1074.9" y="945" width="4.5" height="15.0" fill="rgb(101,246,101)" rx="2" ry="2" />
<text text-anchor="" x="1077.90" 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>Lorg/eclipse/jetty/io/WriteFlusher:::write (1 samples, 0.08%)</title><rect x="578.2" y="689" width="1.0" height="15.0" fill="rgb(78,191,191)" rx="2" ry="2" />
<text text-anchor="" x="581.25" 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>Ljavax/ws/rs/core/MediaType:::valueOf (1 samples, 0.08%)</title><rect x="965.2" y="1057" width="0.9" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="968.24" 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 (4 samples, 0.31%)</title><rect x="181.3" y="1809" width="3.6" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="184.29" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>frame::oops_do_internal (1 samples, 0.08%)</title><rect x="26.3" y="1761" width="0.9" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="29.31" 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>__wake_up_common (1 samples, 0.08%)</title><rect x="875.5" y="1313" width="0.9" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="878.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>__wake_up_common (1 samples, 0.08%)</title><rect x="687.0" y="1729" width="0.9" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="690.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>Ljava/lang/CharacterData:::of (1 samples, 0.08%)</title><rect x="457.7" y="1457" width="0.9" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="460.71" 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>Lorg/glassfish/jersey/message/internal/TracingAwarePropertiesDelegate:::getProperty (1 samples, 0.08%)</title><rect x="588.2" y="865" width="0.9" height="15.0" fill="rgb(51,200,51)" rx="2" ry="2" />
<text text-anchor="" x="591.22" 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>__wake_up_common (2 samples, 0.15%)</title><rect x="267.4" y="1601" width="1.8" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="270.39" 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>Unsafe_Park (2 samples, 0.15%)</title><rect x="716.9" y="1617" width="1.8" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text text-anchor="" x="719.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>tcp_v4_rcv (3 samples, 0.23%)</title><rect x="690.6" y="1361" width="2.7" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="693.63" 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>Lorg/glassfish/jersey/servlet/ServletContainer:::service (1 samples, 0.08%)</title><rect x="484.9" y="1841" width="0.9" height="15.0" fill="rgb(105,216,216)" rx="2" ry="2" />
<text text-anchor="" x="487.90" y="1851.5" font-size="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.08%)</title><rect x="1150.1" y="1185" width="0.9" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="1153.12" 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>__GI___writev (2 samples, 0.15%)</title><rect x="855.6" y="1793" width="1.8" height="15.0" fill="rgb(217,74,74)" rx="2" ry="2" />
<text text-anchor="" x="858.58" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/nio/ch/EPollSelectorImpl:::doSelect (6 samples, 0.46%)</title><rect x="1025.1" y="1569" width="5.4" height="15.0" fill="rgb(54,168,168)" rx="2" ry="2" />
<text text-anchor="" x="1028.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>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.31%)</title><rect x="1011.5" y="1857" width="3.6" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text text-anchor="" x="1014.46" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lch/qos/logback/access/spi/AccessEvent:::getQueryString (1 samples, 0.08%)</title><rect x="332.6" y="1425" width="0.9" height="15.0" fill="rgb(65,178,178)" rx="2" ry="2" />
<text text-anchor="" x="335.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>Lorg/glassfish/jersey/process/internal/RequestScope$Instance:::release (3 samples, 0.23%)</title><rect x="1185.5" y="1105" width="2.7" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text text-anchor="" x="1188.47" 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>skb_release_data (1 samples, 0.08%)</title><rect x="480.4" y="1681" width="0.9" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="483.37" 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>file_update_time (1 samples, 0.08%)</title><rect x="1005.1" y="1745" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="1008.12" 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>default_do_nmi (1 samples, 0.08%)</title><rect x="181.3" y="1569" width="0.9" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="184.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>call_stub (15 samples, 1.15%)</title><rect x="1176.4" y="1761" width="13.6" height="15.0" fill="rgb(217,74,74)" rx="2" ry="2" />
<text text-anchor="" x="1179.41" 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>itable stub (1 samples, 0.08%)</title><rect x="764.9" y="897" width="1.0" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="767.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>intel_pmu_enable_all (2 samples, 0.15%)</title><rect x="61.7" y="1601" width="1.8" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="64.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>Lch/qos/logback/access/pattern/ContentLengthConverter:::convert (1 samples, 0.08%)</title><rect x="220.3" y="1569" width="0.9" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" />
<text text-anchor="" x="223.26" 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>Lorg/glassfish/jersey/server/internal/MappableExceptionWrapperInterceptor:::aroundReadFrom (7 samples, 0.54%)</title><rect x="410.6" y="801" width="6.3" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="413.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>try_to_wake_up (1 samples, 0.08%)</title><rect x="982.5" y="1681" width="0.9" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="985.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>ip_finish_output (2 samples, 0.15%)</title><rect x="1007.8" y="1585" width="1.8" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="1010.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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetService (2 samples, 0.15%)</title><rect x="923.5" y="913" width="1.9" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="926.55" 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>OopMapSet::all_do (1 samples, 0.08%)</title><rect x="60.8" y="1745" width="0.9" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text text-anchor="" x="63.75" 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>Lorg/glassfish/jersey/message/internal/WriterInterceptorExecutor:::proceed (1 samples, 0.08%)</title><rect x="1089.4" y="913" width="0.9" height="15.0" fill="rgb(99,209,209)" rx="2" ry="2" />
<text text-anchor="" x="1092.40" 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_local_deliver (3 samples, 0.23%)</title><rect x="690.6" y="1393" width="2.7" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="693.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>Ljava/io/FilterOutputStream:::write (17 samples, 1.31%)</title><rect x="231.1" y="1617" width="15.4" height="15.0" fill="rgb(90,201,201)" rx="2" ry="2" />
<text text-anchor="" x="234.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>Lorg/glassfish/jersey/process/internal/RequestScope$Instance:::release (7 samples, 0.54%)</title><rect x="608.2" y="1105" width="6.3" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text text-anchor="" x="611.16" 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>ip_rcv_finish (2 samples, 0.15%)</title><rect x="983.4" y="1345" width="1.8" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="986.36" 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>Lorg/glassfish/jersey/process/internal/Stages$LinkedStage:::apply (3 samples, 0.23%)</title><rect x="558.3" y="993" width="2.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="561.31" 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>Lorg/jvnet/hk2/internal/ServiceHandleImpl:::getService (5 samples, 0.38%)</title><rect x="956.2" y="1025" width="4.5" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text text-anchor="" x="959.18" 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>sys_futex (3 samples, 0.23%)</title><rect x="94.3" y="1745" width="2.7" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="97.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>_new_array_Java (1 samples, 0.08%)</title><rect x="402.4" y="881" width="0.9" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text text-anchor="" x="405.43" 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>Lorg/glassfish/jersey/server/internal/MappableExceptionWrapperInterceptor:::aroundReadFrom (4 samples, 0.31%)</title><rect x="942.6" y="801" width="3.6" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="945.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>Interpreter (4 samples, 0.31%)</title><rect x="649.8" y="1777" width="3.7" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text text-anchor="" x="652.85" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lch/qos/logback/access/spi/AccessEvent:::getRequestHeaderMap (2 samples, 0.15%)</title><rect x="329.9" y="1441" width="1.8" height="15.0" fill="rgb(81,194,194)" rx="2" ry="2" />
<text text-anchor="" x="332.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>Lorg/eclipse/jetty/util/thread/strategy/ExecuteProduceConsume:::run (147 samples, 11.29%)</title><rect x="718.7" y="1697" width="133.3" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text text-anchor="" x="721.73" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/jet..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (6 samples, 0.46%)</title><rect x="695.2" y="1825" width="5.4" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="698.16" y="1835.5" font-size="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.08%)</title><rect x="578.2" y="161" width="1.0" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="581.25" 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>perf_event_context_sched_in (2 samples, 0.15%)</title><rect x="169.5" y="1585" width="1.8" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="172.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>entry_SYSCALL_64_fastpath (5 samples, 0.38%)</title><rect x="292.8" y="1841" width="4.5" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="295.76" y="1851.5" font-size="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 (15 samples, 1.15%)</title><rect x="1176.4" y="1841" width="13.6" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="1179.41" y="1851.5" font-size="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.15%)</title><rect x="65.3" y="1617" width="1.8" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="68.28" 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>Lorg/glassfish/jersey/message/internal/CommittingOutputStream:::flushBuffer (10 samples, 0.77%)</title><rect x="389.7" y="897" width="9.1" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="392.74" 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>futex_wait (2 samples, 0.15%)</title><rect x="56.2" y="1745" width="1.8" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="59.22" 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>Ljava/util/concurrent/ConcurrentHashMap:::get (2 samples, 0.15%)</title><rect x="829.3" y="897" width="1.8" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="832.29" 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>Lorg/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (1 samples, 0.08%)</title><rect x="404.2" y="833" width="0.9" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="407.24" 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-?/6498 (198 samples, 15.21%)</title><rect x="982.5" y="1905" width="179.4" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text text-anchor="" x="985.46" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java-?/6498</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetDescriptor (1 samples, 0.08%)</title><rect x="599.1" y="785" width="0.9" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text text-anchor="" x="602.09" 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>Ljavax/ws/rs/core/MediaType:::valueOf (1 samples, 0.08%)</title><rect x="929.9" y="769" width="0.9" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="932.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>[unknown] (1 samples, 0.08%)</title><rect x="193.1" y="1841" width="0.9" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="196.07" y="1851.5" font-size="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.08%)</title><rect x="709.7" y="1729" width="0.9" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="712.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>perf_pmu_enable.part.89 (2 samples, 0.15%)</title><rect x="262.0" y="1537" width="1.8" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="264.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>Ljava/lang/IllegalArgumentException:::&lt;init&gt; (13 samples, 1.00%)</title><rect x="902.7" y="1089" width="11.8" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="905.70" 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>Lorg/glassfish/jersey/message/internal/ReaderInterceptorExecutor:::proceed (3 samples, 0.23%)</title><rect x="1182.7" y="785" width="2.8" height="15.0" fill="rgb(56,171,171)" rx="2" ry="2" />
<text text-anchor="" x="1185.75" 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>Lorg/glassfish/jersey/uri/internal/JerseyUriBuilder:::build (4 samples, 0.31%)</title><rect x="625.4" y="1201" width="3.6" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text text-anchor="" x="628.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>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="482.2" y="1713" width="0.9" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="485.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>Lch/qos/logback/access/spi/AccessEvent:::prepareForDeferredProcessing (4 samples, 0.31%)</title><rect x="727.8" y="1457" width="3.6" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text text-anchor="" x="730.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>frame::sender (2 samples, 0.15%)</title><rect x="547.4" y="929" width="1.8" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text text-anchor="" x="550.43" 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>Lorg/eclipse/jetty/servlet/ServletHandler:::doHandle (122 samples, 9.37%)</title><rect x="336.3" y="1361" width="110.5" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text text-anchor="" x="339.27" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>OptoRuntime::new_array_nozero_C (1 samples, 0.08%)</title><rect x="620.8" y="929" width="1.0" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text text-anchor="" x="623.84" 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>Ljava/util/TimSort:::sort (1 samples, 0.08%)</title><rect x="378.0" y="897" width="0.9" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="380.96" 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>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="648.9" y="1633" width="0.9" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="651.94" 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>update_load_avg (1 samples, 0.08%)</title><rect x="661.6" y="1681" width="0.9" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="664.63" 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>Lorg/glassfish/jersey/server/internal/process/ReferencesInitializer:::apply (9 samples, 0.69%)</title><rect x="366.2" y="961" width="8.1" height="15.0" fill="rgb(77,189,189)" rx="2" ry="2" />
<text text-anchor="" x="369.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>Lorg/jvnet/hk2/internal/ServiceHandleImpl:::getLastInjectee (1 samples, 0.08%)</title><rect x="612.7" y="865" width="0.9" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="615.69" 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>Lcom/fasterxml/jackson/module/afterburner/deser/SuperSonicBeanDeserializer:::deserialize (2 samples, 0.15%)</title><rect x="803.9" y="673" width="1.8" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text text-anchor="" x="806.92" 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>Ljava/util/regex/Matcher:::search (1 samples, 0.08%)</title><rect x="795.8" y="833" width="0.9" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="798.76" 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>Ljava/util/Arrays:::sort (1 samples, 0.08%)</title><rect x="377.1" y="913" width="0.9" height="15.0" fill="rgb(91,203,203)" rx="2" ry="2" />
<text text-anchor="" x="380.05" 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>CollectedHeap::common_mem_allocate_init (1 samples, 0.08%)</title><rect x="367.1" y="753" width="0.9" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text text-anchor="" x="370.08" 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>Lorg/eclipse/jetty/server/handler/RequestLogHandler:::handle (122 samples, 9.37%)</title><rect x="734.1" y="1521" width="110.6" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="737.13" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (1 samples, 0.08%)</title><rect x="103.3" y="1665" width="1.0" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="106.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>ConcurrentG1RefineThread::run_young_rs_sampling (12 samples, 0.92%)</title><rect x="91.6" y="1841" width="10.8" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="94.57" y="1851.5" font-size="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.08%)</title><rect x="723.3" y="1457" width="0.9" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="726.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>Ljava/lang/Throwable:::&lt;init&gt; (8 samples, 0.61%)</title><rect x="736.9" y="1041" width="7.2" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text text-anchor="" x="739.85" 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>Compile::Code_Gen (7 samples, 0.54%)</title><rect x="140.5" y="1761" width="6.4" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="143.51" 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>Lorg/glassfish/jersey/process/internal/Stages$LinkedStage:::apply (3 samples, 0.23%)</title><rect x="385.2" y="961" width="2.7" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="388.21" 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>Lorg/eclipse/jetty/util/thread/QueuedThreadPool$2:::run (152 samples, 11.67%)</title><rect x="714.2" y="1729" width="137.8" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text text-anchor="" x="717.19" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/jett..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.08%)</title><rect x="785.8" y="609" width="0.9" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="788.79" 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>Ljava/util/ArrayList:::sort (2 samples, 0.15%)</title><rect x="562.8" y="929" width="1.9" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="565.84" 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>Lio/dropwizard/servlets/ThreadNameFilter:::formatName (1 samples, 0.08%)</title><rect x="735.0" y="1265" width="0.9" height="15.0" fill="rgb(103,213,213)" rx="2" ry="2" />
<text text-anchor="" x="738.04" 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>__vfs_read (2 samples, 0.15%)</title><rect x="289.1" y="1793" width="1.9" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="292.14" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/servlet/ServletContainer:::service (4 samples, 0.31%)</title><rect x="1165.5" y="1825" width="3.7" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="1168.53" y="1835.5" font-size="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.08%)</title><rect x="623.6" y="1121" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="626.56" 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>Lorg/glassfish/jersey/server/internal/routing/UriRoutingContext:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="835.6" y="1137" width="0.9" height="15.0" fill="rgb(64,177,177)" rx="2" ry="2" />
<text text-anchor="" x="838.64" 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>___slab_alloc (1 samples, 0.08%)</title><rect x="499.4" y="1777" width="0.9" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="502.40" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/InboundMessageContext:::header (4 samples, 0.31%)</title><rect x="1139.2" y="1121" width="3.7" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="1142.25" 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>Ljava/lang/ThreadLocal$ThreadLocalMap:::getEntry (1 samples, 0.08%)</title><rect x="786.7" y="561" width="0.9" height="15.0" fill="rgb(107,218,218)" rx="2" ry="2" />
<text text-anchor="" x="789.70" 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>Lsun/nio/ch/EPollSelectorImpl:::wakeup (1 samples, 0.08%)</title><rect x="326.3" y="1473" width="0.9" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="329.30" 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>new_sync_read (3 samples, 0.23%)</title><rect x="491.2" y="1777" width="2.8" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="494.24" y="1787.5" font-size="12" 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.15%)</title><rect x="47.2" y="1713" width="1.8" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="50.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>sock_sendmsg (1 samples, 0.08%)</title><rect x="578.2" y="529" width="1.0" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="581.25" 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>Ljava/lang/StringBuilder:::append (1 samples, 0.08%)</title><rect x="1001.5" y="1825" width="0.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1004.49" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/inject/Injections:::getOrCreate (3 samples, 0.23%)</title><rect x="772.2" y="865" width="2.7" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="775.20" 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>Lorg/glassfish/jersey/server/ContainerResponse:::close (10 samples, 0.77%)</title><rect x="389.7" y="961" width="9.1" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="392.74" 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>Ljava/lang/ThreadLocal$ThreadLocalMap:::access$000 (1 samples, 0.08%)</title><rect x="969.8" y="1489" width="0.9" height="15.0" fill="rgb(91,203,203)" rx="2" ry="2" />
<text text-anchor="" x="972.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>Ljava/lang/String:::indexOf (1 samples, 0.08%)</title><rect x="1068.6" y="1073" width="0.9" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="1071.56" 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>Lcom/fasterxml/jackson/jaxrs/base/ProviderBase:::readFrom (1 samples, 0.08%)</title><rect x="942.6" y="769" width="0.9" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text text-anchor="" x="945.58" 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>Lorg/glassfish/jersey/server/internal/routing/RoutingStage:::apply (7 samples, 0.54%)</title><rect x="927.2" y="977" width="6.3" height="15.0" fill="rgb(82,195,195)" rx="2" ry="2" />
<text text-anchor="" x="930.17" 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>Lorg/eclipse/jetty/server/Request:::getRequestURL (1 samples, 0.08%)</title><rect x="922.6" y="1201" width="0.9" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="925.64" 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>__netif_receive_skb_core (1 samples, 0.08%)</title><rect x="634.4" y="1121" width="0.9" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="637.44" 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>Lorg/glassfish/jersey/server/internal/routing/MethodSelectingRouter:::access$000 (4 samples, 0.31%)</title><rect x="1080.3" y="881" width="3.7" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="1083.34" 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>Ljava/lang/String:::valueOf (1 samples, 0.08%)</title><rect x="552.9" y="1089" width="0.9" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="555.87" 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>Lorg/glassfish/hk2/utilities/general/Hk2ThreadLocal:::get (1 samples, 0.08%)</title><rect x="610.9" y="833" width="0.9" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text text-anchor="" x="613.88" 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>Lcom/codahale/metrics/ExponentiallyDecayingReservoir:::lockForRegularUsage (1 samples, 0.08%)</title><rect x="939.9" y="785" width="0.9" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="942.86" 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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::narrow (1 samples, 0.08%)</title><rect x="763.1" y="865" width="0.9" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text text-anchor="" x="766.13" 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 (5 samples, 0.38%)</title><rect x="695.2" y="1729" width="4.5" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="698.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>G1RootProcessor::evacuate_roots (4 samples, 0.31%)</title><rect x="25.4" y="1825" width="3.6" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="28.41" y="1835.5" font-size="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.15%)</title><rect x="278.3" y="1681" width="1.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="281.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>entry_SYSCALL_64_fastpath (2 samples, 0.15%)</title><rect x="884.6" y="1857" width="1.8" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="887.58" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/ConcurrentHashMap$TreeNode:::findTreeNode (3 samples, 0.23%)</title><rect x="820.2" y="561" width="2.7" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text text-anchor="" x="823.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>autoremove_wake_function (1 samples, 0.08%)</title><rect x="634.4" y="977" width="0.9" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="637.44" 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>Lorg/glassfish/jersey/message/internal/OutboundMessageContext:::getEntityType (1 samples, 0.08%)</title><rect x="387.0" y="897" width="0.9" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="390.02" 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>finish_task_switch (4 samples, 0.31%)</title><rect x="203.0" y="1713" width="3.7" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="206.04" 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>inet_recvmsg (2 samples, 0.15%)</title><rect x="492.2" y="1729" width="1.8" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="495.15" 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>end_repeat_nmi (1 samples, 0.08%)</title><rect x="116.9" y="1537" width="0.9" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="119.94" 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_iter_readv_writev (2 samples, 0.15%)</title><rect x="1007.8" y="1777" width="1.8" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="1010.83" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lio/dropwizard/jetty/RoutingHandler:::handle (13 samples, 1.00%)</title><rect x="1177.3" y="1473" width="11.8" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="1180.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>Ljavax/ws/rs/core/AbstractMultivaluedMap:::get (1 samples, 0.08%)</title><rect x="589.1" y="785" width="0.9" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="592.12" 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>Ljava/util/concurrent/locks/ReentrantReadWriteLock$Sync:::tryAcquireShared (1 samples, 0.08%)</title><rect x="1181.8" y="737" width="0.9" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="1184.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>__vdso_clock_gettime (1 samples, 0.08%)</title><rect x="693.3" y="1841" width="1.0" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="696.35" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorLinkedHashMap:::get (2 samples, 0.15%)</title><rect x="963.4" y="1073" width="1.8" height="15.0" fill="rgb(80,193,193)" rx="2" ry="2" />
<text text-anchor="" x="966.43" 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>Lch/qos/logback/core/OutputStreamAppender:::subAppend (38 samples, 2.92%)</title><rect x="212.1" y="1681" width="34.4" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="215.10" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/model/internal/AbstractJavaResourceMethodDispatcher:::dispatch (3 samples, 0.23%)</title><rect x="1182.7" y="961" width="2.8" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="1185.75" 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>Ljava/util/concurrent/CopyOnWriteArrayList:::size (1 samples, 0.08%)</title><rect x="632.6" y="1361" width="0.9" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="635.63" 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>Lorg/glassfish/jersey/server/ContainerRequest:::readEntity (10 samples, 0.77%)</title><rect x="802.1" y="865" width="9.1" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text text-anchor="" x="805.10" 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>Ljava/util/regex/Matcher:::find (1 samples, 0.08%)</title><rect x="1061.3" y="1025" width="0.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1064.31" 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>futex_wait (3 samples, 0.23%)</title><rect x="261.0" y="1649" width="2.8" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="264.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>Lorg/eclipse/jetty/io/WriteFlusher:::flush (6 samples, 0.46%)</title><rect x="391.6" y="673" width="5.4" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="394.55" 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 (4 samples, 0.31%)</title><rect x="181.3" y="1697" width="3.6" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="184.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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getInjecteeDescriptor (1 samples, 0.08%)</title><rect x="816.6" y="593" width="0.9" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="819.61" 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>Lorg/glassfish/jersey/servlet/internal/ResponseWriter$NonCloseableOutputStreamWrapper:::write (9 samples, 0.69%)</title><rect x="1090.3" y="865" width="8.2" height="15.0" fill="rgb(92,203,203)" rx="2" ry="2" />
<text text-anchor="" x="1093.31" 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>Lorg/glassfish/jersey/uri/internal/UriParser:::parseComponent (1 samples, 0.08%)</title><rect x="921.7" y="1105" width="0.9" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="924.74" 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>Lorg/glassfish/jersey/message/internal/OutboundMessageContext:::setMediaType (1 samples, 0.08%)</title><rect x="572.8" y="897" width="0.9" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="575.81" 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>ip_rcv_finish (2 samples, 0.15%)</title><rect x="294.6" y="1409" width="1.8" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="297.58" 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>Lorg/glassfish/jersey/server/internal/inject/AbstractContainerRequestValueFactory:::getContainerRequest (8 samples, 0.61%)</title><rect x="598.2" y="865" width="7.2" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text text-anchor="" x="601.19" 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>Lio/dropwizard/request/logging/async/AsyncAccessEventAppenderFactory$1:::preprocess (6 samples, 0.46%)</title><rect x="328.1" y="1473" width="5.4" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="331.11" 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>inet_sendmsg (4 samples, 0.31%)</title><rect x="293.7" y="1729" width="3.6" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="296.67" 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.15%)</title><rect x="1161.9" y="1857" width="1.8" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="1164.90" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetService (2 samples, 0.15%)</title><rect x="764.0" y="913" width="1.9" height="15.0" fill="rgb(83,196,196)" rx="2" ry="2" />
<text text-anchor="" x="767.04" 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>Lorg/jvnet/hk2/internal/ClazzCreator:::resolve (2 samples, 0.15%)</title><rect x="951.6" y="625" width="1.9" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="954.64" 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>Ljava/util/AbstractMap:::hashCode (1 samples, 0.08%)</title><rect x="590.9" y="657" width="0.9" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="593.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>Ljava/util/regex/Matcher:::find (1 samples, 0.08%)</title><rect x="920.8" y="1025" width="0.9" height="15.0" fill="rgb(54,169,169)" rx="2" ry="2" />
<text text-anchor="" x="923.83" 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>Lsun/misc/Unsafe:::park (11 samples, 0.84%)</title><rect x="251.1" y="1681" width="9.9" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text text-anchor="" x="254.08" 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>Lcom/fasterxml/jackson/core/json/ByteSourceJsonBootstrapper:::constructParser (1 samples, 0.08%)</title><rect x="945.3" y="657" width="0.9" height="15.0" fill="rgb(63,176,176)" rx="2" ry="2" />
<text text-anchor="" x="948.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>Lsun/nio/ch/SocketChannelImpl:::translateAndSetInterestOps (1 samples, 0.08%)</title><rect x="1030.5" y="1553" width="0.9" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="1033.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>__vfs_read (1 samples, 0.08%)</title><rect x="970.7" y="1489" width="0.9" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="973.68" 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>finish_task_switch (6 samples, 0.46%)</title><rect x="502.1" y="1729" width="5.5" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="505.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>java_start (69 samples, 5.30%)</title><rect x="211.2" y="1873" width="62.5" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="214.20" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java_s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpOutput:::write (9 samples, 0.69%)</title><rect x="784.0" y="817" width="8.1" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="786.98" 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>vfs_read (1 samples, 0.08%)</title><rect x="681.6" y="1825" width="0.9" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="684.57" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljersey/repackaged/com/google/common/util/concurrent/AbstractFuture:::set (1 samples, 0.08%)</title><rect x="397.9" y="817" width="0.9" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="400.90" 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>schedule (2 samples, 0.15%)</title><rect x="111.5" y="1777" width="1.8" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="114.51" y="1787.5" font-size="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.08%)</title><rect x="199.4" y="1745" width="0.9" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="202.42" 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>Lio/dropwizard/jersey/filter/AllowedMethodsFilter:::handle (1 samples, 0.08%)</title><rect x="537.5" y="1233" width="0.9" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="540.47" 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_write (1 samples, 0.08%)</title><rect x="1005.1" y="1825" width="0.9" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="1008.12" y="1835.5" font-size="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.15%)</title><rect x="853.8" y="1681" width="1.8" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="856.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>Ljava/util/HashMap:::getNode (2 samples, 0.15%)</title><rect x="925.4" y="833" width="1.8" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="928.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>Lorg/eclipse/jetty/util/ArrayTrie:::getBest (1 samples, 0.08%)</title><rect x="1157.4" y="1537" width="0.9" height="15.0" fill="rgb(80,192,192)" rx="2" ry="2" />
<text text-anchor="" x="1160.37" 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>Lch/qos/logback/core/pattern/PatternLayoutBase:::writeLoopOnConverters (10 samples, 0.77%)</title><rect x="219.4" y="1601" width="9.0" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="222.35" 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>deactivate_task (1 samples, 0.08%)</title><rect x="858.3" y="1745" width="0.9" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="861.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>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="682.5" y="1569" width="0.9" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="685.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>Lorg/eclipse/jetty/util/thread/strategy/ExecuteProduceConsume:::produceConsume (154 samples, 11.83%)</title><rect x="322.7" y="1681" width="139.5" height="15.0" fill="rgb(51,165,165)" rx="2" ry="2" />
<text text-anchor="" x="325.67" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/jett..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lch/qos/logback/core/spi/AppenderAttachableImpl:::appendLoopOnAppenders (8 samples, 0.61%)</title><rect x="726.0" y="1537" width="7.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="728.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>Lcom/fasterxml/jackson/jaxrs/base/ProviderBase:::readFrom (10 samples, 0.77%)</title><rect x="1111.2" y="721" width="9.0" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text text-anchor="" x="1114.15" 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>Ljava/util/Formatter:::&lt;init&gt; (2 samples, 0.15%)</title><rect x="1055.9" y="1057" width="1.8" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="1058.87" 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>Lorg/eclipse/jetty/server/Request:::getParameterNames (3 samples, 0.23%)</title><rect x="214.8" y="1617" width="2.7" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="217.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>Ljava/lang/ref/Reference:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="758.6" y="945" width="0.9" height="15.0" fill="rgb(54,168,168)" rx="2" ry="2" />
<text text-anchor="" x="761.60" 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>copy_user_enhanced_fast_string (1 samples, 0.08%)</title><rect x="633.5" y="1377" width="0.9" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="636.53" 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>__GI___writev (2 samples, 0.15%)</title><rect x="983.4" y="1793" width="1.8" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" />
<text text-anchor="" x="986.36" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljersey/repackaged/com/google/common/util/concurrent/SettableFuture:::create (1 samples, 0.08%)</title><rect x="966.1" y="1137" width="1.0" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="969.14" 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>[libpthread-2.23.so] (2 samples, 0.15%)</title><rect x="852.0" y="1873" width="1.8" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="854.95" y="1883.5" font-size="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.08%)</title><rect x="1018.7" y="1841" width="0.9" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="1021.71" y="1851.5" font-size="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.15%)</title><rect x="1011.5" y="1841" width="1.8" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="1014.46" y="1851.5" font-size="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 (1 samples, 0.08%)</title><rect x="808.4" y="401" width="1.0" height="15.0" fill="rgb(215,73,73)" rx="2" ry="2" />
<text text-anchor="" x="811.45" 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>cmpxchg_double_slab.isra.54 (1 samples, 0.08%)</title><rect x="407.9" y="625" width="0.9" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="410.86" 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>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:::acquire (1 samples, 0.08%)</title><rect x="1032.3" y="1425" width="0.9" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="1035.30" 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>Lorg/eclipse/jetty/server/HttpConnection:::onCompleted (1 samples, 0.08%)</title><rect x="456.8" y="1585" width="0.9" height="15.0" fill="rgb(58,208,58)" rx="2" ry="2" />
<text text-anchor="" x="459.80" 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_futex (2 samples, 0.15%)</title><rect x="997.9" y="1777" width="1.8" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="1000.86" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/uri/internal/JerseyUriBuilder:::createURI (3 samples, 0.23%)</title><rect x="967.1" y="1169" width="2.7" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="970.05" 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>native_write_msr_safe (2 samples, 0.15%)</title><rect x="666.2" y="1361" width="1.8" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="669.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>Lorg/glassfish/jersey/servlet/ServletPropertiesDelegate:::setProperty (1 samples, 0.08%)</title><rect x="960.7" y="1073" width="0.9" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="963.71" 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>Lch/qos/logback/core/UnsynchronizedAppenderBase:::getFilterChainDecision (1 samples, 0.08%)</title><rect x="246.5" y="1697" width="1.0" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="249.54" 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>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:::acquireShared (1 samples, 0.08%)</title><rect x="1181.8" y="753" width="0.9" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text text-anchor="" x="1184.84" 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.15%)</title><rect x="148.7" y="1601" width="1.8" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="151.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>Lorg/eclipse/jetty/util/IteratingCallback:::iterate (9 samples, 0.69%)</title><rect x="784.0" y="753" width="8.1" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="786.98" 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>Lcom/fasterxml/jackson/jaxrs/base/ProviderBase:::writeTo (1 samples, 0.08%)</title><rect x="388.8" y="833" width="0.9" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text text-anchor="" x="391.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>default_do_nmi (1 samples, 0.08%)</title><rect x="502.1" y="1585" width="0.9" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="505.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>Lorg/glassfish/jersey/message/internal/CommittingOutputStream:::commitStream (1 samples, 0.08%)</title><rect x="1180.9" y="977" width="0.9" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text text-anchor="" x="1183.94" 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>Lorg/glassfish/jersey/message/internal/MediaTypeProvider:::fromString (1 samples, 0.08%)</title><rect x="569.2" y="769" width="0.9" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text text-anchor="" x="572.19" 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.08%)</title><rect x="286.4" y="1777" width="0.9" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="289.42" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljavax/ws/rs/core/AbstractMultivaluedMap:::get (1 samples, 0.08%)</title><rect x="1083.1" y="801" width="0.9" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="1086.06" 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>__wake_up_locked (1 samples, 0.08%)</title><rect x="528.4" y="1345" width="0.9" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="531.40" 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>Lorg/eclipse/jetty/util/log/Slf4jLog:::isDebugEnabled (1 samples, 0.08%)</title><rect x="392.5" y="641" width="0.9" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="395.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>aa_label_sk_perm (1 samples, 0.08%)</title><rect x="484.0" y="1681" width="0.9" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="486.99" 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 (1 samples, 0.08%)</title><rect x="876.4" y="1793" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="879.42" y="1803.5" font-size="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.31%)</title><rect x="40.8" y="1841" width="3.6" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="43.81" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$GroupHead:::match (1 samples, 0.08%)</title><rect x="358.9" y="817" width="0.9" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="361.92" 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>Lorg/eclipse/jetty/server/HttpConnection:::getRequestBuffer (2 samples, 0.15%)</title><rect x="855.6" y="1873" width="1.8" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="858.58" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/io/AbstractConnection$ReadCallback:::succeeded (136 samples, 10.45%)</title><rect x="525.7" y="1617" width="123.2" height="15.0" fill="rgb(83,196,196)" rx="2" ry="2" />
<text text-anchor="" x="528.68" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/je..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Throwable:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="752.3" y="1089" width="0.9" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text text-anchor="" x="755.26" 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>Lorg/glassfish/jersey/servlet/WebComponent:::serviceImpl (1 samples, 0.08%)</title><rect x="624.5" y="1201" width="0.9" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text text-anchor="" x="627.47" 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>JavaCalls::call_virtual (161 samples, 12.37%)</title><rect x="317.2" y="1793" width="145.9" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="320.24" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaCalls::call_vi..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/PerLookupContext:::findOrCreate (7 samples, 0.54%)</title><rect x="608.2" y="993" width="6.3" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text text-anchor="" x="611.16" 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.08%)</title><rect x="585.5" y="849" width="0.9" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="588.50" 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>sys_epoll_ctl (1 samples, 0.08%)</title><rect x="291.9" y="1793" width="0.9" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="294.86" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.08%)</title><rect x="124.2" y="1697" width="0.9" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text text-anchor="" x="127.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>Lorg/eclipse/jetty/servlet/ServletHandler:::doHandle (2 samples, 0.15%)</title><rect x="482.2" y="1873" width="1.8" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="485.18" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/hk2/utilities/reflection/ReflectionHelper:::makeMe (1 samples, 0.08%)</title><rect x="286.4" y="1841" width="0.9" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="289.42" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljavax/ws/rs/core/AbstractMultivaluedMap:::get (1 samples, 0.08%)</title><rect x="1083.1" y="785" width="0.9" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="1086.06" 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>Lorg/glassfish/hk2/utilities/reflection/ReflectionHelper:::makeMe (1 samples, 0.08%)</title><rect x="1185.5" y="929" width="0.9" height="15.0" fill="rgb(75,187,187)" rx="2" ry="2" />
<text text-anchor="" x="1188.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>Lorg/eclipse/jetty/server/HttpOutput:::close (1 samples, 0.08%)</title><rect x="334.5" y="1553" width="0.9" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="337.45" 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>Ljava/util/Formatter:::getZero (2 samples, 0.15%)</title><rect x="744.1" y="1041" width="1.8" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text text-anchor="" x="747.10" 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>kmem_cache_alloc (1 samples, 0.08%)</title><rect x="291.9" y="1729" width="0.9" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="294.86" 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>Lorg/glassfish/jersey/server/ServerRuntime$Responder$1:::getOutputStream (1 samples, 0.08%)</title><rect x="580.1" y="865" width="0.9" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="583.06" 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>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="291.0" y="1825" width="0.9" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="293.95" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/http/HttpFields:::contains (1 samples, 0.08%)</title><rect x="457.7" y="1521" width="0.9" height="15.0" fill="rgb(68,182,182)" rx="2" ry="2" />
<text text-anchor="" x="460.71" 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>ep_poll_callback (1 samples, 0.08%)</title><rect x="528.4" y="1361" width="0.9" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="531.40" 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.15%)</title><rect x="20.9" y="1665" width="1.8" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="23.88" 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.part.19 (3 samples, 0.23%)</title><rect x="294.6" y="1537" width="2.7" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="297.58" 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 (5 samples, 0.38%)</title><rect x="861.0" y="1745" width="4.5" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="864.01" 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_local_out (2 samples, 0.15%)</title><rect x="853.8" y="1633" width="1.8" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="856.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>Lorg/eclipse/jetty/server/handler/RequestLogHandler:::handle (13 samples, 1.00%)</title><rect x="1177.3" y="1521" width="11.8" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="1180.31" 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>Lorg/glassfish/jersey/server/internal/process/RequestProcessingContext:::triggerEvent (2 samples, 0.15%)</title><rect x="405.1" y="961" width="1.9" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="408.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>rcu_nmi_exit (1 samples, 0.08%)</title><rect x="203.9" y="1569" width="1.0" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="206.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>Ljavax/ws/rs/core/AbstractMultivaluedMap:::putSingle (1 samples, 0.08%)</title><rect x="572.8" y="881" width="0.9" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="575.81" 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>do_futex (1 samples, 0.08%)</title><rect x="1010.6" y="1809" width="0.9" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="1013.55" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (1 samples, 0.08%)</title><rect x="400.6" y="833" width="0.9" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text text-anchor="" x="403.61" 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>security_file_permission (1 samples, 0.08%)</title><rect x="791.2" y="641" width="0.9" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="794.23" 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>Lorg/glassfish/jersey/uri/internal/JerseyUriBuilder:::host (21 samples, 1.61%)</title><rect x="902.7" y="1137" width="19.0" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="905.70" 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>InstanceKlass::allocate_instance (1 samples, 0.08%)</title><rect x="367.1" y="769" width="0.9" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="370.08" 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_wait@@GLIBC_2.3.2 (4 samples, 0.31%)</title><rect x="56.2" y="1809" width="3.6" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="59.22" y="1819.5" font-size="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::flush_deferred_store_barrier (1 samples, 0.08%)</title><rect x="226.6" y="1505" width="0.9" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="229.61" 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>[libpthread-2.23.so] (1 samples, 0.08%)</title><rect x="316.3" y="1873" width="0.9" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="319.33" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/servlet/ServletHandler:::doScope (123 samples, 9.45%)</title><rect x="336.3" y="1393" width="111.4" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text text-anchor="" x="339.27" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/Response:::addHeader (1 samples, 0.08%)</title><rect x="580.1" y="833" width="0.9" height="15.0" fill="rgb(106,217,217)" rx="2" ry="2" />
<text text-anchor="" x="583.06" 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>Lorg/eclipse/jetty/io/ManagedSelector$SelectorProducer:::processSelected (1 samples, 0.08%)</title><rect x="1022.3" y="1633" width="0.9" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" />
<text text-anchor="" x="1025.33" 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>Ljava/lang/String:::subSequence (1 samples, 0.08%)</title><rect x="747.7" y="977" width="0.9" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="750.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>itable stub (1 samples, 0.08%)</title><rect x="932.6" y="961" width="0.9" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text text-anchor="" x="935.61" 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_read_iter (1 samples, 0.08%)</title><rect x="994.2" y="1777" width="0.9" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="997.24" y="1787.5" font-size="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.15%)</title><rect x="243.8" y="1377" width="1.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="246.82" 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>Lch/qos/logback/classic/LoggerContext:::getTurboFilterChainDecision_0_3OrMore (2 samples, 0.15%)</title><rect x="631.7" y="1377" width="1.8" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="634.72" 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>Ljava/util/regex/Pattern:::compile (1 samples, 0.08%)</title><rect x="400.6" y="865" width="0.9" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="403.61" 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>Ljava/io/FileOutputStream:::writeBytes (15 samples, 1.15%)</title><rect x="232.0" y="1537" width="13.6" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text text-anchor="" x="235.04" 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>frame::sender_for_compiled_frame (4 samples, 0.31%)</title><rect x="346.2" y="913" width="3.7" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" />
<text text-anchor="" x="349.24" 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>Lorg/eclipse/jetty/server/handler/HandlerWrapper:::handle (105 samples, 8.06%)</title><rect x="533.8" y="1441" width="95.2" height="15.0" fill="rgb(78,190,190)" rx="2" ry="2" />
<text text-anchor="" x="536.84" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclips..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lch/qos/logback/access/spi/AccessEvent:::getResponseHeaderMap (1 samples, 0.08%)</title><rect x="530.2" y="1441" width="0.9" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="533.22" 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>Lcom/codahale/metrics/jersey2/InstrumentedResourceMethodApplicationListener$TimerRequestEventListener:::onEvent (3 samples, 0.23%)</title><rect x="939.0" y="913" width="2.7" height="15.0" fill="rgb(105,251,105)" rx="2" ry="2" />
<text text-anchor="" x="941.96" 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>Lorg/glassfish/jersey/servlet/ServletContainer:::service (80 samples, 6.14%)</title><rect x="1070.4" y="1201" width="72.5" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" />
<text text-anchor="" x="1073.37" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gla..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/servlet/ServletHandler:::doScope (121 samples, 9.29%)</title><rect x="735.0" y="1393" width="109.7" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text text-anchor="" x="738.04" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::sort (2 samples, 0.15%)</title><rect x="778.5" y="897" width="1.9" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="781.54" 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>G1UpdateRSOrPushRefOopClosure::do_oop (1 samples, 0.08%)</title><rect x="46.3" y="1697" width="0.9" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="49.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>CollectedHeap::allocate_from_tlab_slow (1 samples, 0.08%)</title><rect x="402.4" y="833" width="0.9" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="405.43" 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 (2 samples, 0.15%)</title><rect x="165.0" y="1809" width="1.8" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="167.98" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::compile (2 samples, 0.15%)</title><rect x="581.0" y="833" width="1.8" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text text-anchor="" x="583.97" 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>Lorg/eclipse/jetty/io/ManagedSelector$SelectorProducer:::select (7 samples, 0.54%)</title><rect x="1024.1" y="1633" width="6.4" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text text-anchor="" x="1027.15" 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_futex (1 samples, 0.08%)</title><rect x="672.5" y="1825" width="0.9" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="675.50" y="1835.5" font-size="12" 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.15%)</title><rect x="649.8" y="1569" width="1.9" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="652.85" 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>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject:::awaitNanos (1 samples, 0.08%)</title><rect x="1020.5" y="1665" width="0.9" height="15.0" fill="rgb(93,204,204)" rx="2" ry="2" />
<text text-anchor="" x="1023.52" 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>Lorg/glassfish/jersey/server/ServerRuntime:::process (4 samples, 0.31%)</title><rect x="1165.5" y="1745" width="3.7" height="15.0" fill="rgb(92,204,204)" rx="2" ry="2" />
<text text-anchor="" x="1168.53" 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>Ljava/util/regex/Pattern$BmpCharProperty:::match (1 samples, 0.08%)</title><rect x="1061.3" y="977" width="0.9" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="1064.31" 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] (4 samples, 0.31%)</title><rect x="68.9" y="1841" width="3.6" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="71.91" y="1851.5" font-size="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.15%)</title><rect x="61.7" y="1777" width="1.8" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="64.66" y="1787.5" font-size="12" 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.15%)</title><rect x="68.9" y="1729" width="1.8" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="71.91" 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>Ljava/lang/IllegalArgumentException:::&lt;init&gt; (12 samples, 0.92%)</title><rect x="538.4" y="1089" width="10.8" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text text-anchor="" x="541.37" 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>Lorg/eclipse/jetty/util/thread/Locker:::lock (1 samples, 0.08%)</title><rect x="1022.3" y="1601" width="0.9" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="1025.33" 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>Lorg/glassfish/jersey/server/ContainerFilteringStage:::apply (6 samples, 0.46%)</title><rect x="561.0" y="993" width="5.5" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text text-anchor="" x="564.03" 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>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.31%)</title><rect x="177.7" y="1809" width="3.6" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="180.67" y="1819.5" font-size="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.08%)</title><rect x="861.9" y="1585" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="864.92" 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>Ljava/util/regex/Pattern:::matcher (1 samples, 0.08%)</title><rect x="582.8" y="865" width="0.9" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="585.78" 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>Lorg/eclipse/jetty/server/Request:::getHeaderNames (1 samples, 0.08%)</title><rect x="962.5" y="1121" width="0.9" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="965.52" 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>do_futex (1 samples, 0.08%)</title><rect x="889.1" y="1553" width="0.9" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="892.11" 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>Lorg/glassfish/jersey/server/internal/process/ServerProcessingBinder$ContainerRequestFactory:::provide (3 samples, 0.23%)</title><rect x="1121.1" y="721" width="2.7" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1124.12" 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 (2 samples, 0.15%)</title><rect x="174.9" y="1809" width="1.9" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="177.95" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/routing/MethodSelectingRouter$4:::apply (2 samples, 0.15%)</title><rect x="929.9" y="897" width="1.8" height="15.0" fill="rgb(108,219,219)" rx="2" ry="2" />
<text text-anchor="" x="932.89" 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>Lorg/eclipse/jetty/server/HttpConnection:::getRequestBuffer (1 samples, 0.08%)</title><rect x="1153.7" y="1569" width="1.0" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="1156.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>sys_futex (2 samples, 0.15%)</title><rect x="1172.8" y="1841" width="1.8" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="1175.78" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TreeMap:::put (1 samples, 0.08%)</title><rect x="529.3" y="1409" width="0.9" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text text-anchor="" x="532.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>Ljava/util/LinkedList:::listIterator (1 samples, 0.08%)</title><rect x="928.1" y="881" width="0.9" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="931.08" 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>RegisterMap::RegisterMap (1 samples, 0.08%)</title><rect x="903.6" y="945" width="0.9" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text text-anchor="" x="906.61" 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>sock_write_iter (4 samples, 0.31%)</title><rect x="293.7" y="1761" width="3.6" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="296.67" 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>Ljava/util/Collections$UnmodifiableCollection$1:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="370.7" y="849" width="0.9" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="373.71" 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>Lorg/glassfish/jersey/uri/PatternWithGroups:::match (1 samples, 0.08%)</title><rect x="929.0" y="913" width="0.9" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="931.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>Lio/dropwizard/jetty/NonblockingServletHolder:::handle (5 samples, 0.38%)</title><rect x="997.0" y="1857" width="4.5" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text text-anchor="" x="999.96" y="1867.5" font-size="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.08%)</title><rect x="439.6" y="849" width="0.9" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="442.59" 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>pipe_write (1 samples, 0.08%)</title><rect x="528.4" y="1409" width="0.9" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="531.40" 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>Lorg/glassfish/jersey/server/ServerRuntime$2:::run (71 samples, 5.45%)</title><rect x="760.4" y="1025" width="64.4" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="763.41" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.08%)</title><rect x="51.7" y="1841" width="0.9" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="54.69" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljavax/ws/rs/ext/RuntimeDelegate:::getInstance (1 samples, 0.08%)</title><rect x="1072.2" y="1041" width="0.9" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text text-anchor="" x="1075.18" 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>__fget_light (1 samples, 0.08%)</title><rect x="981.6" y="1681" width="0.9" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="984.55" 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_hrtimeout_range (2 samples, 0.15%)</title><rect x="486.7" y="1793" width="1.8" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="489.71" y="1803.5" font-size="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.15%)</title><rect x="774.9" y="929" width="1.8" height="15.0" fill="rgb(219,77,77)" rx="2" ry="2" />
<text text-anchor="" x="777.92" 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] (4 samples, 0.31%)</title><rect x="10.0" y="1841" width="3.6" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1851.5" font-size="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.08%)</title><rect x="524.8" y="1617" width="0.9" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text text-anchor="" x="527.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>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="193.1" y="1809" width="0.9" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="196.07" y="1819.5" font-size="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 (2 samples, 0.15%)</title><rect x="309.1" y="1633" width="1.8" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="312.08" 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>Ljava/lang/Object:::notify (1 samples, 0.08%)</title><rect x="481.3" y="1793" width="0.9" height="15.0" fill="rgb(71,220,71)" rx="2" ry="2" />
<text text-anchor="" x="484.27" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpInput:::addContent (1 samples, 0.08%)</title><rect x="808.4" y="433" width="1.0" height="15.0" fill="rgb(105,216,216)" rx="2" ry="2" />
<text text-anchor="" x="811.45" 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>__netif_receive_skb_core (1 samples, 0.08%)</title><rect x="396.1" y="225" width="0.9" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="399.08" 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>Lorg/glassfish/jersey/servlet/WebComponent:::serviceImpl (72 samples, 5.53%)</title><rect x="558.3" y="1169" width="65.3" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text text-anchor="" x="561.31" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (1 samples, 0.08%)</title><rect x="194.9" y="1585" width="0.9" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="197.88" 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>Lcom/codahale/metrics/Timer$Context:::close (3 samples, 0.23%)</title><rect x="939.0" y="897" width="2.7" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="941.96" 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>Lorg/eclipse/jetty/server/HttpConnection:::parseRequestBuffer (2 samples, 0.15%)</title><rect x="414.2" y="513" width="1.8" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="417.21" 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>Lorg/glassfish/jersey/uri/internal/JerseyUriBuilder:::createURI (1 samples, 0.08%)</title><rect x="842.0" y="1169" width="0.9" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="844.98" 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>all (1,302 samples, 100%)</title><rect x="10.0" y="1921" width="1180.0" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_ctl (1 samples, 0.08%)</title><rect x="514.8" y="1857" width="0.9" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text text-anchor="" x="517.81" y="1867.5" font-size="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.08%)</title><rect x="1011.5" y="1585" width="0.9" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="1014.46" 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>x86_pmu_enable (4 samples, 0.31%)</title><rect x="181.3" y="1649" width="3.6" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="184.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>finish_task_switch (2 samples, 0.15%)</title><rect x="705.1" y="1697" width="1.8" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="708.13" 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>nmethod::get_deopt_original_pc (1 samples, 0.08%)</title><rect x="349.9" y="913" width="0.9" height="15.0" fill="rgb(194,194,56)" rx="2" ry="2" />
<text text-anchor="" x="352.86" 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>place_entity (1 samples, 0.08%)</title><rect x="294.6" y="1201" width="0.9" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="297.58" 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>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.31%)</title><rect x="20.9" y="1809" width="3.6" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="23.88" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/AbstractStringBuilder:::ensureCapacityInternal (1 samples, 0.08%)</title><rect x="1102.1" y="801" width="0.9" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="1105.09" 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>perf_event_context_sched_in (1 samples, 0.08%)</title><rect x="487.6" y="1697" width="0.9" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="490.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>Lorg/eclipse/jetty/server/handler/ContextHandler:::doScope (122 samples, 9.37%)</title><rect x="734.1" y="1409" width="110.6" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text text-anchor="" x="737.13" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lio/dropwizard/servlets/ThreadNameFilter:::doFilter (77 samples, 5.91%)</title><rect x="900.0" y="1281" width="69.8" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text text-anchor="" x="902.98" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lio/dro..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (3 samples, 0.23%)</title><rect x="261.0" y="1665" width="2.8" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="264.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>Lorg/eclipse/jetty/io/WriteFlusher:::write (7 samples, 0.54%)</title><rect x="1092.1" y="689" width="6.4" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="1095.12" 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>Ljava/net/URI$Parser:::parseHierarchical (4 samples, 0.31%)</title><rect x="1142.9" y="1121" width="3.6" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text text-anchor="" x="1145.87" 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>do_softirq.part.19 (1 samples, 0.08%)</title><rect x="856.5" y="1473" width="0.9" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="859.48" 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>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::keyComparatorHash (1 samples, 0.08%)</title><rect x="584.6" y="849" width="0.9" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="587.59" 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>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::getEntry (1 samples, 0.08%)</title><rect x="404.2" y="865" width="0.9" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="407.24" 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 (2 samples, 0.15%)</title><rect x="153.2" y="1617" width="1.8" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="156.20" 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>Lsun/nio/ch/EPollArrayWrapper:::interrupt (1 samples, 0.08%)</title><rect x="1031.4" y="1457" width="0.9" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="1034.40" 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>Ljava/lang/ThreadLocal:::get (1 samples, 0.08%)</title><rect x="944.4" y="641" width="0.9" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="947.39" 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_msr_safe (1 samples, 0.08%)</title><rect x="61.7" y="1569" width="0.9" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="64.66" 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>Lorg/eclipse/jetty/server/Server:::handle (79 samples, 6.07%)</title><rect x="898.2" y="1569" width="71.6" height="15.0" fill="rgb(102,212,212)" rx="2" ry="2" />
<text text-anchor="" x="901.17" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/ecl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (2 samples, 0.15%)</title><rect x="852.0" y="1809" width="1.8" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="854.95" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lio/dropwizard/jersey/jackson/JacksonMessageBodyProvider:::readFrom (9 samples, 0.69%)</title><rect x="803.0" y="737" width="8.2" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="806.01" 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>dequeue_task_fair (1 samples, 0.08%)</title><rect x="273.7" y="1729" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="276.73" 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>Lorg/eclipse/jetty/server/HttpConnection:::send (1 samples, 0.08%)</title><rect x="578.2" y="769" width="1.0" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="581.25" 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>Ljava/util/regex/Pattern$BnM:::optimize (1 samples, 0.08%)</title><rect x="581.0" y="817" width="0.9" height="15.0" fill="rgb(58,208,58)" rx="2" ry="2" />
<text text-anchor="" x="583.97" 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_push (1 samples, 0.08%)</title><rect x="634.4" y="1377" width="0.9" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="637.44" 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>Ljava/lang/String:::charAt (1 samples, 0.08%)</title><rect x="795.8" y="801" width="0.9" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="798.76" 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>Lorg/eclipse/jetty/io/ByteBufferPool$Bucket:::acquire (2 samples, 0.15%)</title><rect x="855.6" y="1841" width="1.8" height="15.0" fill="rgb(80,193,193)" rx="2" ry="2" />
<text text-anchor="" x="858.58" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap:::resize (1 samples, 0.08%)</title><rect x="728.7" y="1313" width="0.9" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text text-anchor="" x="731.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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetInjecteeDescriptor (1 samples, 0.08%)</title><rect x="560.1" y="897" width="0.9" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text text-anchor="" x="563.12" 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>__lll_unlock_wake (1 samples, 0.08%)</title><rect x="32.7" y="1825" width="0.9" height="15.0" fill="rgb(246,116,116)" rx="2" ry="2" />
<text text-anchor="" x="35.66" y="1835.5" font-size="12" 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.15%)</title><rect x="29.0" y="1761" width="1.8" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="32.03" 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>new_sync_read (1 samples, 0.08%)</title><rect x="515.7" y="1793" width="0.9" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="518.71" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::toLowerCase (1 samples, 0.08%)</title><rect x="1142.0" y="993" width="0.9" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="1144.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>__wake_up_sync_key (1 samples, 0.08%)</title><rect x="687.0" y="1745" width="0.9" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="690.00" 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>Ljava/util/HashMap:::putVal (1 samples, 0.08%)</title><rect x="1129.3" y="1009" width="0.9" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text text-anchor="" x="1132.28" 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>sys_futex (1 samples, 0.08%)</title><rect x="50.8" y="1825" width="0.9" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="53.78" y="1835.5" font-size="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 (4 samples, 0.31%)</title><rect x="664.3" y="1585" width="3.7" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="667.35" 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>Lorg/eclipse/jetty/server/HttpConnection:::send (8 samples, 0.61%)</title><rect x="389.7" y="769" width="7.3" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="392.74" 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_queued_spin_lock_slowpath (1 samples, 0.08%)</title><rect x="785.8" y="449" width="0.9" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="788.79" 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>intel_pmu_enable_all (2 samples, 0.15%)</title><rect x="1165.5" y="1521" width="1.8" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="1168.53" 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>[libpthread-2.23.so] (1 samples, 0.08%)</title><rect x="1018.7" y="1873" width="0.9" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text text-anchor="" x="1021.71" y="1883.5" font-size="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.08%)</title><rect x="199.4" y="1825" width="0.9" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="202.42" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpChannel:::handle (82 samples, 6.30%)</title><rect x="895.5" y="1585" width="74.3" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text text-anchor="" x="898.45" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/ecl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/http/HttpFields$Itr:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="1138.3" y="1041" width="0.9" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="1141.34" 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>native_write_msr_safe (2 samples, 0.15%)</title><rect x="171.3" y="1729" width="1.8" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="174.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>security_socket_sendmsg (1 samples, 0.08%)</title><rect x="513.0" y="1745" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="516.00" 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>Lorg/eclipse/jetty/util/thread/strategy/ExecutingExecutionStrategy:::execute (1 samples, 0.08%)</title><rect x="461.3" y="1649" width="0.9" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text text-anchor="" x="464.34" 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_push (1 samples, 0.08%)</title><rect x="585.5" y="817" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="588.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>do_futex (2 samples, 0.15%)</title><rect x="116.9" y="1729" width="1.9" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="119.94" 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>Lorg/glassfish/jersey/message/internal/MessageBodyFactory:::_getMessageBodyWriter (1 samples, 0.08%)</title><rect x="933.5" y="833" width="0.9" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text text-anchor="" x="936.52" 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>Lcom/codahale/metrics/jersey2/InstrumentedResourceMethodApplicationListener$ChainedRequestEventListener:::onEvent (2 samples, 0.15%)</title><rect x="405.1" y="929" width="1.9" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="408.15" 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>Ljava/lang/StringBuilder:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="226.6" y="1585" width="0.9" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="229.61" 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>JavaThread::run (10 samples, 0.77%)</title><rect x="663.4" y="1857" width="9.1" height="15.0" fill="rgb(175,175,50)" rx="2" ry="2" />
<text text-anchor="" x="666.44" y="1867.5" font-size="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 (5 samples, 0.38%)</title><rect x="463.1" y="1633" width="4.6" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="466.15" 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>epi_rcu_free (1 samples, 0.08%)</title><rect x="407.9" y="673" width="0.9" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="410.86" 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>Lorg/eclipse/jetty/http/HttpParser:::parseLine (1 samples, 0.08%)</title><rect x="1189.1" y="1553" width="0.9" height="15.0" fill="rgb(70,219,70)" rx="2" ry="2" />
<text text-anchor="" x="1192.09" 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>aa_sock_msg_perm (1 samples, 0.08%)</title><rect x="283.7" y="1713" width="0.9" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="286.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>Lorg/glassfish/jersey/internal/util/PropertiesHelper:::getPropertyNameForRuntime (4 samples, 0.31%)</title><rect x="581.0" y="897" width="3.6" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text text-anchor="" x="583.97" 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 (1 samples, 0.08%)</title><rect x="439.6" y="897" width="0.9" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="442.59" 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>Lch/qos/logback/core/spi/AppenderAttachableImpl:::appendLoopOnAppenders (7 samples, 0.54%)</title><rect x="327.2" y="1537" width="6.3" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text text-anchor="" x="330.20" 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>Lorg/eclipse/jetty/server/HttpConnection:::onFillable (149 samples, 11.44%)</title><rect x="326.3" y="1601" width="135.0" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="329.30" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/jett..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.38%)</title><rect x="672.5" y="1889" width="4.5" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="675.50" y="1899.5" font-size="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 (1 samples, 0.08%)</title><rect x="45.3" y="1825" width="1.0" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="48.35" y="1835.5" font-size="12" 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.08%)</title><rect x="1009.6" y="1793" width="1.0" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="1012.65" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/nio/ch/Util:::offerFirstTemporaryDirectBuffer (1 samples, 0.08%)</title><rect x="969.8" y="1521" width="0.9" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="972.77" 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>Ljava/lang/Throwable:::&lt;init&gt; (12 samples, 0.92%)</title><rect x="538.4" y="1041" width="10.8" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text text-anchor="" x="541.37" 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>__fdget_pos (1 samples, 0.08%)</title><rect x="1031.4" y="1297" width="0.9" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="1034.40" 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>default_do_nmi (2 samples, 0.15%)</title><rect x="84.3" y="1601" width="1.8" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="87.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>sock_sendmsg (6 samples, 0.46%)</title><rect x="687.9" y="1745" width="5.4" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="690.91" 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>Ljava/lang/Throwable:::fillInStackTrace (10 samples, 0.77%)</title><rect x="540.2" y="1009" width="9.0" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text text-anchor="" x="543.18" 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>Ljava/io/ByteArrayOutputStream:::writeTo (3 samples, 0.23%)</title><rect x="934.4" y="881" width="2.7" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="937.42" 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>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="683.4" y="1809" width="0.9" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="686.38" y="1819.5" font-size="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.08%)</title><rect x="482.2" y="1697" width="0.9" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="485.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>Lcom/fasterxml/jackson/core/json/ByteSourceJsonBootstrapper:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="593.7" y="657" width="0.9" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="596.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>net_rx_action (2 samples, 0.15%)</title><rect x="294.6" y="1489" width="1.8" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="297.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>sock_read_iter (1 samples, 0.08%)</title><rect x="283.7" y="1777" width="0.9" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="286.70" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/LinkedList:::linkLast (1 samples, 0.08%)</title><rect x="818.4" y="545" width="0.9" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="821.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>schedule (2 samples, 0.15%)</title><rect x="33.6" y="1729" width="1.8" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="36.56" 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>rcu_nmi_exit (1 samples, 0.08%)</title><rect x="503.9" y="1585" width="0.9" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="506.93" 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.08%)</title><rect x="170.4" y="1505" width="0.9" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="173.41" 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>Lorg/glassfish/jersey/server/internal/routing/MethodSelectingRouter:::access$000 (1 samples, 0.08%)</title><rect x="569.2" y="881" width="0.9" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="572.19" 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>Lorg/glassfish/jersey/process/internal/RequestScope:::createInstance (1 samples, 0.08%)</title><rect x="757.7" y="1121" width="0.9" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text text-anchor="" x="760.70" 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>[unknown] (16 samples, 1.23%)</title><rect x="1161.9" y="1889" width="14.5" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="1164.90" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/http/HttpFields:::getFieldNames (1 samples, 0.08%)</title><rect x="962.5" y="1105" width="0.9" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="965.52" 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>hrtimer_start_range_ns (1 samples, 0.08%)</title><rect x="501.2" y="1761" width="0.9" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="504.21" 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>Lorg/eclipse/jetty/util/thread/strategy/ExecuteProduceConsume:::run (155 samples, 11.90%)</title><rect x="1021.4" y="1697" width="140.5" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text text-anchor="" x="1024.43" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/jett..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/InstanceLifecycleEventImpl:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="1077.6" y="833" width="0.9" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="1080.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>__tcp_push_pending_frames (1 samples, 0.08%)</title><rect x="585.5" y="801" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="588.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>Ljava/lang/StringBuilder:::append (1 samples, 0.08%)</title><rect x="441.4" y="1121" width="0.9" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="444.40" 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>Ljava/lang/ThreadLocal$ThreadLocalMap:::set (1 samples, 0.08%)</title><rect x="1071.3" y="1009" width="0.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1074.27" 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>Ljava/util/concurrent/locks/ReentrantLock:::unlock (1 samples, 0.08%)</title><rect x="526.6" y="1473" width="0.9" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="529.59" 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 (2 samples, 0.15%)</title><rect x="111.5" y="1729" width="1.8" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="114.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>native_write_msr_safe (1 samples, 0.08%)</title><rect x="1170.1" y="1553" width="0.9" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="1173.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>Lorg/glassfish/jersey/server/internal/inject/EntityParamValueFactoryProvider$EntityValueFactory:::provide (20 samples, 1.54%)</title><rect x="409.7" y="881" width="18.1" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="412.68" 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>Lorg/jvnet/hk2/internal/IterableProviderImpl:::justInTime (2 samples, 0.15%)</title><rect x="946.2" y="833" width="1.8" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="949.21" 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>BacktraceBuilder::expand (4 samples, 0.31%)</title><rect x="705.1" y="1841" width="3.7" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="708.13" y="1851.5" font-size="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.08%)</title><rect x="982.5" y="1697" width="0.9" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="985.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>Lorg/glassfish/jersey/server/model/internal/JavaResourceMethodDispatcherProvider$TypeOutInvoker:::doDispatch (3 samples, 0.23%)</title><rect x="1182.7" y="945" width="2.8" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="1185.75" 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>Ljava/util/concurrent/locks/ReentrantLock:::unlock (1 samples, 0.08%)</title><rect x="1021.4" y="1665" width="0.9" height="15.0" fill="rgb(78,191,191)" rx="2" ry="2" />
<text text-anchor="" x="1024.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>intel_pmu_enable_all (4 samples, 0.31%)</title><rect x="37.2" y="1649" width="3.6" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="40.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>Thread::muxAcquire (1 samples, 0.08%)</title><rect x="176.8" y="1809" width="0.9" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="179.76" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_send_events_proc (1 samples, 0.08%)</title><rect x="286.4" y="1713" width="0.9" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="289.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>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="858.3" y="1857" width="0.9" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="861.29" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetService (2 samples, 0.15%)</title><rect x="1122.0" y="657" width="1.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1125.03" 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>Ljava/lang/AbstractStringBuilder:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="1101.2" y="833" width="0.9" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="1104.18" 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>nmi_handle (1 samples, 0.08%)</title><rect x="181.3" y="1553" width="0.9" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="184.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>Ljava/util/HashMap:::resize (1 samples, 0.08%)</title><rect x="962.5" y="1025" width="0.9" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text text-anchor="" x="965.52" 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>__perf_event_task_sched_in (2 samples, 0.15%)</title><rect x="153.2" y="1681" width="1.8" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="156.20" 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.15%)</title><rect x="153.2" y="1793" width="1.8" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="156.20" y="1803.5" font-size="12" 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.08%)</title><rect x="103.3" y="1697" width="1.0" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="106.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>futex_wait (4 samples, 0.31%)</title><rect x="13.6" y="1793" width="3.7" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="16.63" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::toLowerCase (2 samples, 0.15%)</title><rect x="619.9" y="993" width="1.9" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text text-anchor="" x="622.94" 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>Ljava/lang/ThreadLocal:::set (1 samples, 0.08%)</title><rect x="682.5" y="1697" width="0.9" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="685.47" 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 (2 samples, 0.15%)</title><rect x="10.0" y="1601" width="1.8" height="15.0" fill="rgb(209,109,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>Lorg/eclipse/jetty/server/HttpConnection$SendCallback:::releaseHeader (1 samples, 0.08%)</title><rect x="390.6" y="705" width="1.0" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="393.65" 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_v4_rcv (1 samples, 0.08%)</title><rect x="294.6" y="1361" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="297.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>Lorg/glassfish/jersey/message/internal/WriterInterceptorExecutor:::proceed (1 samples, 0.08%)</title><rect x="933.5" y="881" width="0.9" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="936.52" 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>__local_bh_enable_ip (1 samples, 0.08%)</title><rect x="1018.7" y="1681" width="0.9" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="1021.71" 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>Lorg/glassfish/jersey/process/internal/RequestScope:::findOrCreate (1 samples, 0.08%)</title><rect x="559.2" y="881" width="0.9" height="15.0" fill="rgb(53,202,53)" rx="2" ry="2" />
<text text-anchor="" x="562.22" 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>Ljava/util/concurrent/locks/ReentrantReadWriteLock$ReadLock:::lock (1 samples, 0.08%)</title><rect x="939.9" y="769" width="0.9" height="15.0" fill="rgb(80,193,193)" rx="2" ry="2" />
<text text-anchor="" x="942.86" 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_irq_return_iret (1 samples, 0.08%)</title><rect x="33.6" y="1585" width="0.9" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="36.56" 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.15%)</title><rect x="125.1" y="1601" width="1.8" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="128.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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getInjecteeDescriptor (2 samples, 0.15%)</title><rect x="762.2" y="913" width="1.8" height="15.0" fill="rgb(78,190,190)" rx="2" ry="2" />
<text text-anchor="" x="765.23" 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>Lorg/jvnet/hk2/internal/Utilities:::createService (11 samples, 0.84%)</title><rect x="417.8" y="801" width="10.0" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text text-anchor="" x="420.83" 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>Ljava/util/concurrent/locks/LockSupport:::park (11 samples, 0.84%)</title><rect x="251.1" y="1697" width="9.9" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="254.08" 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>Lorg/glassfish/jersey/message/internal/HttpHeaderReaderImpl:::process (1 samples, 0.08%)</title><rect x="438.7" y="945" width="0.9" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text text-anchor="" x="441.68" 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>process_backlog (2 samples, 0.15%)</title><rect x="983.4" y="1409" width="1.8" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="986.36" 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>Lorg/eclipse/jetty/io/ManagedSelector$SelectorProducer:::select (4 samples, 0.31%)</title><rect x="890.9" y="1633" width="3.6" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text text-anchor="" x="893.92" 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 (2 samples, 0.15%)</title><rect x="853.8" y="1857" width="1.8" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="856.76" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::substring (1 samples, 0.08%)</title><rect x="927.2" y="897" width="0.9" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="930.17" 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>ep_poll (1 samples, 0.08%)</title><rect x="288.2" y="1809" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="291.23" y="1819.5" font-size="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.08%)</title><rect x="198.5" y="1777" width="0.9" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="201.51" y="1787.5" font-size="12" 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.46%)</title><rect x="502.1" y="1761" width="5.5" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="505.12" 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>Lorg/eclipse/jetty/server/HttpInput:::nextContent (2 samples, 0.15%)</title><rect x="414.2" y="561" width="1.8" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="417.21" 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>migrate_task_rq_fair (1 samples, 0.08%)</title><rect x="980.6" y="1393" width="1.0" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="983.65" 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>Lorg/eclipse/jetty/util/thread/strategy/ExecuteProduceConsume:::executeProduceConsume (144 samples, 11.06%)</title><rect x="519.3" y="1665" width="130.5" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="522.34" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/jet..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/OutboundJaxrsResponse$Builder:::clearBaseUri (1 samples, 0.08%)</title><rect x="605.4" y="1041" width="0.9" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text text-anchor="" x="608.44" 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>Lorg/eclipse/jetty/http/HttpGenerator:::generateHeaders (2 samples, 0.15%)</title><rect x="784.9" y="689" width="1.8" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text text-anchor="" x="787.88" 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_recvmsg (1 samples, 0.08%)</title><rect x="977.0" y="1473" width="0.9" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="980.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>schedule (1 samples, 0.08%)</title><rect x="883.7" y="1777" width="0.9" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="886.67" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::toLowerCase (1 samples, 0.08%)</title><rect x="1083.1" y="689" width="0.9" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="1086.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>finish_task_switch (1 samples, 0.08%)</title><rect x="161.4" y="1729" width="0.9" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="164.35" 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>Lorg/eclipse/jetty/io/AbstractConnection:::fillInterested (1 samples, 0.08%)</title><rect x="723.3" y="1585" width="0.9" height="15.0" fill="rgb(92,204,204)" rx="2" ry="2" />
<text text-anchor="" x="726.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>Ljava/lang/StringBuilder:::append (1 samples, 0.08%)</title><rect x="639.9" y="1537" width="0.9" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="642.88" 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.08%)</title><rect x="396.1" y="465" width="0.9" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="399.08" 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>Lorg/eclipse/jetty/io/ChannelEndPoint:::fill (2 samples, 0.15%)</title><rect x="969.8" y="1569" width="1.8" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="972.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>thread_entry (157 samples, 12.06%)</title><rect x="1019.6" y="1825" width="142.3" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text text-anchor="" x="1022.62" y="1835.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>[unknown] (4 samples, 0.31%)</title><rect x="125.1" y="1825" width="3.6" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text text-anchor="" x="128.10" y="1835.5" font-size="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.08%)</title><rect x="68.9" y="1553" width="0.9" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="71.91" 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>__intel_pmu_enable_all (2 samples, 0.15%)</title><rect x="144.1" y="1489" width="1.8" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="147.13" 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>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::getEntry (1 samples, 0.08%)</title><rect x="1083.1" y="753" width="0.9" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="1086.06" 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>Ljava/lang/String:::toLowerCase (1 samples, 0.08%)</title><rect x="409.7" y="673" width="0.9" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text text-anchor="" x="412.68" 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 (2 samples, 0.15%)</title><rect x="1011.5" y="1665" width="1.8" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="1014.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>JavaCalls::call_helper (69 samples, 5.30%)</title><rect x="211.2" y="1777" width="62.5" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="214.20" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaCa..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetDescriptor (1 samples, 0.08%)</title><rect x="1120.2" y="801" width="0.9" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="1123.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>finish_task_switch (2 samples, 0.15%)</title><rect x="1169.2" y="1665" width="1.8" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="1172.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>vfs_read (2 samples, 0.15%)</title><rect x="852.0" y="1825" width="1.8" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="854.95" y="1835.5" font-size="12" font-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 (7 samples, 0.54%)</title><rect x="737.8" y="945" width="6.3" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="740.76" 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>Lorg/eclipse/jetty/io/SelectChannelEndPoint:::needsFillInterest (2 samples, 0.15%)</title><rect x="526.6" y="1521" width="1.8" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="529.59" 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>Lorg/eclipse/jetty/server/HttpInput:::addContent (1 samples, 0.08%)</title><rect x="481.3" y="1809" width="0.9" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="484.27" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/StringBuilder:::append (1 samples, 0.08%)</title><rect x="552.9" y="1105" width="0.9" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="555.87" 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>Lorg/glassfish/jersey/server/model/internal/JavaResourceMethodDispatcherProvider$TypeOutInvoker:::doDispatch (20 samples, 1.54%)</title><rect x="587.3" y="945" width="18.1" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="590.31" 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>[libc-2.23.so] (5 samples, 0.38%)</title><rect x="486.7" y="1857" width="4.5" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text text-anchor="" x="489.71" y="1867.5" font-size="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.15%)</title><rect x="169.5" y="1713" width="1.8" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="172.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>percpu_down_read_trylock (1 samples, 0.08%)</title><rect x="996.1" y="1761" width="0.9" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="999.05" 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>java-?/6461 (5 samples, 0.38%)</title><rect x="672.5" y="1905" width="4.5" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text text-anchor="" x="675.50" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/ThreadLocal$ThreadLocalMap:::getEntry (1 samples, 0.08%)</title><rect x="454.1" y="1473" width="0.9" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="457.09" 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>activate_task (1 samples, 0.08%)</title><rect x="307.3" y="1745" width="0.9" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="310.27" 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>Lio/dropwizard/jersey/filter/AllowedMethodsFilter:::handle (12 samples, 0.92%)</title><rect x="1178.2" y="1313" width="10.9" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="1181.22" 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>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject:::awaitNanos (1 samples, 0.08%)</title><rect x="321.8" y="1649" width="0.9" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="324.77" 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>Lorg/glassfish/jersey/internal/Errors:::process (6 samples, 0.46%)</title><rect x="1180.0" y="1073" width="5.5" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text text-anchor="" x="1183.03" 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>Lorg/glassfish/jersey/server/ContainerResponse:::setMediaType (1 samples, 0.08%)</title><rect x="572.8" y="913" width="0.9" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="575.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>sys_futex (1 samples, 0.08%)</title><rect x="1010.6" y="1825" width="0.9" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="1013.55" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:::acquireShared (1 samples, 0.08%)</title><rect x="1125.7" y="513" width="0.9" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="1128.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>Ljava/net/InetSocketAddress$InetSocketAddressHolder:::access$700 (1 samples, 0.08%)</title><rect x="329.0" y="1393" width="0.9" height="15.0" fill="rgb(58,173,173)" rx="2" ry="2" />
<text text-anchor="" x="332.02" 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_pmu_enable.part.89 (4 samples, 0.31%)</title><rect x="13.6" y="1681" width="3.7" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="16.63" 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>group_sched_in (1 samples, 0.08%)</title><rect x="423.3" y="497" width="0.9" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="426.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>Lsun/nio/ch/EPollArrayWrapper:::interrupt (1 samples, 0.08%)</title><rect x="1031.4" y="1441" width="0.9" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text text-anchor="" x="1034.40" 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>Lorg/jvnet/hk2/internal/ThreeThirtyResolver:::resolve (3 samples, 0.23%)</title><rect x="816.6" y="609" width="2.7" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text text-anchor="" x="819.61" 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_futex (2 samples, 0.15%)</title><rect x="74.3" y="1761" width="1.9" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="77.35" 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>Lorg/eclipse/jetty/server/HttpOutput:::write (8 samples, 0.61%)</title><rect x="389.7" y="817" width="7.3" height="15.0" fill="rgb(54,168,168)" rx="2" ry="2" />
<text text-anchor="" x="392.74" 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>x86_pmu_enable (2 samples, 0.15%)</title><rect x="74.3" y="1617" width="1.9" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="77.35" 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>Lch/qos/logback/access/spi/AccessEvent:::getResponseHeaderMap (2 samples, 0.15%)</title><rect x="217.5" y="1649" width="1.9" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="220.54" 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-?/6370 (90 samples, 6.91%)</title><rect x="192.2" y="1905" width="81.5" height="15.0" fill="rgb(69,218,69)" rx="2" ry="2" />
<text text-anchor="" x="195.17" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java-?/6370</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (2 samples, 0.15%)</title><rect x="1165.5" y="1505" width="1.8" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="1168.53" 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>Ljavax/ws/rs/core/AbstractMultivaluedMap:::get (1 samples, 0.08%)</title><rect x="404.2" y="913" width="0.9" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="407.24" 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>inet_sendmsg (1 samples, 0.08%)</title><rect x="838.4" y="1041" width="0.9" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="841.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>Lorg/jvnet/hk2/internal/CacheKey:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="560.1" y="865" width="0.9" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="563.12" 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>Lorg/eclipse/jetty/util/log/Slf4jLog:::debug (5 samples, 0.38%)</title><rect x="629.0" y="1473" width="4.5" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="632.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>do_futex (2 samples, 0.15%)</title><rect x="148.7" y="1681" width="1.8" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="151.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>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="497.6" y="1841" width="0.9" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="500.59" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lch/qos/logback/access/pattern/RequestHeaderConverter:::convert (3 samples, 0.23%)</title><rect x="223.0" y="1569" width="2.7" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text text-anchor="" x="225.98" 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>Lcom/fasterxml/jackson/core/json/ByteSourceJsonBootstrapper:::constructParser (4 samples, 0.31%)</title><rect x="594.6" y="657" width="3.6" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="597.56" 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>epoll_ctl (1 samples, 0.08%)</title><rect x="324.5" y="1505" width="0.9" height="15.0" fill="rgb(248,119,119)" rx="2" ry="2" />
<text text-anchor="" x="327.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>copy_page_from_iter (1 samples, 0.08%)</title><rect x="978.8" y="1505" width="0.9" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="981.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>Lsun/nio/ch/EPollArrayWrapper:::poll (2 samples, 0.15%)</title><rect x="323.6" y="1553" width="1.8" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="326.58" 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>[unknown] (8 samples, 0.61%)</title><rect x="47.2" y="1873" width="7.2" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
<text text-anchor="" x="50.16" y="1883.5" font-size="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.08%)</title><rect x="1096.7" y="465" width="0.9" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="1099.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>nf_hook_slow (1 samples, 0.08%)</title><rect x="1015.1" y="1601" width="0.9" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="1018.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>CompileTask::print_compilation_impl (1 samples, 0.08%)</title><rect x="152.3" y="1793" width="0.9" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="155.29" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/util/BlockingArrayQueue:::poll (1 samples, 0.08%)</title><rect x="321.8" y="1665" width="0.9" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="324.77" 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_read (1 samples, 0.08%)</title><rect x="872.8" y="1825" width="0.9" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="875.80" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/handler/gzip/GzipHandler:::handle (111 samples, 8.53%)</title><rect x="532.9" y="1489" width="100.6" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text text-anchor="" x="535.93" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/nio/ch/IOUtil:::read (1 samples, 0.08%)</title><rect x="1031.4" y="1409" width="0.9" height="15.0" fill="rgb(72,186,186)" rx="2" ry="2" />
<text text-anchor="" x="1034.40" 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>Ljava/lang/String:::equalsIgnoreCase (1 samples, 0.08%)</title><rect x="930.8" y="801" width="0.9" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="933.80" 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>perf_event_context_sched_in (4 samples, 0.31%)</title><rect x="309.1" y="1713" width="3.6" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="312.08" 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>Lorg/glassfish/jersey/process/internal/RequestScope:::runInScope (9 samples, 0.69%)</title><rect x="1180.0" y="1121" width="8.2" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text text-anchor="" x="1183.03" 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>Lorg/glassfish/jersey/servlet/ServletContainer:::service (48 samples, 3.69%)</title><rect x="923.5" y="1201" width="43.6" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text text-anchor="" x="926.55" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/io/SelectChannelEndPoint$2:::run (93 samples, 7.14%)</title><rect x="895.5" y="1649" width="84.2" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="898.45" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/ecli..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.08%)</title><rect x="177.7" y="1569" width="0.9" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="180.67" 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>Lio/dropwizard/jersey/filter/AllowedMethodsFilter:::handle (102 samples, 7.83%)</title><rect x="536.6" y="1313" width="92.4" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="539.56" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lio/dropwiz..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Long:::toString (1 samples, 0.08%)</title><rect x="220.3" y="1537" width="0.9" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="223.26" 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.08%)</title><rect x="634.4" y="929" width="0.9" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="637.44" 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_transmit_skb (1 samples, 0.08%)</title><rect x="395.2" y="417" width="0.9" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="398.18" 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>rw_verify_area (1 samples, 0.08%)</title><rect x="721.4" y="1553" width="1.0" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="724.44" 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>Lorg/eclipse/jetty/io/ManagedSelector$SelectorProducer:::select (1 samples, 0.08%)</title><rect x="1176.4" y="1633" width="0.9" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="1179.41" 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>_new_array_Java (1 samples, 0.08%)</title><rect x="413.3" y="577" width="0.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="416.30" 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>Lio/dropwizard/servlets/ThreadNameFilter:::doFilter (121 samples, 9.29%)</title><rect x="336.3" y="1281" width="109.6" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text text-anchor="" x="339.27" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lio/dropwizar..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/Utilities:::createService (2 samples, 0.15%)</title><rect x="923.5" y="897" width="1.9" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text text-anchor="" x="926.55" 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>sys_epoll_wait (1 samples, 0.08%)</title><rect x="321.8" y="1569" width="0.9" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="324.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>[unknown] (4 samples, 0.31%)</title><rect x="125.1" y="1873" width="3.6" height="15.0" fill="rgb(204,55,55)" rx="2" ry="2" />
<text text-anchor="" x="128.10" y="1883.5" font-size="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.08%)</title><rect x="894.5" y="1617" width="1.0" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="897.55" 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>Lorg/eclipse/jetty/server/HttpInput:::consumeNonContent (1 samples, 0.08%)</title><rect x="1116.6" y="561" width="0.9" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="1119.59" 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>Lorg/glassfish/jersey/server/internal/routing/RoutingStage:::_apply (5 samples, 0.38%)</title><rect x="379.8" y="961" width="4.5" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="382.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>process_backlog (1 samples, 0.08%)</title><rect x="677.0" y="1441" width="0.9" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="680.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>do_futex (1 samples, 0.08%)</title><rect x="73.4" y="1761" width="0.9" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="76.44" 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>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="494.0" y="1777" width="0.9" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="496.96" y="1787.5" font-size="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_init (1 samples, 0.08%)</title><rect x="498.5" y="1761" width="0.9" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="501.49" 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>Lorg/jvnet/hk2/internal/ClazzCreator:::create (1 samples, 0.08%)</title><rect x="1077.6" y="849" width="0.9" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1080.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>tcp_sendmsg (2 samples, 0.15%)</title><rect x="633.5" y="1393" width="1.8" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="636.53" 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>Lorg/glassfish/jersey/message/internal/WriterInterceptorExecutor:::proceed (2 samples, 0.15%)</title><rect x="781.3" y="913" width="1.8" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="784.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>Ljava/util/concurrent/atomic/AtomicIntegerArray:::checkedByteOffset (1 samples, 0.08%)</title><rect x="390.6" y="593" width="1.0" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="393.65" 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>__intel_pmu_enable_all (6 samples, 0.46%)</title><rect x="502.1" y="1633" width="5.5" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="505.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>schedule_hrtimeout_range (4 samples, 0.31%)</title><rect x="987.0" y="1809" width="3.6" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="989.99" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/uri/internal/UriParser:::parseComponentWithIP (4 samples, 0.31%)</title><rect x="553.8" y="1105" width="3.6" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="556.78" 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>Lorg/jvnet/hk2/internal/PerLookupContext:::findOrCreate (6 samples, 0.46%)</title><rect x="1130.2" y="993" width="5.4" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="1133.18" 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>Lcom/fasterxml/jackson/core/JsonFactory:::_createParser (4 samples, 0.31%)</title><rect x="412.4" y="673" width="3.6" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text text-anchor="" x="415.40" 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>ObjectSynchronizer::notify (1 samples, 0.08%)</title><rect x="415.1" y="385" width="0.9" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="418.12" 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>OopMapSet::find_map_at_offset (1 samples, 0.08%)</title><rect x="26.3" y="1745" width="0.9" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="29.31" 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>Lorg/glassfish/jersey/servlet/WebComponent:::initContainerRequest (2 samples, 0.15%)</title><rect x="836.5" y="1153" width="1.9" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="839.54" 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>Lorg/eclipse/jetty/util/log/Slf4jLog:::isDebugEnabled (1 samples, 0.08%)</title><rect x="318.1" y="1713" width="0.9" height="15.0" fill="rgb(105,216,216)" rx="2" ry="2" />
<text text-anchor="" x="321.14" 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>[[vdso]] (1 samples, 0.08%)</title><rect x="516.6" y="1841" width="0.9" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text text-anchor="" x="519.62" y="1851.5" font-size="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.08%)</title><rect x="439.6" y="945" width="0.9" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="442.59" 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>native_write_msr_safe (2 samples, 0.15%)</title><rect x="131.4" y="1873" width="1.9" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="134.44" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lio/dropwizard/jersey/jackson/JacksonMessageBodyProvider:::isWriteable (1 samples, 0.08%)</title><rect x="677.0" y="1841" width="0.9" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="680.04" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpConnection:::parseRequestBuffer (10 samples, 0.77%)</title><rect x="639.9" y="1585" width="9.0" height="15.0" fill="rgb(80,193,193)" rx="2" ry="2" />
<text text-anchor="" x="642.88" 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>Lorg/eclipse/jetty/server/HttpChannel:::write (9 samples, 0.69%)</title><rect x="1090.3" y="801" width="8.2" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="1093.31" 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>Ljava/lang/ThreadLocal:::get (1 samples, 0.08%)</title><rect x="786.7" y="593" width="0.9" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="789.70" 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>schedule (2 samples, 0.15%)</title><rect x="20.9" y="1713" width="1.8" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="23.88" 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.08%)</title><rect x="1018.7" y="1857" width="0.9" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="1021.71" y="1867.5" font-size="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.08%)</title><rect x="1015.1" y="1729" width="0.9" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="1018.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>Lorg/eclipse/jetty/server/HttpOutput:::write (9 samples, 0.69%)</title><rect x="1090.3" y="817" width="8.2" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="1093.31" 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>Ljava/util/Formatter:::format (4 samples, 0.31%)</title><rect x="1058.6" y="1057" width="3.6" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text text-anchor="" x="1061.59" 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>__schedule (2 samples, 0.15%)</title><rect x="1161.9" y="1761" width="1.8" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="1164.90" 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>enqueue_task_fair (1 samples, 0.08%)</title><rect x="294.6" y="1217" width="0.9" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="297.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>rebalance_domains (1 samples, 0.08%)</title><rect x="361.6" y="1025" width="0.9" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="364.64" 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>intel_pmu_enable_all (2 samples, 0.15%)</title><rect x="194.9" y="1617" width="1.8" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="197.88" 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>Lio/dropwizard/jetty/BiDiGzipHandler:::handle (78 samples, 5.99%)</title><rect x="899.1" y="1505" width="70.7" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text text-anchor="" x="902.08" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lio/dro..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/core/json/UTF8StreamJsonParser:::nextFieldName (1 samples, 0.08%)</title><rect x="1113.0" y="657" width="0.9" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="1115.96" 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>Lorg/jvnet/hk2/internal/IterableProviderImpl:::justInTime (2 samples, 0.15%)</title><rect x="925.4" y="929" width="1.8" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="928.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>Ljava/util/regex/Matcher:::reset (1 samples, 0.08%)</title><rect x="1103.0" y="833" width="0.9" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="1106.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>Lsun/misc/Unsafe:::park (4 samples, 0.31%)</title><rect x="715.1" y="1633" width="3.6" height="15.0" fill="rgb(69,218,69)" rx="2" ry="2" />
<text text-anchor="" x="718.10" 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>Ljava/lang/ThreadLocal:::set (2 samples, 0.15%)</title><rect x="247.5" y="1697" width="1.8" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="250.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>Lorg/glassfish/jersey/server/ServerRuntime$Responder:::processResponse (23 samples, 1.77%)</title><rect x="384.3" y="993" width="20.8" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="387.30" 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>vfs_write (1 samples, 0.08%)</title><rect x="528.4" y="1457" width="0.9" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="531.40" 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>_raw_spin_unlock_bh (1 samples, 0.08%)</title><rect x="316.3" y="1697" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="319.33" 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>Lorg/glassfish/jersey/server/internal/routing/MethodSelectingRouter:::apply (1 samples, 0.08%)</title><rect x="569.2" y="913" width="0.9" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text text-anchor="" x="572.19" 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>Lorg/eclipse/jetty/io/ManagedSelector$SelectorProducer:::runActions (2 samples, 0.15%)</title><rect x="519.3" y="1633" width="1.9" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text text-anchor="" x="522.34" 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>Lch/qos/logback/access/spi/AccessEvent:::getRequestParameterMap (1 samples, 0.08%)</title><rect x="729.6" y="1441" width="0.9" height="15.0" fill="rgb(104,215,215)" rx="2" ry="2" />
<text text-anchor="" x="732.60" 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>Lorg/jvnet/hk2/internal/ClazzCreator:::fieldMe (2 samples, 0.15%)</title><rect x="608.2" y="945" width="1.8" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text text-anchor="" x="611.16" 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>Lorg/glassfish/jersey/uri/internal/JerseyUriBuilder:::build (5 samples, 0.38%)</title><rect x="440.5" y="1201" width="4.5" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text text-anchor="" x="443.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>Lorg/eclipse/jetty/util/log/JettyAwareLogger:::isDebugEnabled (1 samples, 0.08%)</title><rect x="392.5" y="625" width="0.9" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="395.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>finish_task_switch (4 samples, 0.31%)</title><rect x="309.1" y="1745" width="3.6" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="312.08" 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>__vfs_write (1 samples, 0.08%)</title><rect x="687.0" y="1793" width="0.9" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="690.00" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/SystemDescriptor:::invokeInstanceListeners (1 samples, 0.08%)</title><rect x="368.0" y="849" width="0.9" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="370.99" 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>nmi_cpu_backtrace (1 samples, 0.08%)</title><rect x="478.6" y="1841" width="0.9" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="481.56" y="1851.5" font-size="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] (6 samples, 0.46%)</title><rect x="277.4" y="1873" width="5.4" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="280.36" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/hk2/utilities/reflection/ReflectionHelper:::getFirstTypeArgument (1 samples, 0.08%)</title><rect x="431.4" y="865" width="0.9" height="15.0" fill="rgb(67,180,180)" rx="2" ry="2" />
<text text-anchor="" x="434.43" 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>JVM_MonitorNotify (1 samples, 0.08%)</title><rect x="415.1" y="401" width="0.9" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text text-anchor="" x="418.12" 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>Lorg/jvnet/hk2/internal/ConstantActiveDescriptor:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="287.3" y="1841" width="0.9" height="15.0" fill="rgb(90,201,201)" rx="2" ry="2" />
<text text-anchor="" x="290.33" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/ContainerRequest:::readEntity (10 samples, 0.77%)</title><rect x="589.1" y="865" width="9.1" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text text-anchor="" x="592.12" 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>Lorg/glassfish/jersey/process/internal/RequestScope:::findOrCreate (3 samples, 0.23%)</title><rect x="366.2" y="881" width="2.7" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text text-anchor="" x="369.18" 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>Lorg/glassfish/jersey/message/internal/InboundMessageContext:::getMediaType (1 samples, 0.08%)</title><rect x="438.7" y="1121" width="0.9" height="15.0" fill="rgb(51,165,165)" rx="2" ry="2" />
<text text-anchor="" x="441.68" 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_finish_output (2 samples, 0.15%)</title><rect x="983.4" y="1521" width="1.8" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="986.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>java_lang_Throwable::fill_in_stack_trace (5 samples, 0.38%)</title><rect x="705.1" y="1873" width="4.6" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="708.13" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/hibernate/validator/internal/metadata/raw/ExecutableElement:::forMethod (1 samples, 0.08%)</title><rect x="1108.4" y="881" width="0.9" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="1111.43" 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_recvmsg (1 samples, 0.08%)</title><rect x="857.4" y="1713" width="0.9" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="860.39" 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>Ljava/util/Collections$UnmodifiableCollection:::iterator (1 samples, 0.08%)</title><rect x="370.7" y="865" width="0.9" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="373.71" 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>do_softirq.part.19 (1 samples, 0.08%)</title><rect x="578.2" y="321" width="1.0" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="581.25" 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>__schedule (1 samples, 0.08%)</title><rect x="672.5" y="1745" width="0.9" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="675.50" 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>Ljava/util/concurrent/locks/ReentrantLock$Sync:::tryRelease (1 samples, 0.08%)</title><rect x="526.6" y="1441" width="0.9" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="529.59" 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>Lorg/glassfish/jersey/message/internal/MessageBodyFactory:::getMessageBodyReader (1 samples, 0.08%)</title><rect x="1110.2" y="753" width="1.0" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="1113.25" 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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetInjecteeDescriptor (1 samples, 0.08%)</title><rect x="1123.8" y="577" width="0.9" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text text-anchor="" x="1126.84" 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>__intel_pmu_enable_all (2 samples, 0.15%)</title><rect x="148.7" y="1505" width="1.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="151.66" 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>Lorg/jvnet/hk2/internal/ServiceHandleImpl:::getService (3 samples, 0.23%)</title><rect x="1123.8" y="721" width="2.8" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="1126.84" 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_write (2 samples, 0.15%)</title><rect x="243.8" y="1425" width="1.8" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="246.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>Ljava/lang/Character:::toString (1 samples, 0.08%)</title><rect x="556.5" y="1041" width="0.9" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="559.50" 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>Lorg/glassfish/jersey/process/internal/RequestScope$Instance:::remove (3 samples, 0.23%)</title><rect x="1185.5" y="1089" width="2.7" height="15.0" fill="rgb(54,168,168)" rx="2" ry="2" />
<text text-anchor="" x="1188.47" 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>ip_rcv (3 samples, 0.23%)</title><rect x="690.6" y="1425" width="2.7" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="693.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>Ljava/lang/ThreadLocal:::set (1 samples, 0.08%)</title><rect x="831.1" y="1089" width="0.9" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="834.11" 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>Lorg/eclipse/jetty/http/HttpField:::getLongValue (1 samples, 0.08%)</title><rect x="729.6" y="1329" width="0.9" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="732.60" 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>schedule_hrtimeout_range_clock (1 samples, 0.08%)</title><rect x="858.3" y="1793" width="0.9" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="861.29" y="1803.5" font-size="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 (10 samples, 0.77%)</title><rect x="663.4" y="1809" width="9.1" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="666.44" y="1819.5" font-size="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 (6 samples, 0.46%)</title><rect x="687.9" y="1841" width="5.4" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="690.91" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/ConcurrentHashMap$KeyIterator:::next (1 samples, 0.08%)</title><rect x="328.1" y="1409" width="0.9" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="331.11" 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>Lcom/fasterxml/jackson/core/JsonFactory:::_createParser (1 samples, 0.08%)</title><rect x="1184.6" y="673" width="0.9" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text text-anchor="" x="1187.56" 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_futex (5 samples, 0.38%)</title><rect x="203.0" y="1809" width="4.6" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="206.04" y="1819.5" font-size="12" 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.23%)</title><rect x="709.7" y="1825" width="2.7" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="712.66" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/reflect/Constructor:::newInstance (1 samples, 0.08%)</title><rect x="286.4" y="1825" width="0.9" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="289.42" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:::unparkSuccessor (1 samples, 0.08%)</title><rect x="982.5" y="1809" width="0.9" height="15.0" fill="rgb(65,178,178)" rx="2" ry="2" />
<text text-anchor="" x="985.46" y="1819.5" font-size="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 samples, 0.08%)</title><rect x="479.5" y="1857" width="0.9" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="482.46" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/AbstractCollection:::addAll (1 samples, 0.08%)</title><rect x="1132.9" y="833" width="0.9" height="15.0" fill="rgb(67,180,180)" rx="2" ry="2" />
<text text-anchor="" x="1135.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>Lorg/eclipse/jetty/http/PathMap:::pathMatch (1 samples, 0.08%)</title><rect x="1177.3" y="1377" width="0.9" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="1180.31" 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>sys_futex (1 samples, 0.08%)</title><rect x="481.3" y="1713" width="0.9" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="484.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>Lorg/glassfish/jersey/message/internal/OutboundMessageContext:::enableBuffering (5 samples, 0.38%)</title><rect x="1099.4" y="945" width="4.5" height="15.0" fill="rgb(104,215,215)" rx="2" ry="2" />
<text text-anchor="" x="1102.37" 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>schedule (1 samples, 0.08%)</title><rect x="677.9" y="1761" width="0.9" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="680.94" 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>__netif_receive_skb (1 samples, 0.08%)</title><rect x="396.1" y="241" width="0.9" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="399.08" 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>__perf_event_task_sched_in (2 samples, 0.15%)</title><rect x="705.1" y="1681" width="1.8" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="708.13" 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>Ljava/util/regex/Matcher:::end (1 samples, 0.08%)</title><rect x="550.2" y="1025" width="0.9" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text text-anchor="" x="553.15" 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>__tcp_push_pending_frames (1 samples, 0.08%)</title><rect x="395.2" y="449" width="0.9" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="398.18" 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>do_futex (2 samples, 0.15%)</title><rect x="1165.5" y="1681" width="1.8" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="1168.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>[unknown] (4 samples, 0.31%)</title><rect x="10.0" y="1857" width="3.6" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/io/ManagedSelector$SelectorProducer:::produce (4 samples, 0.31%)</title><rect x="322.7" y="1649" width="3.6" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="325.67" 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>Ljava/lang/Character:::toLowerCase (1 samples, 0.08%)</title><rect x="964.3" y="961" width="0.9" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="967.33" 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>Ljava/lang/Thread:::setName (1 samples, 0.08%)</title><rect x="536.6" y="1265" width="0.9" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="539.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>__local_bh_enable_ip (1 samples, 0.08%)</title><rect x="578.2" y="337" width="1.0" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="581.25" 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_start (9 samples, 0.69%)</title><rect x="20.9" y="1873" width="8.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="23.88" y="1883.5" font-size="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.08%)</title><rect x="396.1" y="433" width="0.9" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="399.08" 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>Ljava/lang/ThreadLocal$ThreadLocalMap:::getEntryAfterMiss (1 samples, 0.08%)</title><rect x="454.1" y="1457" width="0.9" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="457.09" 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.08%)</title><rect x="678.8" y="1681" width="1.0" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="681.85" 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 (3 samples, 0.23%)</title><rect x="665.3" y="1473" width="2.7" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="668.25" 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>Lorg/eclipse/jetty/util/AttributesMap:::setAttribute (1 samples, 0.08%)</title><rect x="960.7" y="1041" width="0.9" height="15.0" fill="rgb(90,201,201)" rx="2" ry="2" />
<text text-anchor="" x="963.71" 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>Ljava/io/PrintStream:::write (17 samples, 1.31%)</title><rect x="231.1" y="1601" width="15.4" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="234.14" 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>Lorg/hibernate/validator/internal/metadata/BeanMetaDataManager:::isConstrained (1 samples, 0.08%)</title><rect x="801.2" y="865" width="0.9" height="15.0" fill="rgb(82,230,82)" rx="2" ry="2" />
<text text-anchor="" x="804.20" 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>vfs_writev (1 samples, 0.08%)</title><rect x="578.2" y="593" width="1.0" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="581.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>entry_SYSCALL_64_fastpath (2 samples, 0.15%)</title><rect x="243.8" y="1441" width="1.8" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="246.82" 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>kmem_cache_alloc (1 samples, 0.08%)</title><rect x="303.6" y="1825" width="0.9" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="306.64" y="1835.5" font-size="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 (1 samples, 0.08%)</title><rect x="888.2" y="1585" width="0.9" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="891.20" 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_common (1 samples, 0.08%)</title><rect x="634.4" y="993" width="0.9" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="637.44" 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>Lorg/glassfish/jersey/internal/Errors:::process (74 samples, 5.68%)</title><rect x="758.6" y="1089" width="67.1" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="761.60" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (2 samples, 0.15%)</title><rect x="262.0" y="1521" width="1.8" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="264.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>new_sync_write (1 samples, 0.08%)</title><rect x="1005.1" y="1777" width="0.9" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="1008.12" y="1787.5" font-size="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.08%)</title><rect x="838.4" y="961" width="0.9" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="841.36" 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_nmi (3 samples, 0.23%)</title><rect x="502.1" y="1601" width="2.7" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="505.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>sock_write_iter (2 samples, 0.15%)</title><rect x="1007.8" y="1761" width="1.8" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="1010.83" 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>__internal_add_timer (1 samples, 0.08%)</title><rect x="984.3" y="1217" width="0.9" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="987.27" 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>Ljava/lang/StringBuilder:::append (1 samples, 0.08%)</title><rect x="363.5" y="1057" width="0.9" height="15.0" fill="rgb(52,166,166)" rx="2" ry="2" />
<text text-anchor="" x="366.46" 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>Lorg/glassfish/jersey/uri/internal/JerseyUriBuilder:::_build (4 samples, 0.31%)</title><rect x="839.3" y="1185" width="3.6" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="842.26" 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>Lorg/jvnet/hk2/internal/IterableProviderImpl:::get (12 samples, 0.92%)</title><rect x="416.9" y="849" width="10.9" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text text-anchor="" x="419.93" 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>Ljava/lang/String:::length (1 samples, 0.08%)</title><rect x="840.2" y="1073" width="0.9" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="843.17" 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>Lorg/glassfish/jersey/uri/internal/CharacterIterator:::hasNext (1 samples, 0.08%)</title><rect x="753.2" y="1121" width="0.9" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="756.16" 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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getInjecteeDescriptor (2 samples, 0.15%)</title><rect x="598.2" y="817" width="1.8" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="601.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>Lsun/nio/ch/SocketDispatcher:::writev (4 samples, 0.31%)</title><rect x="1169.2" y="1825" width="3.6" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="1172.16" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/net/URI$Parser:::parseHierarchical (2 samples, 0.15%)</title><rect x="442.3" y="1121" width="1.8" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="445.30" 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>Lorg/glassfish/jersey/server/internal/monitoring/RequestEventImpl$Builder:::build (1 samples, 0.08%)</title><rect x="1088.5" y="897" width="0.9" height="15.0" fill="rgb(104,215,215)" rx="2" ry="2" />
<text text-anchor="" x="1091.49" 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>[unknown] (8 samples, 0.61%)</title><rect x="84.3" y="1889" width="7.3" height="15.0" fill="rgb(219,77,77)" rx="2" ry="2" />
<text text-anchor="" x="87.32" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::toLowerCase (1 samples, 0.08%)</title><rect x="964.3" y="977" width="0.9" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="967.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>Lorg/jvnet/hk2/internal/FactoryCreator:::create (6 samples, 0.46%)</title><rect x="948.9" y="753" width="5.5" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="951.92" 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>Lcom/fasterxml/jackson/jaxrs/base/ProviderBase:::readFrom (7 samples, 0.54%)</title><rect x="410.6" y="721" width="6.3" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text text-anchor="" x="413.58" 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>Lorg/jvnet/hk2/internal/FactoryCreator:::getFactoryHandle (1 samples, 0.08%)</title><rect x="826.6" y="1041" width="0.9" height="15.0" fill="rgb(92,204,204)" rx="2" ry="2" />
<text text-anchor="" x="829.57" 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>security_socket_recvmsg (1 samples, 0.08%)</title><rect x="483.1" y="1665" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="486.09" 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>Ljava/lang/String:::toLowerCase (2 samples, 0.15%)</title><rect x="436.9" y="977" width="1.8" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text text-anchor="" x="439.87" 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>Lorg/eclipse/jetty/util/thread/strategy/ExecuteProduceConsume:::run (15 samples, 1.15%)</title><rect x="1176.4" y="1697" width="13.6" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text text-anchor="" x="1179.41" 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>Lorg/eclipse/jetty/util/thread/QueuedThreadPool:::runJob (101 samples, 7.76%)</title><rect x="890.0" y="1713" width="91.6" height="15.0" fill="rgb(80,193,193)" rx="2" ry="2" />
<text text-anchor="" x="893.02" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclip..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (2 samples, 0.15%)</title><rect x="874.6" y="1489" width="1.8" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="877.61" 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>Ljava/util/concurrent/locks/ReentrantLock$FairSync:::lock (1 samples, 0.08%)</title><rect x="1032.3" y="1441" width="0.9" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="1035.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>Ljava/net/URI:::needsNormalization (2 samples, 0.15%)</title><rect x="616.3" y="1089" width="1.8" height="15.0" fill="rgb(81,194,194)" rx="2" ry="2" />
<text text-anchor="" x="619.31" 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>Lch/qos/logback/access/spi/AccessEvent:::getRequestParameterMap (1 samples, 0.08%)</title><rect x="731.4" y="1457" width="0.9" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="734.41" 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>Interpreter (10 samples, 0.77%)</title><rect x="663.4" y="1745" width="9.1" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text text-anchor="" x="666.44" 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.08%)</title><rect x="273.7" y="1777" width="0.9" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="276.73" y="1787.5" font-size="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.08%)</title><rect x="677.0" y="1313" width="0.9" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="680.04" 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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetService (6 samples, 0.46%)</title><rect x="600.0" y="817" width="5.4" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="603.00" 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_start (152 samples, 11.67%)</title><rect x="714.2" y="1873" width="137.8" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" />
<text text-anchor="" x="717.19" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java_start</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::search (3 samples, 0.23%)</title><rect x="358.0" y="1009" width="2.7" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="361.02" 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>__ip_local_out (1 samples, 0.08%)</title><rect x="1015.1" y="1617" width="0.9" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="1018.08" 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>JVM_FillInStackTrace (8 samples, 0.61%)</title><rect x="736.9" y="977" width="7.2" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text text-anchor="" x="739.85" 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>Ljava/util/Collections$UnmodifiableCollection:::size (1 samples, 0.08%)</title><rect x="1075.8" y="865" width="0.9" height="15.0" fill="rgb(105,251,105)" rx="2" ry="2" />
<text text-anchor="" x="1078.81" 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>Ljava/net/URI:::needsNormalization (2 samples, 0.15%)</title><rect x="1135.6" y="1089" width="1.8" height="15.0" fill="rgb(66,179,179)" rx="2" ry="2" />
<text text-anchor="" x="1138.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>Lorg/eclipse/jetty/server/HttpInput:::get (1 samples, 0.08%)</title><rect x="807.5" y="561" width="0.9" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="810.54" 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>sched_clock (1 samples, 0.08%)</title><rect x="85.2" y="1569" width="0.9" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="88.22" 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>Ljava/lang/ThreadLocal$ThreadLocalMap$Entry:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="1071.3" y="993" width="0.9" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="1074.27" 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>Lorg/eclipse/jetty/servlet/ServletHandler$CachedChain:::doFilter (1 samples, 0.08%)</title><rect x="276.5" y="1857" width="0.9" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="279.45" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/ConcurrentHashMap$TreeBin:::find (3 samples, 0.23%)</title><rect x="820.2" y="577" width="2.7" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="823.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>do_readv_writev (1 samples, 0.08%)</title><rect x="497.6" y="1793" width="0.9" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="500.59" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject:::awaitNanos (3 samples, 0.23%)</title><rect x="319.0" y="1665" width="2.8" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="322.05" 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>Lch/qos/logback/access/PatternLayout:::doLayout (10 samples, 0.77%)</title><rect x="219.4" y="1617" width="9.0" height="15.0" fill="rgb(55,169,169)" rx="2" ry="2" />
<text text-anchor="" x="222.35" 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>Lch/qos/logback/access/jetty/JettyServerAdapter:::buildResponseHeaderMap (1 samples, 0.08%)</title><rect x="530.2" y="1409" width="0.9" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text text-anchor="" x="533.22" 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>ep_remove (1 samples, 0.08%)</title><rect x="1016.0" y="1809" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="1018.99" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/servlet/internal/ResponseWriter$NonCloseableOutputStreamWrapper:::write (3 samples, 0.23%)</title><rect x="934.4" y="865" width="2.7" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="937.42" 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_wake_function (2 samples, 0.15%)</title><rect x="267.4" y="1569" width="1.8" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="270.39" 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>sock_write_iter (2 samples, 0.15%)</title><rect x="855.6" y="1697" width="1.8" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="858.58" 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>rw_verify_area (1 samples, 0.08%)</title><rect x="637.2" y="1489" width="0.9" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="640.16" 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>new_sync_read (1 samples, 0.08%)</title><rect x="994.2" y="1793" width="0.9" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="997.24" y="1803.5" font-size="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.31%)</title><rect x="65.3" y="1857" width="3.6" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="68.28" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/util/log/JettyAwareLogger:::log (4 samples, 0.31%)</title><rect x="629.9" y="1441" width="3.6" height="15.0" fill="rgb(78,191,191)" rx="2" ry="2" />
<text text-anchor="" x="632.91" 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>Lorg/glassfish/jersey/servlet/WebComponent:::service (74 samples, 5.68%)</title><rect x="557.4" y="1185" width="67.1" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="560.40" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/InboundMessageContext:::singleHeader (1 samples, 0.08%)</title><rect x="381.6" y="833" width="0.9" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="384.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>nmi_handle (1 samples, 0.08%)</title><rect x="144.1" y="1425" width="0.9" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="147.13" 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.08%)</title><rect x="515.7" y="1825" width="0.9" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="518.71" y="1835.5" font-size="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.08%)</title><rect x="634.4" y="945" width="0.9" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="637.44" 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>common_file_perm (1 samples, 0.08%)</title><rect x="304.5" y="1745" width="1.0" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="307.55" 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>Lorg/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (2 samples, 0.15%)</title><rect x="621.8" y="1009" width="1.8" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="624.75" 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>Lorg/jvnet/hk2/internal/ServiceHandleImpl:::getService (4 samples, 0.31%)</title><rect x="430.5" y="1041" width="3.6" height="15.0" fill="rgb(78,191,191)" rx="2" ry="2" />
<text text-anchor="" x="433.52" 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>copy_page_to_iter_iovec (1 samples, 0.08%)</title><rect x="290.0" y="1729" width="1.0" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="293.05" 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>__tcp_push_pending_frames (1 samples, 0.08%)</title><rect x="578.2" y="465" width="1.0" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="581.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>Lorg/glassfish/jersey/server/model/internal/AbstractJavaResourceMethodDispatcher:::dispatch (23 samples, 1.77%)</title><rect x="1105.7" y="961" width="20.9" height="15.0" fill="rgb(80,192,192)" rx="2" ry="2" />
<text text-anchor="" x="1108.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>__intel_pmu_enable_all (1 samples, 0.08%)</title><rect x="161.4" y="1633" width="0.9" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="164.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>hrtimer_start_range_ns (1 samples, 0.08%)</title><rect x="882.8" y="1777" width="0.9" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="885.76" y="1787.5" font-size="12" 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.15%)</title><rect x="74.3" y="1665" width="1.9" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="77.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>inet_sendmsg (1 samples, 0.08%)</title><rect x="1015.1" y="1745" width="0.9" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="1018.08" 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>Ljava/nio/channels/spi/AbstractInterruptibleChannel:::blockedOn (1 samples, 0.08%)</title><rect x="1025.1" y="1537" width="0.9" height="15.0" fill="rgb(88,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1028.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>Lorg/glassfish/jersey/server/ContainerResponse:::close (4 samples, 0.31%)</title><rect x="934.4" y="961" width="3.6" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="937.42" 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>Ljava/util/regex/Pattern:::newSlice (1 samples, 0.08%)</title><rect x="797.6" y="833" width="0.9" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text text-anchor="" x="800.57" 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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getUnqualifiedService (11 samples, 0.84%)</title><rect x="417.8" y="833" width="10.0" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="420.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>Ljava/util/ArrayList:::add (1 samples, 0.08%)</title><rect x="353.5" y="1057" width="0.9" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="356.49" 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>pthread_mutex_trylock@plt (1 samples, 0.08%)</title><rect x="717.8" y="1601" width="0.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="720.82" 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>__fget_light (1 samples, 0.08%)</title><rect x="1002.4" y="1793" width="0.9" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="1005.40" y="1803.5" font-size="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 (4 samples, 0.31%)</title><rect x="37.2" y="1841" width="3.6" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="40.19" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/AbstractStringBuilder:::append (1 samples, 0.08%)</title><rect x="356.2" y="993" width="0.9" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text text-anchor="" x="359.21" 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>Lorg/glassfish/jersey/internal/util/collection/ConcurrentHashMapV8:::get (1 samples, 0.08%)</title><rect x="781.3" y="817" width="0.9" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="784.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>Ljava/util/HashMap:::resize (1 samples, 0.08%)</title><rect x="1129.3" y="993" width="0.9" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text text-anchor="" x="1132.28" 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>Lorg/eclipse/jetty/server/HttpInput:::read (2 samples, 0.15%)</title><rect x="414.2" y="577" width="1.8" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="417.21" 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>Lorg/glassfish/jersey/server/model/internal/JavaResourceMethodDispatcherProvider$TypeOutInvoker:::doDispatch (23 samples, 1.77%)</title><rect x="407.0" y="945" width="20.8" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="409.96" 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>Lorg/eclipse/jetty/servlet/ServletHandler$CachedChain:::doFilter (102 samples, 7.83%)</title><rect x="536.6" y="1345" width="92.4" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="539.56" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclips..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (4 samples, 0.31%)</title><rect x="987.0" y="1825" width="3.6" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="989.99" y="1835.5" font-size="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.08%)</title><rect x="791.2" y="737" width="0.9" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" />
<text text-anchor="" x="794.23" 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>Lorg/glassfish/jersey/process/internal/Stages:::process (20 samples, 1.54%)</title><rect x="366.2" y="1009" width="18.1" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="369.18" 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>Ljava/lang/ThreadLocal$ThreadLocalMap:::access$100 (1 samples, 0.08%)</title><rect x="682.5" y="1681" width="0.9" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="685.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>pipe_write (1 samples, 0.08%)</title><rect x="200.3" y="1761" width="0.9" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="203.32" 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>Lorg/eclipse/jetty/io/WriteFlusher:::write (1 samples, 0.08%)</title><rect x="935.3" y="689" width="0.9" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="938.33" 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>jlong_disjoint_arraycopy (1 samples, 0.08%)</title><rect x="841.1" y="1089" width="0.9" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="844.08" 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>[libpthread-2.23.so] (3 samples, 0.23%)</title><rect x="994.2" y="1873" width="2.8" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text text-anchor="" x="997.24" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::addAll (1 samples, 0.08%)</title><rect x="376.1" y="945" width="1.0" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="379.14" 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>__schedule (1 samples, 0.08%)</title><rect x="161.4" y="1745" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="164.35" 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>Ljava/lang/String:::indexOf (1 samples, 0.08%)</title><rect x="1064.9" y="1057" width="0.9" height="15.0" fill="rgb(75,187,187)" rx="2" ry="2" />
<text text-anchor="" x="1067.93" 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>native_irq_return_iret (1 samples, 0.08%)</title><rect x="111.5" y="1633" width="0.9" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="114.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>Lorg/eclipse/jetty/io/ManagedSelector$SelectorProducer:::produce (5 samples, 0.38%)</title><rect x="718.7" y="1649" width="4.6" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="721.73" 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.08%)</title><rect x="1009.6" y="1745" width="1.0" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="1012.65" 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>Lsun/nio/ch/IOUtil:::read (3 samples, 0.23%)</title><rect x="844.7" y="1537" width="2.7" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="847.70" 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>Ljava/util/regex/Pattern$BmpCharProperty:::match (1 samples, 0.08%)</title><rect x="770.4" y="881" width="0.9" height="15.0" fill="rgb(65,213,65)" rx="2" ry="2" />
<text text-anchor="" x="773.38" 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>Lorg/glassfish/jersey/uri/internal/UriParser:::parseComponentWithIP (1 samples, 0.08%)</title><rect x="754.1" y="1105" width="0.9" height="15.0" fill="rgb(92,203,203)" rx="2" ry="2" />
<text text-anchor="" x="757.07" 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>Lorg/glassfish/hk2/utilities/cache/Cache:::compute (1 samples, 0.08%)</title><rect x="613.6" y="913" width="0.9" height="15.0" fill="rgb(105,251,105)" rx="2" ry="2" />
<text text-anchor="" x="616.59" 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 (3 samples, 0.23%)</title><rect x="133.3" y="1857" width="2.7" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="136.26" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/http/PathMap:::getMatch (1 samples, 0.08%)</title><rect x="1149.2" y="1361" width="0.9" height="15.0" fill="rgb(80,192,192)" rx="2" ry="2" />
<text text-anchor="" x="1152.22" 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>Lorg/jvnet/hk2/internal/ServiceHandleImpl:::getService (1 samples, 0.08%)</title><rect x="432.3" y="881" width="0.9" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="435.33" 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>Lio/dropwizard/jetty/RoutingHandler:::handle (106 samples, 8.14%)</title><rect x="532.9" y="1473" width="96.1" height="15.0" fill="rgb(67,180,180)" rx="2" ry="2" />
<text text-anchor="" x="535.93" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lio/dropwiz..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::run (1 samples, 0.08%)</title><rect x="653.5" y="1857" width="0.9" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="656.47" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lch/qos/logback/classic/Logger:::isTraceEnabled (2 samples, 0.15%)</title><rect x="631.7" y="1425" width="1.8" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="634.72" 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 (1 samples, 0.08%)</title><rect x="423.3" y="449" width="0.9" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="426.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>finish_task_switch (5 samples, 0.38%)</title><rect x="463.1" y="1729" width="4.6" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="466.15" 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>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorLinkedHashMap:::get (1 samples, 0.08%)</title><rect x="589.1" y="769" width="0.9" height="15.0" fill="rgb(102,212,212)" rx="2" ry="2" />
<text text-anchor="" x="592.12" 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>Lorg/eclipse/jetty/io/ArrayByteBufferPool:::release (1 samples, 0.08%)</title><rect x="806.6" y="513" width="0.9" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="809.64" 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>Lorg/glassfish/jersey/uri/internal/UriParser:::parsePath (1 samples, 0.08%)</title><rect x="921.7" y="1121" width="0.9" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="924.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>JavaThread::oops_do (4 samples, 0.31%)</title><rect x="10.0" y="1809" width="3.6" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1819.5" font-size="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 samples, 0.08%)</title><rect x="653.5" y="1825" width="0.9" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text text-anchor="" x="656.47" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/servlet/ServletHandler$CachedChain:::doFilter (74 samples, 5.68%)</title><rect x="902.7" y="1265" width="67.1" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text text-anchor="" x="905.70" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/ec..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/monitoring/RequestEventImpl$Builder:::build (1 samples, 0.08%)</title><rect x="832.9" y="1121" width="0.9" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="835.92" 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>call_stub (157 samples, 12.06%)</title><rect x="1019.6" y="1761" width="142.3" height="15.0" fill="rgb(202,54,54)" rx="2" ry="2" />
<text text-anchor="" x="1022.62" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >call_stub</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/net/InetSocketAddress:::getHostString (1 samples, 0.08%)</title><rect x="329.0" y="1409" width="0.9" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="332.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>ip_output (2 samples, 0.15%)</title><rect x="874.6" y="1601" width="1.8" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="877.61" 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 (5 samples, 0.38%)</title><rect x="463.1" y="1713" width="4.6" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="466.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>__schedule (4 samples, 0.31%)</title><rect x="309.1" y="1761" width="3.6" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="312.08" 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>__wake_up_sync_key (1 samples, 0.08%)</title><rect x="294.6" y="1329" width="0.9" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="297.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>vfprintf (1 samples, 0.08%)</title><rect x="676.1" y="1857" width="0.9" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text text-anchor="" x="679.13" y="1867.5" font-size="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.08%)</title><rect x="1096.7" y="321" width="0.9" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="1099.65" 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_transmit_skb (1 samples, 0.08%)</title><rect x="623.6" y="961" width="0.9" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="626.56" 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>activate_task (1 samples, 0.08%)</title><rect x="528.4" y="1265" width="0.9" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="531.40" 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>Lorg/eclipse/jetty/server/handler/ScopedHandler:::handle (78 samples, 5.99%)</title><rect x="899.1" y="1425" width="70.7" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="902.08" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/ec..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/uri/internal/JerseyUriBuilder:::uri (22 samples, 1.69%)</title><rect x="902.7" y="1169" width="19.9" height="15.0" fill="rgb(90,201,201)" rx="2" ry="2" />
<text text-anchor="" x="905.70" 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>intel_pmu_enable_all (4 samples, 0.31%)</title><rect x="861.9" y="1649" width="3.6" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="864.92" 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>perf_pmu_enable.part.89 (2 samples, 0.15%)</title><rect x="278.3" y="1697" width="1.8" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="281.26" 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>Ljava/util/Formatter:::getZero (1 samples, 0.08%)</title><rect x="914.5" y="1041" width="0.9" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text text-anchor="" x="917.49" 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>tcp_v4_rcv (1 samples, 0.08%)</title><rect x="856.5" y="1297" width="0.9" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="859.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>Assembler::locate_operand (1 samples, 0.08%)</title><rect x="25.4" y="1713" width="0.9" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="28.41" 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>Ljersey/repackaged/com/google/common/collect/Lists:::newLinkedList (1 samples, 0.08%)</title><rect x="387.9" y="913" width="0.9" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="390.93" 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>JavaCalls::call_virtual (1 samples, 0.08%)</title><rect x="124.2" y="1809" width="0.9" height="15.0" fill="rgb(202,202,60)" rx="2" ry="2" />
<text text-anchor="" x="127.19" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/ArrayBlockingQueue:::take (18 samples, 1.38%)</title><rect x="249.3" y="1729" width="16.3" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="252.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>Lorg/glassfish/jersey/internal/inject/ReferenceTransformingFactory:::provide (2 samples, 0.15%)</title><rect x="600.0" y="705" width="1.8" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="603.00" 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>nf_nat_ipv4_local_fn (1 samples, 0.08%)</title><rect x="395.2" y="305" width="0.9" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="398.18" 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>Lio/dropwizard/jersey/filter/AllowedMethodsFilter:::doFilter (117 samples, 8.99%)</title><rect x="1043.2" y="1329" width="106.0" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="1046.18" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lio/dropwiza..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/codahale/metrics/ExponentiallyDecayingReservoir:::update (1 samples, 0.08%)</title><rect x="405.1" y="913" width="1.0" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text text-anchor="" x="408.15" 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>Lorg/eclipse/jetty/server/Request:::getHeaderNames (2 samples, 0.15%)</title><rect x="836.5" y="1121" width="1.9" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="839.54" 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>tcp_sendmsg (4 samples, 0.31%)</title><rect x="293.7" y="1713" width="3.6" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="296.67" 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>Ljava/util/regex/Pattern$BmpCharProperty:::match (4 samples, 0.31%)</title><rect x="748.6" y="977" width="3.7" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="751.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>finish_task_switch (2 samples, 0.15%)</title><rect x="47.2" y="1697" width="1.8" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="50.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>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:::acquire (1 samples, 0.08%)</title><rect x="1033.2" y="1425" width="0.9" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="1036.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>Ljava/util/concurrent/locks/ReentrantLock:::lock (1 samples, 0.08%)</title><rect x="1033.2" y="1457" width="0.9" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="1036.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>inet_recvmsg (1 samples, 0.08%)</title><rect x="977.0" y="1457" width="0.9" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="980.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>Lorg/glassfish/jersey/server/ServerRuntime$Responder:::writeResponse (18 samples, 1.38%)</title><rect x="388.8" y="977" width="16.3" height="15.0" fill="rgb(105,251,105)" rx="2" ry="2" />
<text text-anchor="" x="391.83" 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>Lio/dropwizard/jetty/NonblockingServletHolder:::handle (12 samples, 0.92%)</title><rect x="1178.2" y="1249" width="10.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1181.22" 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 (2 samples, 0.15%)</title><rect x="983.4" y="1697" width="1.8" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="986.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>Ljava/lang/StringBuffer:::toString (2 samples, 0.15%)</title><rect x="243.8" y="1489" width="1.8" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="246.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>native_sched_clock (1 samples, 0.08%)</title><rect x="162.3" y="1841" width="0.9" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="165.26" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/util/ArrayTernaryTrie:::getBest (1 samples, 0.08%)</title><rect x="446.8" y="1345" width="0.9" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="449.84" 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>Lorg/glassfish/jersey/server/ContainerRequest:::getInflector (1 samples, 0.08%)</title><rect x="783.1" y="945" width="0.9" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="786.07" 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>[unknown] (4 samples, 0.31%)</title><rect x="29.0" y="1825" width="3.7" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text text-anchor="" x="32.03" y="1835.5" font-size="12" 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.15%)</title><rect x="95.2" y="1665" width="1.8" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="98.19" 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>start_thread (146 samples, 11.21%)</title><rect x="517.5" y="1889" width="132.3" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="520.53" y="1899.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>x86_pmu_enable (2 samples, 0.15%)</title><rect x="997.9" y="1617" width="1.8" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="1000.86" 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>Ljava/util/concurrent/ConcurrentHashMap$TreeNode:::findTreeNode (1 samples, 0.08%)</title><rect x="422.4" y="529" width="0.9" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text text-anchor="" x="425.37" 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>Lorg/jvnet/hk2/internal/InstanceLifecycleEventImpl:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="1078.5" y="833" width="0.9" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="1081.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>futex_wait_queue_me (1 samples, 0.08%)</title><rect x="880.0" y="1745" width="1.0" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="883.05" 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>Ljava/lang/String:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="401.5" y="865" width="0.9" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="404.52" 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>Lorg/eclipse/jetty/server/HttpOutput:::write (2 samples, 0.15%)</title><rect x="578.2" y="849" width="1.9" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="581.25" 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>sock_sendmsg (2 samples, 0.15%)</title><rect x="1007.8" y="1745" width="1.8" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="1010.83" 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>Ljava/util/HashSet:::add (1 samples, 0.08%)</title><rect x="962.5" y="1073" width="0.9" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="965.52" 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>Lcom/codahale/metrics/Timer$Context:::stop (1 samples, 0.08%)</title><rect x="406.1" y="881" width="0.9" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="409.05" 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>Lorg/glassfish/jersey/server/internal/process/ReferencesInitializer:::apply (7 samples, 0.54%)</title><rect x="1073.1" y="977" width="6.3" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text text-anchor="" x="1076.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>hrtimer_start_range_ns (1 samples, 0.08%)</title><rect x="160.4" y="1761" width="1.0" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="163.45" 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>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="500.3" y="1841" width="0.9" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="503.31" y="1851.5" font-size="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.08%)</title><rect x="524.8" y="1601" width="0.9" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="527.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>JavaThread::run (1 samples, 0.08%)</title><rect x="128.7" y="1857" width="0.9" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" />
<text text-anchor="" x="131.73" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (1 samples, 0.08%)</title><rect x="589.1" y="721" width="0.9" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="592.12" 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>run_rebalance_domains (1 samples, 0.08%)</title><rect x="361.6" y="1041" width="0.9" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="364.64" 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_queue_me (2 samples, 0.15%)</title><rect x="649.8" y="1585" width="1.9" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="652.85" 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>Lorg/eclipse/jetty/http/HttpGenerator:::generateResponse (2 samples, 0.15%)</title><rect x="784.9" y="705" width="1.8" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text text-anchor="" x="787.88" 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>autoremove_wake_function (1 samples, 0.08%)</title><rect x="198.5" y="1681" width="0.9" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="201.51" 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>Ljava/lang/Thread:::setName (1 samples, 0.08%)</title><rect x="276.5" y="1777" width="0.9" height="15.0" fill="rgb(77,189,189)" rx="2" ry="2" />
<text text-anchor="" x="279.45" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::keyComparatorHash (1 samples, 0.08%)</title><rect x="385.2" y="833" width="0.9" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="388.21" 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_wait@@GLIBC_2.3.2 (4 samples, 0.31%)</title><rect x="129.6" y="1889" width="3.7" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="132.63" y="1899.5" font-size="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.08%)</title><rect x="285.5" y="1809" width="0.9" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text text-anchor="" x="288.51" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/PerLookupContext:::findOrCreate (4 samples, 0.31%)</title><rect x="827.5" y="993" width="3.6" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text text-anchor="" x="830.48" 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>__intel_pmu_enable_all (2 samples, 0.15%)</title><rect x="1161.9" y="1649" width="1.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="1164.90" 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.08%)</title><rect x="129.6" y="1777" width="0.9" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="132.63" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/process/internal/Stages:::process (3 samples, 0.23%)</title><rect x="778.5" y="977" width="2.8" height="15.0" fill="rgb(94,206,206)" rx="2" ry="2" />
<text text-anchor="" x="781.54" 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>Lorg/eclipse/jetty/server/HttpConnection:::parseRequestBuffer (1 samples, 0.08%)</title><rect x="595.5" y="513" width="0.9" height="15.0" fill="rgb(91,203,203)" rx="2" ry="2" />
<text text-anchor="" x="598.47" 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>Lorg/eclipse/jetty/util/ArrayTernaryTrie:::getBest (1 samples, 0.08%)</title><rect x="458.6" y="1537" width="0.9" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="461.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>Lch/qos/logback/core/AsyncAppenderBase:::append (2 samples, 0.15%)</title><rect x="895.5" y="1505" width="1.8" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text text-anchor="" x="898.45" 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>Lsun/nio/ch/EPollArrayWrapper:::poll (2 samples, 0.15%)</title><rect x="890.9" y="1553" width="1.8" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="893.92" 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.08%)</title><rect x="107.9" y="1777" width="0.9" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="110.88" y="1787.5" font-size="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 (2 samples, 0.15%)</title><rect x="983.4" y="1425" width="1.8" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="986.36" 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>update_cfs_shares (1 samples, 0.08%)</title><rect x="982.5" y="1601" width="0.9" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="985.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>futex_wake_op (1 samples, 0.08%)</title><rect x="982.5" y="1713" width="0.9" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="985.46" 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>OptoRuntime::new_instance_C (1 samples, 0.08%)</title><rect x="213.0" y="1617" width="0.9" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="216.01" 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>ttwu_do_activate.constprop.90 (1 samples, 0.08%)</title><rect x="983.4" y="1185" width="0.9" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="986.36" 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 (3 samples, 0.23%)</title><rect x="491.2" y="1841" width="2.8" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="494.24" y="1851.5" font-size="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.08%)</title><rect x="320.0" y="1601" width="0.9" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="322.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>futex_wait (2 samples, 0.15%)</title><rect x="160.4" y="1793" width="1.9" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="163.45" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/AbstractStringBuilder:::ensureCapacityInternal (1 samples, 0.08%)</title><rect x="641.7" y="1489" width="0.9" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="644.69" 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 (4 samples, 0.31%)</title><rect x="13.6" y="1713" width="3.7" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="16.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>sys_futex (1 samples, 0.08%)</title><rect x="498.5" y="1809" width="0.9" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="501.49" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/nio/ch/EPollArrayWrapper:::epollWait (1 samples, 0.08%)</title><rect x="890.9" y="1537" width="0.9" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text text-anchor="" x="893.92" 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>Ljavax/ws/rs/core/UriBuilder:::fromUri (21 samples, 1.61%)</title><rect x="538.4" y="1201" width="19.0" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="541.37" 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.15%)</title><rect x="29.0" y="1601" width="1.8" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="32.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>pthread_cond_timedwait@@GLIBC_2.3.2 (1 samples, 0.08%)</title><rect x="880.0" y="1825" width="1.0" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text text-anchor="" x="883.05" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/InboundMessageContext:::readEntity (4 samples, 0.31%)</title><rect x="942.6" y="849" width="3.6" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="945.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>__schedule (2 samples, 0.15%)</title><rect x="153.2" y="1713" width="1.8" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="156.20" 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>Lorg/eclipse/jetty/io/AbstractConnection$ReadCallback:::succeeded (93 samples, 7.14%)</title><rect x="895.5" y="1617" width="84.2" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="898.45" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/ecli..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/LinkedList:::isPositionIndex (1 samples, 0.08%)</title><rect x="1080.3" y="785" width="0.9" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1083.34" 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>Lsun/nio/ch/SocketChannelImpl:::translateAndSetInterestOps (1 samples, 0.08%)</title><rect x="322.7" y="1537" width="0.9" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="325.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>vfs_read (1 samples, 0.08%)</title><rect x="494.0" y="1745" width="0.9" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="496.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>Ljava/lang/String:::valueOf (1 samples, 0.08%)</title><rect x="556.5" y="1057" width="0.9" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="559.50" 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>Ljava/lang/String:::hashCode (1 samples, 0.08%)</title><rect x="1141.1" y="993" width="0.9" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="1144.06" 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_epoll_wait (1 samples, 0.08%)</title><rect x="273.7" y="1841" width="0.9" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="276.73" y="1851.5" font-size="12" 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.08%)</title><rect x="177.7" y="1665" width="0.9" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="180.67" 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>Lorg/glassfish/jersey/server/TracingUtils:::initTracingSupport (1 samples, 0.08%)</title><rect x="960.7" y="1121" width="0.9" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="963.71" 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>Ljava/lang/AbstractStringBuilder:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="226.6" y="1569" width="0.9" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text text-anchor="" x="229.61" 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_readv_writev (2 samples, 0.15%)</title><rect x="853.8" y="1809" width="1.8" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="856.76" y="1819.5" font-size="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.08%)</title><rect x="1150.1" y="1041" width="0.9" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="1153.12" 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>Lorg/glassfish/jersey/process/internal/RequestScope:::findOrCreate (2 samples, 0.15%)</title><rect x="1077.6" y="881" width="1.8" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text text-anchor="" x="1080.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>tcp_transmit_skb (2 samples, 0.15%)</title><rect x="983.4" y="1585" width="1.8" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="986.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>futex_wait_queue_me (2 samples, 0.15%)</title><rect x="705.1" y="1745" width="1.8" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="708.13" 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>x86_pmu_enable (2 samples, 0.15%)</title><rect x="710.6" y="1681" width="1.8" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="713.57" 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>Lcom/fasterxml/jackson/core/JsonFactory:::createParser (5 samples, 0.38%)</title><rect x="1115.7" y="689" width="4.5" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text text-anchor="" x="1118.68" 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>Lorg/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (1 samples, 0.08%)</title><rect x="381.6" y="737" width="0.9" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="384.58" 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>Lorg/jvnet/hk2/internal/ServiceHandleImpl:::getService (1 samples, 0.08%)</title><rect x="828.4" y="881" width="0.9" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text text-anchor="" x="831.39" 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>Lorg/eclipse/jetty/io/SelectChannelEndPoint:::onSelected (1 samples, 0.08%)</title><rect x="1022.3" y="1617" width="0.9" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text text-anchor="" x="1025.33" 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>Lio/dropwizard/jetty/RoutingHandler:::handle (122 samples, 9.37%)</title><rect x="1040.5" y="1473" width="110.5" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="1043.46" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lio/dropwizar..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.08%)</title><rect x="149.6" y="1489" width="0.9" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="152.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>G1ParPreserveCMReferentsTask::work (5 samples, 0.38%)</title><rect x="55.3" y="1841" width="4.5" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="58.31" y="1851.5" font-size="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.08%)</title><rect x="1008.7" y="1345" width="0.9" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="1011.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>Lio/dropwizard/jersey/validation/DropwizardConfiguredValidator:::validateResourceAndInputParams (3 samples, 0.23%)</title><rect x="1106.6" y="913" width="2.7" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1109.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>futex_wait_queue_me (2 samples, 0.15%)</title><rect x="1011.5" y="1777" width="1.8" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="1014.46" y="1787.5" font-size="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.08%)</title><rect x="500.3" y="1777" width="0.9" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="503.31" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/ReentrantReadWriteLock:::readLock (1 samples, 0.08%)</title><rect x="1040.5" y="1329" width="0.9" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="1043.46" 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>Ljava/util/concurrent/locks/LockSupport:::parkNanos (2 samples, 0.15%)</title><rect x="320.0" y="1649" width="1.8" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="322.95" 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_futex (1 samples, 0.08%)</title><rect x="103.3" y="1825" width="1.0" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="106.35" y="1835.5" font-size="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.08%)</title><rect x="198.5" y="1761" width="0.9" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="201.51" 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>sock_read_iter (1 samples, 0.08%)</title><rect x="678.8" y="1697" width="1.0" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="681.85" 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>Lorg/glassfish/jersey/uri/internal/JerseyUriBuilder:::_build (3 samples, 0.23%)</title><rect x="967.1" y="1185" width="2.7" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="970.05" 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>__schedule (1 samples, 0.08%)</title><rect x="880.0" y="1713" width="1.0" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="883.05" 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>Lorg/eclipse/jetty/server/HttpInputOverHTTP:::produceContent (1 samples, 0.08%)</title><rect x="595.5" y="545" width="0.9" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="598.47" 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 (5 samples, 0.38%)</title><rect x="463.1" y="1649" width="4.6" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="466.15" 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>perf_event_context_sched_in (2 samples, 0.15%)</title><rect x="705.1" y="1665" width="1.8" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="708.13" 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>Lsun/nio/ch/IOVecWrapper:::get (1 samples, 0.08%)</title><rect x="1093.0" y="609" width="0.9" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="1096.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>Lorg/glassfish/jersey/server/ApplicationHandler:::handle (42 samples, 3.23%)</title><rect x="923.5" y="1153" width="38.1" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="926.55" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lor..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_read (1 samples, 0.08%)</title><rect x="494.0" y="1697" width="0.9" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="496.96" 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_softirq (1 samples, 0.08%)</title><rect x="634.4" y="1185" width="0.9" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="637.44" 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>Lorg/eclipse/jetty/io/ByteBufferPool$Bucket:::acquire (2 samples, 0.15%)</title><rect x="983.4" y="1841" width="1.8" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="986.36" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/codahale/metrics/jetty9/InstrumentedHandler:::handle (123 samples, 9.45%)</title><rect x="336.3" y="1457" width="111.4" height="15.0" fill="rgb(55,169,169)" rx="2" ry="2" />
<text text-anchor="" x="339.27" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lcom/codahale..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (2 samples, 0.15%)</title><rect x="705.1" y="1601" width="1.8" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="708.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>Lorg/glassfish/hk2/utilities/reflection/ReflectionHelper:::getRawClass (1 samples, 0.08%)</title><rect x="1122.9" y="593" width="0.9" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="1125.93" 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>do_futex (2 samples, 0.15%)</title><rect x="56.2" y="1761" width="1.8" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="59.22" 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>_raw_spin_lock_irqsave (1 samples, 0.08%)</title><rect x="276.5" y="1617" width="0.9" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="279.45" 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>Lorg/glassfish/jersey/server/spi/internal/ParameterValueHelper:::getParameterValues (25 samples, 1.92%)</title><rect x="802.1" y="913" width="22.7" height="15.0" fill="rgb(54,169,169)" rx="2" ry="2" />
<text text-anchor="" x="805.10" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.15%)</title><rect x="1165.5" y="1633" width="1.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="1168.53" 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.08%)</title><rect x="513.0" y="1777" width="0.9" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="516.00" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Throwable:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="1178.2" y="1041" width="0.9" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text text-anchor="" x="1181.22" 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>touch_atime (1 samples, 0.08%)</title><rect x="494.0" y="1681" width="0.9" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="496.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>Ljava/lang/ThreadLocal$ThreadLocalMap:::access$000 (1 samples, 0.08%)</title><rect x="614.5" y="1073" width="0.9" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="617.50" 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>Lorg/jvnet/hk2/internal/IterableProviderImpl:::get (2 samples, 0.15%)</title><rect x="948.9" y="689" width="1.8" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="951.92" 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_rcv_finish (1 samples, 0.08%)</title><rect x="677.0" y="1377" width="0.9" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="680.04" 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>[unknown] (4 samples, 0.31%)</title><rect x="10.0" y="1825" width="3.6" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1835.5" font-size="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.08%)</title><rect x="1018.7" y="1761" width="0.9" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="1021.71" 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_readv_writev (1 samples, 0.08%)</title><rect x="623.6" y="1105" width="0.9" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="626.56" 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>Ljava/lang/AbstractStringBuilder:::append (1 samples, 0.08%)</title><rect x="1147.4" y="1249" width="0.9" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text text-anchor="" x="1150.40" 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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::validate (1 samples, 0.08%)</title><rect x="373.4" y="849" width="0.9" height="15.0" fill="rgb(92,203,203)" rx="2" ry="2" />
<text text-anchor="" x="376.43" 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>vfs_writev (3 samples, 0.23%)</title><rect x="873.7" y="1809" width="2.7" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="876.70" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/hk2/utilities/general/internal/WeakHashClockImpl:::get (1 samples, 0.08%)</title><rect x="1122.0" y="577" width="0.9" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="1125.03" 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>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="396.1" y="625" width="0.9" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="399.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>Lorg/glassfish/jersey/server/ContainerResponse:::getLocation (1 samples, 0.08%)</title><rect x="397.0" y="849" width="0.9" height="15.0" fill="rgb(77,189,189)" rx="2" ry="2" />
<text text-anchor="" x="399.99" 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 (2 samples, 0.15%)</title><rect x="1161.9" y="1777" width="1.8" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="1164.90" y="1787.5" font-size="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.08%)</title><rect x="1150.1" y="1265" width="0.9" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="1153.12" 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>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="198.5" y="1809" width="0.9" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="201.51" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/AbstractList:::listIterator (1 samples, 0.08%)</title><rect x="568.3" y="897" width="0.9" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="571.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>native_write_msr_safe (2 samples, 0.15%)</title><rect x="11.8" y="1761" width="1.8" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="14.81" 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>Lcom/fasterxml/jackson/jaxrs/base/ProviderBase:::readFrom (3 samples, 0.23%)</title><rect x="1182.7" y="721" width="2.8" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text text-anchor="" x="1185.75" 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>iov_iter_init (1 samples, 0.08%)</title><rect x="524.8" y="1537" width="0.9" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="527.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>Ljava/lang/CharacterDataLatin1:::getProperties (1 samples, 0.08%)</title><rect x="964.3" y="913" width="0.9" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="967.33" 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>pthread_cond_signal@@GLIBC_2.3.2 (1 samples, 0.08%)</title><rect x="500.3" y="1857" width="0.9" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text text-anchor="" x="503.31" y="1867.5" font-size="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.08%)</title><rect x="689.7" y="1601" width="0.9" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="692.72" 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>vfs_read (1 samples, 0.08%)</title><rect x="316.3" y="1825" width="0.9" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="319.33" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/ThreadLocal$ThreadLocalMap:::set (2 samples, 0.15%)</title><rect x="247.5" y="1665" width="1.8" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text text-anchor="" x="250.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>G1KlassScanClosure::do_klass (2 samples, 0.15%)</title><rect x="81.6" y="1761" width="1.8" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" />
<text text-anchor="" x="84.60" 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>Ljava/lang/String:::toLowerCase (1 samples, 0.08%)</title><rect x="223.0" y="1521" width="0.9" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="225.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>__intel_pmu_enable_all (4 samples, 0.31%)</title><rect x="13.6" y="1633" width="3.7" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="16.63" 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>Lorg/eclipse/jetty/util/log/Slf4jLog:::debug (2 samples, 0.15%)</title><rect x="1151.0" y="1473" width="1.8" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="1154.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>CompileBroker::compiler_thread_loop (8 samples, 0.61%)</title><rect x="140.5" y="1825" width="7.3" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="143.51" y="1835.5" font-size="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 (1 samples, 0.08%)</title><rect x="46.3" y="1745" width="0.9" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="49.25" 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>JavaCalls::call_virtual (157 samples, 12.06%)</title><rect x="1019.6" y="1809" width="142.3" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="1022.62" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaCalls::call_vi..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.08%)</title><rect x="177.7" y="1713" width="0.9" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="180.67" 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>Lorg/jvnet/hk2/internal/Utilities:::createService (3 samples, 0.23%)</title><rect x="431.4" y="1009" width="2.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="434.43" 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.08%)</title><rect x="838.4" y="1105" width="0.9" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="841.36" 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 (2 samples, 0.15%)</title><rect x="56.2" y="1793" width="1.8" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="59.22" y="1803.5" font-size="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.15%)</title><rect x="153.2" y="1633" width="1.8" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="156.20" 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>thread_entry (1 samples, 0.08%)</title><rect x="124.2" y="1825" width="0.9" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text text-anchor="" x="127.19" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/inject/EntityParamValueFactoryProvider$EntityValueFactory:::provide (18 samples, 1.38%)</title><rect x="1110.2" y="881" width="16.4" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="1113.25" 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>tcp_v4_send_check (1 samples, 0.08%)</title><rect x="843.8" y="1025" width="0.9" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="846.79" 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 (1 samples, 0.08%)</title><rect x="396.1" y="289" width="0.9" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="399.08" 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>Lorg/jvnet/hk2/internal/Utilities:::createService (4 samples, 0.31%)</title><rect x="601.8" y="705" width="3.6" height="15.0" fill="rgb(106,252,106)" rx="2" ry="2" />
<text text-anchor="" x="604.81" 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>Ljava/lang/AbstractStringBuilder:::append (1 samples, 0.08%)</title><rect x="445.0" y="1249" width="0.9" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text text-anchor="" x="448.02" 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>Ljava/lang/Throwable:::fillInStackTrace (8 samples, 0.61%)</title><rect x="736.9" y="1009" width="7.2" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="739.85" 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>migrate_task_rq_fair (1 samples, 0.08%)</title><rect x="305.5" y="1761" width="0.9" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="308.45" 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>mod_timer (1 samples, 0.08%)</title><rect x="984.3" y="1249" width="0.9" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="987.27" 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>Lorg/glassfish/jersey/internal/util/PropertiesHelper:::getValue (4 samples, 0.31%)</title><rect x="398.8" y="913" width="3.6" height="15.0" fill="rgb(66,179,179)" rx="2" ry="2" />
<text text-anchor="" x="401.80" 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_local_out (1 samples, 0.08%)</title><rect x="395.2" y="369" width="0.9" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="398.18" 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>Lorg/eclipse/jetty/util/BlockingArrayQueue:::poll (4 samples, 0.31%)</title><rect x="715.1" y="1681" width="3.6" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="718.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>pipe_write (2 samples, 0.15%)</title><rect x="243.8" y="1361" width="1.8" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="246.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>Ljava/lang/Thread:::interrupted (1 samples, 0.08%)</title><rect x="249.3" y="1697" width="0.9" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="252.26" 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>Lcom/fasterxml/jackson/core/io/IOContext:::setEncoding (1 samples, 0.08%)</title><rect x="945.3" y="625" width="0.9" height="15.0" fill="rgb(78,191,191)" rx="2" ry="2" />
<text text-anchor="" x="948.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>Lorg/eclipse/jetty/server/Request:::recycle (1 samples, 0.08%)</title><rect x="531.1" y="1505" width="0.9" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="534.12" 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>__vdso_gettimeofday (1 samples, 0.08%)</title><rect x="448.6" y="1457" width="1.0" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text text-anchor="" x="451.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>Ljava/lang/ref/Reference:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="758.6" y="961" width="0.9" height="15.0" fill="rgb(69,183,183)" rx="2" ry="2" />
<text text-anchor="" x="761.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>Lorg/glassfish/jersey/message/internal/ReaderInterceptorExecutor:::proceed (9 samples, 0.69%)</title><rect x="590.0" y="785" width="8.2" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="593.03" 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>Ljava/io/BufferedOutputStream:::flush (16 samples, 1.23%)</title><rect x="231.1" y="1585" width="14.5" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text text-anchor="" x="234.14" 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_pmu_enable.part.89 (1 samples, 0.08%)</title><rect x="50.8" y="1681" width="0.9" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="53.78" 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-?/6372 (209 samples, 16.05%)</title><rect x="273.7" y="1905" width="189.4" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text text-anchor="" x="276.73" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java-?/6372</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/ref/Reference:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="1071.3" y="961" width="0.9" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="1074.27" 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 (2 samples, 0.15%)</title><rect x="68.9" y="1809" width="1.8" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="71.91" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ClazzCreator$ResolutionInfo:::access$100 (1 samples, 0.08%)</title><rect x="1186.4" y="929" width="0.9" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="1189.37" 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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetService (2 samples, 0.15%)</title><rect x="760.4" y="913" width="1.8" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="763.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>Ljava/lang/String:::substring (1 samples, 0.08%)</title><rect x="444.1" y="1105" width="0.9" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="447.12" 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>ip_finish_output2 (3 samples, 0.23%)</title><rect x="690.6" y="1569" width="2.7" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="693.63" 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>Lorg/eclipse/jetty/util/URIUtil:::appendSchemeHostPort (1 samples, 0.08%)</title><rect x="922.6" y="1185" width="0.9" height="15.0" fill="rgb(102,212,212)" rx="2" ry="2" />
<text text-anchor="" x="925.64" 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>sys_futex (7 samples, 0.54%)</title><rect x="463.1" y="1825" width="6.4" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="466.15" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getInjectionResolverForInjectee (2 samples, 0.15%)</title><rect x="829.3" y="929" width="1.8" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="832.29" 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>ep_poll (1 samples, 0.08%)</title><rect x="273.7" y="1825" width="0.9" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="276.73" y="1835.5" font-size="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.08%)</title><rect x="117.8" y="1537" width="1.0" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="120.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>Lorg/jvnet/hk2/internal/IterableProviderImpl:::justInTime (2 samples, 0.15%)</title><rect x="598.2" y="833" width="1.8" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="601.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>Ljava/util/Arrays:::sort (2 samples, 0.15%)</title><rect x="778.5" y="881" width="1.9" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="781.54" 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>ipv4_conntrack_local (1 samples, 0.08%)</title><rect x="1015.1" y="1569" width="0.9" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="1018.08" 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>Lorg/eclipse/jetty/io/WriteFlusher:::flush (1 samples, 0.08%)</title><rect x="578.2" y="673" width="1.0" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="581.25" 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>Lch/qos/logback/core/joran/spi/ConsoleTarget$1:::flush (1 samples, 0.08%)</title><rect x="230.2" y="1633" width="0.9" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="233.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>do_futex (1 samples, 0.08%)</title><rect x="980.6" y="1473" width="1.0" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="983.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>Lorg/glassfish/jersey/internal/util/PropertiesHelper:::getPropertyNameForRuntime (1 samples, 0.08%)</title><rect x="938.0" y="897" width="1.0" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text text-anchor="" x="941.05" 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>Ljava/lang/RuntimeException:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="1178.2" y="1073" width="0.9" height="15.0" fill="rgb(89,200,200)" rx="2" ry="2" />
<text text-anchor="" x="1181.22" 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>Lcom/fasterxml/jackson/core/util/BufferRecycler:::allocCharBuffer (1 samples, 0.08%)</title><rect x="804.8" y="577" width="0.9" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text text-anchor="" x="807.82" 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>Lorg/eclipse/jetty/http/HttpParser:::parseNext (1 samples, 0.08%)</title><rect x="595.5" y="497" width="0.9" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text text-anchor="" x="598.47" 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>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::getEntry (3 samples, 0.23%)</title><rect x="436.0" y="1057" width="2.7" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="438.96" 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>futex_wait_queue_me (2 samples, 0.15%)</title><rect x="68.9" y="1745" width="1.8" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="71.91" 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>[libc-2.23.so] (4 samples, 0.31%)</title><rect x="1169.2" y="1793" width="3.6" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="1172.16" y="1803.5" font-size="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.08%)</title><rect x="513.0" y="1841" width="0.9" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="516.00" y="1851.5" font-size="12" 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.15%)</title><rect x="116.9" y="1617" width="1.9" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="119.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>Lorg/glassfish/jersey/server/ServerRuntime$2:::run (6 samples, 0.46%)</title><rect x="1180.0" y="1025" width="5.5" height="15.0" fill="rgb(93,205,205)" rx="2" ry="2" />
<text text-anchor="" x="1183.03" 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>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="623.6" y="1153" width="0.9" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="626.56" 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>Lorg/glassfish/jersey/internal/Errors:::process (71 samples, 5.45%)</title><rect x="365.3" y="1089" width="64.3" height="15.0" fill="rgb(67,180,180)" rx="2" ry="2" />
<text text-anchor="" x="368.27" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpConnection:::fillRequestBuffer (6 samples, 0.46%)</title><rect x="451.4" y="1585" width="5.4" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text text-anchor="" x="454.37" 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>Lorg/jvnet/hk2/internal/SystemDescriptor:::invokeInstanceListeners (1 samples, 0.08%)</title><rect x="764.0" y="849" width="0.9" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="767.04" 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 (1 samples, 0.08%)</title><rect x="513.0" y="1873" width="0.9" height="15.0" fill="rgb(226,87,87)" rx="2" ry="2" />
<text text-anchor="" x="516.00" y="1883.5" font-size="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] (18 samples, 1.38%)</title><rect x="463.1" y="1889" width="16.4" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text text-anchor="" x="466.15" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetDescriptor (1 samples, 0.08%)</title><rect x="949.8" y="625" width="0.9" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text text-anchor="" x="952.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>tcp_sendmsg (2 samples, 0.15%)</title><rect x="983.4" y="1649" width="1.8" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="986.36" 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>perf_event_context_sched_in (1 samples, 0.08%)</title><rect x="50.8" y="1697" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="53.78" 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>futex_wake_op (2 samples, 0.15%)</title><rect x="881.0" y="1809" width="1.8" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="883.95" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/servlet/WebComponent$4$1:::initialize (2 samples, 0.15%)</title><rect x="1073.1" y="945" width="1.8" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="1076.09" 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>Lcom/codahale/metrics/ExponentiallyDecayingReservoir:::update (2 samples, 0.15%)</title><rect x="939.9" y="817" width="1.8" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="942.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>native_write_msr_safe (2 samples, 0.15%)</title><rect x="63.5" y="1793" width="1.8" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="66.47" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/ThreadLocal$ThreadLocalMap:::getEntryAfterMiss (1 samples, 0.08%)</title><rect x="969.8" y="1457" width="0.9" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="972.77" 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>Ljava/lang/Throwable:::fillInStackTrace (12 samples, 0.92%)</title><rect x="538.4" y="1025" width="10.8" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" />
<text text-anchor="" x="541.37" 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>Lorg/jvnet/hk2/internal/ThreeThirtyResolver:::resolve (1 samples, 0.08%)</title><rect x="959.8" y="945" width="0.9" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text text-anchor="" x="962.80" 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>futex_wait_queue_me (2 samples, 0.15%)</title><rect x="148.7" y="1649" width="1.8" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="151.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>__perf_event_task_sched_in (2 samples, 0.15%)</title><rect x="169.5" y="1601" width="1.8" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="172.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>do_readv_writev (1 samples, 0.08%)</title><rect x="395.2" y="561" width="0.9" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="398.18" 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>inet_sendmsg (1 samples, 0.08%)</title><rect x="578.2" y="513" width="1.0" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="581.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>java_lang_Throwable::set_backtrace (1 samples, 0.08%)</title><rect x="350.8" y="929" width="0.9" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="353.77" 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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetDescriptor (2 samples, 0.15%)</title><rect x="1122.0" y="625" width="1.8" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="1125.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>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.31%)</title><rect x="649.8" y="1665" width="3.7" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text text-anchor="" x="652.85" 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>Lorg/eclipse/jetty/server/HttpChannel:::sendResponse (3 samples, 0.23%)</title><rect x="934.4" y="785" width="2.7" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="937.42" 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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getUnqualifiedService (6 samples, 0.46%)</title><rect x="600.0" y="833" width="5.4" height="15.0" fill="rgb(92,204,204)" rx="2" ry="2" />
<text text-anchor="" x="603.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>Lorg/glassfish/jersey/message/internal/ReaderInterceptorExecutor$UnCloseableInputStream:::read (1 samples, 0.08%)</title><rect x="1184.6" y="609" width="0.9" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="1187.56" 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>end_repeat_nmi (1 samples, 0.08%)</title><rect x="165.0" y="1633" width="0.9" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="167.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>Lorg/glassfish/hk2/utilities/reflection/ReflectionHelper:::getRawClass (1 samples, 0.08%)</title><rect x="611.8" y="865" width="0.9" height="15.0" fill="rgb(80,193,193)" rx="2" ry="2" />
<text text-anchor="" x="614.78" 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>Lorg/jvnet/hk2/internal/Utilities:::createService (4 samples, 0.31%)</title><rect x="950.7" y="705" width="3.7" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text text-anchor="" x="953.74" 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>Ljava/lang/String:::getChars (1 samples, 0.08%)</title><rect x="1001.5" y="1793" width="0.9" height="15.0" fill="rgb(57,172,172)" rx="2" ry="2" />
<text text-anchor="" x="1004.49" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpInput$Content:::remaining (1 samples, 0.08%)</title><rect x="1184.6" y="529" width="0.9" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="1187.56" 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>Compile::Code_Gen (4 samples, 0.31%)</title><rect x="148.7" y="1761" width="3.6" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text text-anchor="" x="151.66" 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>ip_local_deliver_finish (1 samples, 0.08%)</title><rect x="634.4" y="1057" width="0.9" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="637.44" 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>Ljava/lang/AbstractStringBuilder:::append (1 samples, 0.08%)</title><rect x="356.2" y="945" width="0.9" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="359.21" 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>Lorg/glassfish/jersey/server/model/ResourceMethodInvoker:::invoke (4 samples, 0.31%)</title><rect x="1181.8" y="977" width="3.7" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="1184.84" 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>Interpreter (10 samples, 0.77%)</title><rect x="663.4" y="1713" width="9.1" height="15.0" fill="rgb(224,84,84)" rx="2" ry="2" />
<text text-anchor="" x="666.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>Ljava/util/LinkedHashMap$LinkedValues:::size (1 samples, 0.08%)</title><rect x="565.6" y="881" width="0.9" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text text-anchor="" x="568.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>Lorg/glassfish/jersey/internal/util/PropertiesHelper:::getValue (9 samples, 0.69%)</title><rect x="792.1" y="913" width="8.2" height="15.0" fill="rgb(78,190,190)" rx="2" ry="2" />
<text text-anchor="" x="795.14" 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>Lorg/eclipse/jetty/server/HttpChannel:::sendResponse (2 samples, 0.15%)</title><rect x="578.2" y="785" width="1.9" height="15.0" fill="rgb(54,168,168)" rx="2" ry="2" />
<text text-anchor="" x="581.25" 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>Ljava/lang/StringBuilder:::append (1 samples, 0.08%)</title><rect x="744.1" y="945" width="0.9" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="747.10" 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>Lorg/glassfish/jersey/servlet/WebComponent:::serviceImpl (4 samples, 0.31%)</title><rect x="1165.5" y="1777" width="3.7" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="1168.53" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/ReaderInterceptorExecutor$TerminalReaderInterceptor:::aroundReadFrom (3 samples, 0.23%)</title><rect x="1182.7" y="769" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1185.75" 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>try_to_wake_up (1 samples, 0.08%)</title><rect x="500.3" y="1761" width="0.9" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="503.31" 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>start_thread (3 samples, 0.23%)</title><rect x="44.4" y="1889" width="2.8" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text text-anchor="" x="47.44" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/SystemInjecteeImpl:::hashCode (4 samples, 0.31%)</title><rect x="423.3" y="609" width="3.6" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text text-anchor="" x="426.27" 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>[unknown] (9 samples, 0.69%)</title><rect x="29.0" y="1841" width="8.2" height="15.0" fill="rgb(228,90,90)" rx="2" ry="2" />
<text text-anchor="" x="32.03" y="1851.5" font-size="12" 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.08%)</title><rect x="1094.8" y="257" width="0.9" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="1097.84" 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>do_futex (2 samples, 0.15%)</title><rect x="125.1" y="1761" width="1.8" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="128.10" 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>pthread_cond_signal@@GLIBC_2.3.2 (1 samples, 0.08%)</title><rect x="982.5" y="1777" width="0.9" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text text-anchor="" x="985.46" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/ReaderInterceptorExecutor:::proceed (4 samples, 0.31%)</title><rect x="942.6" y="785" width="3.6" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="945.58" 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>Lorg/jvnet/hk2/internal/IterableProviderImpl:::get (8 samples, 0.61%)</title><rect x="598.2" y="849" width="7.2" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text text-anchor="" x="601.19" 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>Lorg/glassfish/jersey/message/internal/MessageBodyFactory:::getMessageBodyReader (2 samples, 0.15%)</title><rect x="590.0" y="753" width="1.8" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="593.03" 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>Ljava/util/Formatter$FormatSpecifier:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="1060.4" y="1025" width="0.9" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="1063.40" 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_start (157 samples, 12.06%)</title><rect x="1019.6" y="1873" width="142.3" height="15.0" fill="rgb(215,73,73)" rx="2" ry="2" />
<text text-anchor="" x="1022.62" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java_start</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (2 samples, 0.15%)</title><rect x="1169.2" y="1729" width="1.8" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="1172.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>sys_write (1 samples, 0.08%)</title><rect x="978.8" y="1569" width="0.9" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="981.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>Ljava/util/Arrays:::copyOfRange (1 samples, 0.08%)</title><rect x="927.2" y="865" width="0.9" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="930.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>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.31%)</title><rect x="672.5" y="1857" width="3.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="675.50" y="1867.5" font-size="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.08%)</title><rect x="275.5" y="1825" width="1.0" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text text-anchor="" x="278.55" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/monitoring/CompositeRequestEventListener:::onEvent (2 samples, 0.15%)</title><rect x="405.1" y="945" width="1.9" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="408.15" 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>Lorg/eclipse/jetty/server/Request:::recycle (1 samples, 0.08%)</title><rect x="1039.6" y="1505" width="0.9" height="15.0" fill="rgb(89,200,200)" rx="2" ry="2" />
<text text-anchor="" x="1042.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>__perf_event_task_sched_in (1 samples, 0.08%)</title><rect x="889.1" y="1457" width="0.9" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="892.11" 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>smp_call_function_single_interrupt (1 samples, 0.08%)</title><rect x="423.3" y="577" width="0.9" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="426.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>Lorg/glassfish/jersey/server/internal/routing/MatchedEndpointExtractorStage:::apply (1 samples, 0.08%)</title><rect x="824.8" y="1041" width="0.9" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="827.76" 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>Lorg/glassfish/jersey/server/spi/internal/ParameterValueHelper:::getParameterValues (18 samples, 1.38%)</title><rect x="1110.2" y="913" width="16.4" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="1113.25" 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>vfs_writev (1 samples, 0.08%)</title><rect x="439.6" y="1121" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="442.59" 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 (1 samples, 0.08%)</title><rect x="378.9" y="977" width="0.9" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="381.86" 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.15%)</title><rect x="120.6" y="1713" width="1.8" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="123.57" 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>end_repeat_nmi (1 samples, 0.08%)</title><rect x="181.3" y="1601" width="0.9" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="184.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>Lorg/glassfish/jersey/server/internal/routing/RoutingStage:::_apply (7 samples, 0.54%)</title><rect x="1079.4" y="945" width="6.4" height="15.0" fill="rgb(104,215,215)" rx="2" ry="2" />
<text text-anchor="" x="1082.43" 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>sys_writev (1 samples, 0.08%)</title><rect x="1096.7" y="593" width="0.9" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="1099.65" 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>[libpthread-2.23.so] (1 samples, 0.08%)</title><rect x="193.1" y="1825" width="0.9" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
<text text-anchor="" x="196.07" y="1835.5" font-size="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.15%)</title><rect x="853.8" y="1777" width="1.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="856.76" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/AbstractOwnableSynchronizer:::setExclusiveOwnerThread (1 samples, 0.08%)</title><rect x="519.3" y="1553" width="0.9" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="522.34" 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>Lorg/jvnet/hk2/internal/PerLookupContext:::findOrCreate (3 samples, 0.23%)</title><rect x="431.4" y="993" width="2.7" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text text-anchor="" x="434.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>Lorg/eclipse/jetty/server/Server:::handle (113 samples, 8.68%)</title><rect x="532.9" y="1569" width="102.4" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="535.93" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (2 samples, 0.15%)</title><rect x="160.4" y="1777" width="1.9" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="163.45" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/ThreadLocal$ThreadLocalMap:::access$000 (2 samples, 0.15%)</title><rect x="455.0" y="1489" width="1.8" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="457.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>enqueue_hrtimer (1 samples, 0.08%)</title><rect x="664.3" y="1489" width="1.0" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="667.35" 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.08%)</title><rect x="439.6" y="1153" width="0.9" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="442.59" 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>Lorg/eclipse/jetty/server/HttpConnection:::fillRequestBuffer (3 samples, 0.23%)</title><rect x="969.8" y="1585" width="2.7" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text text-anchor="" x="972.77" 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>Lsun/nio/ch/IOVecWrapper:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="1093.0" y="593" width="0.9" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="1096.03" 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>do_nmi (1 samples, 0.08%)</title><rect x="705.1" y="1569" width="0.9" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="708.13" 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>Lorg/glassfish/jersey/message/internal/InboundMessageContext:::getMediaType (1 samples, 0.08%)</title><rect x="409.7" y="833" width="0.9" height="15.0" fill="rgb(78,191,191)" rx="2" ry="2" />
<text text-anchor="" x="412.68" 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>x86_pmu_enable (3 samples, 0.23%)</title><rect x="665.3" y="1409" width="2.7" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="668.25" 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.08%)</title><rect x="876.4" y="1761" width="0.9" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="879.42" 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>itable stub (1 samples, 0.08%)</title><rect x="1075.8" y="849" width="0.9" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text text-anchor="" x="1078.81" 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>frame::sender_for_compiled_frame (2 samples, 0.15%)</title><rect x="547.4" y="913" width="1.8" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" />
<text text-anchor="" x="550.43" 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>Lorg/glassfish/jersey/server/internal/process/ReferencesInitializer:::apply (6 samples, 0.46%)</title><rect x="760.4" y="977" width="5.5" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text text-anchor="" x="763.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>Ljava/lang/ThreadLocal$ThreadLocalMap:::access$000 (1 samples, 0.08%)</title><rect x="846.5" y="1489" width="0.9" height="15.0" fill="rgb(80,192,192)" rx="2" ry="2" />
<text text-anchor="" x="849.51" 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_read (2 samples, 0.15%)</title><rect x="852.0" y="1777" width="1.8" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="854.95" y="1787.5" font-size="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.08%)</title><rect x="634.4" y="1329" width="0.9" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="637.44" 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>Lcom/fasterxml/jackson/jaxrs/cfg/AnnotationBundleKey:::equals (1 samples, 0.08%)</title><rect x="575.5" y="785" width="0.9" height="15.0" fill="rgb(93,205,205)" rx="2" ry="2" />
<text text-anchor="" x="578.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>Lorg/glassfish/jersey/message/internal/WriterInterceptorExecutor$TerminalWriterInterceptor:::aroundWriteTo (1 samples, 0.08%)</title><rect x="1089.4" y="897" width="0.9" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text text-anchor="" x="1092.40" 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>Lsun/nio/ch/SelectorImpl:::lockAndDoSelect (3 samples, 0.23%)</title><rect x="323.6" y="1585" width="2.7" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="326.58" 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>ttwu_do_activate.constprop.90 (1 samples, 0.08%)</title><rect x="275.5" y="1713" width="1.0" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="278.55" 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>Lorg/glassfish/jersey/server/internal/MappableExceptionWrapperInterceptor:::aroundWriteTo (1 samples, 0.08%)</title><rect x="933.5" y="929" width="0.9" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="936.52" 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>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:::unparkSuccessor (1 samples, 0.08%)</title><rect x="980.6" y="1569" width="1.0" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="983.65" 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_push (2 samples, 0.15%)</title><rect x="855.6" y="1633" width="1.8" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="858.58" 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_task_sched_in (2 samples, 0.15%)</title><rect x="1011.5" y="1713" width="1.8" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="1014.46" 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.15%)</title><rect x="68.9" y="1681" width="1.8" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="71.91" 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>Ljava/io/FileOutputStream$1:::close (4 samples, 0.31%)</title><rect x="649.8" y="1713" width="3.7" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text text-anchor="" x="652.85" 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.15%)</title><rect x="113.3" y="1857" width="1.8" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="116.32" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (2 samples, 0.15%)</title><rect x="619.9" y="1025" width="1.9" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="622.94" 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>tcp_packet (1 samples, 0.08%)</title><rect x="293.7" y="1521" width="0.9" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="296.67" 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>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.31%)</title><rect x="194.9" y="1825" width="3.6" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text text-anchor="" x="197.88" y="1835.5" font-size="12" 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.15%)</title><rect x="705.1" y="1649" width="1.8" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="708.13" 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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::narrow (1 samples, 0.08%)</title><rect x="1074.0" y="865" width="0.9" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text text-anchor="" x="1076.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>Ljava/text/DateFormat:::format (2 samples, 0.15%)</title><rect x="243.8" y="1505" width="1.8" height="15.0" fill="rgb(92,204,204)" rx="2" ry="2" />
<text text-anchor="" x="246.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>_new_instance_Java (1 samples, 0.08%)</title><rect x="609.1" y="897" width="0.9" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text text-anchor="" x="612.06" 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>sys_writev (2 samples, 0.15%)</title><rect x="853.8" y="1841" width="1.8" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="856.76" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ThreadStateTransition::trans_from_native (1 samples, 0.08%)</title><rect x="716.0" y="1617" width="0.9" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text text-anchor="" x="719.01" 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>schedule (2 samples, 0.15%)</title><rect x="144.1" y="1617" width="1.8" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="147.13" 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>Lorg/eclipse/jetty/io/AbstractConnection:::fillInterested (1 samples, 0.08%)</title><rect x="326.3" y="1585" width="0.9" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="329.30" 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_push_pending_frames (1 samples, 0.08%)</title><rect x="851.0" y="1409" width="1.0" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="854.04" 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>Lcom/codahale/metrics/Histogram:::update (2 samples, 0.15%)</title><rect x="939.9" y="833" width="1.8" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="942.86" 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>nmi_restore (1 samples, 0.08%)</title><rect x="57.1" y="1569" width="0.9" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="60.13" 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>Lsun/util/locale/provider/LocaleResources:::getDecimalFormatSymbolsData (1 samples, 0.08%)</title><rect x="745.0" y="961" width="0.9" height="15.0" fill="rgb(67,180,180)" rx="2" ry="2" />
<text text-anchor="" x="748.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>Lorg/glassfish/jersey/message/internal/HttpHeaderReaderImpl:::next (1 samples, 0.08%)</title><rect x="929.9" y="673" width="0.9" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="932.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>__vfs_read (2 samples, 0.15%)</title><rect x="283.7" y="1809" width="1.8" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="286.70" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/servlet/ServletContainer:::service (114 samples, 8.76%)</title><rect x="1044.1" y="1233" width="103.3" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="1047.09" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/glassfi..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (69 samples, 5.30%)</title><rect x="211.2" y="1809" width="62.5" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="214.20" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaCa..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (1 samples, 0.08%)</title><rect x="678.8" y="1729" width="1.0" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="681.85" 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>Lorg/glassfish/jersey/uri/internal/JerseyUriBuilder:::uri (22 samples, 1.69%)</title><rect x="902.7" y="1185" width="19.9" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="905.70" 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>pthread_cond_signal@@GLIBC_2.3.2 (1 samples, 0.08%)</title><rect x="1010.6" y="1857" width="0.9" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text text-anchor="" x="1013.55" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/servlet/internal/ResponseWriter:::writeResponseStatusAndHeaders (1 samples, 0.08%)</title><rect x="397.9" y="849" width="0.9" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="400.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>Ljava/util/concurrent/ConcurrentHashMap$TreeNode:::findTreeNode (2 samples, 0.15%)</title><rect x="821.1" y="545" width="1.8" height="15.0" fill="rgb(101,211,211)" rx="2" ry="2" />
<text text-anchor="" x="824.14" 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>Lorg/glassfish/jersey/process/internal/RequestScope:::runInScope (82 samples, 6.30%)</title><rect x="758.6" y="1121" width="74.3" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text text-anchor="" x="761.60" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gla..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (4 samples, 0.31%)</title><rect x="664.3" y="1537" width="3.7" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="667.35" 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>Lorg/eclipse/jetty/util/thread/Locker:::concLock (2 samples, 0.15%)</title><rect x="519.3" y="1601" width="1.9" height="15.0" fill="rgb(71,185,185)" rx="2" ry="2" />
<text text-anchor="" x="522.34" 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>finish_task_switch (4 samples, 0.31%)</title><rect x="13.6" y="1729" width="3.7" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="16.63" 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>Lorg/eclipse/jetty/server/handler/StatisticsHandler:::handle (124 samples, 9.52%)</title><rect x="1040.5" y="1537" width="112.3" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text text-anchor="" x="1043.46" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/ContainerRequest:::&lt;init&gt; (3 samples, 0.23%)</title><rect x="1135.6" y="1153" width="2.7" height="15.0" fill="rgb(78,190,190)" rx="2" ry="2" />
<text text-anchor="" x="1138.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>Ljava/util/AbstractList:::iterator (1 samples, 0.08%)</title><rect x="567.4" y="929" width="0.9" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text text-anchor="" x="570.37" 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>Ljavax/ws/rs/core/AbstractMultivaluedMap:::get (1 samples, 0.08%)</title><rect x="409.7" y="785" width="0.9" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="412.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>schedule_hrtimeout_range (1 samples, 0.08%)</title><rect x="858.3" y="1809" width="0.9" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="861.29" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/codahale/metrics/Timer:::update (2 samples, 0.15%)</title><rect x="939.9" y="849" width="1.8" height="15.0" fill="rgb(54,169,169)" rx="2" ry="2" />
<text text-anchor="" x="942.86" 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 (2 samples, 0.15%)</title><rect x="1165.5" y="1553" width="1.8" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="1168.53" 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>pipe_write (1 samples, 0.08%)</title><rect x="198.5" y="1729" width="0.9" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="201.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>__schedule (2 samples, 0.15%)</title><rect x="116.9" y="1665" width="1.9" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="119.94" 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>Lorg/eclipse/jetty/server/handler/ScopedHandler:::handle (13 samples, 1.00%)</title><rect x="1177.3" y="1425" width="11.8" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="1180.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>finish_task_switch (2 samples, 0.15%)</title><rect x="997.9" y="1681" width="1.8" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="1000.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>Lorg/glassfish/jersey/server/internal/routing/RoutingStage:::_apply (1 samples, 0.08%)</title><rect x="383.4" y="913" width="0.9" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="386.39" 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>Ljava/util/AbstractMap:::hashCode (1 samples, 0.08%)</title><rect x="781.3" y="753" width="0.9" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="784.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>Lorg/jvnet/hk2/internal/PerLookupContext:::findOrCreate (4 samples, 0.31%)</title><rect x="950.7" y="689" width="3.7" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text text-anchor="" x="953.74" 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>Lorg/eclipse/jetty/util/ArrayTernaryTrie:::getBest (1 samples, 0.08%)</title><rect x="446.8" y="1329" width="0.9" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="449.84" 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_softirq (2 samples, 0.15%)</title><rect x="983.4" y="1441" width="1.8" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="986.36" 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>Ljava/lang/StringBuilder:::append (1 samples, 0.08%)</title><rect x="407.9" y="801" width="0.9" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="410.86" 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>Lsun/nio/ch/IOUtil:::drain (1 samples, 0.08%)</title><rect x="1028.7" y="1553" width="0.9" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text text-anchor="" x="1031.68" 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 (2 samples, 0.15%)</title><rect x="134.2" y="1633" width="1.8" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="137.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>Lorg/glassfish/jersey/uri/internal/JerseyUriBuilder:::schemeSpecificPart (20 samples, 1.54%)</title><rect x="1044.1" y="1153" width="18.1" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="1047.09" 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>Lorg/glassfish/jersey/uri/internal/JerseyUriBuilder:::build (5 samples, 0.38%)</title><rect x="1142.9" y="1201" width="4.5" height="15.0" fill="rgb(90,236,90)" rx="2" ry="2" />
<text text-anchor="" x="1145.87" 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>Lcom/fasterxml/jackson/core/util/BufferRecycler:::balloc (1 samples, 0.08%)</title><rect x="413.3" y="593" width="0.9" height="15.0" fill="rgb(68,182,182)" rx="2" ry="2" />
<text text-anchor="" x="416.30" 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>Lorg/jvnet/hk2/internal/ClazzCreator:::resolveAllDependencies (1 samples, 0.08%)</title><rect x="1186.4" y="945" width="0.9" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text text-anchor="" x="1189.37" 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>__GI___writev (2 samples, 0.15%)</title><rect x="496.7" y="1857" width="1.8" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="499.68" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/ContainerResponse:::close (9 samples, 0.69%)</title><rect x="784.0" y="961" width="8.1" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="786.98" 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>Lorg/glassfish/jersey/message/internal/InboundMessageContext:::singleHeader (1 samples, 0.08%)</title><rect x="1083.1" y="817" width="0.9" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text text-anchor="" x="1086.06" 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>Lorg/jvnet/hk2/internal/ClazzCreator:::fieldMe (1 samples, 0.08%)</title><rect x="950.7" y="673" width="0.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="953.74" 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>JVM_SetNativeThreadName (1 samples, 0.08%)</title><rect x="735.9" y="1233" width="1.0" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text text-anchor="" x="738.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>Ljava/lang/Throwable:::&lt;init&gt; (12 samples, 0.92%)</title><rect x="1044.1" y="1041" width="10.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="1047.09" 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 (2 samples, 0.15%)</title><rect x="1172.8" y="1665" width="1.8" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="1175.78" 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>x86_pmu_enable (2 samples, 0.15%)</title><rect x="56.2" y="1617" width="1.8" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="59.22" 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>Lorg/jvnet/hk2/internal/SystemDescriptor:::create (5 samples, 0.38%)</title><rect x="956.2" y="977" width="4.5" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text text-anchor="" x="959.18" 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>Lorg/glassfish/jersey/process/internal/Stages$LinkedStage:::apply (1 samples, 0.08%)</title><rect x="1180.0" y="993" width="0.9" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text text-anchor="" x="1183.03" 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>Lio/dropwizard/jersey/filter/AllowedMethodsFilter:::doFilter (121 samples, 9.29%)</title><rect x="336.3" y="1329" width="109.6" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="339.27" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lio/dropwizar..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String$CaseInsensitiveComparator:::compare (2 samples, 0.15%)</title><rect x="223.9" y="1473" width="1.8" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text text-anchor="" x="226.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>Lorg/glassfish/jersey/message/internal/MessageBodyFactory:::readFrom (7 samples, 0.54%)</title><rect x="410.6" y="833" width="6.3" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="413.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>__tcp_push_pending_frames (2 samples, 0.15%)</title><rect x="874.6" y="1681" width="1.8" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="877.61" 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>entry_SYSCALL_64_fastpath (1 samples, 0.08%)</title><rect x="107.9" y="1857" width="0.9" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="110.88" y="1867.5" font-size="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.08%)</title><rect x="199.4" y="1729" width="0.9" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="202.42" 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>Ljava/lang/String:::toLowerCase (1 samples, 0.08%)</title><rect x="964.3" y="993" width="0.9" height="15.0" fill="rgb(58,173,173)" rx="2" ry="2" />
<text text-anchor="" x="967.33" 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>nmi_cpu_backtrace (1 samples, 0.08%)</title><rect x="871.9" y="1841" width="0.9" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="874.89" y="1851.5" font-size="12" 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.08%)</title><rect x="876.4" y="1809" width="0.9" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="879.42" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Throwable:::fillInStackTrace (19 samples, 1.46%)</title><rect x="336.3" y="1009" width="17.2" height="15.0" fill="rgb(102,247,102)" rx="2" ry="2" />
<text text-anchor="" x="339.27" 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>Lorg/glassfish/jersey/server/internal/MappableExceptionWrapperInterceptor:::aroundReadFrom (11 samples, 0.84%)</title><rect x="1110.2" y="801" width="10.0" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="1113.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>entry_SYSCALL_64_fastpath (2 samples, 0.15%)</title><rect x="882.8" y="1857" width="1.8" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="885.76" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/nio/ch/SocketDispatcher:::writev (1 samples, 0.08%)</title><rect x="494.0" y="1825" width="0.9" height="15.0" fill="rgb(101,211,211)" rx="2" ry="2" />
<text text-anchor="" x="496.96" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/InboundMessageContext:::getMediaType (1 samples, 0.08%)</title><rect x="965.2" y="1121" width="0.9" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="968.24" 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>ttwu_do_activate.constprop.90 (1 samples, 0.08%)</title><rect x="245.6" y="1393" width="0.9" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="248.64" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" o
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment