Skip to content

Instantly share code, notes, and snippets.

@epickrram
Created March 27, 2017 20:28
Show Gist options
  • Save epickrram/39adabacecf2cf57dff2868e2e4b555c to your computer and use it in GitHub Desktop.
Save epickrram/39adabacecf2cf57dff2868e2e4b555c to your computer and use it in GitHub Desktop.
flamegraph-named-thread-stacks.svg
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="1922" onload="init(evt)" viewBox="0 0 1200 1922" 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="1922.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="1905" 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="1905" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="matched" > </text>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_lang_Throwable_fillInStackTrace (14 samples, 1.23%)</title><rect x="759.7" y="945" width="14.5" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text text-anchor="" x="762.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>Ljava/lang/String:::equalsIgnoreCase (1 samples, 0.09%)</title><rect x="970.2" y="625" width="1.0" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="973.18" 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/process/internal/Stages$LinkedStage:::apply (1 samples, 0.09%)</title><rect x="858.2" y="961" width="1.0" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text text-anchor="" x="861.19" 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>[unknown] (4 samples, 0.35%)</title><rect x="236.0" y="1793" width="4.2" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
<text text-anchor="" x="239.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>schedule (2 samples, 0.18%)</title><rect x="1043.8" y="1713" width="2.1" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="1046.80" 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/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject:::reportInterruptAfterWait (1 samples, 0.09%)</title><rect x="893.4" y="1601" width="1.1" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="896.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>[unknown] (8 samples, 0.70%)</title><rect x="262.0" y="1809" width="8.3" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="264.97" 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>[unknown] (1 samples, 0.09%)</title><rect x="577.2" y="1793" width="1.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="580.19" 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/HashMap$Node:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="750.4" y="1249" width="1.0" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="753.35" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.09%)</title><rect x="737.9" y="1713" width="1.0" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="740.91" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>HeapRegion::oops_on_card_seq_iterate_careful (1 samples, 0.09%)</title><rect x="308.6" y="1681" width="1.1" height="15.0" fill="rgb(205,205,60)" rx="2" ry="2" />
<text text-anchor="" x="311.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/eclipse/jetty/util/thread/strategy/ExecuteProduceConsume:::run (100 samples, 8.79%)</title><rect x="747.2" y="1649" width="103.7" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text text-anchor="" x="750.24" y="1659.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>native_write_msr_safe (2 samples, 0.18%)</title><rect x="259.9" y="1729" width="2.1" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="262.89" 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.09%)</title><rect x="145.8" y="1585" width="1.1" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="148.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>Lsun/nio/ch/EPollArrayWrapper:::poll (1 samples, 0.09%)</title><rect x="1010.6" y="1521" width="1.1" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text text-anchor="" x="1013.62" 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>inet_sendmsg (3 samples, 0.26%)</title><rect x="797.0" y="561" width="3.1" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="800.01" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (1 samples, 0.09%)</title><rect x="1149.6" y="1041" width="1.0" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="1152.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>G1RootProcessor::scan_remembered_sets (1 samples, 0.09%)</title><rect x="349.1" y="1777" width="1.0" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="352.07" 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:::containsKey (1 samples, 0.09%)</title><rect x="502.5" y="833" width="1.1" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="505.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>Ljava/util/LinkedList:::add (1 samples, 0.09%)</title><rect x="519.1" y="513" width="1.1" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="522.12" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/nio/cs/ISO_8859_1$Encoder:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="792.9" y="529" width="1.0" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="795.86" 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/eclipse/jetty/io/AbstractConnection$ReadCallback:::succeeded (10 samples, 0.88%)</title><rect x="707.8" y="1585" width="10.4" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text text-anchor="" x="710.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>java_start (125 samples, 10.98%)</title><rect x="432.0" y="1825" width="129.6" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="435.02" y="1835.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>__intel_pmu_enable_all (2 samples, 0.18%)</title><rect x="253.7" y="1505" width="2.0" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="256.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>do_softirq.part.19 (1 samples, 0.09%)</title><rect x="595.9" y="1505" width="1.0" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="598.85" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/atomic/AtomicReference:::compareAndSet (1 samples, 0.09%)</title><rect x="1099.8" y="609" width="1.0" height="15.0" fill="rgb(91,203,203)" rx="2" ry="2" />
<text text-anchor="" x="1102.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>Lorg/eclipse/jetty/util/thread/Locker:::concLock (1 samples, 0.09%)</title><rect x="1053.1" y="1489" width="1.1" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="1056.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>ip_finish_output2 (1 samples, 0.09%)</title><rect x="1037.6" y="1505" width="1.0" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="1040.57" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.09%)</title><rect x="187.3" y="1457" width="1.0" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="190.31" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (1 samples, 0.09%)</title><rect x="1180.7" y="1153" width="1.0" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="1183.67" 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/gzip/GzipHandler:::handle (3 samples, 0.26%)</title><rect x="702.7" y="1457" width="3.1" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text text-anchor="" x="705.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>Lorg/eclipse/jetty/server/HttpChannel:::write (6 samples, 0.53%)</title><rect x="492.2" y="753" width="6.2" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="495.16" 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/http/HttpFields:::getFieldNames (1 samples, 0.09%)</title><rect x="1050.0" y="1345" width="1.1" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="1053.02" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.09%)</title><rect x="364.6" y="1457" width="1.1" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="367.62" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lch/qos/logback/core/UnsynchronizedAppenderBase:::doAppend (7 samples, 0.62%)</title><rect x="895.5" y="1473" width="7.3" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="898.52" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/OutboundMessageContext:::close (1 samples, 0.09%)</title><rect x="859.2" y="913" width="1.1" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="862.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>Ljava/util/HashSet:::add (1 samples, 0.09%)</title><rect x="10.0" y="1313" width="1.0" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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/glassfish/jersey/uri/UriComponent:::contextualEncode (1 samples, 0.09%)</title><rect x="461.1" y="1057" width="1.0" height="15.0" fill="rgb(80,192,192)" rx="2" ry="2" />
<text text-anchor="" x="464.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>Ljava/util/concurrent/ConcurrentHashMap$TreeNode:::findTreeNode (1 samples, 0.09%)</title><rect x="664.3" y="513" width="1.0" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text text-anchor="" x="667.29" 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/lang/AbstractStringBuilder:::newCapacity (1 samples, 0.09%)</title><rect x="465.2" y="961" width="1.0" height="15.0" fill="rgb(87,198,198)" rx="2" ry="2" />
<text text-anchor="" x="468.20" 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/uri/UriTemplate:::createURIWithStringValues (1 samples, 0.09%)</title><rect x="995.1" y="1089" width="1.0" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text text-anchor="" x="998.06" 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/HttpChannel:::sendResponse (8 samples, 0.70%)</title><rect x="792.9" y="737" width="8.3" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="795.86" 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/eclipse/jetty/io/AbstractEndPoint:::write (4 samples, 0.35%)</title><rect x="494.2" y="657" width="4.2" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="497.24" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (1 samples, 0.09%)</title><rect x="425.8" y="1617" width="1.0" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="428.80" 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:::replace (3 samples, 0.26%)</title><rect x="806.3" y="833" width="3.2" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="809.34" 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/WriterInterceptorExecutor:::proceed (1 samples, 0.09%)</title><rect x="20.4" y="833" width="1.0" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="23.37" 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/HashMap:::containsKey (1 samples, 0.09%)</title><rect x="971.2" y="577" width="1.0" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="974.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/eclipse/jetty/server/HttpChannelState:::handling (1 samples, 0.09%)</title><rect x="541.9" y="1537" width="1.1" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text text-anchor="" x="544.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>native_write_msr_safe (1 samples, 0.09%)</title><rect x="258.9" y="1505" width="1.0" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="261.86" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpConnection:::onFillable (104 samples, 9.14%)</title><rect x="1047.9" y="1553" width="107.9" height="15.0" fill="rgb(108,254,108)" rx="2" ry="2" />
<text text-anchor="" x="1050.94" 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>ip_queue_xmit (1 samples, 0.09%)</title><rect x="1037.6" y="1569" width="1.0" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="1040.57" 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 (5 samples, 0.44%)</title><rect x="661.2" y="769" width="5.2" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="664.18" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (2 samples, 0.18%)</title><rect x="384.3" y="1585" width="2.1" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="387.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/glassfish/jersey/uri/internal/UriParser:::parseComponent (1 samples, 0.09%)</title><rect x="776.3" y="1073" width="1.0" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text text-anchor="" x="779.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>Lorg/eclipse/jetty/servlet/ServletHandler$CachedChain:::doFilter (9 samples, 0.79%)</title><rect x="1011.7" y="1313" width="9.3" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text text-anchor="" x="1014.65" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (2 samples, 0.18%)</title><rect x="881.0" y="1633" width="2.1" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="884.00" 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>Interpreter (116 samples, 10.19%)</title><rect x="597.9" y="1697" width="120.3" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="600.93" y="1707.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>Ljava/lang/Thread:::setNativeName (2 samples, 0.18%)</title><rect x="445.5" y="1201" width="2.1" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text text-anchor="" x="448.50" 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/JsonFactory:::_createContext (1 samples, 0.09%)</title><rect x="817.8" y="625" width="1.0" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="820.75" 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/message/internal/ReaderInterceptorExecutor:::proceed (6 samples, 0.53%)</title><rect x="653.9" y="769" width="6.2" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text text-anchor="" x="656.92" 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/codahale/metrics/jersey2/InstrumentedResourceMethodApplicationListener$ChainedRequestEventListener:::onEvent (1 samples, 0.09%)</title><rect x="1113.3" y="881" width="1.0" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="1116.27" 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/PerLookupContext:::findOrCreate (2 samples, 0.18%)</title><rect x="526.4" y="945" width="2.1" height="15.0" fill="rgb(105,251,105)" rx="2" ry="2" />
<text text-anchor="" x="529.38" 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_futex (1 samples, 0.09%)</title><rect x="358.4" y="1745" width="1.0" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="361.40" 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.09%)</title><rect x="436.2" y="1345" width="1.0" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="439.17" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (1 samples, 0.09%)</title><rect x="1037.6" y="1361" width="1.0" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="1040.57" 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>[libc-2.23.so] (1 samples, 0.09%)</title><rect x="706.8" y="1489" width="1.0" height="15.0" fill="rgb(219,77,77)" rx="2" ry="2" />
<text text-anchor="" x="709.80" 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>tick_sched_timer (1 samples, 0.09%)</title><rect x="134.4" y="1585" width="1.1" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="137.43" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (1 samples, 0.09%)</title><rect x="431.0" y="1825" width="1.0" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text text-anchor="" x="433.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>Lorg/eclipse/jetty/server/Request:::getHeaderNames (2 samples, 0.18%)</title><rect x="1143.3" y="1073" width="2.1" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1146.34" 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/ServiceLocatorImpl:::internalGetService (1 samples, 0.09%)</title><rect x="858.2" y="881" width="1.0" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="861.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>nmi_handle (1 samples, 0.09%)</title><rect x="266.1" y="1505" width="1.1" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="269.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>Java_java_lang_Throwable_fillInStackTrace (1 samples, 0.09%)</title><rect x="702.7" y="961" width="1.0" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" />
<text text-anchor="" x="705.65" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (1 samples, 0.09%)</title><rect x="825.0" y="833" width="1.0" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="828.01" 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/uri/internal/UriParser:::parseAuthority (1 samples, 0.09%)</title><rect x="777.3" y="1073" width="1.0" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="780.31" 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/HttpParser:::parseLine (1 samples, 0.09%)</title><rect x="847.8" y="1505" width="1.1" height="15.0" fill="rgb(54,203,54)" rx="2" ry="2" />
<text text-anchor="" x="850.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>native_write_msr_safe (1 samples, 0.09%)</title><rect x="877.9" y="1313" width="1.0" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="880.89" 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/glassfish/jersey/message/internal/MessageBodyFactory:::readFrom (1 samples, 0.09%)</title><rect x="1008.5" y="801" width="1.1" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="1011.54" 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>Klass::external_name (1 samples, 0.09%)</title><rect x="161.4" y="1713" width="1.0" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text text-anchor="" x="164.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>Lorg/jvnet/hk2/internal/ServiceHandleImpl:::getService (1 samples, 0.09%)</title><rect x="1018.9" y="705" width="1.0" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="1021.91" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (2 samples, 0.18%)</title><rect x="262.0" y="1537" width="2.0" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="264.97" 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/Thread:::setNativeName (1 samples, 0.09%)</title><rect x="758.6" y="1201" width="1.1" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text text-anchor="" x="761.65" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (1 samples, 0.09%)</title><rect x="825.0" y="865" width="1.0" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="828.01" 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/ServiceLocatorImpl:::getInjecteeDescriptor (2 samples, 0.18%)</title><rect x="526.4" y="849" width="2.1" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="529.38" 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/AbstractStringBuilder:::append (2 samples, 0.18%)</title><rect x="80.5" y="1505" width="2.1" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="83.51" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_write (1 samples, 0.09%)</title><rect x="143.8" y="1617" width="1.0" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="146.76" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (1 samples, 0.09%)</title><rect x="733.8" y="1633" width="1.0" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="736.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>Ljava/net/URI$Parser:::scan (2 samples, 0.18%)</title><rect x="533.6" y="1057" width="2.1" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="536.64" 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/server/internal/routing/UriRoutingContext:::setMatchedResourceMethod (1 samples, 0.09%)</title><rect x="940.1" y="833" width="1.0" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="943.11" 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>end_repeat_nmi (1 samples, 0.09%)</title><rect x="1174.4" y="1585" width="1.1" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="1177.45" 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.18%)</title><rect x="1043.8" y="1601" width="2.1" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="1046.80" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (4 samples, 0.35%)</title><rect x="241.2" y="1617" width="4.2" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="244.23" 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>select_idle_sibling (1 samples, 0.09%)</title><rect x="1037.6" y="1169" width="1.0" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="1040.57" 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>Ljava/util/Collections$SetFromMap:::add (1 samples, 0.09%)</title><rect x="17.3" y="801" width="1.0" height="15.0" fill="rgb(68,182,182)" rx="2" ry="2" />
<text text-anchor="" x="20.26" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/RuntimeException:::&lt;init&gt; (14 samples, 1.23%)</title><rect x="759.7" y="1025" width="14.5" height="15.0" fill="rgb(79,191,191)" rx="2" ry="2" />
<text text-anchor="" x="762.68" 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>G1CollectedHeap::iterate_dirty_card_closure (1 samples, 0.09%)</title><rect x="349.1" y="1745" width="1.0" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text text-anchor="" x="352.07" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.09%)</title><rect x="869.6" y="1233" width="1.0" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="872.60" 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>Lorg/glassfish/jersey/servlet/ServletContainer:::service (5 samples, 0.44%)</title><rect x="412.3" y="1761" width="5.2" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text text-anchor="" x="415.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/glassfish/jersey/internal/inject/Providers:::mergeAndSortRankedProviders (1 samples, 0.09%)</title><rect x="789.8" y="881" width="1.0" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text text-anchor="" x="792.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>Lcom/codahale/metrics/Striped64:::casBase (1 samples, 0.09%)</title><rect x="439.3" y="1313" width="1.0" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="442.28" 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/lang/ref/SoftReference:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="817.8" y="593" width="1.0" height="15.0" fill="rgb(80,193,193)" rx="2" ry="2" />
<text text-anchor="" x="820.75" 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>Lio/dropwizard/jersey/filter/AllowedMethodsFilter:::doFilter (1 samples, 0.09%)</title><rect x="1008.5" y="1297" width="1.1" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="1011.54" 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>__wake_up_sync_key (1 samples, 0.09%)</title><rect x="999.2" y="817" width="1.0" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="1002.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>Lorg/eclipse/jetty/server/Request:::getHeaderNames (1 samples, 0.09%)</title><rect x="900.7" y="1361" width="1.0" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="903.70" 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>tcp_sendmsg (1 samples, 0.09%)</title><rect x="825.0" y="849" width="1.0" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="828.01" 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>Interpreter (116 samples, 10.19%)</title><rect x="597.9" y="1681" width="120.3" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text text-anchor="" x="600.93" y="1691.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>__netif_receive_skb (1 samples, 0.09%)</title><rect x="577.2" y="1377" width="1.0" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="580.19" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (1 samples, 0.09%)</title><rect x="143.8" y="1697" width="1.0" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="146.76" 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 (1 samples, 0.09%)</title><rect x="385.4" y="1521" width="1.0" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="388.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>Ljava/nio/channels/spi/AbstractInterruptibleChannel:::blockedOn (1 samples, 0.09%)</title><rect x="1097.7" y="561" width="1.1" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="1100.72" 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>perf_pmu_enable.part.89 (1 samples, 0.09%)</title><rect x="358.4" y="1601" width="1.0" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="361.40" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceHandleImpl:::addSubHandle (1 samples, 0.09%)</title><rect x="519.1" y="529" width="1.1" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="522.12" 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/nio/channels/spi/AbstractInterruptibleChannel:::begin (1 samples, 0.09%)</title><rect x="843.7" y="1489" width="1.0" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="846.67" 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>Interpreter (1 samples, 0.09%)</title><rect x="363.6" y="1649" width="1.0" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text text-anchor="" x="366.59" 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/internal/routing/MethodSelectingRouter$3:::apply (1 samples, 0.09%)</title><rect x="1094.6" y="897" width="1.0" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text text-anchor="" x="1097.60" 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/handler/HandlerWrapper:::handle (3 samples, 0.26%)</title><rect x="1159.9" y="1521" width="3.1" height="15.0" fill="rgb(68,181,181)" rx="2" ry="2" />
<text text-anchor="" x="1162.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>__GI___writev (5 samples, 0.44%)</title><rect x="1038.6" y="1809" width="5.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="1041.61" 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>Lch/qos/logback/access/spi/AccessEvent:::copyAttributeMap (5 samples, 0.44%)</title><rect x="65.0" y="1601" width="5.1" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text text-anchor="" x="67.96" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpOutput:::write (6 samples, 0.53%)</title><rect x="950.5" y="785" width="6.2" height="15.0" fill="rgb(68,182,182)" rx="2" ry="2" />
<text text-anchor="" x="953.47" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (1 samples, 0.09%)</title><rect x="840.6" y="1025" width="1.0" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="843.56" 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/server/internal/routing/RoutingStage:::_apply (4 samples, 0.35%)</title><rect x="783.5" y="913" width="4.2" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text text-anchor="" x="786.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>Lorg/glassfish/jersey/message/internal/MessageBodyFactory:::_getMessageBodyReader (1 samples, 0.09%)</title><rect x="1117.4" y="689" width="1.1" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text text-anchor="" x="1120.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>PhaseChaitin::merge_multidefs (1 samples, 0.09%)</title><rect x="184.2" y="1681" width="1.0" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="187.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>default_do_nmi (1 samples, 0.09%)</title><rect x="262.0" y="1489" width="1.0" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="264.97" 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/io/SelectChannelEndPoint$2:::run (1 samples, 0.09%)</title><rect x="1008.5" y="1617" width="1.1" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text text-anchor="" x="1011.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>Lorg/jvnet/hk2/internal/ServiceHandleImpl:::pushInjectee (1 samples, 0.09%)</title><rect x="835.4" y="833" width="1.0" height="15.0" fill="rgb(77,189,189)" rx="2" ry="2" />
<text text-anchor="" x="838.38" 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>[unknown] (4 samples, 0.35%)</title><rect x="281.7" y="1777" width="4.1" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text text-anchor="" x="284.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>tcp_sendmsg (1 samples, 0.09%)</title><rect x="999.2" y="1201" width="1.0" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="1002.21" 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/glassfish/jersey/server/model/internal/JavaResourceMethodDispatcherProvider$AbstractMethodParamInvoker:::getParamValues (12 samples, 1.05%)</title><rect x="653.9" y="881" width="12.5" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="656.92" 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>Lch/qos/logback/core/AsyncAppenderBase:::put (1 samples, 0.09%)</title><rect x="896.6" y="1441" width="1.0" height="15.0" fill="rgb(81,194,194)" rx="2" ry="2" />
<text text-anchor="" x="899.56" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.09%)</title><rect x="47.3" y="1793" width="1.1" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="50.33" 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/model/ResourceMethodInvoker:::invoke (1 samples, 0.09%)</title><rect x="1008.5" y="945" width="1.1" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="1011.54" 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>ep_poll (2 samples, 0.18%)</title><rect x="578.2" y="1745" width="2.1" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="581.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>__do_softirq (1 samples, 0.09%)</title><rect x="1022.0" y="1425" width="1.1" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="1025.02" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/servlet/WebComponent:::service (5 samples, 0.44%)</title><rect x="412.3" y="1745" width="5.2" height="15.0" fill="rgb(103,213,213)" rx="2" ry="2" />
<text text-anchor="" x="415.32" 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/jetty/BiDiGzipHandler:::handle (3 samples, 0.26%)</title><rect x="702.7" y="1473" width="3.1" height="15.0" fill="rgb(80,193,193)" rx="2" ry="2" />
<text text-anchor="" x="705.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/server/internal/process/DefaultRespondingContext:::push (1 samples, 0.09%)</title><rect x="714.1" y="913" width="1.0" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="717.06" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.18%)</title><rect x="881.0" y="1649" width="2.1" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="884.00" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/codahale/metrics/Meter:::mark (1 samples, 0.09%)</title><rect x="962.9" y="769" width="1.1" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="965.92" 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>rw_verify_area (1 samples, 0.09%)</title><rect x="736.9" y="1697" width="1.0" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="739.87" 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/AbstractStringBuilder:::ensureCapacityInternal (1 samples, 0.09%)</title><rect x="618.7" y="977" width="1.0" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="621.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>inet_sendmsg (1 samples, 0.09%)</title><rect x="590.7" y="1665" width="1.0" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="593.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>vfs_writev (1 samples, 0.09%)</title><rect x="825.0" y="945" width="1.0" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="828.01" 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>Lsun/util/locale/provider/LocaleResources:::getDecimalFormatSymbolsData (1 samples, 0.09%)</title><rect x="919.4" y="913" width="1.0" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="922.37" 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>__local_bh_enable_ip (1 samples, 0.09%)</title><rect x="1037.6" y="1489" width="1.0" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="1040.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>Lorg/eclipse/jetty/io/SelectChannelEndPoint$2:::run (3 samples, 0.26%)</title><rect x="702.7" y="1617" width="3.1" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="705.65" 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/NonblockingServletHolder:::handle (10 samples, 0.88%)</title><rect x="857.2" y="1217" width="10.3" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text text-anchor="" x="860.15" 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>finish_task_switch (3 samples, 0.26%)</title><rect x="1165.1" y="1697" width="3.1" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="1168.11" 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>__unqueue_futex (1 samples, 0.09%)</title><rect x="1036.5" y="1649" width="1.1" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="1039.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>Lorg/glassfish/jersey/server/ContainerResponse:::enableBuffering (3 samples, 0.26%)</title><rect x="956.7" y="913" width="3.1" height="15.0" fill="rgb(78,191,191)" rx="2" ry="2" />
<text text-anchor="" x="959.70" 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/ServerRuntime$Responder:::writeResponse (12 samples, 1.05%)</title><rect x="947.4" y="929" width="12.4" height="15.0" fill="rgb(100,245,100)" rx="2" ry="2" />
<text text-anchor="" x="950.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>pipe_write (1 samples, 0.09%)</title><rect x="37.0" y="1681" width="1.0" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="39.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>Lorg/glassfish/jersey/process/internal/RequestScope$Instance:::remove (5 samples, 0.44%)</title><rect x="412.3" y="1649" width="5.2" height="15.0" fill="rgb(83,196,196)" rx="2" ry="2" />
<text text-anchor="" x="415.32" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/process/internal/RequestScope$Instance:::release (5 samples, 0.44%)</title><rect x="412.3" y="1665" width="5.2" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="415.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>ip_finish_output (1 samples, 0.09%)</title><rect x="590.7" y="1521" width="1.0" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="593.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>Ljava/lang/String:::hashCode (1 samples, 0.09%)</title><rect x="678.8" y="961" width="1.0" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="681.80" 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/servlet/WebComponent$4$1:::initialize (2 samples, 0.18%)</title><rect x="1012.7" y="913" width="2.1" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="1015.69" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (1 samples, 0.09%)</title><rect x="522.2" y="529" width="1.1" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="525.23" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.18%)</title><rect x="360.5" y="1761" width="2.0" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="363.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>Ljava/util/Formatter:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="454.8" y="1025" width="1.1" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text text-anchor="" x="457.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>Lorg/glassfish/jersey/message/internal/CommittingOutputStream:::flushBuffer (2 samples, 0.18%)</title><rect x="21.4" y="849" width="2.1" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="24.41" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getInjecteeDescriptor (2 samples, 0.18%)</title><rect x="1077.0" y="865" width="2.1" height="15.0" fill="rgb(101,211,211)" rx="2" ry="2" />
<text text-anchor="" x="1079.98" 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.09%)</title><rect x="718.2" y="1761" width="1.0" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="721.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/glassfish/jersey/server/internal/process/ReferencesInitializer:::apply (2 samples, 0.18%)</title><rect x="1012.7" y="945" width="2.1" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text text-anchor="" x="1015.69" 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>Lch/qos/logback/access/spi/AccessEvent:::buildRequestParameterMap (2 samples, 0.18%)</title><rect x="599.0" y="1377" width="2.0" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="601.96" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/AbstractStringBuilder:::append (1 samples, 0.09%)</title><rect x="776.3" y="1025" width="1.0" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="779.27" 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_transmit_skb (1 samples, 0.09%)</title><rect x="522.2" y="785" width="1.1" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="525.23" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (1 samples, 0.09%)</title><rect x="999.2" y="1121" width="1.0" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="1002.21" 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>sys_writev (1 samples, 0.09%)</title><rect x="522.2" y="961" width="1.1" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="525.23" 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_local_out (1 samples, 0.09%)</title><rect x="735.8" y="1537" width="1.1" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="738.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>[unknown] (12 samples, 1.05%)</title><rect x="45.3" y="1825" width="12.4" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text text-anchor="" x="48.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>Ljersey/repackaged/com/google/common/collect/Lists:::newArrayList (1 samples, 0.09%)</title><rect x="479.7" y="897" width="1.1" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="482.72" 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>Lcom/fasterxml/jackson/core/JsonFactory:::_getBufferRecycler (1 samples, 0.09%)</title><rect x="20.4" y="721" width="1.0" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="23.37" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (2 samples, 0.18%)</title><rect x="262.0" y="1729" width="2.0" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="264.97" 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/servlet/ServletContainer:::service (7 samples, 0.62%)</title><rect x="708.9" y="1169" width="7.2" height="15.0" fill="rgb(69,218,69)" rx="2" ry="2" />
<text text-anchor="" x="711.88" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/FactoryCreator:::create (1 samples, 0.09%)</title><rect x="1079.1" y="801" width="1.0" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="1082.05" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (1 samples, 0.09%)</title><rect x="1022.0" y="1377" width="1.1" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="1025.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>Lio/dropwizard/jetty/RoutingHandler:::handle (21 samples, 1.85%)</title><rect x="11.0" y="1425" width="21.8" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" />
<text text-anchor="" x="14.04" y="1435.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/server/Request:::extractParameters (1 samples, 0.09%)</title><rect x="600.0" y="1345" width="1.0" height="15.0" fill="rgb(104,214,214)" rx="2" ry="2" />
<text text-anchor="" x="603.00" 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>Lch/qos/logback/access/spi/AccessEvent:::getRemoteUser (2 samples, 0.18%)</title><rect x="71.2" y="1601" width="2.1" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="74.18" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.09%)</title><rect x="281.7" y="1649" width="1.0" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="284.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>vfs_read (1 samples, 0.09%)</title><rect x="34.9" y="1505" width="1.0" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="37.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>Lorg/glassfish/jersey/servlet/internal/ResponseWriter$NonCloseableOutputStreamWrapper:::write (1 samples, 0.09%)</title><rect x="21.4" y="817" width="1.0" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="24.41" 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/server/ContainerResponse:::enableBuffering (4 samples, 0.35%)</title><rect x="502.5" y="913" width="4.2" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="505.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>Lorg/glassfish/jersey/message/internal/OutboundMessageContext:::close (5 samples, 0.44%)</title><rect x="1096.7" y="897" width="5.2" height="15.0" fill="rgb(92,204,204)" rx="2" ry="2" />
<text text-anchor="" x="1099.68" 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 (2 samples, 0.18%)</title><rect x="553.3" y="1569" width="2.1" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="556.34" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (1 samples, 0.09%)</title><rect x="417.5" y="1601" width="1.0" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="420.50" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceHandleImpl:::getService (5 samples, 0.44%)</title><rect x="516.0" y="689" width="5.2" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="519.01" 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>end_repeat_nmi (2 samples, 0.18%)</title><rect x="241.2" y="1569" width="2.1" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="244.23" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpChannelState:::cancelTimeout (1 samples, 0.09%)</title><rect x="752.4" y="1425" width="1.1" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="755.43" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/codahale/metrics/Meter:::mark (1 samples, 0.09%)</title><rect x="904.9" y="1377" width="1.0" height="15.0" fill="rgb(102,212,212)" rx="2" ry="2" />
<text text-anchor="" x="907.85" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (1 samples, 0.09%)</title><rect x="577.2" y="1441" width="1.0" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="580.19" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpChannelState:::isSuspended (1 samples, 0.09%)</title><rect x="437.2" y="1473" width="1.0" height="15.0" fill="rgb(70,219,70)" rx="2" ry="2" />
<text text-anchor="" x="440.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>Lorg/jvnet/hk2/internal/ServiceHandleImpl:::getService (5 samples, 0.44%)</title><rect x="412.3" y="1585" width="5.2" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text text-anchor="" x="415.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>tcp_sendmsg (1 samples, 0.09%)</title><rect x="596.9" y="1665" width="1.0" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="599.89" 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 (10 samples, 0.88%)</title><rect x="1179.6" y="1841" width="10.4" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="1182.63" 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_lang_Throwable::fill_in_stack_trace (12 samples, 1.05%)</title><rect x="761.8" y="913" width="12.4" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="764.76" 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/Server:::handle (13 samples, 1.14%)</title><rect x="856.1" y="1537" width="13.5" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="859.12" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="857.2" y="1089" width="1.0" height="15.0" fill="rgb(93,205,205)" rx="2" ry="2" />
<text text-anchor="" x="860.15" 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>Interpreter (1 samples, 0.09%)</title><rect x="363.6" y="1665" width="1.0" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text text-anchor="" x="366.59" 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>hrtimer_interrupt (1 samples, 0.09%)</title><rect x="134.4" y="1617" width="1.1" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="137.43" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/core/json/UTF8JsonGenerator:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="556.4" y="737" width="1.1" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="559.45" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lch/qos/logback/core/AsyncAppenderBase:::append (5 samples, 0.44%)</title><rect x="432.0" y="1457" width="5.2" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text text-anchor="" x="435.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>perf_pmu_enable.part.89 (3 samples, 0.26%)</title><rect x="1165.1" y="1649" width="3.1" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="1168.11" 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/Request:::extractContentParameters (1 samples, 0.09%)</title><rect x="901.7" y="1329" width="1.1" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="904.74" 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/message/internal/OutboundMessageContext:::enableBuffering (1 samples, 0.09%)</title><rect x="713.0" y="913" width="1.1" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="716.02" 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>Lcom/codahale/metrics/jersey2/InstrumentedResourceMethodApplicationListener$ChainedRequestEventListener:::onEvent (1 samples, 0.09%)</title><rect x="812.6" y="881" width="1.0" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="815.57" 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>JavaCalls::call_virtual (116 samples, 10.19%)</title><rect x="597.9" y="1761" width="120.3" height="15.0" fill="rgb(210,210,63)" rx="2" ry="2" />
<text text-anchor="" x="600.93" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaCalls::cal..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_handle (1 samples, 0.09%)</title><rect x="876.9" y="1265" width="1.0" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="879.85" 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/ServiceHandleImpl:::getService (5 samples, 0.44%)</title><rect x="516.0" y="673" width="5.2" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="519.01" 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>Node_Backward_Iterator::next (1 samples, 0.09%)</title><rect x="182.1" y="1649" width="1.1" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" />
<text text-anchor="" x="185.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/glassfish/jersey/server/internal/monitoring/RequestEventImpl$Builder:::build (1 samples, 0.09%)</title><rect x="674.7" y="1073" width="1.0" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="677.66" 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/lang/String:::toLowerCase (1 samples, 0.09%)</title><rect x="943.2" y="721" width="1.1" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text text-anchor="" x="946.22" 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/eclipse/jetty/http/HttpGenerator:::putTo (1 samples, 0.09%)</title><rect x="950.5" y="625" width="1.0" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="953.47" 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>PhaseChaitin::Select (2 samples, 0.18%)</title><rect x="195.6" y="1681" width="2.1" height="15.0" fill="rgb(194,194,56)" rx="2" ry="2" />
<text text-anchor="" x="198.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>native_write_msr_safe (1 samples, 0.09%)</title><rect x="871.7" y="1201" width="1.0" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="874.67" 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/glassfish/jersey/servlet/ServletContainer:::service (20 samples, 1.76%)</title><rect x="11.0" y="1169" width="20.8" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="14.04" 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/server/internal/monitoring/RequestEventImpl$Builder:::build (1 samples, 0.09%)</title><rect x="961.9" y="913" width="1.0" height="15.0" fill="rgb(66,179,179)" rx="2" ry="2" />
<text text-anchor="" x="964.88" 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_writev (1 samples, 0.09%)</title><rect x="590.7" y="1761" width="1.0" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="593.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/concurrent/locks/ReentrantLock:::unlock (1 samples, 0.09%)</title><rect x="597.9" y="1409" width="1.1" height="15.0" fill="rgb(56,171,171)" rx="2" ry="2" />
<text text-anchor="" x="600.93" 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/message/internal/HttpHeaderReaderImpl:::process (1 samples, 0.09%)</title><rect x="29.7" y="897" width="1.0" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text text-anchor="" x="32.70" 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/http/HttpGenerator:::generateHeaders (1 samples, 0.09%)</title><rect x="1096.7" y="657" width="1.0" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text text-anchor="" x="1099.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>futex_wake_op (1 samples, 0.09%)</title><rect x="737.9" y="1745" width="1.0" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="740.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>Lorg/jvnet/hk2/internal/ClazzCreator:::create (1 samples, 0.09%)</title><rect x="1018.9" y="625" width="1.0" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="1021.91" 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/servlet/ServletHandler:::doHandle (21 samples, 1.85%)</title><rect x="11.0" y="1313" width="21.8" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text text-anchor="" x="14.04" y="1323.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>TypeArrayKlass::allocate_common (1 samples, 0.09%)</title><rect x="912.1" y="865" width="1.0" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text text-anchor="" x="915.11" 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>thread_entry (121 samples, 10.63%)</title><rect x="745.2" y="1777" width="125.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="748.17" y="1787.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/ArrayList$Itr:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="813.6" y="849" width="1.0" height="15.0" fill="rgb(81,194,194)" rx="2" ry="2" />
<text text-anchor="" x="816.60" 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/thread/QueuedThreadPool:::runJob (104 samples, 9.14%)</title><rect x="597.9" y="1665" width="107.9" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text text-anchor="" x="600.93" y="1675.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>native_sched_clock (2 samples, 0.18%)</title><rect x="51.5" y="1793" width="2.1" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="54.48" 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/ServiceHandleImpl:::getService (1 samples, 0.09%)</title><rect x="781.5" y="769" width="1.0" height="15.0" fill="rgb(100,210,210)" rx="2" ry="2" />
<text text-anchor="" x="784.46" 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/jvnet/hk2/internal/ServiceHandleImpl:::popInjectee (1 samples, 0.09%)</title><rect x="1127.8" y="529" width="1.0" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="1130.79" 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>do_futex (1 samples, 0.09%)</title><rect x="416.5" y="1521" width="1.0" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="419.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>Lio/dropwizard/jersey/filter/AllowedMethodsFilter:::handle (81 samples, 7.12%)</title><rect x="758.6" y="1265" width="84.0" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="761.65" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lio/dropw..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Formatter$FormatSpecifier:::print (1 samples, 0.09%)</title><rect x="920.4" y="993" width="1.0" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text text-anchor="" x="923.40" 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/codahale/metrics/ExponentiallyDecayingReservoir:::update (1 samples, 0.09%)</title><rect x="755.5" y="1329" width="1.1" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="758.54" 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>ConcurrentG1RefineThread::run_young_rs_sampling (12 samples, 1.05%)</title><rect x="249.5" y="1793" width="12.5" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" />
<text text-anchor="" x="252.53" 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/ArrayList:::iterator (1 samples, 0.09%)</title><rect x="813.6" y="881" width="1.0" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="816.60" 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>Lch/qos/logback/access/jetty/RequestLogImpl:::log (5 samples, 0.44%)</title><rect x="432.0" y="1505" width="5.2" height="15.0" fill="rgb(101,211,211)" rx="2" ry="2" />
<text text-anchor="" x="435.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>Lorg/glassfish/jersey/uri/internal/UriParser:::parseComponent (1 samples, 0.09%)</title><rect x="466.2" y="1057" width="1.1" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="469.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>Lorg/glassfish/jersey/server/ServerRuntime$Responder:::processResponse (20 samples, 1.76%)</title><rect x="1092.5" y="945" width="20.8" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="1095.53" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpConnection:::send (4 samples, 0.35%)</title><rect x="1096.7" y="721" width="4.1" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="1099.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>perf_pmu_enable.part.89 (2 samples, 0.18%)</title><rect x="262.0" y="1585" width="2.0" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="264.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:::toLowerCase (1 samples, 0.09%)</title><rect x="24.5" y="641" width="1.1" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="27.52" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.09%)</title><rect x="281.7" y="1729" width="1.0" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="284.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>sys_writev (1 samples, 0.09%)</title><rect x="735.8" y="1761" width="1.1" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="738.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>tcp_sendmsg (1 samples, 0.09%)</title><rect x="429.9" y="1681" width="1.1" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="432.95" 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/jaxrs/base/ProviderBase:::readFrom (2 samples, 0.18%)</title><rect x="817.8" y="673" width="2.0" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text text-anchor="" x="820.75" 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/io/SelectChannelEndPoint$2:::run (4 samples, 0.35%)</title><rect x="1159.9" y="1617" width="4.2" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text text-anchor="" x="1162.93" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.18%)</title><rect x="311.7" y="1745" width="2.1" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="314.74" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/servlet/ServletContainer:::service (1 samples, 0.09%)</title><rect x="1161.0" y="1169" width="1.0" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text text-anchor="" x="1163.97" 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>__hrtimer_run_queues (1 samples, 0.09%)</title><rect x="462.1" y="1009" width="1.0" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="465.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>net_rx_action (1 samples, 0.09%)</title><rect x="796.0" y="209" width="1.0" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="798.98" 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>Lio/dropwizard/jetty/NonblockingServletHolder:::handle (87 samples, 7.64%)</title><rect x="447.6" y="1201" width="90.2" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text text-anchor="" x="450.57" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lio/dropwi..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/util/thread/strategy/ExecuteProduceConsume:::run (113 samples, 9.93%)</title><rect x="432.0" y="1649" width="117.2" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text text-anchor="" x="435.02" y="1659.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>Lorg/eclipse/jetty/util/thread/strategy/ExecuteProduceConsume:::run (110 samples, 9.67%)</title><rect x="894.5" y="1649" width="114.0" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text text-anchor="" x="897.48" y="1659.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>change_protection (1 samples, 0.09%)</title><rect x="397.8" y="1745" width="1.0" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="400.80" 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/Long:::parseLong (1 samples, 0.09%)</title><rect x="1001.3" y="1441" width="1.0" height="15.0" fill="rgb(80,193,193)" rx="2" ry="2" />
<text text-anchor="" x="1004.28" 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/server/internal/routing/MethodSelectingRouter:::access$000 (2 samples, 0.18%)</title><rect x="631.1" y="833" width="2.1" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="634.11" 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>entry_SYSCALL_64_fastpath (1 samples, 0.09%)</title><rect x="143.8" y="1681" width="1.0" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="146.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>vfs_writev (1 samples, 0.09%)</title><rect x="867.5" y="1457" width="1.1" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="870.52" 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/uri/internal/JerseyUriBuilder:::createURI (2 samples, 0.18%)</title><rect x="1145.4" y="1121" width="2.1" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="1148.41" 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_push_pending_frames (3 samples, 0.26%)</title><rect x="1039.6" y="1633" width="3.2" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="1042.65" 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>HandleMarkCleaner::~HandleMarkCleaner (1 samples, 0.09%)</title><rect x="818.8" y="321" width="1.0" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="821.79" 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>JavaThread::thread_main_inner (124 samples, 10.90%)</title><rect x="893.4" y="1793" width="128.6" height="15.0" fill="rgb(224,224,68)" rx="2" ry="2" />
<text text-anchor="" x="896.44" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaThread::thre..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/text/DecimalFormatSymbols:::initialize (1 samples, 0.09%)</title><rect x="919.4" y="929" width="1.0" height="15.0" fill="rgb(92,204,204)" rx="2" ry="2" />
<text text-anchor="" x="922.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/eclipse/jetty/util/IteratingCallback:::iterate (6 samples, 0.53%)</title><rect x="950.5" y="705" width="6.2" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="953.47" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/Utilities:::createService (1 samples, 0.09%)</title><rect x="858.2" y="865" width="1.0" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text text-anchor="" x="861.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>tcp_transmit_skb (1 samples, 0.09%)</title><rect x="589.6" y="1601" width="1.1" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="592.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>G1RemSet::refine_card (1 samples, 0.09%)</title><rect x="349.1" y="1697" width="1.0" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text text-anchor="" x="352.07" 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.18%)</title><rect x="725.5" y="1553" width="2.0" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="728.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>sched_clock (1 samples, 0.09%)</title><rect x="40.1" y="1537" width="1.0" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="43.07" 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:::contains (1 samples, 0.09%)</title><rect x="971.2" y="593" width="1.0" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="974.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>Ljava/lang/String:::length (1 samples, 0.09%)</title><rect x="93.0" y="1489" width="1.0" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="95.95" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lio/dropwizard/jersey/jackson/JacksonMessageBodyProvider:::readFrom (2 samples, 0.18%)</title><rect x="25.6" y="689" width="2.0" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="28.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>Lorg/glassfish/jersey/message/internal/WriterInterceptorExecutor$TerminalWriterInterceptor:::aroundWriteTo (2 samples, 0.18%)</title><rect x="790.8" y="817" width="2.1" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text text-anchor="" x="793.79" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::run (10 samples, 0.88%)</title><rect x="182.1" y="1809" width="10.4" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="185.13" 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>JavaCalls::call_virtual (1 samples, 0.09%)</title><rect x="575.1" y="1761" width="1.1" height="15.0" fill="rgb(205,205,60)" rx="2" ry="2" />
<text text-anchor="" x="578.11" 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>ClassLoaderDataGraph::roots_cld_do (3 samples, 0.26%)</title><rect x="305.5" y="1745" width="3.1" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="308.52" 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 (16 samples, 1.41%)</title><rect x="218.4" y="1713" width="16.6" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="221.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>Lorg/glassfish/jersey/server/internal/routing/PushMatchedMethodRouter:::apply (1 samples, 0.09%)</title><rect x="633.2" y="849" width="1.0" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text text-anchor="" x="636.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>native_write_msr_safe (2 samples, 0.18%)</title><rect x="1176.5" y="1809" width="2.1" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="1179.52" 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/Matcher:::find (2 samples, 0.18%)</title><rect x="921.4" y="977" width="2.1" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="924.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>nmi_handle (1 samples, 0.09%)</title><rect x="144.8" y="1537" width="1.0" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="147.80" 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$Branch:::match (1 samples, 0.09%)</title><rect x="921.4" y="801" width="1.1" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="924.44" 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 (1 samples, 0.09%)</title><rect x="575.1" y="1697" width="1.1" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text text-anchor="" x="578.11" 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>ip_rcv_finish (1 samples, 0.09%)</title><rect x="1041.7" y="1361" width="1.1" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="1044.72" 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/Formatter:::getZero (1 samples, 0.09%)</title><rect x="919.4" y="993" width="1.0" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="922.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>ep_ptable_queue_proc (1 samples, 0.09%)</title><rect x="423.7" y="1729" width="1.1" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="426.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>tcp_write_xmit (1 samples, 0.09%)</title><rect x="746.2" y="1441" width="1.0" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="749.20" 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>__lll_lock_wait (1 samples, 0.09%)</title><rect x="559.6" y="1649" width="1.0" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text text-anchor="" x="562.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>ip_local_deliver (1 samples, 0.09%)</title><rect x="1041.7" y="1345" width="1.1" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="1044.72" 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>tcp_write_xmit (1 samples, 0.09%)</title><rect x="421.7" y="1617" width="1.0" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="424.65" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.09%)</title><rect x="187.3" y="1265" width="1.0" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="190.31" 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/server/model/ResourceMethodInvoker:::invoke (14 samples, 1.23%)</title><rect x="506.7" y="929" width="14.5" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="509.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>__GI___writev (1 samples, 0.09%)</title><rect x="540.9" y="1489" width="1.0" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text text-anchor="" x="543.90" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (2 samples, 0.18%)</title><rect x="309.7" y="1713" width="2.0" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="312.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>do_readv_writev (3 samples, 0.26%)</title><rect x="797.0" y="625" width="3.1" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="800.01" 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>__intel_pmu_enable_all (3 samples, 0.26%)</title><rect x="561.6" y="1537" width="3.1" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="564.63" 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>start_thread (13 samples, 1.14%)</title><rect x="344.9" y="1841" width="13.5" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text text-anchor="" x="347.92" 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/core/pattern/Converter:::write (2 samples, 0.18%)</title><rect x="80.5" y="1537" width="2.1" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text text-anchor="" x="83.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>Lcom/fasterxml/jackson/core/JsonFactory:::_createContext (1 samples, 0.09%)</title><rect x="20.4" y="737" width="1.0" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="23.37" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (2 samples, 0.18%)</title><rect x="48.4" y="1585" width="2.0" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="51.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/glassfish/jersey/server/ServerRuntime$Responder:::process (14 samples, 1.23%)</title><rect x="636.3" y="961" width="14.5" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="639.29" 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/io/FillInterest:::fillable (25 samples, 2.20%)</title><rect x="10.0" y="1585" width="25.9" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1595.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/jvnet/hk2/internal/SystemDescriptor:::create (1 samples, 0.09%)</title><rect x="864.4" y="737" width="1.0" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text text-anchor="" x="867.41" 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/Utilities:::createService (1 samples, 0.09%)</title><rect x="864.4" y="529" width="1.0" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text text-anchor="" x="867.41" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/routing/RoutingStage:::_apply (2 samples, 0.18%)</title><rect x="16.2" y="897" width="2.1" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="19.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>Compiler::compile_method (4 samples, 0.35%)</title><rect x="162.4" y="1745" width="4.2" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" />
<text text-anchor="" x="165.43" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lio/dropwizard/jetty/BiDiGzipHandler:::handle (3 samples, 0.26%)</title><rect x="1159.9" y="1473" width="3.1" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="1162.93" 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/HttpChannelState:::recycle (1 samples, 0.09%)</title><rect x="707.8" y="1457" width="1.1" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="710.84" 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/net/URI$Parser:::parseHierarchical (2 samples, 0.18%)</title><rect x="535.7" y="1073" width="2.1" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="538.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>__netif_receive_skb (1 samples, 0.09%)</title><rect x="1041.7" y="1409" width="1.1" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="1044.72" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (1 samples, 0.09%)</title><rect x="1037.6" y="1665" width="1.0" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="1040.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>G1ParEvacuateFollowersClosure::do_void (2 samples, 0.18%)</title><rect x="321.1" y="1777" width="2.0" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text text-anchor="" x="324.07" 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/server/HttpChannel:::sendResponse (1 samples, 0.09%)</title><rect x="859.2" y="753" width="1.1" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="862.23" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lio/dropwizard/jersey/filter/AllowedMethodsFilter:::handle (84 samples, 7.38%)</title><rect x="603.1" y="1265" width="87.1" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="606.11" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lio/dropwi..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.18%)</title><rect x="146.9" y="1809" width="2.0" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="149.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>__wake_up_sync_key (1 samples, 0.09%)</title><rect x="37.0" y="1665" width="1.0" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="39.96" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.18%)</title><rect x="876.9" y="1441" width="2.0" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="879.85" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/text/SimpleDateFormat:::format (3 samples, 0.26%)</title><rect x="84.7" y="1457" width="3.1" height="15.0" fill="rgb(76,188,188)" rx="2" ry="2" />
<text text-anchor="" x="87.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>Lorg/eclipse/jetty/server/HttpChannel:::onRequest (1 samples, 0.09%)</title><rect x="1003.4" y="1473" width="1.0" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="1006.36" 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>ksize (1 samples, 0.09%)</title><rect x="887.2" y="1617" width="1.1" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="890.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/glassfish/jersey/message/internal/WriterInterceptorExecutor:::proceed (1 samples, 0.09%)</title><rect x="556.4" y="881" width="1.1" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="559.45" 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.09%)</title><rect x="734.8" y="1777" width="1.0" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="737.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/http/HttpParser:::parseHeaders (1 samples, 0.09%)</title><rect x="717.2" y="1521" width="1.0" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="720.17" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/inject/Providers:::mergeAndSortRankedProviders (1 samples, 0.09%)</title><rect x="932.8" y="913" width="1.1" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text text-anchor="" x="935.85" 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/MediaType:::hashCode (1 samples, 0.09%)</title><rect x="1117.4" y="641" width="1.1" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text text-anchor="" x="1120.42" 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/server/internal/routing/MethodSelectingRouter$ConsumesProducesAcceptor:::isConsumable (1 samples, 0.09%)</title><rect x="938.0" y="801" width="1.1" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="941.03" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.09%)</title><rect x="952.5" y="385" width="1.1" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="955.55" 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>Lch/qos/logback/core/UnsynchronizedAppenderBase:::doAppend (1 samples, 0.09%)</title><rect x="10.0" y="1473" width="1.0" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/servlet/ServletContainer:::service (4 samples, 0.35%)</title><rect x="871.7" y="1649" width="4.1" height="15.0" fill="rgb(88,234,88)" rx="2" ry="2" />
<text text-anchor="" x="874.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>Lorg/eclipse/jetty/util/thread/QueuedThreadPool:::runJob (113 samples, 9.93%)</title><rect x="432.0" y="1665" width="117.2" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text text-anchor="" x="435.02" y="1675.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>Lorg/eclipse/jetty/io/FillInterest:::register (4 samples, 0.35%)</title><rect x="871.7" y="1809" width="4.1" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text text-anchor="" x="874.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>sock_sendmsg (1 samples, 0.09%)</title><rect x="1027.2" y="1681" width="1.0" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="1030.21" 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 (4 samples, 0.35%)</title><rect x="620.7" y="929" width="4.2" height="15.0" fill="rgb(88,234,88)" rx="2" ry="2" />
<text text-anchor="" x="623.74" 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>sock_read_iter (1 samples, 0.09%)</title><rect x="885.1" y="1665" width="1.1" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="888.15" 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/Formatter:::toString (1 samples, 0.09%)</title><rect x="688.1" y="1201" width="1.1" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text text-anchor="" x="691.14" 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/glassfish/jersey/server/internal/inject/AbstractContainerRequestValueFactory:::getContainerRequest (1 samples, 0.09%)</title><rect x="1018.9" y="833" width="1.0" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text text-anchor="" x="1021.91" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Formatter:::checkText (1 samples, 0.09%)</title><rect x="1068.7" y="1009" width="1.0" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1071.68" 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/Utilities:::createService (1 samples, 0.09%)</title><rect x="781.5" y="753" width="1.0" height="15.0" fill="rgb(65,213,65)" rx="2" ry="2" />
<text text-anchor="" x="784.46" 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/jersey/internal/util/PropertiesHelper:::getValue (10 samples, 0.88%)</title><rect x="1102.9" y="865" width="10.4" height="15.0" fill="rgb(83,231,83)" rx="2" ry="2" />
<text text-anchor="" x="1105.90" 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/ApplicationHandler:::handle (1 samples, 0.09%)</title><rect x="1008.5" y="1121" width="1.1" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="1011.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>Lorg/jvnet/hk2/internal/FactoryCreator:::dispose (5 samples, 0.44%)</title><rect x="412.3" y="1617" width="5.2" height="15.0" fill="rgb(77,189,189)" rx="2" ry="2" />
<text text-anchor="" x="415.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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getService (1 samples, 0.09%)</title><rect x="785.6" y="801" width="1.0" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="788.61" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.35%)</title><rect x="1183.8" y="1377" width="4.1" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="1186.78" 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>tcp_transmit_skb (2 samples, 0.18%)</title><rect x="798.0" y="481" width="2.1" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="801.05" 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/lang/AbstractStringBuilder:::append (1 samples, 0.09%)</title><rect x="503.6" y="769" width="1.0" height="15.0" fill="rgb(78,191,191)" rx="2" ry="2" />
<text text-anchor="" x="506.57" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (2 samples, 0.18%)</title><rect x="787.7" y="913" width="2.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="790.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>nf_conntrack_in (1 samples, 0.09%)</title><rect x="1149.6" y="881" width="1.0" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="1152.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>native_write_msr_safe (8 samples, 0.70%)</title><rect x="226.7" y="1697" width="8.3" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="229.71" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (2 samples, 0.18%)</title><rect x="732.7" y="1665" width="2.1" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="735.72" 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/jvnet/hk2/internal/PerLookupContext:::findOrCreate (2 samples, 0.18%)</title><rect x="989.9" y="945" width="2.1" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text text-anchor="" x="992.88" 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/jvnet/hk2/internal/ServiceHandleImpl:::getService (2 samples, 0.18%)</title><rect x="671.5" y="833" width="2.1" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text text-anchor="" x="674.55" 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/InboundMessageContext:::header (1 samples, 0.09%)</title><rect x="839.5" y="1073" width="1.1" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="842.53" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (1 samples, 0.09%)</title><rect x="410.2" y="1617" width="1.1" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="413.25" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/routing/MethodSelectingRouter$3:::apply (2 samples, 0.18%)</title><rect x="943.2" y="897" width="2.1" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text text-anchor="" x="946.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/jvnet/hk2/internal/CacheKey:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="820.9" y="561" width="1.0" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="823.86" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/jaxrs/cfg/AnnotationBundleKey:::equals (1 samples, 0.09%)</title><rect x="659.1" y="657" width="1.0" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text text-anchor="" x="662.10" 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/eclipse/jetty/server/HttpConnection:::parseRequestBuffer (1 samples, 0.09%)</title><rect x="974.3" y="465" width="1.1" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text text-anchor="" x="977.32" 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>x86_pmu_enable (2 samples, 0.18%)</title><rect x="876.9" y="1361" width="2.0" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="879.85" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::put (2 samples, 0.18%)</title><rect x="943.2" y="801" width="2.1" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="946.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>sys_writev (1 samples, 0.09%)</title><rect x="560.6" y="1649" width="1.0" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="563.60" 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>Interpreter (120 samples, 10.54%)</title><rect x="745.2" y="1681" width="124.4" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text text-anchor="" x="748.17" y="1691.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/jvnet/hk2/internal/ClazzCreator:::resolveAllDependencies (1 samples, 0.09%)</title><rect x="864.4" y="609" width="1.0" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text text-anchor="" x="867.41" 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/message/internal/InboundMessageContext:::header (3 samples, 0.26%)</title><rect x="677.8" y="1073" width="3.1" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="680.77" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/uri/internal/JerseyUriBuilder:::schemeSpecificPart (1 samples, 0.09%)</title><rect x="555.4" y="1121" width="1.0" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="558.41" 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 (1 samples, 0.09%)</title><rect x="796.0" y="433" width="1.0" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="798.98" 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>Parse::do_all_blocks (4 samples, 0.35%)</title><rect x="187.3" y="1585" width="4.2" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="190.31" 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>Ljavax/ws/rs/core/AbstractMultivaluedMap:::get (1 samples, 0.09%)</title><rect x="24.5" y="737" width="1.1" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="27.52" 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>itable stub (1 samples, 0.09%)</title><rect x="826.0" y="993" width="1.1" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" />
<text text-anchor="" x="829.05" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/RuntimeException:::&lt;init&gt; (7 samples, 0.62%)</title><rect x="447.6" y="1025" width="7.2" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="450.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>__ip_local_out (1 samples, 0.09%)</title><rect x="421.7" y="1553" width="1.0" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="424.65" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/uri/internal/UriParser:::parseHierarchicalUri (2 samples, 0.18%)</title><rect x="617.6" y="1089" width="2.1" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="620.63" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.09%)</title><rect x="499.4" y="785" width="1.1" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="502.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/eclipse/jetty/servlet/ServletHandler$CachedChain:::doFilter (82 samples, 7.21%)</title><rect x="605.2" y="1217" width="85.0" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text text-anchor="" x="608.18" y="1227.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>Lio/dropwizard/jetty/NonblockingServletHolder:::handle (4 samples, 0.35%)</title><rect x="871.7" y="1697" width="4.1" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="874.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>__vfs_write (2 samples, 0.18%)</title><rect x="113.7" y="1553" width="2.1" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="116.69" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rcu_irq_enter (1 samples, 0.09%)</title><rect x="1062.5" y="817" width="1.0" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="1065.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>Lorg/glassfish/jersey/server/internal/routing/MethodSelectingRouter$ConsumesProducesAcceptor:::isConsumable (4 samples, 0.35%)</title><rect x="1085.3" y="801" width="4.1" height="15.0" fill="rgb(94,206,206)" rx="2" ry="2" />
<text text-anchor="" x="1088.27" 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>PhaseChaitin::Register_Allocate (14 samples, 1.23%)</title><rect x="195.6" y="1697" width="14.5" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" />
<text text-anchor="" x="198.61" 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.09%)</title><rect x="746.2" y="1281" width="1.0" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="749.20" 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>perf_pmu_enable.part.89 (1 samples, 0.09%)</title><rect x="417.5" y="1633" width="1.0" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="420.50" 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/HttpChannel:::sendResponse (6 samples, 0.53%)</title><rect x="950.5" y="737" width="6.2" height="15.0" fill="rgb(102,212,212)" rx="2" ry="2" />
<text text-anchor="" x="953.47" 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>InstanceKlass::oop_oop_iterate_nv (4 samples, 0.35%)</title><rect x="309.7" y="1777" width="4.1" height="15.0" fill="rgb(180,180,51)" rx="2" ry="2" />
<text text-anchor="" x="312.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/StringBuilder:::toString (1 samples, 0.09%)</title><rect x="688.1" y="1185" width="1.1" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="691.14" 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/glassfish/jersey/process/internal/RequestScope:::findOrCreate (2 samples, 0.18%)</title><rect x="781.5" y="833" width="2.0" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text text-anchor="" x="784.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>Lcom/codahale/metrics/ExponentiallyDecayingReservoir:::update (1 samples, 0.09%)</title><rect x="601.0" y="1345" width="1.1" height="15.0" fill="rgb(57,172,172)" rx="2" ry="2" />
<text text-anchor="" x="604.04" 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/LinkedList$Node:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="783.5" y="801" width="1.1" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="786.53" 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>G1RootProcessor::evacuate_roots (2 samples, 0.18%)</title><rect x="347.0" y="1777" width="2.1" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text text-anchor="" x="349.99" 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/codahale/metrics/Counter:::dec (1 samples, 0.09%)</title><rect x="438.2" y="1361" width="1.1" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="441.24" 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/eclipse/jetty/io/AbstractConnection$ReadCallback:::succeeded (25 samples, 2.20%)</title><rect x="10.0" y="1569" width="25.9" height="15.0" fill="rgb(107,253,107)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1579.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>pthread_cond_signal@@GLIBC_2.3.2 (1 samples, 0.09%)</title><rect x="416.5" y="1569" width="1.0" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="419.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>__schedule (2 samples, 0.18%)</title><rect x="1028.2" y="1697" width="2.1" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="1031.24" 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>ip_rcv (1 samples, 0.09%)</title><rect x="642.5" y="241" width="1.1" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="645.51" 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>__ip_local_out (1 samples, 0.09%)</title><rect x="648.7" y="673" width="1.1" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="651.73" 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/message/internal/MessageBodyFactory:::getMessageBodyReader (2 samples, 0.18%)</title><rect x="970.2" y="705" width="2.0" height="15.0" fill="rgb(90,201,201)" rx="2" ry="2" />
<text text-anchor="" x="973.18" 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/glassfish/jersey/server/internal/routing/RoutingStage:::apply (3 samples, 0.26%)</title><rect x="1014.8" y="945" width="3.1" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1017.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>Ljava/nio/channels/spi/AbstractInterruptibleChannel:::begin (1 samples, 0.09%)</title><rect x="1097.7" y="577" width="1.1" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="1100.72" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (2 samples, 0.18%)</title><rect x="1174.4" y="1617" width="2.1" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="1177.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 (12 samples, 1.05%)</title><rect x="653.9" y="865" width="12.5" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="656.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>Lorg/eclipse/jetty/io/ManagedSelector$SelectorProducer:::produce (2 samples, 0.18%)</title><rect x="553.3" y="1617" width="2.1" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text text-anchor="" x="556.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>jlong_disjoint_arraycopy (2 samples, 0.18%)</title><rect x="526.4" y="769" width="2.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="529.38" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (1 samples, 0.09%)</title><rect x="735.8" y="1601" width="1.1" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="738.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>DirtyCardQueueSet::apply_closure_to_completed_buffer (2 samples, 0.18%)</title><rect x="324.2" y="1729" width="2.1" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="327.18" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (4 samples, 0.35%)</title><rect x="389.5" y="1713" width="4.2" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="392.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>perf_event_context_sched_in (3 samples, 0.26%)</title><rect x="724.4" y="1633" width="3.1" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="727.43" 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/atomic/AtomicInteger:::decrementAndGet (1 samples, 0.09%)</title><rect x="987.8" y="1041" width="1.0" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="990.80" 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/HashMap:::tableSizeFor (1 samples, 0.09%)</title><rect x="978.5" y="417" width="1.0" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="981.47" 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/jvnet/hk2/internal/ClazzCreator:::resolveAllDependencies (4 samples, 0.35%)</title><rect x="1126.7" y="593" width="4.2" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text text-anchor="" x="1129.75" 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>JavaThread::run (25 samples, 2.20%)</title><rect x="10.0" y="1809" width="25.9" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >J..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/ConcurrentHashMap:::get (1 samples, 0.09%)</title><rect x="990.9" y="849" width="1.1" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="993.91" 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.09%)</title><rect x="746.2" y="1585" width="1.0" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="749.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>sys_futex (1 samples, 0.09%)</title><rect x="61.8" y="1793" width="1.1" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="64.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>nmi_handle (1 samples, 0.09%)</title><rect x="384.3" y="1473" width="1.1" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="387.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>entry_SYSCALL_64_fastpath (1 samples, 0.09%)</title><rect x="496.3" y="577" width="1.0" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="499.31" 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>ttwu_do_activate.constprop.90 (1 samples, 0.09%)</title><rect x="410.2" y="1665" width="1.1" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="413.25" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (2 samples, 0.18%)</title><rect x="881.0" y="1617" width="2.1" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="884.00" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (1 samples, 0.09%)</title><rect x="412.3" y="1345" width="1.1" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="415.32" 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/text/SimpleDateFormat:::format (4 samples, 0.35%)</title><rect x="38.0" y="1745" width="4.1" height="15.0" fill="rgb(71,220,71)" rx="2" ry="2" />
<text text-anchor="" x="41.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>vtable stub (1 samples, 0.09%)</title><rect x="1122.6" y="657" width="1.0" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text text-anchor="" x="1125.60" 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>Type::meet_helper (1 samples, 0.09%)</title><rect x="191.5" y="1537" width="1.0" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text text-anchor="" x="194.46" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (12 samples, 1.05%)</title><rect x="561.6" y="1761" width="12.5" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text text-anchor="" x="564.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>sys_writev (1 samples, 0.09%)</title><rect x="825.0" y="961" width="1.0" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="828.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>Lsun/util/locale/provider/DecimalFormatSymbolsProviderImpl:::getInstance (1 samples, 0.09%)</title><rect x="919.4" y="961" width="1.0" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text text-anchor="" x="922.37" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (1 samples, 0.09%)</title><rect x="840.6" y="977" width="1.0" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="843.56" 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>Lcom/fasterxml/jackson/databind/ObjectReader:::forType (2 samples, 0.18%)</title><rect x="655.0" y="657" width="2.0" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="657.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>[unknown] (4 samples, 0.35%)</title><rect x="309.7" y="1809" width="4.1" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" />
<text text-anchor="" x="312.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>perf_event_context_sched_in (2 samples, 0.18%)</title><rect x="309.7" y="1601" width="2.0" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="312.67" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/core/json/ByteSourceJsonBootstrapper:::constructParser (1 samples, 0.09%)</title><rect x="511.9" y="609" width="1.0" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="514.86" 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/internal/util/collection/KeyComparatorHashMap:::hash (1 samples, 0.09%)</title><rect x="529.5" y="993" width="1.0" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="532.49" 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>JavaThread::run (42 samples, 3.69%)</title><rect x="192.5" y="1809" width="43.5" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="195.50" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Java..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/CharacterDataLatin1:::toLowerCase (1 samples, 0.09%)</title><rect x="943.2" y="689" width="1.1" height="15.0" fill="rgb(91,203,203)" rx="2" ry="2" />
<text text-anchor="" x="946.22" 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>native_write_cr2 (1 samples, 0.09%)</title><rect x="327.3" y="1521" width="1.0" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="330.29" 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>pipe_write (2 samples, 0.18%)</title><rect x="113.7" y="1521" width="2.1" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="116.69" 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>[unknown] (4 samples, 0.35%)</title><rect x="871.7" y="1457" width="4.1" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" />
<text text-anchor="" x="874.67" 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/MediaTypeProvider:::toString (1 samples, 0.09%)</title><rect x="644.6" y="689" width="1.0" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text text-anchor="" x="647.59" 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/regex/Pattern:::compile (5 samples, 0.44%)</title><rect x="1107.0" y="785" width="5.2" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text text-anchor="" x="1110.05" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/uri/internal/JerseyUriBuilder:::uri (1 samples, 0.09%)</title><rect x="555.4" y="1153" width="1.0" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="558.41" 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>native_flush_tlb_others (1 samples, 0.09%)</title><rect x="397.8" y="1697" width="1.0" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="400.80" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_iterate (1 samples, 0.09%)</title><rect x="840.6" y="865" width="1.0" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="843.56" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/module/afterburner/deser/SuperSonicBeanDeserializer:::deserialize (1 samples, 0.09%)</title><rect x="509.8" y="625" width="1.0" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text text-anchor="" x="512.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>LinearScan::sort_intervals_after_allocation (1 samples, 0.09%)</title><rect x="163.5" y="1649" width="1.0" height="15.0" fill="rgb(216,216,64)" rx="2" ry="2" />
<text text-anchor="" x="166.46" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (1 samples, 0.09%)</title><rect x="46.3" y="1585" width="1.0" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="49.29" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap:::putVal (1 samples, 0.09%)</title><rect x="10.0" y="1281" width="1.0" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>futex_wait (1 samples, 0.09%)</title><rect x="425.8" y="1745" width="1.0" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="428.80" 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>do_readv_writev (1 samples, 0.09%)</title><rect x="577.2" y="1713" width="1.0" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="580.19" 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:::getInjecteeDescriptor (1 samples, 0.09%)</title><rect x="989.9" y="849" width="1.0" height="15.0" fill="rgb(54,168,168)" rx="2" ry="2" />
<text text-anchor="" x="992.88" 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/server/internal/MappableExceptionWrapperInterceptor:::aroundReadFrom (1 samples, 0.09%)</title><rect x="1008.5" y="769" width="1.1" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="1011.54" 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/lang/String:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="501.5" y="657" width="1.0" height="15.0" fill="rgb(92,204,204)" rx="2" ry="2" />
<text text-anchor="" x="504.49" 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/glassfish/jersey/servlet/WebComponent:::service (3 samples, 0.26%)</title><rect x="556.4" y="1153" width="3.2" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="559.45" 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>native_write_msr_safe (4 samples, 0.35%)</title><rect x="1032.4" y="1793" width="4.1" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="1035.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>Lorg/eclipse/jetty/servlet/ServletHandler:::doHandle (93 samples, 8.17%)</title><rect x="1054.2" y="1313" width="96.4" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text text-anchor="" x="1057.17" y="1323.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>inet_sendmsg (2 samples, 0.18%)</title><rect x="421.7" y="1681" width="2.0" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="424.65" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.18%)</title><rect x="384.3" y="1665" width="2.1" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="387.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/eclipse/jetty/server/HttpInput:::addContent (1 samples, 0.09%)</title><rect x="818.8" y="369" width="1.0" height="15.0" fill="rgb(55,169,169)" rx="2" ry="2" />
<text text-anchor="" x="821.79" 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>Ljavax/ws/rs/core/AbstractMultivaluedMap:::getValues (1 samples, 0.09%)</title><rect x="993.0" y="1089" width="1.0" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text text-anchor="" x="995.99" 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/concurrent/locks/ReentrantReadWriteLock$ReadLock:::unlock (1 samples, 0.09%)</title><rect x="672.6" y="785" width="1.0" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text text-anchor="" x="675.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>Ljava/util/concurrent/locks/LockSupport:::unpark (1 samples, 0.09%)</title><rect x="432.0" y="1361" width="1.1" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="435.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>Lorg/glassfish/jersey/server/ContainerFilteringStage:::apply (2 samples, 0.18%)</title><rect x="1081.1" y="945" width="2.1" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" />
<text text-anchor="" x="1084.12" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_Thread::thread (1 samples, 0.09%)</title><rect x="1054.2" y="1185" width="1.0" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="1057.17" 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>finish_task_switch (1 samples, 0.09%)</title><rect x="971.2" y="465" width="1.0" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="974.21" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (1 samples, 0.09%)</title><rect x="1149.6" y="1073" width="1.0" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="1152.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>Lorg/glassfish/jersey/message/internal/CommittingOutputStream:::commit (2 samples, 0.18%)</title><rect x="21.4" y="865" width="2.1" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="24.41" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/uri/internal/JerseyUriBuilder:::schemeSpecificPart (11 samples, 0.97%)</title><rect x="605.2" y="1105" width="11.4" height="15.0" fill="rgb(59,174,174)" rx="2" ry="2" />
<text text-anchor="" x="608.18" 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/hibernate/validator/internal/engine/ValidationContext:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="1114.3" y="801" width="1.0" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="1117.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>Lorg/eclipse/jetty/util/ArrayTrie:::getBest (1 samples, 0.09%)</title><rect x="1004.4" y="1489" width="1.0" height="15.0" fill="rgb(103,213,213)" rx="2" ry="2" />
<text text-anchor="" x="1007.39" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_Throwable::fill_in_stack_trace (4 samples, 0.35%)</title><rect x="449.6" y="897" width="4.2" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" />
<text text-anchor="" x="452.65" 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>__perf_event_task_sched_in (2 samples, 0.18%)</title><rect x="400.9" y="1553" width="2.1" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="403.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>schedule (2 samples, 0.18%)</title><rect x="888.3" y="1713" width="2.0" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="891.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>schedule (4 samples, 0.35%)</title><rect x="1165.1" y="1729" width="4.2" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="1168.11" 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/util/regex/Pattern$BmpCharProperty:::match (1 samples, 0.09%)</title><rect x="936.0" y="833" width="1.0" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text text-anchor="" x="938.96" 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:::internalGetInjecteeDescriptor (1 samples, 0.09%)</title><rect x="1123.6" y="593" width="1.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1126.64" 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/SystemDescriptor:::invokeInstanceListeners (1 samples, 0.09%)</title><rect x="472.5" y="785" width="1.0" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="475.46" 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:::getInjectionResolverForInjectee (1 samples, 0.09%)</title><rect x="990.9" y="881" width="1.1" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="993.91" 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/HttpHeaderReader:::nextToken (1 samples, 0.09%)</title><rect x="681.9" y="945" width="1.1" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="684.92" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/jaxrs/base/ProviderBase:::writeTo (1 samples, 0.09%)</title><rect x="1095.6" y="785" width="1.1" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text text-anchor="" x="1098.64" 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>ObjArrayKlass::allocate (1 samples, 0.09%)</title><rect x="609.3" y="849" width="1.1" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="612.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>vfs_read (1 samples, 0.09%)</title><rect x="885.1" y="1713" width="1.1" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="888.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>Lorg/eclipse/jetty/util/IteratingCallback:::processing (5 samples, 0.44%)</title><rect x="493.2" y="689" width="5.2" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text text-anchor="" x="496.20" 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>end_repeat_nmi (1 samples, 0.09%)</title><rect x="719.2" y="1569" width="1.1" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="722.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>__tcp_push_pending_frames (1 samples, 0.09%)</title><rect x="869.6" y="1505" width="1.0" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="872.60" 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>nmethod::get_deopt_original_pc (1 samples, 0.09%)</title><rect x="736.9" y="1761" width="1.0" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text text-anchor="" x="739.87" 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 (2 samples, 0.18%)</title><rect x="115.8" y="1681" width="2.0" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" />
<text text-anchor="" x="118.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>mark_wake_futex (1 samples, 0.09%)</title><rect x="416.5" y="1489" width="1.0" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="419.47" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/WriterInterceptorExecutor:::proceed (2 samples, 0.18%)</title><rect x="790.8" y="897" width="2.1" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="793.79" 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/ServerRuntime$Responder$1:::getOutputStream (2 samples, 0.18%)</title><rect x="644.6" y="817" width="2.1" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="647.59" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.09%)</title><rect x="364.6" y="1649" width="1.1" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="367.62" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.09%)</title><rect x="871.7" y="1425" width="1.0" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="874.67" 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>Lsun/reflect/GeneratedMethodAccessor12:::invoke (1 samples, 0.09%)</title><rect x="972.2" y="625" width="1.1" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text text-anchor="" x="975.25" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (1 samples, 0.09%)</title><rect x="718.2" y="1553" width="1.0" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="721.21" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/http/HttpParser:::parseNext (5 samples, 0.44%)</title><rect x="1150.6" y="1521" width="5.2" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text text-anchor="" x="1153.60" 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>tcp_transmit_skb (1 samples, 0.09%)</title><rect x="1037.6" y="1585" width="1.0" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="1040.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>pthread_cond_wait@@GLIBC_2.3.2 (9 samples, 0.79%)</title><rect x="48.4" y="1809" width="9.3" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" />
<text text-anchor="" x="51.37" 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>nf_hook_slow (1 samples, 0.09%)</title><rect x="1040.7" y="1537" width="1.0" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="1043.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>tcp_push (1 samples, 0.09%)</title><rect x="1037.6" y="1633" width="1.0" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="1040.57" 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_sendmsg (1 samples, 0.09%)</title><rect x="1037.6" y="1649" width="1.0" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="1040.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>Lorg/glassfish/jersey/message/internal/ReaderInterceptorExecutor:::proceed (3 samples, 0.26%)</title><rect x="509.8" y="769" width="3.1" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text text-anchor="" x="512.79" 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>Lch/qos/logback/core/AsyncAppenderBase:::put (1 samples, 0.09%)</title><rect x="432.0" y="1441" width="1.1" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="435.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>Lorg/glassfish/jersey/server/ContainerFilteringStage:::apply (3 samples, 0.26%)</title><rect x="624.9" y="929" width="3.1" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text text-anchor="" x="627.89" 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>do_futex (4 samples, 0.35%)</title><rect x="368.8" y="1729" width="4.1" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="371.77" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Unsafe_Unpark (1 samples, 0.09%)</title><rect x="597.9" y="1329" width="1.1" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="600.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>Lch/qos/logback/core/AsyncAppenderBase:::append (2 samples, 0.18%)</title><rect x="854.0" y="1473" width="2.1" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text text-anchor="" x="857.04" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/model/internal/ResourceMethodInvocationHandlerFactory$1:::invoke (1 samples, 0.09%)</title><rect x="860.3" y="865" width="1.0" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="863.26" 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>__GI___writev (1 samples, 0.09%)</title><rect x="718.2" y="1777" width="1.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="721.21" 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.18%)</title><rect x="1028.2" y="1665" width="2.1" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="1031.24" 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/jvnet/hk2/internal/ClazzCreator:::create (5 samples, 0.44%)</title><rect x="1136.1" y="913" width="5.2" height="15.0" fill="rgb(104,214,214)" rx="2" ry="2" />
<text text-anchor="" x="1139.08" 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>do_nmi (1 samples, 0.09%)</title><rect x="578.2" y="1537" width="1.1" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="581.22" 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/HttpChannel:::handle (9 samples, 0.79%)</title><rect x="1011.7" y="1553" width="9.3" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text text-anchor="" x="1014.65" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arrayof_jint_fill (1 samples, 0.09%)</title><rect x="635.3" y="881" width="1.0" height="15.0" fill="rgb(202,54,54)" rx="2" ry="2" />
<text text-anchor="" x="638.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>Lcom/fasterxml/jackson/databind/ObjectReader:::&lt;init&gt; (2 samples, 0.18%)</title><rect x="655.0" y="625" width="2.0" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text text-anchor="" x="657.96" 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/AbstractList:::listIterator (1 samples, 0.09%)</title><rect x="472.5" y="753" width="1.0" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="475.46" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (1 samples, 0.09%)</title><rect x="643.6" y="673" width="1.0" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="646.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>Lorg/glassfish/jersey/process/internal/RequestScope$Instance:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="14.1" y="1073" width="1.1" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text text-anchor="" x="17.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>Interpreter (1 samples, 0.09%)</title><rect x="363.6" y="1633" width="1.0" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="366.59" 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/jaxrs/base/ProviderBase:::readFrom (4 samples, 0.35%)</title><rect x="1119.5" y="673" width="4.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1122.49" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (1 samples, 0.09%)</title><rect x="364.6" y="1489" width="1.1" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="367.62" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (2 samples, 0.18%)</title><rect x="326.3" y="1537" width="2.0" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="329.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>__schedule (3 samples, 0.26%)</title><rect x="336.6" y="1681" width="3.1" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="339.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>do_iter_readv_writev (3 samples, 0.26%)</title><rect x="1039.6" y="1729" width="3.2" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="1042.65" 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/util/regex/Pattern$Branch:::match (1 samples, 0.09%)</title><rect x="922.5" y="929" width="1.0" height="15.0" fill="rgb(58,208,58)" rx="2" ry="2" />
<text text-anchor="" x="925.48" 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/util/thread/Locker:::lock (1 samples, 0.09%)</title><rect x="902.8" y="1409" width="1.0" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="905.78" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpChannelOverHttp:::recycle (1 samples, 0.09%)</title><rect x="752.4" y="1489" width="1.1" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="755.43" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (1 samples, 0.09%)</title><rect x="412.3" y="1489" width="1.1" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="415.32" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/CommonProperties:::getValue (1 samples, 0.09%)</title><rect x="646.7" y="881" width="1.0" height="15.0" fill="rgb(81,194,194)" rx="2" ry="2" />
<text text-anchor="" x="649.66" 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:::create (4 samples, 0.35%)</title><rect x="517.0" y="609" width="4.2" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="520.05" 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/Collections:::sort (1 samples, 0.09%)</title><rect x="624.9" y="897" width="1.0" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="627.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/handler/ContextHandler:::doScope (9 samples, 0.79%)</title><rect x="1011.7" y="1377" width="9.3" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text text-anchor="" x="1014.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>Lsun/nio/ch/EPollArrayWrapper:::epollWait (1 samples, 0.09%)</title><rect x="706.8" y="1505" width="1.0" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
<text text-anchor="" x="709.80" 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>[unknown] (12 samples, 1.05%)</title><rect x="368.8" y="1809" width="12.4" height="15.0" fill="rgb(252,127,127)" rx="2" ry="2" />
<text text-anchor="" x="371.77" 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_write_iter (2 samples, 0.18%)</title><rect x="886.2" y="1713" width="2.1" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="889.19" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java-?/Scheduler-1511180072 (5 samples, 0.44%)</title><rect x="363.6" y="1857" width="5.2" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text text-anchor="" x="366.59" 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/codahale/metrics/Timer:::update (1 samples, 0.09%)</title><rect x="856.1" y="1393" width="1.1" height="15.0" fill="rgb(108,219,219)" rx="2" ry="2" />
<text text-anchor="" x="859.12" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (2 samples, 0.18%)</title><rect x="271.3" y="1793" width="2.1" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="274.30" 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>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.35%)</title><rect x="1043.8" y="1809" width="4.1" height="15.0" fill="rgb(235,100,100)" rx="2" ry="2" />
<text text-anchor="" x="1046.80" 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/internal/AbstractJavaResourceMethodDispatcher:::invoke (2 samples, 0.18%)</title><rect x="1114.3" y="881" width="2.1" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="1117.31" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_iter_readv_writev (1 samples, 0.09%)</title><rect x="648.7" y="849" width="1.1" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="651.73" 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>Lcom/codahale/metrics/LongAdder:::add (1 samples, 0.09%)</title><rect x="962.9" y="737" width="1.1" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="965.92" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java-?/Gang_worker#0_(Parallel_GC_Threads) (23 samples, 2.02%)</title><rect x="262.0" y="1857" width="23.8" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text text-anchor="" x="264.97" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (1 samples, 0.09%)</title><rect x="723.4" y="1793" width="1.0" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="726.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>Lch/qos/logback/core/OutputStreamAppender:::subAppend (50 samples, 4.39%)</title><rect x="63.9" y="1633" width="51.9" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="66.92" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lch/q..</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.09%)</title><rect x="556.4" y="801" width="1.1" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text text-anchor="" x="559.45" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/SystemDescriptor:::create (1 samples, 0.09%)</title><rect x="1018.9" y="641" width="1.0" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="1021.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>rcu_nmi_exit (1 samples, 0.09%)</title><rect x="170.7" y="1553" width="1.1" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="173.72" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (2 samples, 0.18%)</title><rect x="105.4" y="1313" width="2.1" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="108.40" 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>futex_wait_queue_me (3 samples, 0.26%)</title><rect x="561.6" y="1681" width="3.1" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="564.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/eclipse/jetty/server/handler/HandlerWrapper:::handle (4 samples, 0.35%)</title><rect x="555.4" y="1409" width="4.2" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="558.41" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (2 samples, 0.18%)</title><rect x="45.3" y="1729" width="2.0" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="48.25" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Formatter:::format (3 samples, 0.26%)</title><rect x="920.4" y="1025" width="3.1" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text text-anchor="" x="923.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>Ljavax/ws/rs/core/AbstractMultivaluedMap:::get (1 samples, 0.09%)</title><rect x="22.4" y="737" width="1.1" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="25.44" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.35%)</title><rect x="53.6" y="1793" width="4.1" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="56.55" 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>tcp_write_xmit (1 samples, 0.09%)</title><rect x="842.6" y="1105" width="1.1" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="845.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>native_write_msr_safe (2 samples, 0.18%)</title><rect x="264.0" y="1745" width="2.1" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="267.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>Lorg/eclipse/jetty/server/HttpChannel:::recycle (1 samples, 0.09%)</title><rect x="752.4" y="1473" width="1.1" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="755.43" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/codahale/metrics/jetty9/InstrumentedHandler:::handle (8 samples, 0.70%)</title><rect x="708.9" y="1425" width="8.3" height="15.0" fill="rgb(95,207,207)" rx="2" ry="2" />
<text text-anchor="" x="711.88" 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>Ljersey/repackaged/com/google/common/net/InetAddresses:::forUriString (13 samples, 1.14%)</title><rect x="447.6" y="1057" width="13.5" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="450.57" 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>__wake_up_sync_key (1 samples, 0.09%)</title><rect x="42.1" y="1681" width="1.1" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="45.14" 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/Formatter:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="919.4" y="1009" width="1.0" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="922.37" 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/model/ResourceMethodInvoker:::apply (21 samples, 1.85%)</title><rect x="962.9" y="961" width="21.8" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="965.92" y="971.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/process/internal/Stages$LinkedStage:::apply (1 samples, 0.09%)</title><rect x="1094.6" y="913" width="1.0" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="1097.60" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>frame::sender_for_compiled_frame (1 samples, 0.09%)</title><rect x="11.0" y="865" width="1.1" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="14.04" 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/CommittingOutputStream:::commit (5 samples, 0.44%)</title><rect x="1096.7" y="865" width="5.2" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1099.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>sys_writev (1 samples, 0.09%)</title><rect x="690.2" y="1329" width="1.0" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="693.21" 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/jvnet/hk2/internal/CacheKey:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="1125.7" y="561" width="1.0" height="15.0" fill="rgb(96,208,208)" rx="2" ry="2" />
<text text-anchor="" x="1128.71" 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>__schedule (4 samples, 0.35%)</title><rect x="389.5" y="1665" width="4.2" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="392.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:::readFrom (3 samples, 0.26%)</title><rect x="861.3" y="801" width="3.1" height="15.0" fill="rgb(102,212,212)" rx="2" ry="2" />
<text text-anchor="" x="864.30" 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>monitorexit_nofpu Runtime1 stub (4 samples, 0.35%)</title><rect x="871.7" y="1713" width="4.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="874.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>perf_pmu_enable.part.89 (1 samples, 0.09%)</title><rect x="871.7" y="1265" width="1.0" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="874.67" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (1 samples, 0.09%)</title><rect x="168.6" y="1697" width="1.1" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="171.65" 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>Lch/qos/logback/core/AsyncAppenderBase:::put (1 samples, 0.09%)</title><rect x="597.9" y="1441" width="1.1" height="15.0" fill="rgb(66,179,179)" rx="2" ry="2" />
<text text-anchor="" x="600.93" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (1 samples, 0.09%)</title><rect x="643.6" y="561" width="1.0" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="646.55" 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/model/ResourceMethodInvoker:::apply (2 samples, 0.18%)</title><rect x="1017.9" y="961" width="2.0" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="1020.87" 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/LinkedList:::listIterator (1 samples, 0.09%)</title><rect x="782.5" y="753" width="1.0" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="785.50" 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/Throwable:::fillInStackTrace (14 samples, 1.23%)</title><rect x="759.7" y="977" width="14.5" height="15.0" fill="rgb(84,197,197)" rx="2" ry="2" />
<text text-anchor="" x="762.68" 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>pthread_cond_wait@@GLIBC_2.3.2 (1 samples, 0.09%)</title><rect x="61.8" y="1841" width="1.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text text-anchor="" x="64.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>sock_sendmsg (1 samples, 0.09%)</title><rect x="496.3" y="481" width="1.0" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="499.31" 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/io/ByteArrayOutputStream:::writeTo (7 samples, 0.62%)</title><rect x="949.4" y="833" width="7.3" height="15.0" fill="rgb(103,213,213)" rx="2" ry="2" />
<text text-anchor="" x="952.44" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.09%)</title><rect x="364.6" y="1681" width="1.1" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="367.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>Lorg/jvnet/hk2/internal/FactoryCreator:::create (1 samples, 0.09%)</title><rect x="864.4" y="721" width="1.0" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="867.41" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.09%)</title><rect x="577.2" y="1665" width="1.0" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="580.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>java_start (10 samples, 0.88%)</title><rect x="275.4" y="1825" width="10.4" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="278.45" 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/RequestLogHandler:::handle (1 samples, 0.09%)</title><rect x="1008.5" y="1489" width="1.1" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="1011.54" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/ServerRuntime$Responder:::processResponse (2 samples, 0.18%)</title><rect x="556.4" y="961" width="2.1" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="559.45" 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/HashMap:::get (1 samples, 0.09%)</title><rect x="716.1" y="1313" width="1.1" height="15.0" fill="rgb(55,169,169)" rx="2" ry="2" />
<text text-anchor="" x="719.13" 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>Compilation::compile_java_method (3 samples, 0.26%)</title><rect x="162.4" y="1697" width="3.1" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="165.43" 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>Ljersey/repackaged/com/google/common/collect/Lists:::newLinkedList (1 samples, 0.09%)</title><rect x="478.7" y="897" width="1.0" height="15.0" fill="rgb(67,180,180)" rx="2" ry="2" />
<text text-anchor="" x="481.68" 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/monitoring/RequestEventImpl$Builder:::build (2 samples, 0.18%)</title><rect x="650.8" y="897" width="2.1" height="15.0" fill="rgb(78,190,190)" rx="2" ry="2" />
<text text-anchor="" x="653.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>Lorg/glassfish/jersey/message/internal/MediaTypeProvider:::valueOf (1 samples, 0.09%)</title><rect x="532.6" y="961" width="1.0" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="535.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>Lsun/nio/ch/SocketChannelImpl:::write (1 samples, 0.09%)</title><rect x="640.4" y="593" width="1.1" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text text-anchor="" x="643.44" 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/message/internal/WriterInterceptorExecutor:::proceed (1 samples, 0.09%)</title><rect x="1095.6" y="897" width="1.1" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="1098.64" 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_cr2 (1 samples, 0.09%)</title><rect x="309.7" y="1505" width="1.0" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="312.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>Lorg/glassfish/jersey/message/internal/WriterInterceptorExecutor$TerminalWriterInterceptor:::invokeWriteTo (1 samples, 0.09%)</title><rect x="948.4" y="801" width="1.0" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="951.40" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (1 samples, 0.09%)</title><rect x="577.2" y="1569" width="1.0" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="580.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>os::javaTimeMillis (1 samples, 0.09%)</title><rect x="32.8" y="1425" width="1.0" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="35.81" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/CharacterDataLatin1:::toUpperCase (1 samples, 0.09%)</title><rect x="89.8" y="1361" width="1.1" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="92.84" 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>entry_SYSCALL_64_fastpath (2 samples, 0.18%)</title><rect x="309.7" y="1745" width="2.0" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="312.67" 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 (6 samples, 0.53%)</title><rect x="218.4" y="1553" width="6.2" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="221.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>sys_epoll_wait (2 samples, 0.18%)</title><rect x="1028.2" y="1777" width="2.1" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="1031.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>flush_tlb_mm_range (1 samples, 0.09%)</title><rect x="397.8" y="1713" width="1.0" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="400.80" 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 (1 samples, 0.09%)</title><rect x="718.2" y="1505" width="1.0" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="721.21" 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>__netif_receive_skb (1 samples, 0.09%)</title><rect x="869.6" y="1281" width="1.0" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="872.60" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (78 samples, 6.85%)</title><rect x="63.9" y="1745" width="80.9" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text text-anchor="" x="66.92" y="1755.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>__dev_queue_xmit (1 samples, 0.09%)</title><rect x="718.2" y="1457" width="1.0" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="721.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>do_futex (1 samples, 0.09%)</title><rect x="38.0" y="1617" width="1.0" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="41.00" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljavax/ws/rs/core/AbstractMultivaluedMap:::putSingle (1 samples, 0.09%)</title><rect x="1094.6" y="833" width="1.0" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="1097.60" 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/WriterInterceptorExecutor$TerminalWriterInterceptor:::invokeWriteTo (2 samples, 0.18%)</title><rect x="790.8" y="801" width="2.1" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="793.79" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (2 samples, 0.18%)</title><rect x="578.2" y="1729" width="2.1" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="581.22" 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/access/jetty/RequestLogImpl:::log (2 samples, 0.18%)</title><rect x="854.0" y="1521" width="2.1" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="857.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>__intel_pmu_enable_all (1 samples, 0.09%)</title><rect x="412.3" y="1329" width="1.1" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="415.32" 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/uri/internal/JerseyUriBuilder:::appendPath (1 samples, 0.09%)</title><rect x="686.1" y="1121" width="1.0" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="689.06" 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>Lcom/fasterxml/jackson/core/json/ByteSourceJsonBootstrapper:::ensureLoaded (1 samples, 0.09%)</title><rect x="818.8" y="577" width="1.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="821.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>Interpreter (10 samples, 0.88%)</title><rect x="1179.6" y="1665" width="10.4" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text text-anchor="" x="1182.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/eclipse/jetty/io/SelectChannelEndPoint:::changeInterests (4 samples, 0.35%)</title><rect x="871.7" y="1761" width="4.1" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="874.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>Ljavax/ws/rs/core/MediaType:::valueOf (1 samples, 0.09%)</title><rect x="29.7" y="1009" width="1.0" height="15.0" fill="rgb(54,169,169)" rx="2" ry="2" />
<text text-anchor="" x="32.70" 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/ServerRuntime$Responder:::processResponse (17 samples, 1.49%)</title><rect x="942.2" y="945" width="17.6" height="15.0" fill="rgb(103,213,213)" rx="2" ry="2" />
<text text-anchor="" x="945.18" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/CommittingOutputStream:::enableBuffering (1 samples, 0.09%)</title><rect x="713.0" y="881" width="1.1" height="15.0" fill="rgb(54,168,168)" rx="2" ry="2" />
<text text-anchor="" x="716.02" 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/Stages$LinkedStage:::apply (2 samples, 0.18%)</title><rect x="943.2" y="913" width="2.1" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="946.22" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ConstantActiveDescriptor:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="989.9" y="817" width="1.0" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="992.88" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/handler/ScopedHandler:::handle (21 samples, 1.85%)</title><rect x="11.0" y="1377" width="21.8" height="15.0" fill="rgb(104,214,214)" rx="2" ry="2" />
<text text-anchor="" x="14.04" y="1387.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>end_repeat_nmi (1 samples, 0.09%)</title><rect x="724.4" y="1553" width="1.1" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="727.43" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_handle (1 samples, 0.09%)</title><rect x="1165.1" y="1537" width="1.1" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="1168.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>frame::sender_for_compiled_frame (1 samples, 0.09%)</title><rect x="918.3" y="865" width="1.1" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="921.33" 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 (6 samples, 0.53%)</title><rect x="653.9" y="785" width="6.2" height="15.0" fill="rgb(104,214,214)" rx="2" ry="2" />
<text text-anchor="" x="656.92" 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>__intel_pmu_enable_all (1 samples, 0.09%)</title><rect x="971.2" y="369" width="1.0" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="974.21" 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/glassfish/jersey/server/model/MethodHandler$ClassBasedMethodHandler:::getInstance (1 samples, 0.09%)</title><rect x="483.9" y="833" width="1.0" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="486.87" 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.09%)</title><rect x="643.6" y="625" width="1.0" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="646.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>Lorg/glassfish/jersey/message/internal/MessageBodyFactory$ModelLookupKey:::hashCode (1 samples, 0.09%)</title><rect x="1117.4" y="657" width="1.1" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="1120.42" 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/StringBuilder:::append (1 samples, 0.09%)</title><rect x="776.3" y="1057" width="1.0" height="15.0" fill="rgb(92,203,203)" rx="2" ry="2" />
<text text-anchor="" x="779.27" 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/util/Formatter:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="1067.6" y="1025" width="1.1" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text text-anchor="" x="1070.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>process_backlog (1 samples, 0.09%)</title><rect x="595.9" y="1441" width="1.0" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="598.85" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fput (1 samples, 0.09%)</title><rect x="141.7" y="1649" width="1.0" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="144.69" 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.18%)</title><rect x="1023.1" y="1649" width="2.0" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="1026.06" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (1 samples, 0.09%)</title><rect x="106.4" y="1217" width="1.1" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="109.43" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap$KeyIterator:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="669.5" y="977" width="1.0" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="672.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/glassfish/jersey/server/ServerRuntime$2:::run (3 samples, 0.26%)</title><rect x="556.4" y="993" width="3.2" height="15.0" fill="rgb(92,204,204)" rx="2" ry="2" />
<text text-anchor="" x="559.45" 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/server/TracingUtils:::initTracingSupport (1 samples, 0.09%)</title><rect x="528.5" y="1073" width="1.0" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="531.45" 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/lang/IllegalArgumentException:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="702.7" y="1057" width="1.0" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="705.65" 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>__GI___writev (3 samples, 0.26%)</title><rect x="797.0" y="689" width="3.1" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text text-anchor="" x="800.01" 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/jvnet/hk2/internal/ThreeThirtyResolver:::resolve (1 samples, 0.09%)</title><rect x="989.9" y="865" width="1.0" height="15.0" fill="rgb(90,201,201)" rx="2" ry="2" />
<text text-anchor="" x="992.88" 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/StringBuilder:::append (1 samples, 0.09%)</title><rect x="465.2" y="1009" width="1.0" height="15.0" fill="rgb(99,209,209)" rx="2" ry="2" />
<text text-anchor="" x="468.20" 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>__local_bh_enable_ip (1 samples, 0.09%)</title><rect x="1022.0" y="1473" width="1.1" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="1025.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>native_write_msr_safe (2 samples, 0.18%)</title><rect x="282.7" y="1745" width="2.1" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="285.71" 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.09%)</title><rect x="796.0" y="561" width="1.0" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="798.98" 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>Lcom/fasterxml/jackson/core/json/UTF8StreamJsonParser:::_isNextTokenNameYes (1 samples, 0.09%)</title><rect x="657.0" y="593" width="1.1" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="660.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>Lorg/eclipse/jetty/io/ArrayByteBufferPool:::release (1 samples, 0.09%)</title><rect x="493.2" y="641" width="1.0" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="496.20" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/servlet/ServletHandler$CachedChain:::doFilter (21 samples, 1.85%)</title><rect x="11.0" y="1297" width="21.8" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text text-anchor="" x="14.04" y="1307.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>nf_hook_slow (1 samples, 0.09%)</title><rect x="1149.6" y="929" width="1.0" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="1152.56" 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/jetty/NonblockingServletHolder:::handle (20 samples, 1.76%)</title><rect x="11.0" y="1201" width="20.8" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="14.04" 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/glassfish/jersey/server/ContainerResponse:::close (4 samples, 0.35%)</title><rect x="708.9" y="929" width="4.1" height="15.0" fill="rgb(68,181,181)" rx="2" ry="2" />
<text text-anchor="" x="711.88" 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/Thread:::interrupted (1 samples, 0.09%)</title><rect x="117.8" y="1649" width="1.1" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="120.84" 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>net_rx_action (1 samples, 0.09%)</title><rect x="590.7" y="1425" width="1.0" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="593.67" 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.18%)</title><rect x="591.7" y="1681" width="2.1" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="594.70" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpChannel:::onCompleted (9 samples, 0.79%)</title><rect x="894.5" y="1521" width="9.3" height="15.0" fill="rgb(103,213,213)" rx="2" ry="2" />
<text text-anchor="" x="897.48" 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/AbstractStringBuilder:::newCapacity (1 samples, 0.09%)</title><rect x="776.3" y="993" width="1.0" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="779.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>Ljersey/repackaged/com/google/common/collect/Sets:::newHashSet (1 samples, 0.09%)</title><rect x="27.6" y="1041" width="1.1" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="30.63" 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/Formatter:::parse (2 samples, 0.18%)</title><rect x="1069.7" y="993" width="2.1" height="15.0" fill="rgb(75,187,187)" rx="2" ry="2" />
<text text-anchor="" x="1072.72" 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/uri/internal/UriParser:::parseComponent (1 samples, 0.09%)</title><rect x="617.6" y="1041" width="1.1" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text text-anchor="" x="620.63" 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/handler/HandlerWrapper:::handle (97 samples, 8.52%)</title><rect x="440.3" y="1393" width="100.6" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="443.32" 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>__schedule (1 samples, 0.09%)</title><rect x="559.6" y="1537" width="1.0" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="562.56" 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/uri/internal/JerseyUriBuilder:::schemeSpecificPart (16 samples, 1.41%)</title><rect x="1056.2" y="1105" width="16.6" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1059.24" 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>schedule (1 samples, 0.09%)</title><rect x="871.7" y="1345" width="1.0" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="874.67" 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/regex/Matcher:::replaceAll (1 samples, 0.09%)</title><rect x="806.3" y="817" width="1.1" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="809.34" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (116 samples, 10.19%)</title><rect x="597.9" y="1841" width="120.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="600.93" y="1851.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>ip_output (1 samples, 0.09%)</title><rect x="796.0" y="321" width="1.0" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="798.98" 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>Lorg/glassfish/jersey/server/ServerRuntime$Responder:::release (1 samples, 0.09%)</title><rect x="809.5" y="945" width="1.0" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text text-anchor="" x="812.46" 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/jvnet/hk2/internal/Utilities:::createService (4 samples, 0.35%)</title><rect x="670.5" y="961" width="4.2" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text text-anchor="" x="673.51" 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>thread_entry (1 samples, 0.09%)</title><rect x="362.5" y="1777" width="1.1" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="365.55" 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$100 (1 samples, 0.09%)</title><rect x="1052.1" y="1441" width="1.0" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="1055.09" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lch/qos/logback/core/UnsynchronizedAppenderBase:::doAppend (50 samples, 4.39%)</title><rect x="63.9" y="1665" width="51.9" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="66.92" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lch/q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_write (1 samples, 0.09%)</title><rect x="63.9" y="1457" width="1.1" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="66.92" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/WriterInterceptorExecutor:::proceed (1 samples, 0.09%)</title><rect x="20.4" y="897" width="1.0" height="15.0" fill="rgb(68,181,181)" rx="2" ry="2" />
<text text-anchor="" x="23.37" 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$4:::apply (5 samples, 0.44%)</title><rect x="1085.3" y="849" width="5.2" height="15.0" fill="rgb(84,197,197)" rx="2" ry="2" />
<text text-anchor="" x="1088.27" 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$CaseInsensitiveComparator:::compare (1 samples, 0.09%)</title><rect x="89.8" y="1409" width="1.1" height="15.0" fill="rgb(105,216,216)" rx="2" ry="2" />
<text text-anchor="" x="92.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>Interpreter (1 samples, 0.09%)</title><rect x="362.5" y="1697" width="1.1" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="365.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>Lorg/jvnet/hk2/internal/IterableProviderImpl:::get (9 samples, 0.79%)</title><rect x="975.4" y="801" width="9.3" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="978.36" 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/internal/Errors$1:::call (6 samples, 0.53%)</title><rect x="708.9" y="1009" width="6.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="711.88" 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 (1 samples, 0.09%)</title><rect x="1037.6" y="1409" width="1.0" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="1040.57" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_handle_irq (1 samples, 0.09%)</title><rect x="57.7" y="1505" width="1.0" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="60.70" 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/AbstractStringBuilder:::append (3 samples, 0.26%)</title><rect x="1103.9" y="769" width="3.1" height="15.0" fill="rgb(93,205,205)" rx="2" ry="2" />
<text text-anchor="" x="1106.94" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/ReaderInterceptorExecutor:::proceed (5 samples, 0.44%)</title><rect x="970.2" y="737" width="5.2" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="973.18" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/core/json/ByteSourceJsonBootstrapper:::constructParser (2 samples, 0.18%)</title><rect x="973.3" y="609" width="2.1" height="15.0" fill="rgb(54,168,168)" rx="2" ry="2" />
<text text-anchor="" x="976.29" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Formatter:::parse (3 samples, 0.26%)</title><rect x="457.9" y="993" width="3.2" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="460.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>nmi_handle (1 samples, 0.09%)</title><rect x="738.9" y="1521" width="1.1" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="741.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>Lorg/glassfish/jersey/message/internal/ReaderInterceptorExecutor$UnCloseableInputStream:::read (2 samples, 0.18%)</title><rect x="973.3" y="561" width="2.1" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="976.29" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_new_array_Java (1 samples, 0.09%)</title><rect x="97.1" y="1505" width="1.0" height="15.0" fill="rgb(252,125,125)" rx="2" ry="2" />
<text text-anchor="" x="100.10" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java-?/VM_Periodic_Task_Thread (20 samples, 1.76%)</title><rect x="368.8" y="1857" width="20.7" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text text-anchor="" x="371.77" 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_Unpark (4 samples, 0.35%)</title><rect x="1023.1" y="1793" width="4.1" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text text-anchor="" x="1026.06" 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/ServiceLocatorImpl:::internalGetService (2 samples, 0.18%)</title><rect x="475.6" y="865" width="2.0" height="15.0" fill="rgb(81,194,194)" rx="2" ry="2" />
<text text-anchor="" x="478.57" 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/SystemDescriptor:::create (1 samples, 0.09%)</title><rect x="28.7" y="929" width="1.0" height="15.0" fill="rgb(93,204,204)" rx="2" ry="2" />
<text text-anchor="" x="31.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>tcp_v4_rcv (1 samples, 0.09%)</title><rect x="577.2" y="1281" width="1.0" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="580.19" 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_write (1 samples, 0.09%)</title><rect x="63.9" y="1473" width="1.1" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="66.92" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lch/qos/logback/access/spi/AccessEvent:::getRequestParameterMap (2 samples, 0.18%)</title><rect x="599.0" y="1393" width="2.0" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="601.96" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::length (1 samples, 0.09%)</title><rect x="1147.5" y="1201" width="1.0" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text text-anchor="" x="1150.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>schedule (6 samples, 0.53%)</title><rect x="168.6" y="1729" width="6.3" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="171.65" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (1 samples, 0.09%)</title><rect x="971.2" y="385" width="1.0" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="974.21" 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>[libc-2.23.so] (4 samples, 0.35%)</title><rect x="719.2" y="1809" width="4.2" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text text-anchor="" x="722.24" 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>java_lang_Throwable::fill_in_stack_trace (4 samples, 0.35%)</title><rect x="607.3" y="897" width="4.1" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="610.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>Lorg/glassfish/jersey/message/internal/MediaTypeProvider:::fromString (1 samples, 0.09%)</title><rect x="1088.4" y="705" width="1.0" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="1091.38" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinearScan::build_intervals (1 samples, 0.09%)</title><rect x="162.4" y="1649" width="1.1" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" />
<text text-anchor="" x="165.43" 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_finish_output (1 samples, 0.09%)</title><rect x="1037.6" y="1521" width="1.0" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="1040.57" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.09%)</title><rect x="1007.5" y="1569" width="1.0" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="1010.50" 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:::internalGetInjecteeDescriptor (1 samples, 0.09%)</title><rect x="820.9" y="593" width="1.0" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text text-anchor="" x="823.86" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Locale:::getDefault (1 samples, 0.09%)</title><rect x="16.2" y="817" width="1.1" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text text-anchor="" x="19.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>x86_pmu_enable (2 samples, 0.18%)</title><rect x="1028.2" y="1617" width="2.1" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="1031.24" 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:::commit (7 samples, 0.62%)</title><rect x="949.4" y="865" width="7.3" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="952.44" 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/internal/process/ReferencesInitializer:::apply (1 samples, 0.09%)</title><rect x="858.2" y="945" width="1.0" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text text-anchor="" x="861.19" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/process/internal/RequestScope$Instance:::remove (4 samples, 0.35%)</title><rect x="871.7" y="1537" width="4.1" height="15.0" fill="rgb(77,189,189)" rx="2" ry="2" />
<text text-anchor="" x="874.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>Lorg/jvnet/hk2/internal/PerLookupContext:::findOrCreate (5 samples, 0.44%)</title><rect x="1136.1" y="945" width="5.2" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="1139.08" 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>thread_entry (116 samples, 10.19%)</title><rect x="597.9" y="1777" width="120.3" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text text-anchor="" x="600.93" y="1787.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>Lorg/jvnet/hk2/internal/ServiceHandleImpl:::getService (5 samples, 0.44%)</title><rect x="412.3" y="1601" width="5.2" height="15.0" fill="rgb(78,190,190)" rx="2" ry="2" />
<text text-anchor="" x="415.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>new_sync_write (2 samples, 0.18%)</title><rect x="45.3" y="1713" width="2.0" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="48.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>Lorg/glassfish/jersey/server/internal/routing/MethodSelectingRouter:::getMethodRouter (2 samples, 0.18%)</title><rect x="631.1" y="817" width="2.1" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text text-anchor="" x="634.11" 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>jlong_disjoint_arraycopy (1 samples, 0.09%)</title><rect x="1115.3" y="769" width="1.1" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text text-anchor="" x="1118.34" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/ReentrantLock$NonfairSync:::lock (1 samples, 0.09%)</title><rect x="1053.1" y="1457" width="1.1" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="1056.13" 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>JavaThread::thread_main_inner (116 samples, 10.19%)</title><rect x="597.9" y="1793" width="120.3" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text text-anchor="" x="600.93" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaThread::th..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getService (2 samples, 0.18%)</title><rect x="1012.7" y="897" width="2.1" height="15.0" fill="rgb(90,201,201)" rx="2" ry="2" />
<text text-anchor="" x="1015.69" 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 (2 samples, 0.18%)</title><rect x="421.7" y="1793" width="2.0" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="424.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>HeapRegion::oops_on_card_seq_iterate_careful (4 samples, 0.35%)</title><rect x="262.0" y="1793" width="4.1" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="264.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>Lorg/glassfish/jersey/internal/util/PropertiesHelper:::getPropertyNameForRuntime (10 samples, 0.88%)</title><rect x="1102.9" y="849" width="10.4" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="1105.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>sys_futex (5 samples, 0.44%)</title><rect x="1164.1" y="1793" width="5.2" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="1167.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>Lorg/glassfish/jersey/process/internal/Stages$LinkedStage:::apply (4 samples, 0.35%)</title><rect x="620.7" y="945" width="4.2" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text text-anchor="" x="623.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>Lorg/glassfish/jersey/uri/internal/UriParser:::parseAuthority (2 samples, 0.18%)</title><rect x="464.2" y="1073" width="2.0" height="15.0" fill="rgb(91,203,203)" rx="2" ry="2" />
<text text-anchor="" x="467.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>perf_event_context_sched_in (1 samples, 0.09%)</title><rect x="871.7" y="1281" width="1.0" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="874.67" 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>Lcom/fasterxml/jackson/databind/ObjectReader:::_bind (1 samples, 0.09%)</title><rect x="972.2" y="641" width="1.1" height="15.0" fill="rgb(78,191,191)" rx="2" ry="2" />
<text text-anchor="" x="975.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>Ljava/util/concurrent/ConcurrentHashMap:::spread (1 samples, 0.09%)</title><rect x="84.7" y="1297" width="1.0" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="87.66" 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>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:::releaseShared (1 samples, 0.09%)</title><rect x="672.6" y="769" width="1.0" height="15.0" fill="rgb(67,180,180)" rx="2" ry="2" />
<text text-anchor="" x="675.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>finish_task_switch (2 samples, 0.18%)</title><rect x="253.7" y="1601" width="2.0" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="256.67" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/servlet/WebComponent:::serviceImpl (67 samples, 5.89%)</title><rect x="1075.9" y="1121" width="69.5" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="1078.94" y="1131.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/jvnet/hk2/internal/ConstantActiveDescriptor:::&lt;init&gt; (2 samples, 0.18%)</title><rect x="978.5" y="513" width="2.0" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="981.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>sock_sendmsg (3 samples, 0.26%)</title><rect x="797.0" y="577" width="3.1" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="800.01" 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/message/internal/MessageBodyFactory:::getMessageBodyWriter (1 samples, 0.09%)</title><rect x="490.1" y="801" width="1.0" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="493.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>Ljava/net/URI$Parser:::parseAuthority (1 samples, 0.09%)</title><rect x="535.7" y="1057" width="1.0" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="538.71" 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:::create (2 samples, 0.18%)</title><rect x="989.9" y="913" width="2.1" height="15.0" fill="rgb(93,204,204)" rx="2" ry="2" />
<text text-anchor="" x="992.88" 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_output (1 samples, 0.09%)</title><rect x="522.2" y="721" width="1.1" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="525.23" 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/ServiceLocatorImpl:::getInjecteeDescriptor (1 samples, 0.09%)</title><rect x="670.5" y="849" width="1.0" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="673.51" 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>ttwu_do_activate.constprop.90 (1 samples, 0.09%)</title><rect x="1041.7" y="1201" width="1.1" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="1044.72" 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>x86_pmu_enable (1 samples, 0.09%)</title><rect x="971.2" y="401" width="1.0" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="974.21" 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/eclipse/jetty/http/PathMap:::isPathWildcardMatch (1 samples, 0.09%)</title><rect x="757.6" y="1313" width="1.0" height="15.0" fill="rgb(68,181,181)" rx="2" ry="2" />
<text text-anchor="" x="760.61" 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/glassfish/jersey/message/internal/MessageBodyFactory:::writeTo (1 samples, 0.09%)</title><rect x="20.4" y="913" width="1.0" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="23.37" 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/Formatter$FormatSpecifier:::print (2 samples, 0.18%)</title><rect x="612.4" y="993" width="2.1" height="15.0" fill="rgb(82,230,82)" rx="2" ry="2" />
<text text-anchor="" x="615.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>do_futex (1 samples, 0.09%)</title><rect x="871.7" y="1393" width="1.0" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="874.67" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_nmi_handler (1 samples, 0.09%)</title><rect x="242.3" y="1505" width="1.0" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="245.27" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.09%)</title><rect x="522.2" y="849" width="1.1" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="525.23" 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 (1 samples, 0.09%)</title><rect x="869.6" y="1569" width="1.0" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="872.60" 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>entry_SYSCALL_64_fastpath (1 samples, 0.09%)</title><rect x="559.6" y="1633" width="1.0" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="562.56" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljersey/repackaged/com/google/common/collect/Iterables:::addAll (1 samples, 0.09%)</title><rect x="932.8" y="881" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="935.85" 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 (1 samples, 0.09%)</title><rect x="577.2" y="1345" width="1.0" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="580.19" 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>autoremove_wake_function (1 samples, 0.09%)</title><rect x="577.2" y="1217" width="1.0" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="580.19" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_iter_readv_writev (1 samples, 0.09%)</title><rect x="735.8" y="1713" width="1.1" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="738.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>__intel_pmu_enable_all (1 samples, 0.09%)</title><rect x="583.4" y="1585" width="1.0" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="586.41" 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/Request:::isHead (1 samples, 0.09%)</title><rect x="1100.8" y="721" width="1.1" height="15.0" fill="rgb(77,189,189)" rx="2" ry="2" />
<text text-anchor="" x="1103.83" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (3 samples, 0.26%)</title><rect x="561.6" y="1729" width="3.1" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="564.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>JavaCalls::call_virtual (78 samples, 6.85%)</title><rect x="63.9" y="1761" width="80.9" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="66.92" y="1771.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>Ljava/lang/String:::getBytes (1 samples, 0.09%)</title><rect x="792.9" y="593" width="1.0" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="795.86" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceHandleImpl:::getService (1 samples, 0.09%)</title><rect x="28.7" y="993" width="1.0" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="31.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>Lorg/glassfish/jersey/server/ServerRuntime$Responder:::writeResponse (5 samples, 0.44%)</title><rect x="708.9" y="945" width="5.2" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="711.88" 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>perf_pmu_enable.part.89 (4 samples, 0.35%)</title><rect x="326.3" y="1617" width="4.1" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="329.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>tcp_transmit_skb (1 samples, 0.09%)</title><rect x="700.6" y="1345" width="1.0" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="703.58" 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>__netif_receive_skb_core (1 samples, 0.09%)</title><rect x="954.6" y="129" width="1.1" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="957.62" 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>Lch/qos/logback/classic/Logger:::isDebugEnabled (1 samples, 0.09%)</title><rect x="692.3" y="1473" width="1.0" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="695.28" 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>Lio/dropwizard/servlets/ThreadNameFilter:::doFilter (95 samples, 8.35%)</title><rect x="441.4" y="1233" width="98.5" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="444.35" y="1243.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>futex_wait (1 samples, 0.09%)</title><rect x="61.8" y="1761" width="1.1" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="64.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>sock_sendmsg (1 samples, 0.09%)</title><rect x="999.2" y="1233" width="1.0" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="1002.21" 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>Lorg/eclipse/jetty/server/HttpConnection:::fillAndParseForContent (1 samples, 0.09%)</title><rect x="818.8" y="481" width="1.0" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="821.79" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.35%)</title><rect x="728.6" y="1777" width="4.1" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="731.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>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.35%)</title><rect x="425.8" y="1809" width="4.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="428.80" 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/InboundMessageContext:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="1142.3" y="1089" width="1.0" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="1145.30" 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>finish_task_switch (2 samples, 0.18%)</title><rect x="578.2" y="1665" width="2.1" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="581.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>Lorg/jvnet/hk2/internal/PerLookupContext:::findOrCreate (1 samples, 0.09%)</title><rect x="864.4" y="657" width="1.0" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="867.41" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>TypeArrayKlass::allocate_common (1 samples, 0.09%)</title><rect x="1059.3" y="865" width="1.1" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text text-anchor="" x="1062.35" 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>__tcp_push_pending_frames (1 samples, 0.09%)</title><rect x="596.9" y="1633" width="1.0" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="599.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>CompileTask::print_compilation_impl (1 samples, 0.09%)</title><rect x="161.4" y="1745" width="1.0" height="15.0" fill="rgb(175,175,50)" rx="2" ry="2" />
<text text-anchor="" x="164.39" 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 (2 samples, 0.18%)</title><rect x="421.7" y="1713" width="2.0" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="424.65" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/inject/EntityParamValueFactoryProvider$EntityValueFactory:::provide (11 samples, 0.97%)</title><rect x="509.8" y="833" width="11.4" height="15.0" fill="rgb(82,195,195)" rx="2" ry="2" />
<text text-anchor="" x="512.79" 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/String:::regionMatches (1 samples, 0.09%)</title><rect x="970.2" y="609" width="1.0" height="15.0" fill="rgb(106,252,106)" rx="2" ry="2" />
<text text-anchor="" x="973.18" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (5 samples, 0.44%)</title><rect x="169.7" y="1649" width="5.2" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="172.68" 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 (5 samples, 0.44%)</title><rect x="1164.1" y="1777" width="5.2" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="1167.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>tcp_push (1 samples, 0.09%)</title><rect x="1027.2" y="1633" width="1.0" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="1030.21" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/jaxrs/base/ProviderBase:::isReadable (1 samples, 0.09%)</title><rect x="971.2" y="625" width="1.0" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text text-anchor="" x="974.21" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/ReentrantReadWriteLock:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="662.2" y="465" width="1.1" height="15.0" fill="rgb(103,213,213)" rx="2" ry="2" />
<text text-anchor="" x="665.21" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (1 samples, 0.09%)</title><rect x="63.9" y="1537" width="1.1" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text text-anchor="" x="66.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>Lorg/glassfish/hk2/utilities/reflection/ReflectionHelper:::getRawClass (1 samples, 0.09%)</title><rect x="820.9" y="545" width="1.0" height="15.0" fill="rgb(80,192,192)" rx="2" ry="2" />
<text text-anchor="" x="823.86" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (1 samples, 0.09%)</title><rect x="411.3" y="1537" width="1.0" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="414.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>ClassLoaderDataGraph::roots_cld_do (3 samples, 0.26%)</title><rect x="277.5" y="1745" width="3.1" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="280.52" 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$KeyIterator:::&lt;init&gt; (3 samples, 0.26%)</title><rect x="67.0" y="1505" width="3.1" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="70.03" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/handler/ScopedHandler:::handle (1 samples, 0.09%)</title><rect x="1008.5" y="1393" width="1.1" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="1011.54" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.09%)</title><rect x="999.2" y="753" width="1.0" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="1002.21" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (3 samples, 0.26%)</title><rect x="561.6" y="1521" width="3.1" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="564.63" 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/jvnet/hk2/internal/ServiceLocatorImpl:::getInjecteeDescriptor (1 samples, 0.09%)</title><rect x="821.9" y="545" width="1.0" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="824.90" 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 (1 samples, 0.09%)</title><rect x="41.1" y="1713" width="1.0" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="44.11" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections:::enumeration (1 samples, 0.09%)</title><rect x="435.1" y="1345" width="1.1" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="438.13" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpChannel:::commit (1 samples, 0.09%)</title><rect x="492.2" y="721" width="1.0" height="15.0" fill="rgb(56,171,171)" rx="2" ry="2" />
<text text-anchor="" x="495.16" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.18%)</title><rect x="266.1" y="1681" width="2.1" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="269.12" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/core/json/ByteSourceJsonBootstrapper:::detectEncoding (1 samples, 0.09%)</title><rect x="1121.6" y="593" width="1.0" height="15.0" fill="rgb(70,184,184)" rx="2" ry="2" />
<text text-anchor="" x="1124.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>entry_SYSCALL_64_fastpath (3 samples, 0.26%)</title><rect x="350.1" y="1777" width="3.1" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="353.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>Lorg/glassfish/jersey/server/ContainerResponse:::close (2 samples, 0.18%)</title><rect x="21.4" y="913" width="2.1" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="24.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>do_iter_readv_writev (1 samples, 0.09%)</title><rect x="1133.0" y="913" width="1.0" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="1135.97" 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>pick_next_task_fair (1 samples, 0.09%)</title><rect x="50.4" y="1681" width="1.1" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="53.44" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/routing/PushMatchedUriRouter:::apply (1 samples, 0.09%)</title><rect x="783.5" y="865" width="1.1" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="786.53" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/hk2/utilities/AbstractActiveDescriptor:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="1126.7" y="497" width="1.1" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="1129.75" 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/uri/internal/JerseyUriBuilder:::uri (16 samples, 1.41%)</title><rect x="910.0" y="1121" width="16.6" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="913.04" 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/SystemDescriptor:::invokeInstanceListeners (1 samples, 0.09%)</title><rect x="782.5" y="801" width="1.0" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="785.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>JavaCalls::call_virtual (10 samples, 0.88%)</title><rect x="1179.6" y="1761" width="10.4" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text text-anchor="" x="1182.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>perf_pmu_enable.part.89 (1 samples, 0.09%)</title><rect x="549.2" y="1473" width="1.0" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="552.19" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/ReentrantReadWriteLock$ReadLock:::unlock (1 samples, 0.09%)</title><rect x="864.4" y="497" width="1.0" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text text-anchor="" x="867.41" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (2 samples, 0.18%)</title><rect x="530.5" y="961" width="2.1" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="533.53" 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_event_context_sched_in (2 samples, 0.18%)</title><rect x="400.9" y="1537" width="2.1" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="403.91" 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/core/JsonFactory:::_createParser (2 samples, 0.18%)</title><rect x="510.8" y="625" width="2.1" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="513.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>native_sched_clock (2 samples, 0.18%)</title><rect x="224.6" y="1697" width="2.1" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="227.64" 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/ResourceMethodInvoker:::invoke (21 samples, 1.85%)</title><rect x="962.9" y="929" width="21.8" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="965.92" 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>security_file_permission (1 samples, 0.09%)</title><rect x="667.4" y="913" width="1.0" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="670.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>Ljava/util/ArrayList:::sort (1 samples, 0.09%)</title><rect x="945.3" y="849" width="1.0" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="948.29" 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 (88 samples, 7.73%)</title><rect x="601.0" y="1505" width="91.3" height="15.0" fill="rgb(89,200,200)" rx="2" ry="2" />
<text text-anchor="" x="604.04" y="1515.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>ip_rcv_finish (1 samples, 0.09%)</title><rect x="522.2" y="545" width="1.1" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="525.23" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/monitoring/RequestEventImpl$Builder:::build (1 samples, 0.09%)</title><rect x="946.3" y="849" width="1.1" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="949.33" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.18%)</title><rect x="236.0" y="1681" width="2.1" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="239.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>Lsun/reflect/annotation/AnnotationInvocationHandler:::invoke (1 samples, 0.09%)</title><rect x="1027.2" y="1809" width="1.0" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" />
<text text-anchor="" x="1030.21" 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:::getInjecteeDescriptor (1 samples, 0.09%)</title><rect x="1137.1" y="849" width="1.1" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="1140.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>Lch/qos/logback/core/AsyncAppenderBase:::append (7 samples, 0.62%)</title><rect x="895.5" y="1457" width="7.3" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text text-anchor="" x="898.52" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.18%)</title><rect x="105.4" y="1425" width="2.1" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="108.40" 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/String:::valueOf (1 samples, 0.09%)</title><rect x="464.2" y="1009" width="1.0" height="15.0" fill="rgb(82,195,195)" rx="2" ry="2" />
<text text-anchor="" x="467.17" 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/net/URI$Parser:::substring (1 samples, 0.09%)</title><rect x="685.0" y="1041" width="1.1" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="688.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>Lch/qos/logback/access/spi/AccessEvent:::getRequestHeaderMap (2 samples, 0.18%)</title><rect x="1049.0" y="1393" width="2.1" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="1051.98" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_start (6 samples, 0.53%)</title><rect x="399.9" y="1825" width="6.2" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text text-anchor="" x="402.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>Lorg/glassfish/jersey/message/internal/WriterInterceptorExecutor:::proceed (1 samples, 0.09%)</title><rect x="556.4" y="849" width="1.1" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="559.45" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpConnection$SendCallback:::process (6 samples, 0.53%)</title><rect x="950.5" y="673" width="6.2" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="953.47" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/process/internal/RequestScope$Instance:::release (5 samples, 0.44%)</title><rect x="523.3" y="1057" width="5.2" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text text-anchor="" x="526.27" 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>x86_pmu_enable (4 samples, 0.35%)</title><rect x="368.8" y="1585" width="4.1" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="371.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>WatcherThread::run (8 samples, 0.70%)</title><rect x="381.2" y="1809" width="8.3" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="384.21" 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>ip_rcv_finish (1 samples, 0.09%)</title><rect x="954.6" y="97" width="1.1" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="957.62" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljersey/repackaged/com/google/common/collect/Sets:::newSetFromMap (1 samples, 0.09%)</title><rect x="631.1" y="785" width="1.0" height="15.0" fill="rgb(92,204,204)" rx="2" ry="2" />
<text text-anchor="" x="634.11" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.09%)</title><rect x="744.1" y="1681" width="1.1" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="747.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>Lorg/jvnet/hk2/internal/ClazzCreator:::resolveAllDependencies (2 samples, 0.18%)</title><rect x="821.9" y="593" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="824.90" 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/http/HttpFields:::getFieldNamesCollection (1 samples, 0.09%)</title><rect x="434.1" y="1329" width="1.0" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="437.09" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/Errors:::process (58 samples, 5.10%)</title><rect x="1075.9" y="1057" width="60.2" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="1078.94" y="1067.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>pthread_cond_wait@@GLIBC_2.3.2 (8 samples, 0.70%)</title><rect x="350.1" y="1793" width="8.3" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text text-anchor="" x="353.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>Lch/qos/logback/core/util/CachingDateFormatter:::format (4 samples, 0.35%)</title><rect x="38.0" y="1793" width="4.1" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text text-anchor="" x="41.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>JavaCalls::call_virtual (121 samples, 10.63%)</title><rect x="745.2" y="1761" width="125.4" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" />
<text text-anchor="" x="748.17" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaCalls::call..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseLive::compute (2 samples, 0.18%)</title><rect x="208.0" y="1681" width="2.1" height="15.0" fill="rgb(177,177,51)" rx="2" ry="2" />
<text text-anchor="" x="211.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>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::keyComparatorHash (1 samples, 0.09%)</title><rect x="529.5" y="1009" width="1.0" height="15.0" fill="rgb(57,172,172)" rx="2" ry="2" />
<text text-anchor="" x="532.49" 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>futex_wait_queue_me (1 samples, 0.09%)</title><rect x="559.6" y="1569" width="1.0" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="562.56" 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/internal/Errors:::process (12 samples, 1.05%)</title><rect x="15.2" y="1025" width="12.4" height="15.0" fill="rgb(66,179,179)" rx="2" ry="2" />
<text text-anchor="" x="18.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>jshort_arraycopy (1 samples, 0.09%)</title><rect x="12.1" y="1025" width="1.0" height="15.0" fill="rgb(252,125,125)" rx="2" ry="2" />
<text text-anchor="" x="15.07" 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/message/internal/MediaTypeProvider:::valueOf (1 samples, 0.09%)</title><rect x="1088.4" y="673" width="1.0" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="1091.38" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (2 samples, 0.18%)</title><rect x="591.7" y="1649" width="2.1" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="594.70" 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>ipt_do_table (1 samples, 0.09%)</title><rect x="522.2" y="465" width="1.1" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="525.23" 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/Throwable:::fillInStackTrace (9 samples, 0.79%)</title><rect x="910.0" y="977" width="9.4" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="913.04" 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/SelectChannelEndPoint:::needsFillInterest (4 samples, 0.35%)</title><rect x="871.7" y="1777" width="4.1" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text text-anchor="" x="874.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>Lorg/eclipse/jetty/server/HttpOutput:::write (4 samples, 0.35%)</title><rect x="639.4" y="769" width="4.2" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="642.40" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (1 samples, 0.09%)</title><rect x="42.1" y="1761" width="1.1" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="45.14" 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/servlet/WebComponent:::serviceImpl (66 samples, 5.80%)</title><rect x="926.6" y="1121" width="68.5" height="15.0" fill="rgb(66,179,179)" rx="2" ry="2" />
<text text-anchor="" x="929.63" y="1131.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>intel_pmu_enable_all (2 samples, 0.18%)</title><rect x="738.9" y="1601" width="2.1" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="741.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>Lorg/eclipse/jetty/server/HttpChannel:::handle (102 samples, 8.96%)</title><rect x="894.5" y="1537" width="105.7" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text text-anchor="" x="897.48" 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>vfs_writev (1 samples, 0.09%)</title><rect x="577.2" y="1729" width="1.0" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="580.19" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/LinkedList:::add (1 samples, 0.09%)</title><rect x="1078.0" y="785" width="1.1" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="1081.01" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/hibernate/validator/internal/metadata/raw/ExecutableElement$MethodElement:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="967.1" y="817" width="1.0" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text text-anchor="" x="970.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>Lorg/glassfish/hk2/utilities/reflection/ParameterizedTypeImpl:::getRawType (1 samples, 0.09%)</title><rect x="988.8" y="945" width="1.1" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="991.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>vtable stub (1 samples, 0.09%)</title><rect x="20.4" y="705" width="1.0" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text text-anchor="" x="23.37" 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/eclipse/jetty/server/Request:::getHeaderNames (1 samples, 0.09%)</title><rect x="10.0" y="1361" width="1.0" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>futex_wait (1 samples, 0.09%)</title><rect x="187.3" y="1441" width="1.0" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="190.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/eclipse/jetty/server/handler/StatisticsHandler:::handle (22 samples, 1.93%)</title><rect x="11.0" y="1489" width="22.8" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text text-anchor="" x="14.04" y="1499.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>sched_clock (1 samples, 0.09%)</title><rect x="888.3" y="1505" width="1.0" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="891.26" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/servlet/ServletContainer:::service (7 samples, 0.62%)</title><rect x="1012.7" y="1169" width="7.2" height="15.0" fill="rgb(58,208,58)" rx="2" ry="2" />
<text text-anchor="" x="1015.69" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (1 samples, 0.09%)</title><rect x="133.4" y="1537" width="1.0" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="136.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>Lorg/glassfish/jersey/uri/UriComponent:::_encode (1 samples, 0.09%)</title><rect x="686.1" y="1057" width="1.0" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text text-anchor="" x="689.06" 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/InstanceLifecycleEventImpl:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="976.4" y="689" width="1.0" height="15.0" fill="rgb(100,210,210)" rx="2" ry="2" />
<text text-anchor="" x="979.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>end_repeat_nmi (1 samples, 0.09%)</title><rect x="738.9" y="1569" width="1.1" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="741.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>Lorg/glassfish/jersey/process/internal/Stages:::process (15 samples, 1.32%)</title><rect x="620.7" y="961" width="15.6" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="623.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>itable stub (1 samples, 0.09%)</title><rect x="476.6" y="849" width="1.0" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="479.61" 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:::endsWith (1 samples, 0.09%)</title><rect x="757.6" y="1297" width="1.0" height="15.0" fill="rgb(78,190,190)" rx="2" ry="2" />
<text text-anchor="" x="760.61" 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/server/ContainerResponse:::close (1 samples, 0.09%)</title><rect x="859.2" y="929" width="1.1" height="15.0" fill="rgb(69,183,183)" rx="2" ry="2" />
<text text-anchor="" x="862.23" 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/internal/util/collection/KeyComparatorHashMap:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="1142.3" y="1009" width="1.0" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text text-anchor="" x="1145.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>__perf_event_task_sched_in (1 samples, 0.09%)</title><rect x="549.2" y="1505" width="1.0" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="552.19" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/uri/UriTemplate:::createUriComponent (1 samples, 0.09%)</title><rect x="995.1" y="1073" width="1.0" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="998.06" 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/message/internal/HttpHeaderReaderImpl:::next (1 samples, 0.09%)</title><rect x="681.9" y="929" width="1.1" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="684.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>Lorg/eclipse/jetty/server/handler/ContextHandler:::doHandle (7 samples, 0.62%)</title><rect x="708.9" y="1345" width="7.2" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text text-anchor="" x="711.88" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (1 samples, 0.09%)</title><rect x="1037.6" y="1601" width="1.0" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="1040.57" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceHandleImpl:::getService (3 samples, 0.26%)</title><rect x="988.8" y="977" width="3.2" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text text-anchor="" x="991.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>__perf_event_task_sched_in (2 samples, 0.18%)</title><rect x="719.2" y="1665" width="2.1" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="722.24" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.18%)</title><rect x="144.8" y="1809" width="2.1" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="147.80" 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/SelectorImpl:::select (1 samples, 0.09%)</title><rect x="706.8" y="1569" width="1.0" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="709.80" 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>JavaCalls::call_virtual (25 samples, 2.20%)</title><rect x="10.0" y="1745" width="25.9" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >J..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lio/dropwizard/jersey/filter/AllowedMethodsFilter:::doFilter (4 samples, 0.35%)</title><rect x="555.4" y="1297" width="4.2" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="558.41" 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>Ljersey/repackaged/com/google/common/net/InetAddresses:::isUriInetAddress (16 samples, 1.41%)</title><rect x="1056.2" y="1073" width="16.6" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1059.24" 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/LinkedHashSet:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="978.5" y="481" width="1.0" height="15.0" fill="rgb(100,210,210)" rx="2" ry="2" />
<text text-anchor="" x="981.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>jlong_disjoint_arraycopy (1 samples, 0.09%)</title><rect x="531.6" y="929" width="1.0" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text text-anchor="" x="534.56" 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/Thread:::setNativeName (1 samples, 0.09%)</title><rect x="841.6" y="1233" width="1.0" height="15.0" fill="rgb(83,231,83)" rx="2" ry="2" />
<text text-anchor="" x="844.60" 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>retint_user (1 samples, 0.09%)</title><rect x="971.2" y="545" width="1.0" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="974.21" 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/message/internal/CommittingOutputStream:::flushBuffer (7 samples, 0.62%)</title><rect x="949.4" y="849" width="7.3" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="952.44" 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>Lsun/nio/ch/EPollSelectorImpl:::doSelect (1 samples, 0.09%)</title><rect x="706.8" y="1537" width="1.0" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text text-anchor="" x="709.80" 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-8513.map] (3 samples, 0.26%)</title><rect x="702.7" y="1649" width="3.1" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text text-anchor="" x="705.65" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_MonitorNotify (1 samples, 0.09%)</title><rect x="818.8" y="337" width="1.0" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text text-anchor="" x="821.79" 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>start_thread (112 samples, 9.84%)</title><rect x="1047.9" y="1841" width="116.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="1050.94" y="1851.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>start_thread (6 samples, 0.53%)</title><rect x="161.4" y="1841" width="6.2" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="164.39" 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>__netif_receive_skb (1 samples, 0.09%)</title><rect x="690.2" y="961" width="1.0" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="693.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>futex_wait_queue_me (4 samples, 0.35%)</title><rect x="241.2" y="1729" width="4.2" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="244.23" 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>Lsun/misc/SharedSecrets:::getJavaLangAccess (1 samples, 0.09%)</title><rect x="951.5" y="545" width="1.0" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="954.51" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/codahale/metrics/ExponentiallyDecayingReservoir:::update (1 samples, 0.09%)</title><rect x="755.5" y="1313" width="1.1" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text text-anchor="" x="758.54" 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/glassfish/jersey/uri/internal/JerseyUriBuilder:::_build (1 samples, 0.09%)</title><rect x="995.1" y="1137" width="1.0" height="15.0" fill="rgb(80,193,193)" rx="2" ry="2" />
<text text-anchor="" x="998.06" 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/jersey/server/model/ResourceMethodInvoker:::invoke (3 samples, 0.26%)</title><rect x="24.5" y="929" width="3.1" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="27.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>futex_wait (1 samples, 0.09%)</title><rect x="358.4" y="1713" width="1.0" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="361.40" 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/StringBuilder:::toString (2 samples, 0.18%)</title><rect x="442.4" y="1201" width="2.1" height="15.0" fill="rgb(92,204,204)" rx="2" ry="2" />
<text text-anchor="" x="445.39" 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>Ljava/util/regex/Pattern$Branch:::match (1 samples, 0.09%)</title><rect x="921.4" y="785" width="1.1" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text text-anchor="" x="924.44" 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>Parse::do_one_block (5 samples, 0.44%)</title><rect x="187.3" y="1665" width="5.2" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="190.31" 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/jvnet/hk2/internal/Utilities:::createService (3 samples, 0.26%)</title><rect x="820.9" y="753" width="3.1" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text text-anchor="" x="823.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>Ljava/lang/String:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="806.3" y="785" width="1.1" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="809.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>java_start (21 samples, 1.85%)</title><rect x="287.9" y="1825" width="21.8" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="290.89" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/jaxrs/base/ProviderBase:::_createParser (2 samples, 0.18%)</title><rect x="510.8" y="657" width="2.1" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="513.83" 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>default_do_nmi (1 samples, 0.09%)</title><rect x="136.5" y="1393" width="1.0" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="139.50" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.18%)</title><rect x="593.8" y="1793" width="2.1" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="596.78" 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_softirq.part.19 (1 samples, 0.09%)</title><rect x="642.5" y="353" width="1.1" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="645.51" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::find (1 samples, 0.09%)</title><rect x="1070.8" y="977" width="1.0" height="15.0" fill="rgb(103,213,213)" rx="2" ry="2" />
<text text-anchor="" x="1073.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>Lorg/glassfish/jersey/CommonProperties:::getValue (3 samples, 0.26%)</title><rect x="806.3" y="881" width="3.2" height="15.0" fill="rgb(89,200,200)" rx="2" ry="2" />
<text text-anchor="" x="809.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>Lorg/glassfish/jersey/message/internal/HeaderUtils$2:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="645.6" y="737" width="1.1" height="15.0" fill="rgb(79,191,191)" rx="2" ry="2" />
<text text-anchor="" x="648.62" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/util/thread/strategy/ExecuteProduceConsume:::produceConsume (104 samples, 9.14%)</title><rect x="1047.9" y="1633" width="107.9" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="1050.94" y="1643.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>[unknown] (1 samples, 0.09%)</title><rect x="1022.0" y="1809" width="1.1" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text text-anchor="" x="1025.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>schedule (2 samples, 0.18%)</title><rect x="262.0" y="1665" width="2.0" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="264.97" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/servlet/WebComponent$4$1:::initialize (1 samples, 0.09%)</title><rect x="15.2" y="897" width="1.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="18.18" 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/Calendar:::getDisplayName (3 samples, 0.26%)</title><rect x="84.7" y="1409" width="3.1" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="87.66" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::endsWith (1 samples, 0.09%)</title><rect x="906.9" y="1297" width="1.1" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="909.92" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lch/qos/logback/access/spi/AccessEvent:::getRequestHeader (2 samples, 0.18%)</title><rect x="88.8" y="1489" width="2.1" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="91.80" 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.09%)</title><rect x="549.2" y="1633" width="1.0" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="552.19" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (2 samples, 0.18%)</title><rect x="400.9" y="1489" width="2.1" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="403.91" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CodeHeap::find_start (1 samples, 0.09%)</title><rect x="452.8" y="833" width="1.0" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="455.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>Lorg/glassfish/jersey/process/internal/RequestScope:::findOrCreate (7 samples, 0.62%)</title><rect x="976.4" y="737" width="7.3" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text text-anchor="" x="979.40" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (1 samples, 0.09%)</title><rect x="885.1" y="1649" width="1.1" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="888.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>Lorg/glassfish/jersey/process/internal/Stages:::process (3 samples, 0.26%)</title><rect x="636.3" y="929" width="3.1" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="639.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>Lorg/glassfish/jersey/internal/util/PropertiesHelper:::getValue (1 samples, 0.09%)</title><rect x="557.5" y="881" width="1.0" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text text-anchor="" x="560.49" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_do_nmi (1 samples, 0.09%)</title><rect x="1165.1" y="1553" width="1.1" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="1168.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/servlet/WebComponent:::service (61 samples, 5.36%)</title><rect x="619.7" y="1137" width="63.3" height="15.0" fill="rgb(68,182,182)" rx="2" ry="2" />
<text text-anchor="" x="622.70" 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>sys_write (1 samples, 0.09%)</title><rect x="63.9" y="1505" width="1.1" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="66.92" 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>net_rx_action (1 samples, 0.09%)</title><rect x="799.1" y="321" width="1.0" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="802.09" 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>Ljava/util/concurrent/ConcurrentHashMap:::get (1 samples, 0.09%)</title><rect x="1140.2" y="849" width="1.1" height="15.0" fill="rgb(100,210,210)" rx="2" ry="2" />
<text text-anchor="" x="1143.23" 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/http/HttpParser:::parseNext (3 samples, 0.26%)</title><rect x="845.7" y="1521" width="3.2" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text text-anchor="" x="848.75" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/routing/RoutingStage:::_apply (1 samples, 0.09%)</title><rect x="940.1" y="865" width="1.0" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="943.11" 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_write_msr_safe (1 samples, 0.09%)</title><rect x="406.1" y="1569" width="1.0" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="409.10" 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/HttpChannelOverHttp:::startRequest (1 samples, 0.09%)</title><rect x="1006.5" y="1489" width="1.0" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="1009.47" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (4 samples, 0.35%)</title><rect x="368.8" y="1601" width="4.1" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="371.77" 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/lang/String:::substring (1 samples, 0.09%)</title><rect x="685.0" y="1025" width="1.1" height="15.0" fill="rgb(81,194,194)" rx="2" ry="2" />
<text text-anchor="" x="688.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>Lsun/nio/ch/SelectorImpl:::select (1 samples, 0.09%)</title><rect x="706.8" y="1585" width="1.0" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
<text text-anchor="" x="709.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>Interpreter (10 samples, 0.88%)</title><rect x="1179.6" y="1633" width="10.4" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text text-anchor="" x="1182.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>Lsun/nio/ch/IOUtil:::drain (1 samples, 0.09%)</title><rect x="554.4" y="1521" width="1.0" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text text-anchor="" x="557.38" 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_signal@@GLIBC_2.3.2 (1 samples, 0.09%)</title><rect x="424.8" y="1809" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="427.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>ip_finish_output2 (1 samples, 0.09%)</title><rect x="595.9" y="1537" width="1.0" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="598.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>[unknown] (1 samples, 0.09%)</title><rect x="596.9" y="1825" width="1.0" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="599.89" 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>default_do_nmi (1 samples, 0.09%)</title><rect x="169.7" y="1553" width="1.0" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="172.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>Lorg/glassfish/jersey/message/internal/OutboundMessageContext:::close (2 samples, 0.18%)</title><rect x="21.4" y="897" width="2.1" height="15.0" fill="rgb(80,193,193)" rx="2" ry="2" />
<text text-anchor="" x="24.41" 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/ArrayTrie:::getBest (2 samples, 0.18%)</title><rect x="1151.6" y="1489" width="2.1" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="1154.63" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (1 samples, 0.09%)</title><rect x="57.7" y="1569" width="1.0" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="60.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>entry_SYSCALL_64_fastpath (1 samples, 0.09%)</title><rect x="187.3" y="1489" width="1.0" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="190.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>futex_wait (1 samples, 0.09%)</title><rect x="559.6" y="1585" width="1.0" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="562.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>Lorg/glassfish/jersey/message/internal/HeaderUtils$1:::apply (1 samples, 0.09%)</title><rect x="501.5" y="737" width="1.0" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="504.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>Lio/dropwizard/jersey/validation/DropwizardConfiguredValidator:::validateResourceAndInputParams (2 samples, 0.18%)</title><rect x="1114.3" y="865" width="2.1" height="15.0" fill="rgb(72,186,186)" rx="2" ry="2" />
<text text-anchor="" x="1117.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/eclipse/jetty/io/SelectChannelEndPoint$2:::run (25 samples, 2.20%)</title><rect x="10.0" y="1601" width="25.9" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1611.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/util/thread/strategy/ExecuteProduceConsume:::executeProduceConsume (18 samples, 1.58%)</title><rect x="850.9" y="1633" width="18.7" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text text-anchor="" x="853.93" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___writev (1 samples, 0.09%)</title><rect x="700.6" y="1553" width="1.0" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="703.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>futex_wait (3 samples, 0.26%)</title><rect x="1180.7" y="1329" width="3.1" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="1183.67" 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>enqueue_entity (1 samples, 0.09%)</title><rect x="63.9" y="1297" width="1.1" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="66.92" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (1 samples, 0.09%)</title><rect x="999.2" y="769" width="1.0" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="1002.21" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (1 samples, 0.09%)</title><rect x="281.7" y="1601" width="1.0" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="284.67" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/routing/RoutingStage:::_apply (8 samples, 0.70%)</title><rect x="628.0" y="913" width="8.3" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text text-anchor="" x="631.00" 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 (7 samples, 0.62%)</title><rect x="708.9" y="1201" width="7.2" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="711.88" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/model/internal/AbstractJavaResourceMethodDispatcher:::invoke (1 samples, 0.09%)</title><rect x="652.9" y="881" width="1.0" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="655.88" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Throwable:::fillInStackTrace (1 samples, 0.09%)</title><rect x="1011.7" y="977" width="1.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1014.65" 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>Ljersey/repackaged/com/google/common/collect/Iterables:::addAll (1 samples, 0.09%)</title><rect x="638.4" y="849" width="1.0" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text text-anchor="" x="641.37" 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/regex/Pattern$BranchConn:::match (1 samples, 0.09%)</title><rect x="775.2" y="817" width="1.1" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="778.24" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/InterceptorExecutor:::traceAfter (1 samples, 0.09%)</title><rect x="489.1" y="849" width="1.0" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="492.05" 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/servlet/ServletHandler$CachedChain:::doFilter (85 samples, 7.47%)</title><rect x="910.0" y="1217" width="88.2" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text text-anchor="" x="913.04" y="1227.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>Lorg/jvnet/hk2/internal/ClazzCreator:::resolve (2 samples, 0.18%)</title><rect x="1126.7" y="577" width="2.1" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text text-anchor="" x="1129.75" 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/lang/StringBuilder:::append (1 samples, 0.09%)</title><rect x="618.7" y="1025" width="1.0" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="621.66" 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>sock_write_iter (1 samples, 0.09%)</title><rect x="1027.2" y="1697" width="1.0" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="1030.21" 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/SelectChannelEndPoint$2:::run (109 samples, 9.58%)</title><rect x="894.5" y="1601" width="113.0" height="15.0" fill="rgb(64,212,64)" rx="2" ry="2" />
<text text-anchor="" x="897.48" y="1611.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 (1 samples, 0.09%)</title><rect x="364.6" y="1665" width="1.1" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="367.62" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/text/DecimalFormatSymbols:::getInstance (1 samples, 0.09%)</title><rect x="611.4" y="977" width="1.0" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="614.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>entry_SYSCALL_64_fastpath (1 samples, 0.09%)</title><rect x="590.7" y="1777" width="1.0" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="593.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>Lorg/glassfish/jersey/server/ServerRuntime$Responder:::writeResponse (18 samples, 1.58%)</title><rect x="790.8" y="929" width="18.7" height="15.0" fill="rgb(70,219,70)" rx="2" ry="2" />
<text text-anchor="" x="793.79" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (1 samples, 0.09%)</title><rect x="708.9" y="465" width="1.0" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="711.88" 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/StringBuilder:::append (2 samples, 0.18%)</title><rect x="80.5" y="1521" width="2.1" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="83.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>Lorg/eclipse/jetty/server/Request:::getAttributeNames (3 samples, 0.26%)</title><rect x="67.0" y="1585" width="3.1" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="70.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>default_do_nmi (2 samples, 0.18%)</title><rect x="288.9" y="1489" width="2.1" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="291.93" 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>futex_wait (3 samples, 0.26%)</title><rect x="336.6" y="1729" width="3.1" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="339.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>entry_SYSCALL_64_fastpath (2 samples, 0.18%)</title><rect x="876.9" y="1537" width="2.0" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="879.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/glassfish/jersey/uri/internal/JerseyUriBuilder:::build (2 samples, 0.18%)</title><rect x="1145.4" y="1153" width="2.1" height="15.0" fill="rgb(82,230,82)" rx="2" ry="2" />
<text text-anchor="" x="1148.41" 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>native_write_msr_safe (4 samples, 0.35%)</title><rect x="1170.3" y="1809" width="4.1" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="1173.30" 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 (84 samples, 7.38%)</title><rect x="910.0" y="1169" width="87.1" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="913.04" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/glass..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (1 samples, 0.09%)</title><rect x="871.7" y="1217" width="1.0" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="874.67" 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>__tcp_push_pending_frames (1 samples, 0.09%)</title><rect x="522.2" y="817" width="1.1" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="525.23" 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>thread_entry (78 samples, 6.85%)</title><rect x="63.9" y="1777" width="80.9" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
<text text-anchor="" x="66.92" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >thread_en..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/uri/UriComponent:::contextualEncode (1 samples, 0.09%)</title><rect x="686.1" y="1073" width="1.0" height="15.0" fill="rgb(93,205,205)" rx="2" ry="2" />
<text text-anchor="" x="689.06" 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/hk2/utilities/cache/Cache:::compute (2 samples, 0.18%)</title><rect x="663.3" y="561" width="2.0" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text text-anchor="" x="666.25" 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/lang/ref/Reference:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="948.4" y="689" width="1.0" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="951.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/message/internal/CommittingOutputStream:::flushBuffer (5 samples, 0.44%)</title><rect x="1096.7" y="849" width="5.2" height="15.0" fill="rgb(81,194,194)" rx="2" ry="2" />
<text text-anchor="" x="1099.68" 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>GangWorker::loop (21 samples, 1.85%)</title><rect x="287.9" y="1809" width="21.8" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="290.89" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >G..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (1 samples, 0.09%)</title><rect x="842.6" y="1201" width="1.1" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="845.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>schedule (2 samples, 0.18%)</title><rect x="253.7" y="1633" width="2.0" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="256.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>Lorg/glassfish/jersey/process/internal/RequestScope:::findOrCreate (1 samples, 0.09%)</title><rect x="623.8" y="833" width="1.1" height="15.0" fill="rgb(58,208,58)" rx="2" ry="2" />
<text text-anchor="" x="626.85" 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_v4_rcv (1 samples, 0.09%)</title><rect x="799.1" y="193" width="1.0" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="802.09" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/servlet/WebComponent:::addRequestHeaders (1 samples, 0.09%)</title><rect x="1162.0" y="1169" width="1.0" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text text-anchor="" x="1165.00" 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>sys_writev (1 samples, 0.09%)</title><rect x="667.4" y="961" width="1.0" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="670.40" 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/ContainerResponse:::setMediaType (2 samples, 0.18%)</title><rect x="943.2" y="865" width="2.1" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="946.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>BacktraceBuilder::expand (2 samples, 0.18%)</title><rect x="609.3" y="865" width="2.1" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="612.33" 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/HttpChannel:::write (8 samples, 0.70%)</title><rect x="792.9" y="753" width="8.3" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="795.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>try_to_wake_up (1 samples, 0.09%)</title><rect x="410.2" y="1681" width="1.1" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="413.25" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ClazzCreator:::resolveAllDependencies (5 samples, 0.44%)</title><rect x="831.2" y="897" width="5.2" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text text-anchor="" x="834.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>Ljava/lang/Character:::digit (1 samples, 0.09%)</title><rect x="1071.8" y="1025" width="1.0" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text text-anchor="" x="1074.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>update_curr (1 samples, 0.09%)</title><rect x="1041.7" y="1137" width="1.1" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="1044.72" 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/engine/ValidatorImpl:::forExecutables (1 samples, 0.09%)</title><rect x="964.0" y="833" width="1.0" height="15.0" fill="rgb(57,172,172)" rx="2" ry="2" />
<text text-anchor="" x="966.95" 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 (8 samples, 0.70%)</title><rect x="976.4" y="785" width="8.3" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="979.40" 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/ServiceHandleImpl:::getService (4 samples, 0.35%)</title><rect x="1126.7" y="689" width="4.2" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1129.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>_copy_from_user (1 samples, 0.09%)</title><rect x="1098.8" y="433" width="1.0" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="1101.75" 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/AbstractStringBuilder:::ensureCapacityInternal (1 samples, 0.09%)</title><rect x="1189.0" y="1473" width="1.0" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="1191.96" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jshort_disjoint_arraycopy (1 samples, 0.09%)</title><rect x="681.9" y="817" width="1.1" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text text-anchor="" x="684.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/util/thread/strategy/ExecuteProduceConsume:::run (101 samples, 8.88%)</title><rect x="597.9" y="1649" width="104.8" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text text-anchor="" x="600.93" y="1659.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>autoremove_wake_function (1 samples, 0.09%)</title><rect x="1041.7" y="1249" width="1.1" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="1044.72" 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/util/ArrayList:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="627.0" y="881" width="1.0" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="629.96" 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>AdvancedThresholdPolicy::call_event (1 samples, 0.09%)</title><rect x="852.0" y="1425" width="1.0" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="854.97" 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.09%)</title><rect x="187.3" y="1409" width="1.0" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="190.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>sock_sendmsg (1 samples, 0.09%)</title><rect x="429.9" y="1713" width="1.1" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="432.95" 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_pmu_enable.part.89 (1 samples, 0.09%)</title><rect x="412.3" y="1377" width="1.1" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="415.32" 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/ResourceMethodInvoker:::apply (1 samples, 0.09%)</title><rect x="714.1" y="977" width="1.0" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="717.06" 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/Exception:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="1011.7" y="1025" width="1.0" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="1014.65" 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>generic_smp_call_function_single_interrupt (1 samples, 0.09%)</title><rect x="708.9" y="625" width="1.0" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="711.88" 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/internal/routing/MethodSelectingRouter$3:::apply (2 samples, 0.18%)</title><rect x="943.2" y="881" width="2.1" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="946.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>Ljersey/repackaged/com/google/common/net/InetAddresses:::isUriInetAddress (13 samples, 1.14%)</title><rect x="447.6" y="1073" width="13.5" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="450.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/servlet/ServletHandler:::doScope (93 samples, 8.17%)</title><rect x="1054.2" y="1345" width="96.4" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text text-anchor="" x="1057.17" 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>Ljava/lang/AbstractStringBuilder:::append (1 samples, 0.09%)</title><rect x="814.6" y="737" width="1.1" height="15.0" fill="rgb(104,215,215)" rx="2" ry="2" />
<text text-anchor="" x="817.64" 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/internal/MappableExceptionWrapperInterceptor:::aroundReadFrom (2 samples, 0.18%)</title><rect x="862.3" y="769" width="2.1" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="865.34" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (1 samples, 0.09%)</title><rect x="1037.6" y="1265" width="1.0" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="1040.57" 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>__GI___mprotect (1 samples, 0.09%)</title><rect x="397.8" y="1809" width="1.0" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text text-anchor="" x="400.80" 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/ConcurrentHashMap$TreeBin:::find (1 samples, 0.09%)</title><rect x="982.6" y="529" width="1.1" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="985.62" 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:::toString (1 samples, 0.09%)</title><rect x="1002.3" y="1473" width="1.1" height="15.0" fill="rgb(70,184,184)" rx="2" ry="2" />
<text text-anchor="" x="1005.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>java_start (13 samples, 1.14%)</title><rect x="344.9" y="1825" width="13.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="347.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>Lorg/eclipse/jetty/io/WriteFlusher:::updateState (1 samples, 0.09%)</title><rect x="1099.8" y="625" width="1.0" height="15.0" fill="rgb(51,165,165)" rx="2" ry="2" />
<text text-anchor="" x="1102.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>JVM_FillInStackTrace (6 samples, 0.53%)</title><rect x="447.6" y="929" width="6.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="450.57" 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:::matches (1 samples, 0.09%)</title><rect x="936.0" y="849" width="1.0" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="938.96" 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 (5 samples, 0.44%)</title><rect x="148.9" y="1617" width="5.2" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="151.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>Compile::Compile (22 samples, 1.93%)</title><rect x="192.5" y="1729" width="22.8" height="15.0" fill="rgb(202,202,60)" rx="2" ry="2" />
<text text-anchor="" x="195.50" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >C..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpOutput:::write (7 samples, 0.62%)</title><rect x="492.2" y="801" width="7.2" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text text-anchor="" x="495.16" 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/internal/util/collection/KeyComparatorHashMap:::keyComparatorHash (1 samples, 0.09%)</title><rect x="943.2" y="785" width="1.1" height="15.0" fill="rgb(105,216,216)" rx="2" ry="2" />
<text text-anchor="" x="946.22" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/InterceptorExecutor:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="861.3" y="769" width="1.0" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="864.30" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/http/HttpParser:::parseNext (1 samples, 0.09%)</title><rect x="511.9" y="449" width="1.0" height="15.0" fill="rgb(106,252,106)" rx="2" ry="2" />
<text text-anchor="" x="514.86" 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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetService (1 samples, 0.09%)</title><rect x="15.2" y="865" width="1.0" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="18.18" 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/PerLookupContext:::findOrCreate (6 samples, 0.53%)</title><rect x="977.4" y="641" width="6.3" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text text-anchor="" x="980.43" 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>Interpreter (1 samples, 0.09%)</title><rect x="240.2" y="1697" width="1.0" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" />
<text text-anchor="" x="243.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/util/ConcurrentArrayQueue:::offer (1 samples, 0.09%)</title><rect x="493.2" y="609" width="1.0" height="15.0" fill="rgb(93,205,205)" rx="2" ry="2" />
<text text-anchor="" x="496.20" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/uri/UriTemplate:::createURI (1 samples, 0.09%)</title><rect x="995.1" y="1121" width="1.0" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="998.06" 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/util/BlockingArrayQueue:::offer (1 samples, 0.09%)</title><rect x="701.6" y="1569" width="1.1" height="15.0" fill="rgb(71,220,71)" rx="2" ry="2" />
<text text-anchor="" x="704.62" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (1 samples, 0.09%)</title><rect x="796.0" y="417" width="1.0" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="798.98" 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>Lcom/fasterxml/jackson/core/JsonFactory:::createGenerator (1 samples, 0.09%)</title><rect x="20.4" y="753" width="1.0" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="23.37" 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>GangWorker::loop (13 samples, 1.14%)</title><rect x="344.9" y="1809" width="13.5" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="347.92" 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/ContainerFilteringStage$ResponseFilterStage:::apply (1 samples, 0.09%)</title><rect x="789.8" y="913" width="1.0" height="15.0" fill="rgb(104,215,215)" rx="2" ry="2" />
<text text-anchor="" x="792.75" 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_finish (1 samples, 0.09%)</title><rect x="595.9" y="1345" width="1.0" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="598.85" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/routing/RoutingStage:::_apply (2 samples, 0.18%)</title><rect x="633.2" y="865" width="2.1" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="636.18" 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_write_msr_safe (2 samples, 0.18%)</title><rect x="366.7" y="1681" width="2.1" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="369.70" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/handler/StatisticsHandler:::handle (86 samples, 7.56%)</title><rect x="754.5" y="1489" width="89.2" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text text-anchor="" x="757.50" y="1499.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>native_write_msr_safe (2 samples, 0.18%)</title><rect x="1181.7" y="1153" width="2.1" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="1184.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>Lcom/fasterxml/jackson/core/json/UTF8StreamJsonParser:::getText (1 samples, 0.09%)</title><rect x="509.8" y="545" width="1.0" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="512.79" 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 (4 samples, 0.35%)</title><rect x="389.5" y="1553" width="4.2" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="392.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>Lio/dropwizard/jersey/filter/AllowedMethodsFilter:::doFilter (9 samples, 0.79%)</title><rect x="1011.7" y="1297" width="9.3" height="15.0" fill="rgb(103,213,213)" rx="2" ry="2" />
<text text-anchor="" x="1014.65" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/nio/ch/IOVecWrapper:::get (1 samples, 0.09%)</title><rect x="794.9" y="561" width="1.1" height="15.0" fill="rgb(78,191,191)" rx="2" ry="2" />
<text text-anchor="" x="797.94" 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>ciEnv::register_method (1 samples, 0.09%)</title><rect x="165.5" y="1681" width="1.1" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="168.54" 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_sendmsg (1 samples, 0.09%)</title><rect x="648.7" y="817" width="1.1" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="651.73" 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/util/thread/strategy/ExecuteProduceConsume:::produceConsume (25 samples, 2.20%)</title><rect x="10.0" y="1633" width="25.9" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1643.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>Lcom/fasterxml/jackson/core/JsonFactory:::createParser (2 samples, 0.18%)</title><rect x="817.8" y="641" width="2.0" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="820.75" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (1 samples, 0.09%)</title><rect x="869.6" y="1521" width="1.0" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="872.60" 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>default_do_nmi (1 samples, 0.09%)</title><rect x="578.2" y="1521" width="1.1" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="581.22" 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/Character:::toLowerCase (1 samples, 0.09%)</title><rect x="854.0" y="1329" width="1.1" height="15.0" fill="rgb(64,177,177)" rx="2" ry="2" />
<text text-anchor="" x="857.04" 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/lang/Throwable:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="1011.7" y="1009" width="1.0" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="1014.65" 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/util/ArrayTrie:::getBest (2 samples, 0.18%)</title><rect x="547.1" y="1473" width="2.1" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text text-anchor="" x="550.12" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (1 samples, 0.09%)</title><rect x="590.7" y="1457" width="1.0" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="593.67" 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/hk2/utilities/cache/Cache:::compute (1 samples, 0.09%)</title><rect x="785.6" y="737" width="1.0" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="788.61" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/MediaTypeProvider:::toString (1 samples, 0.09%)</title><rect x="501.5" y="705" width="1.0" height="15.0" fill="rgb(91,203,203)" rx="2" ry="2" />
<text text-anchor="" x="504.49" 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/Locale:::getDefault (1 samples, 0.09%)</title><rect x="454.8" y="1009" width="1.1" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="457.83" 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/util/thread/strategy/ExecuteProduceConsume:::executeProduceConsume (101 samples, 8.88%)</title><rect x="597.9" y="1617" width="104.8" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text text-anchor="" x="600.93" y="1627.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>start_thread (1 samples, 0.09%)</title><rect x="575.1" y="1841" width="1.1" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text text-anchor="" x="578.11" 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>native_write_msr_safe (2 samples, 0.18%)</title><rect x="883.1" y="1649" width="2.0" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="886.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>schedule_hrtimeout_range_clock (1 samples, 0.09%)</title><rect x="417.5" y="1729" width="1.0" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="420.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>entry_SYSCALL_64_fastpath (2 samples, 0.18%)</title><rect x="384.3" y="1745" width="2.1" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="387.32" 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/internal/ResponseWriter$NonCloseableOutputStreamWrapper:::write (1 samples, 0.09%)</title><rect x="859.2" y="833" width="1.1" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="862.23" 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$AbstractMethodParamInvoker:::getParamValues (14 samples, 1.23%)</title><rect x="1116.4" y="881" width="14.5" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="1119.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>BacktraceBuilder::expand (1 samples, 0.09%)</title><rect x="917.3" y="865" width="1.0" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="920.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>Lorg/eclipse/jetty/server/HttpConnection:::fillRequestBuffer (2 samples, 0.18%)</title><rect x="843.7" y="1537" width="2.0" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text text-anchor="" x="846.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>__GI___writev (1 samples, 0.09%)</title><rect x="576.2" y="1825" width="1.0" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text text-anchor="" x="579.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>nmi_handle (2 samples, 0.18%)</title><rect x="288.9" y="1473" width="2.1" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="291.93" 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>check_preempt_curr (1 samples, 0.09%)</title><rect x="46.3" y="1569" width="1.0" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="49.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>JavaCalls::call_virtual (1 samples, 0.09%)</title><rect x="240.2" y="1761" width="1.0" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="243.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>Lorg/glassfish/jersey/server/ContainerRequest:::readEntity (4 samples, 0.35%)</title><rect x="815.7" y="817" width="4.1" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text text-anchor="" x="818.68" 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>JavaCalls::call_helper (116 samples, 10.19%)</title><rect x="597.9" y="1729" width="120.3" height="15.0" fill="rgb(216,216,64)" rx="2" ry="2" />
<text text-anchor="" x="600.93" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaCalls::cal..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>OopMapSet::update_register_map (8 samples, 0.70%)</title><rect x="389.5" y="1809" width="8.3" height="15.0" fill="rgb(205,205,61)" rx="2" ry="2" />
<text text-anchor="" x="392.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>default_wake_function (1 samples, 0.09%)</title><rect x="1037.6" y="1217" width="1.0" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="1040.57" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (3 samples, 0.26%)</title><rect x="350.1" y="1745" width="3.1" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="353.11" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.35%)</title><rect x="326.3" y="1665" width="4.1" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="329.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>Lorg/eclipse/jetty/server/Server:::getDateField (1 samples, 0.09%)</title><rect x="545.0" y="1457" width="1.1" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="548.04" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetInjecteeDescriptor (1 samples, 0.09%)</title><rect x="660.1" y="753" width="1.1" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text text-anchor="" x="663.14" 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>call_stub (116 samples, 10.19%)</title><rect x="597.9" y="1713" width="120.3" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text text-anchor="" x="600.93" y="1723.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>Lorg/glassfish/jersey/uri/internal/JerseyUriBuilder:::schemeSpecificPart (15 samples, 1.32%)</title><rect x="447.6" y="1105" width="15.5" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="450.57" 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/ServiceLocatorImpl:::getUnqualifiedService (4 samples, 0.35%)</title><rect x="819.8" y="785" width="4.2" height="15.0" fill="rgb(102,212,212)" rx="2" ry="2" />
<text text-anchor="" x="822.82" 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/MediaTypeProvider:::toString (1 samples, 0.09%)</title><rect x="501.5" y="689" width="1.0" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text text-anchor="" x="504.49" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.09%)</title><rect x="706.8" y="1457" width="1.0" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="709.80" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1ParTask::work (4 samples, 0.35%)</title><rect x="305.5" y="1793" width="4.2" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="308.52" 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>frame::oops_interpreted_do (1 samples, 0.09%)</title><rect x="347.0" y="1713" width="1.0" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="349.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>JavaCalls::call_helper (25 samples, 2.20%)</title><rect x="10.0" y="1729" width="25.9" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >J..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (1 samples, 0.09%)</title><rect x="589.6" y="1713" width="1.1" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="592.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>native_sched_clock (2 samples, 0.18%)</title><rect x="564.7" y="1745" width="2.1" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="567.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>entry_SYSCALL_64_fastpath (2 samples, 0.18%)</title><rect x="1174.4" y="1809" width="2.1" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="1177.45" 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>Lch/qos/logback/core/spi/AppenderAttachableImpl:::appendLoopOnAppenders (5 samples, 0.44%)</title><rect x="1047.9" y="1489" width="5.2" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text text-anchor="" x="1050.94" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/servlet/ServletHandler:::doScope (96 samples, 8.44%)</title><rect x="441.4" y="1345" width="99.5" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="444.35" 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>do_nmi (1 samples, 0.09%)</title><rect x="384.3" y="1505" width="1.1" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="387.32" 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/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (1 samples, 0.09%)</title><rect x="18.3" y="737" width="1.0" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="21.30" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (5 samples, 0.44%)</title><rect x="169.7" y="1681" width="5.2" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="172.68" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_destroy@@GLIBC_2.3.2 (1 samples, 0.09%)</title><rect x="383.3" y="1745" width="1.0" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text text-anchor="" x="386.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>ResourceObj::operator new (1 samples, 0.09%)</title><rect x="164.5" y="1633" width="1.0" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text text-anchor="" x="167.50" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_do_nmi (1 samples, 0.09%)</title><rect x="1023.1" y="1505" width="1.0" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="1026.06" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/handler/ScopedHandler:::handle (8 samples, 0.70%)</title><rect x="708.9" y="1393" width="8.3" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="711.88" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (26 samples, 2.28%)</title><rect x="718.2" y="1841" width="27.0" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="721.21" 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_pmu_enable.part.89 (3 samples, 0.26%)</title><rect x="350.1" y="1617" width="3.1" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="353.11" 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/Exception:::&lt;init&gt; (6 samples, 0.53%)</title><rect x="605.2" y="1009" width="6.2" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="608.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/util/regex/Pattern$SliceNode:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="1111.2" y="737" width="1.0" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="1114.20" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (5 samples, 0.44%)</title><rect x="148.9" y="1761" width="5.2" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="151.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>java_start (112 samples, 9.84%)</title><rect x="1047.9" y="1825" width="116.2" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text text-anchor="" x="1050.94" y="1835.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>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.35%)</title><rect x="257.8" y="1745" width="4.2" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="260.82" 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/reflect/AnnotatedElement:::isAnnotationPresent (1 samples, 0.09%)</title><rect x="781.5" y="705" width="1.0" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="784.46" 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:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="1002.3" y="1457" width="1.1" height="15.0" fill="rgb(78,191,191)" rx="2" ry="2" />
<text text-anchor="" x="1005.32" 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/process/internal/Stages$LinkedStage:::apply (2 samples, 0.18%)</title><rect x="636.3" y="913" width="2.1" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="639.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/util/regex/Pattern$Start:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="505.6" y="769" width="1.1" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="508.64" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.35%)</title><rect x="326.3" y="1649" width="4.1" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="329.26" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/hk2/utilities/reflection/ReflectionHelper:::getNameFromAllQualifiers (1 samples, 0.09%)</title><rect x="622.8" y="833" width="1.0" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="625.81" 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/concurrent/atomic/AtomicReferenceArray:::checkedByteOffset (1 samples, 0.09%)</title><rect x="493.2" y="561" width="1.0" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="496.20" 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/lang/reflect/AnnotatedElement:::isAnnotationPresent (1 samples, 0.09%)</title><rect x="1013.7" y="817" width="1.1" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="1016.73" 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>JavaCalls::call_virtual (121 samples, 10.63%)</title><rect x="745.2" y="1745" width="125.4" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="748.17" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaCalls::call..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljersey/repackaged/com/google/common/collect/Lists:::newArrayList (1 samples, 0.09%)</title><rect x="627.0" y="897" width="1.0" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="629.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>Ljava/lang/String:::indexOf (1 samples, 0.09%)</title><rect x="535.7" y="993" width="1.0" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="538.71" 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/WriterInterceptorExecutor:::proceed (2 samples, 0.18%)</title><rect x="790.8" y="833" width="2.1" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="793.79" 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>try_to_wake_up (1 samples, 0.09%)</title><rect x="1041.7" y="1217" width="1.1" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="1044.72" 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>sys_write (2 samples, 0.18%)</title><rect x="105.4" y="1409" width="2.1" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="108.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/message/internal/InboundMessageContext:::getMediaType (1 samples, 0.09%)</title><rect x="532.6" y="1073" width="1.0" height="15.0" fill="rgb(93,204,204)" rx="2" ry="2" />
<text text-anchor="" x="535.60" 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/ArrayList:::toArray (1 samples, 0.09%)</title><rect x="460.0" y="977" width="1.1" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text text-anchor="" x="463.02" 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:::&lt;init&gt; (2 samples, 0.18%)</title><rect x="504.6" y="801" width="2.1" height="15.0" fill="rgb(57,172,172)" rx="2" ry="2" />
<text text-anchor="" x="507.60" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/ServerRuntime:::process (63 samples, 5.54%)</title><rect x="1075.9" y="1089" width="65.4" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="1078.94" 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>Ljava/util/HashMap:::put (1 samples, 0.09%)</title><rect x="831.2" y="865" width="1.1" height="15.0" fill="rgb(106,217,217)" rx="2" ry="2" />
<text text-anchor="" x="834.23" 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/http/HttpGenerator:::generateResponse (1 samples, 0.09%)</title><rect x="639.4" y="657" width="1.0" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text text-anchor="" x="642.40" 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>Ljersey/repackaged/com/google/common/collect/TransformedIterator:::next (1 samples, 0.09%)</title><rect x="501.5" y="785" width="1.0" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="504.49" 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/Arrays:::rangeCheck (1 samples, 0.09%)</title><rect x="945.3" y="817" width="1.0" height="15.0" fill="rgb(102,212,212)" rx="2" ry="2" />
<text text-anchor="" x="948.29" 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/handler/StatisticsHandler:::handle (3 samples, 0.26%)</title><rect x="1159.9" y="1505" width="3.1" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text text-anchor="" x="1162.93" 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/server/HttpOutput:::write (8 samples, 0.70%)</title><rect x="792.9" y="769" width="8.3" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="795.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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getService (2 samples, 0.18%)</title><rect x="834.3" y="849" width="2.1" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="837.34" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/handler/ContextHandler:::doScope (4 samples, 0.35%)</title><rect x="555.4" y="1377" width="4.2" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="558.41" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (1 samples, 0.09%)</title><rect x="34.9" y="1457" width="1.0" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="37.89" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (1 samples, 0.09%)</title><rect x="522.2" y="801" width="1.1" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="525.23" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.18%)</title><rect x="189.4" y="1489" width="2.1" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="192.38" 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>__local_bh_enable_ip (1 samples, 0.09%)</title><rect x="799.1" y="385" width="1.0" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="802.09" 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/FactoryCreator:::create (6 samples, 0.53%)</title><rect x="977.4" y="705" width="6.3" height="15.0" fill="rgb(67,180,180)" rx="2" ry="2" />
<text text-anchor="" x="980.43" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="479.7" y="881" width="1.1" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="482.72" 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/TreeMap:::get (2 samples, 0.18%)</title><rect x="88.8" y="1473" width="2.1" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="91.80" 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>sock_write_iter (1 samples, 0.09%)</title><rect x="718.2" y="1681" width="1.0" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="721.21" 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/SelectChannelEndPoint$2:::run (4 samples, 0.35%)</title><rect x="555.4" y="1617" width="4.2" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text text-anchor="" x="558.41" 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/DecimalFormatSymbols:::initialize (1 samples, 0.09%)</title><rect x="1067.6" y="929" width="1.1" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="1070.64" 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/AbstractCollection:::addAll (1 samples, 0.09%)</title><rect x="669.5" y="1009" width="1.0" height="15.0" fill="rgb(71,185,185)" rx="2" ry="2" />
<text text-anchor="" x="672.47" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.18%)</title><rect x="389.5" y="1537" width="2.1" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="392.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/FactoryCreator:::dispose (5 samples, 0.44%)</title><rect x="1136.1" y="1009" width="5.2" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="1139.08" 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>Ljavax/ws/rs/core/UriBuilder:::fromUri (19 samples, 1.67%)</title><rect x="447.6" y="1153" width="19.7" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="450.57" 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/lang/IllegalArgumentException:::&lt;init&gt; (14 samples, 1.23%)</title><rect x="759.7" y="1041" width="14.5" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text text-anchor="" x="762.68" 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/nio/channels/spi/AbstractInterruptibleChannel:::begin (1 samples, 0.09%)</title><rect x="793.9" y="577" width="1.0" height="15.0" fill="rgb(90,201,201)" rx="2" ry="2" />
<text text-anchor="" x="796.90" 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/MethodSelectingRouter:::access$000 (2 samples, 0.18%)</title><rect x="16.2" y="833" width="2.1" height="15.0" fill="rgb(51,165,165)" rx="2" ry="2" />
<text text-anchor="" x="19.22" 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/Utilities:::createService (1 samples, 0.09%)</title><rect x="1018.9" y="769" width="1.0" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text text-anchor="" x="1021.91" 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/util/IncludeExclude:::matches (1 samples, 0.09%)</title><rect x="691.2" y="1425" width="1.1" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="694.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>perf_pmu_enable.part.89 (8 samples, 0.70%)</title><rect x="288.9" y="1585" width="8.3" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="291.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>Lorg/glassfish/jersey/internal/Errors$1:::call (1 samples, 0.09%)</title><rect x="1161.0" y="1009" width="1.0" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text text-anchor="" x="1163.97" 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/ServerRuntime$Responder:::processResponse (13 samples, 1.14%)</title><rect x="636.3" y="945" width="13.5" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="639.29" 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>PhaseChaitin::build_ifg_physical (1 samples, 0.09%)</title><rect x="183.2" y="1681" width="1.0" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="186.16" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (1 samples, 0.09%)</title><rect x="522.2" y="657" width="1.1" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="525.23" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___writev (1 samples, 0.09%)</title><rect x="577.2" y="1777" width="1.0" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" />
<text text-anchor="" x="580.19" 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/Errors:::process (57 samples, 5.01%)</title><rect x="927.7" y="1041" width="59.1" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="930.66" y="1051.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>Ljersey/repackaged/com/google/common/collect/Lists:::newLinkedList (1 samples, 0.09%)</title><rect x="932.8" y="897" width="1.1" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="935.85" 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/uri/internal/JerseyUriBuilder:::uri (1 samples, 0.09%)</title><rect x="702.7" y="1153" width="1.0" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="705.65" 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>Lcom/fasterxml/jackson/module/afterburner/deser/SuperSonicBeanDeserializer:::deserialize (2 samples, 0.18%)</title><rect x="657.0" y="625" width="2.1" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text text-anchor="" x="660.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>Lorg/glassfish/jersey/uri/internal/JerseyUriBuilder:::build (1 samples, 0.09%)</title><rect x="703.7" y="1169" width="1.0" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
<text text-anchor="" x="706.69" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/http/HttpFields:::getFieldNames (1 samples, 0.09%)</title><rect x="900.7" y="1345" width="1.0" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="903.70" 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>JavaCalls::call_helper (78 samples, 6.85%)</title><rect x="63.9" y="1729" width="80.9" height="15.0" fill="rgb(180,180,51)" rx="2" ry="2" />
<text text-anchor="" x="66.92" y="1739.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>Lorg/glassfish/jersey/message/internal/InboundMessageContext$5:::apply (1 samples, 0.09%)</title><rect x="29.7" y="1041" width="1.0" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="32.70" 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/ContainerFilteringStage:::apply (3 samples, 0.26%)</title><rect x="624.9" y="945" width="3.1" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text text-anchor="" x="627.89" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetDescriptor (1 samples, 0.09%)</title><rect x="930.8" y="833" width="1.0" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text text-anchor="" x="933.77" 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/servlet/ServletContainer:::service (9 samples, 0.79%)</title><rect x="876.9" y="1777" width="9.3" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="879.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>Lorg/glassfish/jersey/process/internal/RequestScope:::runInScope (7 samples, 0.62%)</title><rect x="708.9" y="1089" width="7.2" height="15.0" fill="rgb(71,220,71)" rx="2" ry="2" />
<text text-anchor="" x="711.88" 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>WatcherThread::sleep (7 samples, 0.62%)</title><rect x="382.2" y="1793" width="7.3" height="15.0" fill="rgb(191,191,55)" rx="2" ry="2" />
<text text-anchor="" x="385.25" 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>Lio/dropwizard/servlets/ThreadNameFilter:::doFilter (93 samples, 8.17%)</title><rect x="1054.2" y="1233" width="96.4" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text text-anchor="" x="1057.17" y="1243.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>Lorg/eclipse/jetty/server/HttpConnection:::send (5 samples, 0.44%)</title><rect x="493.2" y="721" width="5.2" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="496.20" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.09%)</title><rect x="131.3" y="1569" width="1.1" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="134.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>Lorg/glassfish/jersey/server/model/internal/JavaResourceMethodDispatcherProvider$AbstractMethodParamInvoker:::getParamValues (1 samples, 0.09%)</title><rect x="1008.5" y="897" width="1.1" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="1011.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/Formatter$FormatSpecifier:::print (1 samples, 0.09%)</title><rect x="613.5" y="961" width="1.0" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="616.48" 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.18%)</title><rect x="334.6" y="1777" width="2.0" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="337.55" 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/Pattern$BmpCharProperty:::match (1 samples, 0.09%)</title><rect x="921.4" y="929" width="1.1" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text text-anchor="" x="924.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>Lorg/jvnet/hk2/internal/SystemDescriptor:::dispose (4 samples, 0.35%)</title><rect x="871.7" y="1521" width="4.1" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="874.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>Lorg/glassfish/jersey/servlet/WebComponent:::serviceImpl (7 samples, 0.62%)</title><rect x="708.9" y="1137" width="7.2" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="711.88" 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>ep_poll (2 samples, 0.18%)</title><rect x="719.2" y="1761" width="2.1" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="722.24" 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/ServiceLocatorImpl:::internalGetService (1 samples, 0.09%)</title><rect x="864.4" y="785" width="1.0" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="867.41" 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>[libpthread-2.23.so] (1 samples, 0.09%)</title><rect x="582.4" y="1793" width="1.0" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text text-anchor="" x="585.37" 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.09%)</title><rect x="958.8" y="833" width="1.0" height="15.0" fill="rgb(104,214,214)" rx="2" ry="2" />
<text text-anchor="" x="961.77" 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/String:::replace (9 samples, 0.79%)</title><rect x="1102.9" y="833" width="9.3" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="1105.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/glassfish/jersey/server/internal/routing/MethodSelectingRouter:::getMethodRouter (2 samples, 0.18%)</title><rect x="938.0" y="817" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="941.03" 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>pipe_write (2 samples, 0.18%)</title><rect x="45.3" y="1697" width="2.0" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="48.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>nmi_handle (1 samples, 0.09%)</title><rect x="578.2" y="1505" width="1.1" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="581.22" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceHandleImpl:::getService (1 samples, 0.09%)</title><rect x="864.4" y="705" width="1.0" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="867.41" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/Errors$1:::call (7 samples, 0.62%)</title><rect x="858.2" y="1009" width="7.2" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text text-anchor="" x="861.19" 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>__perf_event_task_sched_in (1 samples, 0.09%)</title><rect x="425.8" y="1665" width="1.0" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="428.80" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (1 samples, 0.09%)</title><rect x="271.3" y="1585" width="1.0" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="274.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>sys_writev (2 samples, 0.18%)</title><rect x="886.2" y="1777" width="2.1" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="889.19" 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/servlet/WebComponent:::addRequestHeaders (3 samples, 0.26%)</title><rect x="529.5" y="1089" width="3.1" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text text-anchor="" x="532.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>Lorg/eclipse/jetty/http/HttpParser:::parseHeaders (1 samples, 0.09%)</title><rect x="1021.0" y="1521" width="1.0" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text text-anchor="" x="1023.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>Lorg/jvnet/hk2/internal/ConstantActiveDescriptor:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="1137.1" y="817" width="1.1" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="1140.12" 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:::getNode (1 samples, 0.09%)</title><rect x="475.6" y="785" width="1.0" height="15.0" fill="rgb(104,215,215)" rx="2" ry="2" />
<text text-anchor="" x="478.57" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (2 samples, 0.18%)</title><rect x="587.6" y="1665" width="2.0" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="590.56" 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>Lio/dropwizard/request/logging/async/AsyncAccessEventAppenderFactory$1:::preprocess (4 samples, 0.35%)</title><rect x="748.3" y="1425" width="4.1" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="751.28" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljavax/ws/rs/core/AbstractMultivaluedMap:::get (1 samples, 0.09%)</title><rect x="1087.3" y="753" width="1.1" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="1090.35" 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/regex/Pattern$Curly:::match0 (1 samples, 0.09%)</title><rect x="921.4" y="849" width="1.1" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="924.44" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (1 samples, 0.09%)</title><rect x="364.6" y="1521" width="1.1" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="367.62" 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>tcp_write_xmit (1 samples, 0.09%)</title><rect x="999.2" y="1153" width="1.0" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="1002.21" 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>apparmor_file_permission (1 samples, 0.09%)</title><rect x="540.9" y="1377" width="1.0" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="543.90" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.09%)</title><rect x="595.9" y="1809" width="1.0" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="598.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>__bitmap_intersects (1 samples, 0.09%)</title><rect x="1037.6" y="1153" width="1.0" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="1040.57" 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>do_softirq.part.19 (1 samples, 0.09%)</title><rect x="796.0" y="257" width="1.0" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="798.98" 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>tcp_push (1 samples, 0.09%)</title><rect x="700.6" y="1393" width="1.0" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="703.58" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (12 samples, 1.05%)</title><rect x="148.9" y="1841" width="12.5" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text text-anchor="" x="151.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>entry_SYSCALL_64_fastpath (3 samples, 0.26%)</title><rect x="48.4" y="1793" width="3.1" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="51.37" 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/text/SimpleDateFormat:::format (3 samples, 0.26%)</title><rect x="84.7" y="1441" width="3.1" height="15.0" fill="rgb(70,219,70)" rx="2" ry="2" />
<text text-anchor="" x="87.66" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/core/json/ByteSourceJsonBootstrapper:::detectEncoding (1 samples, 0.09%)</title><rect x="511.9" y="593" width="1.0" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="514.86" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (2 samples, 0.18%)</title><rect x="271.3" y="1649" width="2.1" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="274.30" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/AbstractStringBuilder:::ensureCapacityInternal (1 samples, 0.09%)</title><rect x="543.0" y="1457" width="1.0" height="15.0" fill="rgb(56,171,171)" rx="2" ry="2" />
<text text-anchor="" x="545.97" 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>ObjectMonitor::enter (1 samples, 0.09%)</title><rect x="575.1" y="1585" width="1.1" height="15.0" fill="rgb(188,188,54)" rx="2" ry="2" />
<text text-anchor="" x="578.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>CompileBroker::invoke_compiler_on_method (10 samples, 0.88%)</title><rect x="182.1" y="1761" width="10.4" height="15.0" fill="rgb(191,191,55)" rx="2" ry="2" />
<text text-anchor="" x="185.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/ClazzCreator:::postConstructMe (1 samples, 0.09%)</title><rect x="516.0" y="641" width="1.0" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text text-anchor="" x="519.01" 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>Ljersey/repackaged/com/google/common/net/InetAddresses:::isUriInetAddress (1 samples, 0.09%)</title><rect x="1159.9" y="1089" width="1.1" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1162.93" 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_readv_writev (1 samples, 0.09%)</title><rect x="869.6" y="1617" width="1.0" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="872.60" 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/Collections:::emptyList (1 samples, 0.09%)</title><rect x="482.8" y="817" width="1.1" height="15.0" fill="rgb(68,182,182)" rx="2" ry="2" />
<text text-anchor="" x="485.83" 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>Ljavax/ws/rs/core/Response:::status (1 samples, 0.09%)</title><rect x="507.7" y="849" width="1.1" height="15.0" fill="rgb(68,181,181)" rx="2" ry="2" />
<text text-anchor="" x="510.72" 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/CommittingOutputStream:::commitStream (5 samples, 0.44%)</title><rect x="801.2" y="833" width="5.1" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text text-anchor="" x="804.16" 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>Lio/dropwizard/jetty/RoutingHandler:::handle (11 samples, 0.97%)</title><rect x="856.1" y="1441" width="11.4" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text text-anchor="" x="859.12" 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>tcp_transmit_skb (1 samples, 0.09%)</title><rect x="825.0" y="785" width="1.0" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="828.01" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (2 samples, 0.18%)</title><rect x="1174.4" y="1601" width="2.1" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="1177.45" 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>[unknown] (23 samples, 2.02%)</title><rect x="719.2" y="1825" width="23.9" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text text-anchor="" x="722.24" 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/io/FilterOutputStream:::write (11 samples, 0.97%)</title><rect x="100.2" y="1569" width="11.4" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="103.21" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/AbstractStringBuilder:::append (1 samples, 0.09%)</title><rect x="613.5" y="913" width="1.0" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text text-anchor="" x="616.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>Ljava/lang/Enum:::ordinal (1 samples, 0.09%)</title><rect x="454.8" y="993" width="1.1" height="15.0" fill="rgb(68,181,181)" rx="2" ry="2" />
<text text-anchor="" x="457.83" 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/PerLookupContext:::findOrCreate (6 samples, 0.53%)</title><rect x="830.2" y="945" width="6.2" height="15.0" fill="rgb(54,203,54)" rx="2" ry="2" />
<text text-anchor="" x="833.19" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_handle (1 samples, 0.09%)</title><rect x="262.0" y="1473" width="1.0" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="264.97" 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/HttpHeaderReaderImpl:::next (1 samples, 0.09%)</title><rect x="29.7" y="913" width="1.0" height="15.0" fill="rgb(89,200,200)" rx="2" ry="2" />
<text text-anchor="" x="32.70" 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:::handle (99 samples, 8.70%)</title><rect x="1047.9" y="1537" width="102.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1050.94" 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>finish_task_switch (2 samples, 0.18%)</title><rect x="48.4" y="1681" width="2.0" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="51.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>Ljava/util/Collections$UnmodifiableMap:::hashCode (1 samples, 0.09%)</title><rect x="1117.4" y="625" width="1.1" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="1120.42" 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/io/AbstractConnection$ReadCallback:::succeeded (15 samples, 1.32%)</title><rect x="854.0" y="1585" width="15.6" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text text-anchor="" x="857.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>Ljava/net/URI$Parser:::scan (1 samples, 0.09%)</title><rect x="535.7" y="1025" width="1.0" height="15.0" fill="rgb(107,218,218)" rx="2" ry="2" />
<text text-anchor="" x="538.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>__perf_event_task_sched_in (3 samples, 0.26%)</title><rect x="724.4" y="1649" width="3.1" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="727.43" 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 (8 samples, 0.70%)</title><rect x="288.9" y="1697" width="8.3" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="291.93" 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>Parker::park (3 samples, 0.26%)</title><rect x="123.0" y="1601" width="3.1" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="126.02" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (3 samples, 0.26%)</title><rect x="561.6" y="1697" width="3.1" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="564.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>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.35%)</title><rect x="876.9" y="1553" width="4.1" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text text-anchor="" x="879.85" 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>finish_task_switch (2 samples, 0.18%)</title><rect x="881.0" y="1537" width="2.1" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="884.00" 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/http/HttpParser:::parseNext (5 samples, 0.44%)</title><rect x="695.4" y="1521" width="5.2" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text text-anchor="" x="698.40" 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/jvnet/hk2/internal/ServiceLocatorImpl:::resolveContext (1 samples, 0.09%)</title><rect x="785.6" y="753" width="1.0" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="788.61" 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>Lch/qos/logback/access/spi/AccessEvent:::buildRequestHeaderMap (1 samples, 0.09%)</title><rect x="10.0" y="1377" width="1.0" height="15.0" fill="rgb(102,212,212)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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 (2 samples, 0.18%)</title><rect x="504.6" y="817" width="2.1" height="15.0" fill="rgb(104,214,214)" rx="2" ry="2" />
<text text-anchor="" x="507.60" 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/lang/String:::toLowerCase (2 samples, 0.18%)</title><rect x="530.5" y="945" width="2.1" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="533.53" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="715.1" y="1025" width="1.0" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="718.10" 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/ServiceLocatorImpl:::internalGetDescriptor (2 samples, 0.18%)</title><rect x="1124.7" y="577" width="2.0" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text text-anchor="" x="1127.67" 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>futex_wait_queue_me (4 samples, 0.35%)</title><rect x="389.5" y="1697" width="4.2" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="392.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/eclipse/jetty/server/HttpChannelOverHttp:::recycle (1 samples, 0.09%)</title><rect x="902.8" y="1489" width="1.0" height="15.0" fill="rgb(57,172,172)" rx="2" ry="2" />
<text text-anchor="" x="905.78" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (2 samples, 0.18%)</title><rect x="136.5" y="1489" width="2.1" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="139.50" 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>Lcom/fasterxml/jackson/jaxrs/base/ProviderBase:::_isIgnorableForReading (1 samples, 0.09%)</title><rect x="971.2" y="609" width="1.0" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="974.21" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/Server:::handle (93 samples, 8.17%)</title><rect x="1054.2" y="1521" width="96.4" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="1057.17" y="1531.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>ip_local_out (1 samples, 0.09%)</title><rect x="718.2" y="1537" width="1.0" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="721.21" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (3 samples, 0.26%)</title><rect x="724.4" y="1777" width="3.1" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="727.43" 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_write_xmit (1 samples, 0.09%)</title><rect x="577.2" y="1585" width="1.0" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="580.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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetService (4 samples, 0.35%)</title><rect x="819.8" y="769" width="4.2" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="822.82" 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>local_apic_timer_interrupt (1 samples, 0.09%)</title><rect x="973.3" y="433" width="1.0" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="976.29" 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>[unknown] (1 samples, 0.09%)</title><rect x="1028.2" y="1569" width="1.1" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="1031.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>Ljava/util/concurrent/locks/ReentrantReadWriteLock$Sync:::tryReleaseShared (1 samples, 0.09%)</title><rect x="755.5" y="1249" width="1.1" height="15.0" fill="rgb(96,208,208)" rx="2" ry="2" />
<text text-anchor="" x="758.54" 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/SystemDescriptor:::create (3 samples, 0.26%)</title><rect x="662.2" y="625" width="3.1" height="15.0" fill="rgb(101,211,211)" rx="2" ry="2" />
<text text-anchor="" x="665.21" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.09%)</title><rect x="363.6" y="1601" width="1.0" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="366.59" 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>sys_futex (7 samples, 0.62%)</title><rect x="167.6" y="1793" width="7.3" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="170.61" 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>JavaThread::~JavaThread (1 samples, 0.09%)</title><rect x="35.9" y="1825" width="1.1" height="15.0" fill="rgb(177,177,51)" rx="2" ry="2" />
<text text-anchor="" x="38.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>do_nmi (1 samples, 0.09%)</title><rect x="591.7" y="1553" width="1.0" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="594.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>Ljava/lang/AbstractStringBuilder:::ensureCapacityInternal (1 samples, 0.09%)</title><rect x="441.4" y="1169" width="1.0" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="444.35" 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/jvnet/hk2/internal/InstanceLifecycleEventImpl:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="473.5" y="785" width="1.0" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="476.50" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/routing/UriRoutingContext:::pushLeftHandPath (1 samples, 0.09%)</title><rect x="783.5" y="849" width="1.1" height="15.0" fill="rgb(92,204,204)" rx="2" ry="2" />
<text text-anchor="" x="786.53" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lio/dropwizard/jetty/BiDiGzipHandler:::handle (99 samples, 8.70%)</title><rect x="438.2" y="1457" width="102.7" height="15.0" fill="rgb(80,193,193)" rx="2" ry="2" />
<text text-anchor="" x="441.24" y="1467.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>Lch/qos/logback/access/pattern/ElapsedTimeConverter:::convert (6 samples, 0.53%)</title><rect x="38.0" y="1809" width="6.2" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="41.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>sock_write_iter (1 samples, 0.09%)</title><rect x="429.9" y="1729" width="1.1" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="432.95" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/ContainerResponse:::close (1 samples, 0.09%)</title><rect x="959.8" y="929" width="1.0" height="15.0" fill="rgb(92,203,203)" rx="2" ry="2" />
<text text-anchor="" x="962.81" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/PropertiesHelper:::getValue (3 samples, 0.26%)</title><rect x="806.3" y="865" width="3.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="809.34" 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_futex (1 samples, 0.09%)</title><rect x="574.1" y="1761" width="1.0" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="577.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>__schedule (1 samples, 0.09%)</title><rect x="412.3" y="1441" width="1.1" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="415.32" 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:::createMe (1 samples, 0.09%)</title><rect x="1136.1" y="897" width="1.0" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text text-anchor="" x="1139.08" 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/handler/ScopedHandler:::handle (93 samples, 8.17%)</title><rect x="1054.2" y="1377" width="96.4" height="15.0" fill="rgb(81,194,194)" rx="2" ry="2" />
<text text-anchor="" x="1057.17" y="1387.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>[unknown] (2 samples, 0.18%)</title><rect x="285.8" y="1841" width="2.1" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text text-anchor="" x="288.82" 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>end_repeat_nmi (1 samples, 0.09%)</title><rect x="253.7" y="1489" width="1.0" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="256.67" 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>process_backlog (1 samples, 0.09%)</title><rect x="954.6" y="161" width="1.1" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="957.62" 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>Ljava/lang/String:::length (1 samples, 0.09%)</title><rect x="81.5" y="1489" width="1.1" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="84.55" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/OutboundMessageContext:::setMediaType (1 samples, 0.09%)</title><rect x="18.3" y="849" width="1.0" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="21.30" 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/servlet/ServletHandler$CachedChain:::doFilter (4 samples, 0.35%)</title><rect x="555.4" y="1233" width="4.2" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text text-anchor="" x="558.41" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.09%)</title><rect x="281.7" y="1745" width="1.0" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="284.67" 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/http/HttpGenerator:::generateHeaders (1 samples, 0.09%)</title><rect x="950.5" y="641" width="1.0" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text text-anchor="" x="953.47" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/ReentrantLock:::lock (1 samples, 0.09%)</title><rect x="707.8" y="1393" width="1.1" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="710.84" 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/ReaderInterceptorExecutor$TerminalReaderInterceptor:::aroundReadFrom (1 samples, 0.09%)</title><rect x="558.5" y="785" width="1.1" height="15.0" fill="rgb(64,212,64)" rx="2" ry="2" />
<text text-anchor="" x="561.52" 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>__local_bh_enable_ip (1 samples, 0.09%)</title><rect x="954.6" y="241" width="1.1" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="957.62" 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>JavaThread::run (125 samples, 10.98%)</title><rect x="432.0" y="1809" width="129.6" height="15.0" fill="rgb(224,224,68)" rx="2" ry="2" />
<text text-anchor="" x="435.02" y="1819.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>do_iter_readv_writev (2 samples, 0.18%)</title><rect x="421.7" y="1729" width="2.0" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="424.65" 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/fasterxml/jackson/core/json/ByteSourceJsonBootstrapper:::constructParser (1 samples, 0.09%)</title><rect x="818.8" y="609" width="1.0" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="821.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>ip_local_out (1 samples, 0.09%)</title><rect x="590.7" y="1553" width="1.0" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="593.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/glassfish/jersey/servlet/ServletContainer:::service (4 samples, 0.35%)</title><rect x="555.4" y="1201" width="4.2" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="558.41" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljavax/ws/rs/core/UriBuilder:::fromUri (19 samples, 1.67%)</title><rect x="1056.2" y="1153" width="19.7" height="15.0" fill="rgb(57,172,172)" rx="2" ry="2" />
<text text-anchor="" x="1059.24" 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>Monitor::ILock (1 samples, 0.09%)</title><rect x="382.2" y="1761" width="1.1" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="385.25" 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 (2 samples, 0.18%)</title><rect x="494.2" y="465" width="2.1" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="497.24" 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>sock_write_iter (1 samples, 0.09%)</title><rect x="643.6" y="705" width="1.0" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="646.55" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/PropertiesHelper:::getPropertyNameForRuntime (1 samples, 0.09%)</title><rect x="23.5" y="849" width="1.0" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="26.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>futex_wait_queue_me (2 samples, 0.18%)</title><rect x="57.7" y="1745" width="2.1" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="60.70" 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_output (1 samples, 0.09%)</title><rect x="643.6" y="545" width="1.0" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="646.55" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.09%)</title><rect x="575.1" y="1649" width="1.1" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text text-anchor="" x="578.11" 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/LinkedList$Node:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="519.1" y="481" width="1.1" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="522.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>vfs_write (1 samples, 0.09%)</title><rect x="63.9" y="1489" width="1.1" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="66.92" 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.09%)</title><rect x="695.4" y="1473" width="1.0" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="698.40" 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/ServiceLocatorImpl:::internalGetService (3 samples, 0.26%)</title><rect x="471.4" y="865" width="3.1" height="15.0" fill="rgb(93,204,204)" rx="2" ry="2" />
<text text-anchor="" x="474.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>tcp_push (1 samples, 0.09%)</title><rect x="690.2" y="1201" width="1.0" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="693.21" 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>Ljava/net/URI:::access$300 (1 samples, 0.09%)</title><rect x="703.7" y="1009" width="1.0" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="706.69" 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/servlet/WebComponent:::filterFormParameters (1 samples, 0.09%)</title><rect x="532.6" y="1089" width="1.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="535.60" 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/Thread:::setName (3 samples, 0.26%)</title><rect x="444.5" y="1217" width="3.1" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="447.46" 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>sys_futex (2 samples, 0.18%)</title><rect x="309.7" y="1729" width="2.0" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="312.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>Lorg/glassfish/jersey/message/internal/InboundMessageContext:::readEntity (3 samples, 0.26%)</title><rect x="509.8" y="801" width="3.1" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="512.79" 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 (1 samples, 0.09%)</title><rect x="1036.5" y="1729" width="1.1" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="1039.54" 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_transmit_skb (3 samples, 0.26%)</title><rect x="1039.6" y="1601" width="3.2" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="1042.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/util/LinkedList:::listIterator (1 samples, 0.09%)</title><rect x="472.5" y="737" width="1.0" height="15.0" fill="rgb(80,193,193)" rx="2" ry="2" />
<text text-anchor="" x="475.46" 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/internal/inject/EntityParamValueFactoryProvider$EntityValueFactory:::provide (1 samples, 0.09%)</title><rect x="558.5" y="849" width="1.1" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="561.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>do_nmi (1 samples, 0.09%)</title><rect x="400.9" y="1441" width="1.1" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="403.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>ip_local_out (1 samples, 0.09%)</title><rect x="589.6" y="1569" width="1.1" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="592.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>Lch/qos/logback/core/AsyncAppenderBase:::append (4 samples, 0.35%)</title><rect x="748.3" y="1457" width="4.1" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" />
<text text-anchor="" x="751.28" 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>ctx_sched_out (1 samples, 0.09%)</title><rect x="168.6" y="1681" width="1.1" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="171.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>Lorg/glassfish/jersey/message/internal/InboundMessageContext:::readEntity (1 samples, 0.09%)</title><rect x="1008.5" y="817" width="1.1" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="1011.54" 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/LinkedList:::addAll (1 samples, 0.09%)</title><rect x="478.7" y="849" width="1.0" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="481.68" 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>start_thread (125 samples, 10.98%)</title><rect x="432.0" y="1841" width="129.6" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text text-anchor="" x="435.02" y="1851.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>Ljava/util/Collections:::enumeration (3 samples, 0.26%)</title><rect x="67.0" y="1553" width="3.1" height="15.0" fill="rgb(57,172,172)" rx="2" ry="2" />
<text text-anchor="" x="70.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>Lio/dropwizard/jersey/filter/AllowedMethodsFilter:::doFilter (3 samples, 0.26%)</title><rect x="702.7" y="1297" width="3.1" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="705.65" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (1 samples, 0.09%)</title><rect x="700.6" y="1425" width="1.0" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="703.58" 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/internal/util/collection/KeyComparatorHashMap:::getEntry (2 samples, 0.18%)</title><rect x="802.2" y="705" width="2.1" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="805.20" 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/glassfish/jersey/internal/util/collection/KeyComparatorLinkedHashMap:::get (1 samples, 0.09%)</title><rect x="22.4" y="721" width="1.1" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="25.44" 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/lang/RuntimeException:::&lt;init&gt; (11 samples, 0.97%)</title><rect x="1056.2" y="1025" width="11.4" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="1059.24" 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>JavaThread::run (121 samples, 10.63%)</title><rect x="745.2" y="1809" width="125.4" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="748.17" y="1819.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>Lorg/glassfish/jersey/uri/internal/JerseyUriBuilder:::_build (4 samples, 0.35%)</title><rect x="533.6" y="1137" width="4.2" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="536.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/lang/String$CaseInsensitiveComparator:::compare (1 samples, 0.09%)</title><rect x="433.1" y="1329" width="1.0" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text text-anchor="" x="436.06" 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/jvnet/hk2/internal/ServiceLocatorImpl:::getInjectionResolverForInjectee (2 samples, 0.18%)</title><rect x="1128.8" y="577" width="2.1" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="1131.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>native_sched_clock (1 samples, 0.09%)</title><rect x="584.4" y="1793" width="1.1" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="587.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>Ljersey/repackaged/com/google/common/collect/Lists:::newArrayList (1 samples, 0.09%)</title><rect x="815.7" y="753" width="1.0" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="818.68" 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:::getService (1 samples, 0.09%)</title><rect x="858.2" y="897" width="1.0" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="861.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>Lorg/eclipse/jetty/server/HttpChannel:::sendResponse (1 samples, 0.09%)</title><rect x="21.4" y="737" width="1.0" height="15.0" fill="rgb(91,203,203)" rx="2" ry="2" />
<text text-anchor="" x="24.41" 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/ServiceLocatorImpl:::getUnqualifiedService (1 samples, 0.09%)</title><rect x="864.4" y="801" width="1.0" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="867.41" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fdval (1 samples, 0.09%)</title><rect x="1163.0" y="1441" width="1.1" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text text-anchor="" x="1166.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>frame::sender_for_compiled_frame (1 samples, 0.09%)</title><rect x="773.2" y="865" width="1.0" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="776.16" 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_event_context_sched_in (2 samples, 0.18%)</title><rect x="266.1" y="1633" width="2.1" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="269.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>Lorg/eclipse/jetty/server/Server:::handle (3 samples, 0.26%)</title><rect x="702.7" y="1537" width="3.1" height="15.0" fill="rgb(100,210,210)" rx="2" ry="2" />
<text text-anchor="" x="705.65" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpConnection:::send (1 samples, 0.09%)</title><rect x="859.2" y="737" width="1.1" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="862.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/eclipse/jetty/server/handler/ContextHandler:::doScope (84 samples, 7.38%)</title><rect x="756.6" y="1361" width="87.1" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text text-anchor="" x="759.57" y="1371.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>x86_pmu_enable (8 samples, 0.70%)</title><rect x="288.9" y="1569" width="8.3" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="291.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>inet_recvmsg (1 samples, 0.09%)</title><rect x="34.9" y="1425" width="1.0" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="37.89" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/LinkedHashMap$LinkedValues:::iterator (1 samples, 0.09%)</title><rect x="932.8" y="817" width="1.1" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text text-anchor="" x="935.85" 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>Lio/dropwizard/request/logging/async/AsyncAccessEventAppenderFactory$1:::preprocess (4 samples, 0.35%)</title><rect x="1047.9" y="1441" width="4.2" height="15.0" fill="rgb(93,204,204)" rx="2" ry="2" />
<text text-anchor="" x="1050.94" 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/internal/util/collection/KeyComparatorLinkedHashMap:::addEntry (1 samples, 0.09%)</title><rect x="839.5" y="1009" width="1.1" height="15.0" fill="rgb(53,167,167)" rx="2" ry="2" />
<text text-anchor="" x="842.53" 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>pthread_cond_wait@@GLIBC_2.3.2 (1 samples, 0.09%)</title><rect x="133.4" y="1617" width="1.0" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text text-anchor="" x="136.39" 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/ClazzCreator:::createMe (1 samples, 0.09%)</title><rect x="829.2" y="945" width="1.0" height="15.0" fill="rgb(102,247,102)" rx="2" ry="2" />
<text text-anchor="" x="832.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/eclipse/jetty/server/HttpChannelOverHttp:::headerComplete (3 samples, 0.26%)</title><rect x="696.4" y="1489" width="3.1" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text text-anchor="" x="699.43" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.18%)</title><rect x="45.3" y="1777" width="2.0" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="48.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>Ljava/util/HashMap:::put (2 samples, 0.18%)</title><rect x="749.3" y="1297" width="2.1" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="752.31" 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>Ljava/util/AbstractList:::listIterator (1 samples, 0.09%)</title><rect x="782.5" y="769" width="1.0" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="785.50" 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/ChannelEndPoint:::fill (1 samples, 0.09%)</title><rect x="1163.0" y="1537" width="1.1" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="1166.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>AdvancedThresholdPolicy::common (1 samples, 0.09%)</title><rect x="852.0" y="1409" width="1.0" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="854.97" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (1 samples, 0.09%)</title><rect x="954.6" y="449" width="1.1" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="957.62" 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>Ljava/util/regex/Matcher:::getTextLength (1 samples, 0.09%)</title><rect x="1159.9" y="961" width="1.1" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="1162.93" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.35%)</title><rect x="1174.4" y="1825" width="4.2" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text text-anchor="" x="1177.45" 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:::onRequest (1 samples, 0.09%)</title><rect x="545.0" y="1473" width="1.1" height="15.0" fill="rgb(78,190,190)" rx="2" ry="2" />
<text text-anchor="" x="548.04" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljavax/ws/rs/core/UriBuilder:::fromUri (18 samples, 1.58%)</title><rect x="759.7" y="1153" width="18.6" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="762.68" 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/lang/Throwable:::fillInStackTrace (5 samples, 0.44%)</title><rect x="606.2" y="977" width="5.2" height="15.0" fill="rgb(92,204,204)" rx="2" ry="2" />
<text text-anchor="" x="609.22" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (1 samples, 0.09%)</title><rect x="1133.0" y="737" width="1.0" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="1135.97" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/handler/gzip/GzipHandler:::handle (8 samples, 0.70%)</title><rect x="708.9" y="1457" width="8.3" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text text-anchor="" x="711.88" 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/core/joran/spi/ConsoleTarget$1:::flush (2 samples, 0.18%)</title><rect x="98.1" y="1585" width="2.1" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="101.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>Lorg/jvnet/hk2/internal/ClazzCreator:::resolveAllDependencies (1 samples, 0.09%)</title><rect x="1018.9" y="609" width="1.0" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text text-anchor="" x="1021.91" 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>smp_apic_timer_interrupt (1 samples, 0.09%)</title><rect x="694.4" y="1489" width="1.0" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="697.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>Lsun/nio/ch/FileDispatcherImpl:::writev0 (1 samples, 0.09%)</title><rect x="1098.8" y="545" width="1.0" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text text-anchor="" x="1101.75" 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/servlet/WebComponent:::initContainerRequest (6 samples, 0.53%)</title><rect x="676.7" y="1105" width="6.3" height="15.0" fill="rgb(68,181,181)" rx="2" ry="2" />
<text text-anchor="" x="679.73" 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>new_sync_write (1 samples, 0.09%)</title><rect x="37.0" y="1697" width="1.0" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="39.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_futex (8 samples, 0.70%)</title><rect x="288.9" y="1713" width="8.3" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="291.93" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lch/qos/logback/core/util/CachingDateFormatter:::format (3 samples, 0.26%)</title><rect x="84.7" y="1489" width="3.1" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text text-anchor="" x="87.66" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getUnqualifiedService (1 samples, 0.09%)</title><rect x="515.0" y="625" width="1.0" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="517.97" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.09%)</title><rect x="1133.0" y="881" width="1.0" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="1135.97" 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>__wake_up_common (1 samples, 0.09%)</title><rect x="577.2" y="1233" width="1.0" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="580.19" 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>Lorg/glassfish/jersey/message/internal/InboundMessageContext:::readEntity (4 samples, 0.35%)</title><rect x="815.7" y="801" width="4.1" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="818.68" 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>Lcom/fasterxml/jackson/jaxrs/base/ProviderBase:::readFrom (2 samples, 0.18%)</title><rect x="25.6" y="673" width="2.0" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text text-anchor="" x="28.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>Ljava/util/Collections$UnmodifiableCollection:::iterator (1 samples, 0.09%)</title><rect x="622.8" y="785" width="1.0" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text text-anchor="" x="625.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>tcp_sendmsg (3 samples, 0.26%)</title><rect x="1039.6" y="1665" width="3.2" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="1042.65" 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_writev (1 samples, 0.09%)</title><rect x="1149.6" y="1153" width="1.0" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="1152.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>Lch/qos/logback/core/spi/AppenderAttachableImpl:::appendLoopOnAppenders (5 samples, 0.44%)</title><rect x="747.2" y="1489" width="5.2" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text text-anchor="" x="750.24" 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/jvnet/hk2/internal/ServiceHandleImpl:::getService (1 samples, 0.09%)</title><rect x="834.3" y="833" width="1.1" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="837.34" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.18%)</title><rect x="144.8" y="1729" width="2.1" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="147.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>Lorg/glassfish/jersey/message/internal/ReaderInterceptorExecutor$TerminalReaderInterceptor:::invokeReadFrom (5 samples, 0.44%)</title><rect x="1118.5" y="705" width="5.1" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="1121.45" 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/eclipse/jetty/server/handler/ScopedHandler:::handle (84 samples, 7.38%)</title><rect x="756.6" y="1377" width="87.1" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="759.57" y="1387.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>do_readv_writev (1 samples, 0.09%)</title><rect x="576.2" y="1761" width="1.0" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="579.15" 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/ExponentiallyDecayingReservoir:::lockForRegularUsage (1 samples, 0.09%)</title><rect x="812.6" y="737" width="1.0" height="15.0" fill="rgb(78,191,191)" rx="2" ry="2" />
<text text-anchor="" x="815.57" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (2 samples, 0.18%)</title><rect x="313.8" y="1617" width="2.1" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="316.81" 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/Formatter:::format (1 samples, 0.09%)</title><rect x="555.4" y="1041" width="1.0" height="15.0" fill="rgb(83,231,83)" rx="2" ry="2" />
<text text-anchor="" x="558.41" 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/InboundMessageContext:::getMediaType (2 samples, 0.18%)</title><rect x="680.9" y="1073" width="2.1" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="683.88" 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/HttpChannelOverHttp:::startRequest (1 samples, 0.09%)</title><rect x="1153.7" y="1489" width="1.0" height="15.0" fill="rgb(78,190,190)" rx="2" ry="2" />
<text text-anchor="" x="1156.71" 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>jlong_disjoint_arraycopy (1 samples, 0.09%)</title><rect x="543.0" y="1441" width="1.0" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text text-anchor="" x="545.97" 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/Object:::notify (1 samples, 0.09%)</title><rect x="818.8" y="353" width="1.0" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text text-anchor="" x="821.79" 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>Lcom/codahale/metrics/Histogram:::update (1 samples, 0.09%)</title><rect x="812.6" y="785" width="1.0" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="815.57" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/io/SelectChannelEndPoint:::updateKey (1 samples, 0.09%)</title><rect x="875.8" y="1825" width="1.1" height="15.0" fill="rgb(59,209,59)" rx="2" ry="2" />
<text text-anchor="" x="878.82" 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.09%)</title><rect x="410.2" y="1793" width="1.1" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text text-anchor="" x="413.25" 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/monitoring/CompositeRequestEventListener:::onEvent (1 samples, 0.09%)</title><rect x="506.7" y="897" width="1.0" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="509.68" 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>x86_pmu_enable (3 samples, 0.26%)</title><rect x="561.6" y="1569" width="3.1" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="564.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>end_repeat_nmi (2 samples, 0.18%)</title><rect x="326.3" y="1553" width="2.0" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="329.26" 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/servlet/ServletContainer:::service (84 samples, 7.38%)</title><rect x="910.0" y="1185" width="87.1" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="913.04" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/glass..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (2 samples, 0.18%)</title><rect x="271.3" y="1601" width="2.1" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="274.30" 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/handler/ContextHandler:::doHandle (10 samples, 0.88%)</title><rect x="857.2" y="1345" width="10.3" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="860.15" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.35%)</title><rect x="400.9" y="1697" width="4.2" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="403.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>native_write_msr_safe (2 samples, 0.18%)</title><rect x="741.0" y="1793" width="2.1" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="744.02" 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.35%)</title><rect x="555.4" y="1185" width="4.2" height="15.0" fill="rgb(81,194,194)" rx="2" ry="2" />
<text text-anchor="" x="558.41" 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/glassfish/jersey/server/internal/routing/RoutingStage:::apply (8 samples, 0.70%)</title><rect x="1084.2" y="929" width="8.3" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="1087.24" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (1 samples, 0.09%)</title><rect x="417.5" y="1665" width="1.0" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="420.50" 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>tcp_write_xmit (1 samples, 0.09%)</title><rect x="590.7" y="1601" width="1.0" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="593.67" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lio/dropwizard/servlets/ThreadNameFilter:::doFilter (1 samples, 0.09%)</title><rect x="1008.5" y="1249" width="1.1" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text text-anchor="" x="1011.54" 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>Ljersey/repackaged/com/google/common/net/InetAddresses:::forUriString (16 samples, 1.41%)</title><rect x="759.7" y="1057" width="16.6" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="762.68" 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/util/concurrent/locks/ReentrantLock$NonfairSync:::lock (1 samples, 0.09%)</title><rect x="902.8" y="1361" width="1.0" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="905.78" 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>[unknown] (10 samples, 0.88%)</title><rect x="334.6" y="1825" width="10.3" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text text-anchor="" x="337.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/eclipse/jetty/server/Request:::recycle (1 samples, 0.09%)</title><rect x="707.8" y="1473" width="1.1" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="710.84" 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>process_backlog (1 samples, 0.09%)</title><rect x="869.6" y="1297" width="1.0" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="872.60" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/core/JsonFactory:::_createParser (1 samples, 0.09%)</title><rect x="1017.9" y="641" width="1.0" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="1020.87" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (3 samples, 0.26%)</title><rect x="1165.1" y="1665" width="3.1" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="1168.11" 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/MethodSelectingRouter:::selectMethod (1 samples, 0.09%)</title><rect x="1089.4" y="801" width="1.1" height="15.0" fill="rgb(77,189,189)" rx="2" ry="2" />
<text text-anchor="" x="1092.42" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>thread_entry (10 samples, 0.88%)</title><rect x="1179.6" y="1777" width="10.4" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="1182.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>Interpreter (10 samples, 0.88%)</title><rect x="1179.6" y="1649" width="10.4" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text text-anchor="" x="1182.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/eclipse/jetty/server/HttpConnection:::parseRequestBuffer (4 samples, 0.35%)</title><rect x="845.7" y="1537" width="4.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="848.75" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.18%)</title><rect x="271.3" y="1809" width="2.1" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="274.30" 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_wake_op (1 samples, 0.09%)</title><rect x="217.4" y="1649" width="1.0" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="220.38" 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/JsonFactory:::createGenerator (1 samples, 0.09%)</title><rect x="948.4" y="753" width="1.0" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="951.40" 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>ip_queue_xmit (1 samples, 0.09%)</title><rect x="840.6" y="929" width="1.0" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="843.56" 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 (1 samples, 0.09%)</title><rect x="11.0" y="913" width="1.1" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="14.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/eclipse/jetty/server/handler/HandlerWrapper:::handle (93 samples, 8.17%)</title><rect x="1054.2" y="1505" width="96.4" height="15.0" fill="rgb(58,173,173)" rx="2" ry="2" />
<text text-anchor="" x="1057.17" y="1515.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>perf_pmu_enable.part.89 (2 samples, 0.18%)</title><rect x="253.7" y="1553" width="2.0" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="256.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>Ljava/lang/Thread:::setName (1 samples, 0.09%)</title><rect x="1054.2" y="1217" width="1.0" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="1057.17" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (3 samples, 0.26%)</title><rect x="336.6" y="1617" width="3.1" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="339.63" 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/util/IteratingCallback:::iterate (1 samples, 0.09%)</title><rect x="21.4" y="705" width="1.0" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="24.41" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (1 samples, 0.09%)</title><rect x="596.9" y="1617" width="1.0" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="599.89" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (1 samples, 0.09%)</title><rect x="522.2" y="561" width="1.1" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="525.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>Ljava/text/DateFormat:::format (4 samples, 0.35%)</title><rect x="38.0" y="1777" width="4.1" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="41.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>Lch/qos/logback/classic/LoggerContext:::getTurboFilterChainDecision_0_3OrMore (1 samples, 0.09%)</title><rect x="848.9" y="1441" width="1.0" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="851.86" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashSet:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="978.5" y="465" width="1.0" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="981.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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getUnqualifiedService (1 samples, 0.09%)</title><rect x="623.8" y="881" width="1.1" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="626.85" 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 (7 samples, 0.62%)</title><rect x="167.6" y="1809" width="7.3" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="170.61" 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>InstanceKlass::oop_oop_iterate_nv (1 samples, 0.09%)</title><rect x="325.2" y="1665" width="1.1" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="328.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>inet_sendmsg (1 samples, 0.09%)</title><rect x="642.5" y="545" width="1.1" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="645.51" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_iter_readv_writev (1 samples, 0.09%)</title><rect x="746.2" y="1553" width="1.0" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="749.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>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.35%)</title><rect x="187.3" y="1505" width="4.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text text-anchor="" x="190.31" 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>smp_apic_timer_interrupt (1 samples, 0.09%)</title><rect x="973.3" y="449" width="1.0" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="976.29" 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>kmem_cache_alloc_node (1 samples, 0.09%)</title><rect x="886.2" y="1617" width="1.0" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="889.19" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (1 samples, 0.09%)</title><rect x="999.2" y="881" width="1.0" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="1002.21" 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:::format (1 samples, 0.09%)</title><rect x="555.4" y="1057" width="1.0" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="558.41" 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>__wake_up_sync_key (1 samples, 0.09%)</title><rect x="143.8" y="1585" width="1.0" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="146.76" 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.09%)</title><rect x="560.6" y="1665" width="1.0" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="563.60" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljersey/repackaged/com/google/common/collect/Sets:::newHashSet (1 samples, 0.09%)</title><rect x="715.1" y="1057" width="1.0" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="718.10" 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>tcp_established_options (1 samples, 0.09%)</title><rect x="596.9" y="1585" width="1.0" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="599.89" 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>CompressedReadStream::read_int_mb (1 samples, 0.09%)</title><rect x="772.1" y="881" width="1.1" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text text-anchor="" x="775.13" 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/regex/Matcher:::replaceAll (1 samples, 0.09%)</title><rect x="503.6" y="817" width="1.0" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="506.57" 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:::parseRequestBuffer (5 samples, 0.44%)</title><rect x="1150.6" y="1537" width="5.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1153.60" 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_transmit_skb (1 samples, 0.09%)</title><rect x="1149.6" y="993" width="1.0" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="1152.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/server/ApplicationHandler:::handle (8 samples, 0.70%)</title><rect x="858.2" y="1121" width="8.3" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="861.19" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (2 samples, 0.18%)</title><rect x="578.2" y="1649" width="2.1" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="581.22" 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 (1 samples, 0.09%)</title><rect x="429.9" y="1697" width="1.1" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="432.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>ip_local_deliver (1 samples, 0.09%)</title><rect x="577.2" y="1313" width="1.0" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="580.19" 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>sched_clock (1 samples, 0.09%)</title><rect x="719.2" y="1505" width="1.1" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="722.24" 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_to_iter (1 samples, 0.09%)</title><rect x="734.8" y="1681" width="1.0" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="737.80" 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/SystemDescriptor:::dispose (4 samples, 0.35%)</title><rect x="876.9" y="1633" width="4.1" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="879.85" 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 (2 samples, 0.18%)</title><rect x="313.8" y="1761" width="2.1" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="316.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>Lorg/glassfish/jersey/message/internal/ReaderInterceptorExecutor:::proceed (3 samples, 0.26%)</title><rect x="816.7" y="769" width="3.1" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text text-anchor="" x="819.71" 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/server/HttpConnection:::onFillable (109 samples, 9.58%)</title><rect x="894.5" y="1553" width="113.0" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text text-anchor="" x="897.48" 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>Ljava/util/ArrayList:::grow (1 samples, 0.09%)</title><rect x="459.0" y="929" width="1.0" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="461.98" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/Request:::getUserPrincipal (2 samples, 0.18%)</title><rect x="71.2" y="1569" width="2.1" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text text-anchor="" x="74.18" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/StringBuilder:::toString (1 samples, 0.09%)</title><rect x="644.6" y="673" width="1.0" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="647.59" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.09%)</title><rect x="421.7" y="1537" width="1.0" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="424.65" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>iptable_filter_hook (1 samples, 0.09%)</title><rect x="411.3" y="1473" width="1.0" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="414.28" 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/server/internal/MappableExceptionWrapperInterceptor:::aroundReadFrom (3 samples, 0.26%)</title><rect x="816.7" y="753" width="3.1" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="819.71" 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/HttpOutput:::write (1 samples, 0.09%)</title><rect x="21.4" y="785" width="1.0" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="24.41" 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>sys_futex (1 samples, 0.09%)</title><rect x="43.2" y="1761" width="1.0" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="46.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>Ljava/lang/ref/Reference:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="817.8" y="561" width="1.0" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="820.75" 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/hibernate/validator/internal/metadata/raw/ExecutableElement:::forMethod (1 samples, 0.09%)</title><rect x="814.6" y="833" width="1.1" height="15.0" fill="rgb(68,182,182)" rx="2" ry="2" />
<text text-anchor="" x="817.64" 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>sys_futex (3 samples, 0.26%)</title><rect x="336.6" y="1761" width="3.1" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="339.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>JVM_FillInStackTrace (11 samples, 0.97%)</title><rect x="1056.2" y="929" width="11.4" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text text-anchor="" x="1059.24" 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 (1 samples, 0.09%)</title><rect x="281.7" y="1585" width="1.0" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="284.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>ciMethodData::load_data (1 samples, 0.09%)</title><rect x="164.5" y="1649" width="1.0" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" />
<text text-anchor="" x="167.50" 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>vfs_writev (1 samples, 0.09%)</title><rect x="1133.0" y="945" width="1.0" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="1135.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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getUnqualifiedService (7 samples, 0.62%)</title><rect x="1123.6" y="785" width="7.3" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="1126.64" 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:::process (8 samples, 0.70%)</title><rect x="858.2" y="1105" width="8.3" height="15.0" fill="rgb(69,183,183)" rx="2" ry="2" />
<text text-anchor="" x="861.19" 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>intel_pmu_enable_all (3 samples, 0.26%)</title><rect x="350.1" y="1585" width="3.1" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="353.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>entry_SYSCALL_64_fastpath (1 samples, 0.09%)</title><rect x="700.6" y="1537" width="1.0" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="703.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>Lorg/glassfish/jersey/message/internal/ReaderInterceptorExecutor$TerminalReaderInterceptor:::aroundReadFrom (1 samples, 0.09%)</title><rect x="1017.9" y="737" width="1.0" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text text-anchor="" x="1020.87" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (1 samples, 0.09%)</title><rect x="708.9" y="497" width="1.0" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="711.88" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (1 samples, 0.09%)</title><rect x="733.8" y="1569" width="1.0" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="736.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>Ljava/lang/AbstractStringBuilder:::ensureCapacityInternal (1 samples, 0.09%)</title><rect x="776.3" y="1009" width="1.0" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="779.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>do_readv_writev (1 samples, 0.09%)</title><rect x="840.6" y="1089" width="1.0" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="843.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>__inet_lookup_established (1 samples, 0.09%)</title><rect x="590.7" y="1281" width="1.0" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="593.67" 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>ip_queue_xmit (1 samples, 0.09%)</title><rect x="589.6" y="1585" width="1.1" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="592.63" 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/KeyComparatorLinkedHashMap:::createEntry (1 samples, 0.09%)</title><rect x="944.3" y="769" width="1.0" height="15.0" fill="rgb(58,173,173)" rx="2" ry="2" />
<text text-anchor="" x="947.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>schedule (1 samples, 0.09%)</title><rect x="40.1" y="1617" width="1.0" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="43.07" 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_softirq_own_stack (1 samples, 0.09%)</title><rect x="799.1" y="353" width="1.0" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="802.09" 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>Lorg/eclipse/jetty/servlet/ServletHandler:::doHandle (3 samples, 0.26%)</title><rect x="702.7" y="1329" width="3.1" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text text-anchor="" x="705.65" 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/eclipse/jetty/servlet/ServletHandler$CachedChain:::doFilter (3 samples, 0.26%)</title><rect x="702.7" y="1233" width="3.1" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text text-anchor="" x="705.65" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake (1 samples, 0.09%)</title><rect x="47.3" y="1745" width="1.1" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="50.33" 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/uri/internal/JerseyUriBuilder:::uri (1 samples, 0.09%)</title><rect x="857.2" y="1153" width="1.0" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="860.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/uri/internal/JerseyUriBuilder:::uri (18 samples, 1.58%)</title><rect x="759.7" y="1137" width="18.6" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="762.68" 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/SystemDescriptor:::create (7 samples, 0.62%)</title><rect x="976.4" y="721" width="7.3" height="15.0" fill="rgb(99,244,99)" rx="2" ry="2" />
<text text-anchor="" x="979.40" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (1 samples, 0.09%)</title><rect x="810.5" y="945" width="1.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text text-anchor="" x="813.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>Ljavax/ws/rs/core/AbstractMultivaluedMap:::putSingle (2 samples, 0.18%)</title><rect x="943.2" y="833" width="2.1" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="946.22" 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>entry_SYSCALL_64_fastpath (2 samples, 0.18%)</title><rect x="719.2" y="1793" width="2.1" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="722.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>futex_wait_queue_me (2 samples, 0.18%)</title><rect x="384.3" y="1681" width="2.1" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="387.32" 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 (3 samples, 0.26%)</title><rect x="368.8" y="1537" width="3.1" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="371.77" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/servlet/ServletHandler:::getHolderEntry (1 samples, 0.09%)</title><rect x="716.1" y="1345" width="1.1" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="719.13" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/CommittingOutputStream:::flushBuffer (1 samples, 0.09%)</title><rect x="1161.0" y="865" width="1.0" height="15.0" fill="rgb(89,200,200)" rx="2" ry="2" />
<text text-anchor="" x="1163.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/jvnet/hk2/internal/ServiceLocatorImpl:::getService (2 samples, 0.18%)</title><rect x="671.5" y="849" width="2.1" height="15.0" fill="rgb(106,217,217)" rx="2" ry="2" />
<text text-anchor="" x="674.55" 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 (6 samples, 0.53%)</title><rect x="218.4" y="1617" width="6.2" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="221.42" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/model/ResourceMethodInvoker:::apply (14 samples, 1.23%)</title><rect x="506.7" y="961" width="14.5" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="509.68" 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/ContainerRequest:::readEntity (3 samples, 0.26%)</title><rect x="861.3" y="833" width="3.1" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text text-anchor="" x="864.30" 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:::internalGetDescriptor (1 samples, 0.09%)</title><rect x="512.9" y="753" width="1.0" height="15.0" fill="rgb(68,182,182)" rx="2" ry="2" />
<text text-anchor="" x="515.90" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/IterableProviderImpl:::get (2 samples, 0.18%)</title><rect x="781.5" y="897" width="2.0" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text text-anchor="" x="784.46" 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/message/internal/HeaderUtils$1:::apply (1 samples, 0.09%)</title><rect x="644.6" y="737" width="1.0" height="15.0" fill="rgb(78,191,191)" rx="2" ry="2" />
<text text-anchor="" x="647.59" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (1 samples, 0.09%)</title><rect x="589.6" y="1649" width="1.1" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="592.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/eclipse/jetty/servlet/ServletHandler$CachedChain:::doFilter (10 samples, 0.88%)</title><rect x="857.2" y="1265" width="10.3" height="15.0" fill="rgb(92,204,204)" rx="2" ry="2" />
<text text-anchor="" x="860.15" 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/IterableProviderImpl:::justInTime (1 samples, 0.09%)</title><rect x="660.1" y="785" width="1.1" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="663.14" 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>JVM_FillInStackTrace (9 samples, 0.79%)</title><rect x="910.0" y="929" width="9.4" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text text-anchor="" x="913.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>tcp_transmit_skb (1 samples, 0.09%)</title><rect x="642.5" y="465" width="1.1" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="645.51" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lch/qos/logback/access/spi/AccessEvent:::prepareForDeferredProcessing (5 samples, 0.44%)</title><rect x="578.2" y="1825" width="5.2" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text text-anchor="" x="581.22" 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 (1 samples, 0.09%)</title><rect x="38.0" y="1649" width="1.0" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="41.00" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/process/RequestProcessingContext:::triggerEvent (1 samples, 0.09%)</title><rect x="961.9" y="929" width="1.0" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="964.88" 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/server/ServerRuntime$2:::run (45 samples, 3.95%)</title><rect x="619.7" y="977" width="46.7" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="622.70" y="987.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>JavaCalls::call_helper (10 samples, 0.88%)</title><rect x="1179.6" y="1729" width="10.4" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="1182.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>iptable_filter_hook (1 samples, 0.09%)</title><rect x="825.0" y="689" width="1.0" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="828.01" 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/servlet/ServletContainer:::service (2 samples, 0.18%)</title><rect x="702.7" y="1185" width="2.0" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="705.65" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (1 samples, 0.09%)</title><rect x="954.6" y="145" width="1.1" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="957.62" 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>itable stub (2 samples, 0.18%)</title><rect x="1015.8" y="929" width="2.1" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text text-anchor="" x="1018.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>Lorg/glassfish/jersey/server/ContainerResponse:::close (5 samples, 0.44%)</title><rect x="1096.7" y="913" width="5.2" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="1099.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>finish_task_switch (2 samples, 0.18%)</title><rect x="738.9" y="1681" width="2.1" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="741.95" 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/uri/internal/UriParser:::parseComponent (2 samples, 0.18%)</title><rect x="1072.8" y="1089" width="2.1" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="1075.83" 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>tcp_v4_rcv (1 samples, 0.09%)</title><rect x="590.7" y="1297" width="1.0" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="593.67" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="23.5" y="801" width="1.0" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="26.48" 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>thread_entry (5 samples, 0.44%)</title><rect x="363.6" y="1777" width="5.2" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text text-anchor="" x="366.59" 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>java_lang_Throwable::fill_in_stack_trace (1 samples, 0.09%)</title><rect x="702.7" y="913" width="1.0" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="705.65" 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/HttpFields:::getFieldNamesCollection (2 samples, 0.18%)</title><rect x="1143.3" y="1041" width="2.1" height="15.0" fill="rgb(104,214,214)" rx="2" ry="2" />
<text text-anchor="" x="1146.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>Lorg/glassfish/jersey/server/model/internal/AbstractJavaResourceMethodDispatcher:::dispatch (5 samples, 0.44%)</title><rect x="860.3" y="929" width="5.1" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="863.26" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lio/dropwizard/jersey/filter/AllowedMethodsFilter:::doFilter (84 samples, 7.38%)</title><rect x="603.1" y="1281" width="87.1" height="15.0" fill="rgb(54,169,169)" rx="2" ry="2" />
<text text-anchor="" x="606.11" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lio/dropwi..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1BlockOffsetArray::forward_to_block_containing_addr_const (1 samples, 0.09%)</title><rect x="324.2" y="1665" width="1.0" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="327.18" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (125 samples, 10.98%)</title><rect x="432.0" y="1729" width="129.6" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="435.02" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaCalls::call_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::Parse (5 samples, 0.44%)</title><rect x="187.3" y="1601" width="5.2" height="15.0" fill="rgb(227,227,68)" rx="2" ry="2" />
<text text-anchor="" x="190.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/glassfish/jersey/message/internal/InboundMessageContext:::readEntity (3 samples, 0.26%)</title><rect x="861.3" y="817" width="3.1" height="15.0" fill="rgb(78,190,190)" rx="2" ry="2" />
<text text-anchor="" x="864.30" 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>[unknown] (16 samples, 1.41%)</title><rect x="288.9" y="1777" width="16.6" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text text-anchor="" x="291.93" 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_write_xmit (1 samples, 0.09%)</title><rect x="733.8" y="1617" width="1.0" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="736.76" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_readv_writev (1 samples, 0.09%)</title><rect x="1027.2" y="1729" width="1.0" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="1030.21" 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/process/internal/Stages:::process (4 samples, 0.35%)</title><rect x="943.2" y="929" width="4.2" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="946.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>__local_bh_enable_ip (1 samples, 0.09%)</title><rect x="690.2" y="1057" width="1.0" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="693.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>do_nmi (1 samples, 0.09%)</title><rect x="266.1" y="1537" width="1.1" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="269.12" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.09%)</title><rect x="590.7" y="1649" width="1.0" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="593.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>Lorg/glassfish/jersey/message/internal/InboundMessageContext:::readEntity (6 samples, 0.53%)</title><rect x="653.9" y="801" width="6.2" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="656.92" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (2 samples, 0.18%)</title><rect x="241.2" y="1553" width="2.1" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="244.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>Lorg/jvnet/hk2/internal/ThreeThirtyResolver:::resolve (5 samples, 0.44%)</title><rect x="977.4" y="561" width="5.2" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="980.43" 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>[libpthread-2.23.so] (1 samples, 0.09%)</title><rect x="34.9" y="1553" width="1.0" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text text-anchor="" x="37.89" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.09%)</title><rect x="133.4" y="1585" width="1.0" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="136.39" 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/HttpURI:::parse (1 samples, 0.09%)</title><rect x="847.8" y="1457" width="1.1" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text text-anchor="" x="850.82" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1ParPreserveCMReferentsTask::work (2 samples, 0.18%)</title><rect x="321.1" y="1793" width="2.0" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text text-anchor="" x="324.07" 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/spi/internal/ParamValueFactoryWithSource:::provide (4 samples, 0.35%)</title><rect x="861.3" y="865" width="4.1" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="864.30" 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>VectorSet::operator&gt;&gt;= (1 samples, 0.09%)</title><rect x="196.6" y="1649" width="1.1" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="199.64" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetDescriptor (1 samples, 0.09%)</title><rect x="620.7" y="849" width="1.1" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="623.74" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljavax/ws/rs/core/AbstractMultivaluedMap:::putSingle (1 samples, 0.09%)</title><rect x="18.3" y="833" width="1.0" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="21.30" 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/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject:::await (16 samples, 1.41%)</title><rect x="117.8" y="1665" width="16.6" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text text-anchor="" x="120.84" 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_writev (1 samples, 0.09%)</title><rect x="1022.0" y="1745" width="1.1" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="1025.02" 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/jersey2/InstrumentedResourceMethodApplicationListener$TimerRequestEventListener:::onEvent (1 samples, 0.09%)</title><rect x="812.6" y="865" width="1.0" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text text-anchor="" x="815.57" 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/LinkedHashMap:::get (1 samples, 0.09%)</title><rect x="28.7" y="897" width="1.0" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text text-anchor="" x="31.66" 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/inject/Providers:::sortRankedProviders (1 samples, 0.09%)</title><rect x="479.7" y="913" width="1.1" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="482.72" 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/HttpChannelOverHttp:::headerComplete (1 samples, 0.09%)</title><rect x="846.8" y="1489" width="1.0" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text text-anchor="" x="849.78" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (1 samples, 0.09%)</title><rect x="595.9" y="1521" width="1.0" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="598.85" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lch/qos/logback/core/AsyncAppenderBase$Worker:::run (76 samples, 6.68%)</title><rect x="63.9" y="1697" width="78.8" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text text-anchor="" x="66.92" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lch/qos/l..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.09%)</title><rect x="417.5" y="1777" width="1.0" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="420.50" 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/IllegalArgumentException:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="11.0" y="1041" width="1.1" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text text-anchor="" x="14.04" 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_writev (2 samples, 0.18%)</title><rect x="494.2" y="497" width="2.1" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="497.24" 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>[unknown] (1 samples, 0.09%)</title><rect x="870.6" y="1793" width="1.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="873.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>Lio/dropwizard/jetty/NonblockingServletHolder:::handle (7 samples, 0.62%)</title><rect x="708.9" y="1217" width="7.2" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text text-anchor="" x="711.88" 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>inet_sendmsg (1 samples, 0.09%)</title><rect x="522.2" y="865" width="1.1" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="525.23" 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/StringBuilder:::toString (1 samples, 0.09%)</title><rect x="1154.7" y="1473" width="1.1" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="1157.75" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/jaxrs/base/ProviderBase:::writeTo (1 samples, 0.09%)</title><rect x="20.4" y="785" width="1.0" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text text-anchor="" x="23.37" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_Throwable::fill_in_stack_trace (1 samples, 0.09%)</title><rect x="11.0" y="897" width="1.1" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="14.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>Lorg/glassfish/jersey/process/internal/RequestScope:::findOrCreate (1 samples, 0.09%)</title><rect x="1012.7" y="849" width="1.0" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text text-anchor="" x="1015.69" 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>do_readv_writev (1 samples, 0.09%)</title><rect x="596.9" y="1745" width="1.0" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="599.89" 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_pmu_enable.part.89 (4 samples, 0.35%)</title><rect x="389.5" y="1601" width="4.2" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="392.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>Lorg/eclipse/jetty/server/handler/HandlerWrapper:::handle (9 samples, 0.79%)</title><rect x="1011.7" y="1521" width="9.3" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="1014.65" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/LinkedHashMap$LinkedHashIterator:::hasNext (1 samples, 0.09%)</title><rect x="478.7" y="833" width="1.0" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text text-anchor="" x="481.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>native_sched_clock (1 samples, 0.09%)</title><rect x="727.5" y="1777" width="1.1" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="730.54" 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/StringBuilder:::append (1 samples, 0.09%)</title><rect x="441.4" y="1201" width="1.0" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="444.35" 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>Ljava/util/HashMap:::newNode (2 samples, 0.18%)</title><rect x="749.3" y="1265" width="2.1" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="752.31" 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.09%)</title><rect x="820.9" y="609" width="1.0" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="823.86" 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/jvnet/hk2/internal/ClazzCreator:::create (1 samples, 0.09%)</title><rect x="864.4" y="625" width="1.0" height="15.0" fill="rgb(63,176,176)" rx="2" ry="2" />
<text text-anchor="" x="867.41" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arch_trigger_all_cpu_backtrace_handler (1 samples, 0.09%)</title><rect x="136.5" y="1377" width="1.0" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="139.50" 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>Ljavax/ws/rs/core/MediaType:::isCompatible (1 samples, 0.09%)</title><rect x="938.0" y="785" width="1.1" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="941.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>Lorg/glassfish/jersey/uri/internal/UriParser:::parsePath (1 samples, 0.09%)</title><rect x="466.2" y="1073" width="1.1" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="469.24" 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/handler/StatisticsHandler:::handle (8 samples, 0.70%)</title><rect x="708.9" y="1505" width="8.3" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text text-anchor="" x="711.88" 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/regex/Pattern:::compile (1 samples, 0.09%)</title><rect x="1101.9" y="865" width="1.0" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text text-anchor="" x="1104.86" 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/http/PathMap:::pathMatch (1 samples, 0.09%)</title><rect x="906.9" y="1329" width="1.1" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="909.92" 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>HandleMarkCleaner::~HandleMarkCleaner (2 samples, 0.18%)</title><rect x="120.9" y="1601" width="2.1" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="123.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>Lorg/glassfish/jersey/server/internal/routing/Router$Continuation:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="482.8" y="833" width="1.1" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="485.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>Lorg/eclipse/jetty/http/HttpParser:::parsedHeader (1 samples, 0.09%)</title><rect x="1001.3" y="1489" width="1.0" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text text-anchor="" x="1004.28" 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>Lcom/fasterxml/jackson/core/io/IOContext:::allocReadIOBuffer (1 samples, 0.09%)</title><rect x="1017.9" y="609" width="1.0" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="1020.87" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (1 samples, 0.09%)</title><rect x="63.9" y="1329" width="1.1" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="66.92" 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>Lsun/nio/ch/EPollArrayWrapper:::poll (1 samples, 0.09%)</title><rect x="852.0" y="1521" width="1.0" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="854.97" 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/HttpOutput:::write (5 samples, 0.44%)</title><rect x="1096.7" y="785" width="5.2" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="1099.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>native_write_msr_safe (2 samples, 0.18%)</title><rect x="1166.2" y="1585" width="2.0" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="1169.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>apparmor_socket_sendmsg (1 samples, 0.09%)</title><rect x="496.3" y="449" width="1.0" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="499.31" 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>Lcom/fasterxml/jackson/core/json/UTF8StreamJsonParser:::nextToken (1 samples, 0.09%)</title><rect x="1008.5" y="689" width="1.1" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text text-anchor="" x="1011.54" 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/io/WriteFlusher:::write (3 samples, 0.26%)</title><rect x="1097.7" y="641" width="3.1" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="1100.72" 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.09%)</title><rect x="882.0" y="1425" width="1.1" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="885.04" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (1 samples, 0.09%)</title><rect x="622.8" y="753" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="625.81" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.18%)</title><rect x="1023.1" y="1761" width="2.0" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="1026.06" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (4 samples, 0.35%)</title><rect x="326.3" y="1777" width="4.1" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="329.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>JVM_FillInStackTrace (5 samples, 0.44%)</title><rect x="606.2" y="929" width="5.2" height="15.0" fill="rgb(248,119,119)" rx="2" ry="2" />
<text text-anchor="" x="609.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>Lorg/glassfish/jersey/server/ContainerResponse:::setMediaType (1 samples, 0.09%)</title><rect x="1094.6" y="865" width="1.0" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="1097.60" 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/io/SelectChannelEndPoint$2:::run (15 samples, 1.32%)</title><rect x="854.0" y="1617" width="15.6" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text text-anchor="" x="857.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>Lio/dropwizard/jersey/filter/AllowedMethodsFilter:::handle (3 samples, 0.26%)</title><rect x="702.7" y="1281" width="3.1" height="15.0" fill="rgb(67,180,180)" rx="2" ry="2" />
<text text-anchor="" x="705.65" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (6 samples, 0.53%)</title><rect x="218.4" y="1601" width="6.2" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="221.42" 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>sys_writev (1 samples, 0.09%)</title><rect x="954.6" y="513" width="1.1" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="957.62" 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/server/HttpChannel:::onCompleted (2 samples, 0.18%)</title><rect x="854.0" y="1537" width="2.1" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="857.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>HeapRegion::oops_on_card_seq_iterate_careful (4 samples, 0.35%)</title><rect x="309.7" y="1793" width="4.1" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="312.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>Ljava/lang/StringBuilder:::append (2 samples, 0.18%)</title><rect x="924.6" y="1025" width="2.0" height="15.0" fill="rgb(104,214,214)" rx="2" ry="2" />
<text text-anchor="" x="927.55" 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>schedule (2 samples, 0.18%)</title><rect x="257.8" y="1649" width="2.1" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="260.82" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpInput:::get (1 samples, 0.09%)</title><rect x="973.3" y="513" width="1.0" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="976.29" 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>__perf_event_task_sched_in (4 samples, 0.35%)</title><rect x="368.8" y="1633" width="4.1" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="371.77" 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 (3 samples, 0.26%)</title><rect x="350.1" y="1761" width="3.1" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="353.11" 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/net/URI$Parser:::parseServer (1 samples, 0.09%)</title><rect x="535.7" y="1041" width="1.0" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text text-anchor="" x="538.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>Lorg/jvnet/hk2/internal/SystemDescriptor:::create (1 samples, 0.09%)</title><rect x="1018.9" y="737" width="1.0" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="1021.91" 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>Ljavax/ws/rs/core/AbstractMultivaluedMap:::getValues (1 samples, 0.09%)</title><rect x="839.5" y="1041" width="1.1" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text text-anchor="" x="842.53" 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.09%)</title><rect x="842.6" y="1281" width="1.1" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="845.64" 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/glassfish/jersey/server/ServerRuntime$Responder:::release (1 samples, 0.09%)</title><rect x="649.8" y="945" width="1.0" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text text-anchor="" x="652.77" 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>handle_irq (1 samples, 0.09%)</title><rect x="325.2" y="1617" width="1.1" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="328.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>[libc-2.23.so] (8 samples, 0.70%)</title><rect x="1028.2" y="1809" width="8.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="1031.24" 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>PhaseChaitin::gather_lrg_masks (1 samples, 0.09%)</title><rect x="202.9" y="1681" width="1.0" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="205.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>finish_task_switch (4 samples, 0.35%)</title><rect x="389.5" y="1649" width="4.2" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="392.51" 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/FactoryCreator:::dispose (1 samples, 0.09%)</title><rect x="28.7" y="1009" width="1.0" height="15.0" fill="rgb(92,203,203)" rx="2" ry="2" />
<text text-anchor="" x="31.66" 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/model/internal/AbstractJavaResourceMethodDispatcher:::dispatch (2 samples, 0.18%)</title><rect x="1017.9" y="929" width="2.0" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="1020.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>Ljersey/repackaged/com/google/common/net/InetAddresses:::isUriInetAddress (1 samples, 0.09%)</title><rect x="555.4" y="1089" width="1.0" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="558.41" 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/core/pattern/PatternLayoutBase:::writeLoopOnConverters (18 samples, 1.58%)</title><rect x="77.4" y="1553" width="18.7" height="15.0" fill="rgb(54,169,169)" rx="2" ry="2" />
<text text-anchor="" x="80.40" 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 (2 samples, 0.18%)</title><rect x="1023.1" y="1665" width="2.0" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="1026.06" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (21 samples, 1.85%)</title><rect x="287.9" y="1841" width="21.8" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="290.89" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/servlet/internal/ResponseWriter:::writeResponseStatusAndHeaders (1 samples, 0.09%)</title><rect x="1161.0" y="817" width="1.0" height="15.0" fill="rgb(55,169,169)" rx="2" ry="2" />
<text text-anchor="" x="1163.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>[unknown] (8 samples, 0.70%)</title><rect x="241.2" y="1841" width="8.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="244.23" 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/servlet/WebComponent$7:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="866.5" y="1105" width="1.0" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="869.49" 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 (10 samples, 0.88%)</title><rect x="1179.6" y="1713" width="10.4" height="15.0" fill="rgb(248,121,121)" rx="2" ry="2" />
<text text-anchor="" x="1182.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>native_write_msr_safe (4 samples, 0.35%)</title><rect x="245.4" y="1793" width="4.1" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="248.38" 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$1:::getOutputStream (5 samples, 0.44%)</title><rect x="801.2" y="817" width="5.1" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="804.16" 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.09%)</title><rect x="1022.0" y="1249" width="1.1" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="1025.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>do_futex (4 samples, 0.35%)</title><rect x="389.5" y="1729" width="4.2" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="392.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>Lorg/eclipse/jetty/io/AbstractConnection$ReadCallback:::succeeded (4 samples, 0.35%)</title><rect x="1159.9" y="1585" width="4.2" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text text-anchor="" x="1162.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>[libpthread-2.23.so] (1 samples, 0.09%)</title><rect x="44.2" y="1825" width="1.1" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text text-anchor="" x="47.22" 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/servlet/internal/ResponseWriter$NonCloseableOutputStreamWrapper:::write (4 samples, 0.35%)</title><rect x="708.9" y="833" width="4.1" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="711.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>frame::sender_for_compiled_frame (2 samples, 0.18%)</title><rect x="1064.5" y="865" width="2.1" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="1067.53" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_writev (1 samples, 0.09%)</title><rect x="718.2" y="1729" width="1.0" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="721.21" 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_softirq_own_stack (1 samples, 0.09%)</title><rect x="952.5" y="209" width="1.1" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="955.55" 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>end_repeat_nmi (1 samples, 0.09%)</title><rect x="876.9" y="1313" width="1.0" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="879.85" 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/eclipse/jetty/servlet/ServletHandler:::doHandle (84 samples, 7.38%)</title><rect x="603.1" y="1313" width="87.1" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text text-anchor="" x="606.11" y="1323.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>apic_timer_interrupt (1 samples, 0.09%)</title><rect x="134.4" y="1665" width="1.1" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="137.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>Ljava/lang/ThreadLocal$ThreadLocalMap:::access$100 (4 samples, 0.35%)</title><rect x="871.7" y="1569" width="4.1" height="15.0" fill="rgb(55,169,169)" rx="2" ry="2" />
<text text-anchor="" x="874.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/glassfish/jersey/server/ApplicationHandler:::handle (63 samples, 5.54%)</title><rect x="926.6" y="1105" width="65.4" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="929.63" y="1115.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/handler/ScopedHandler:::handle (3 samples, 0.26%)</title><rect x="702.7" y="1393" width="3.1" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="705.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>CompileBroker::invoke_compiler_on_method (23 samples, 2.02%)</title><rect x="192.5" y="1761" width="23.8" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="195.50" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >C..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/IterableProviderImpl:::get (2 samples, 0.18%)</title><rect x="622.8" y="897" width="2.1" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text text-anchor="" x="625.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>Lorg/glassfish/jersey/server/internal/monitoring/RequestEventImpl:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="674.7" y="1025" width="1.0" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text text-anchor="" x="677.66" 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/lang/String:::valueOf (2 samples, 0.18%)</title><rect x="924.6" y="1009" width="2.0" height="15.0" fill="rgb(101,211,211)" rx="2" ry="2" />
<text text-anchor="" x="927.55" 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>Ljersey/repackaged/com/google/common/collect/Iterables:::addAll (1 samples, 0.09%)</title><rect x="625.9" y="881" width="1.1" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text text-anchor="" x="628.92" 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>Lch/qos/logback/core/spi/AppenderAttachableImpl:::appendLoopOnAppenders (3 samples, 0.26%)</title><rect x="597.9" y="1489" width="3.1" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text text-anchor="" x="600.93" 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>Lio/dropwizard/request/logging/async/AsyncAccessEventAppenderFactory$1:::preprocess (2 samples, 0.18%)</title><rect x="599.0" y="1441" width="2.0" height="15.0" fill="rgb(80,192,192)" rx="2" ry="2" />
<text text-anchor="" x="601.96" 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>Lch/qos/logback/access/spi/AccessEvent:::getRequestHeaderMap (2 samples, 0.18%)</title><rect x="899.7" y="1393" width="2.0" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="902.67" 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>[unknown] (1 samples, 0.09%)</title><rect x="410.2" y="1809" width="1.1" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text text-anchor="" x="413.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>Ljava/util/AbstractList:::listIterator (1 samples, 0.09%)</title><rect x="665.3" y="673" width="1.1" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="668.33" 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/internal/Errors:::process (7 samples, 0.62%)</title><rect x="1012.7" y="1057" width="7.2" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="1015.69" 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/module/afterburner/deser/SuperSonicBeanDeserializer:::deserialize (1 samples, 0.09%)</title><rect x="1119.5" y="625" width="1.0" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text text-anchor="" x="1122.49" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1 samples, 0.09%)</title><rect x="723.4" y="1745" width="1.0" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="726.39" 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 (1 samples, 0.09%)</title><rect x="796.0" y="369" width="1.0" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="798.98" 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/glassfish/jersey/message/internal/CommittingOutputStream:::commit (1 samples, 0.09%)</title><rect x="1161.0" y="881" width="1.0" height="15.0" fill="rgb(95,207,207)" rx="2" ry="2" />
<text text-anchor="" x="1163.97" 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/ContainerRequest:::readEntity (6 samples, 0.53%)</title><rect x="1117.4" y="817" width="6.2" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="1120.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/glassfish/jersey/internal/Errors:::process (58 samples, 5.10%)</title><rect x="1075.9" y="1025" width="60.2" height="15.0" fill="rgb(92,203,203)" rx="2" ry="2" />
<text text-anchor="" x="1078.94" 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>Lorg/jvnet/hk2/internal/ClazzCreator:::create (3 samples, 0.26%)</title><rect x="662.2" y="609" width="3.1" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="665.21" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/nio/ByteBuffer:::put (1 samples, 0.09%)</title><rect x="950.5" y="593" width="1.0" height="15.0" fill="rgb(92,204,204)" rx="2" ry="2" />
<text text-anchor="" x="953.47" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>checkcast_arraycopy (1 samples, 0.09%)</title><rect x="460.0" y="961" width="1.1" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text text-anchor="" x="463.02" 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.09%)</title><rect x="436.2" y="1361" width="1.0" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="439.17" 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>x86_pmu_enable (2 samples, 0.18%)</title><rect x="236.0" y="1585" width="2.1" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="239.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>__wake_up_common (1 samples, 0.09%)</title><rect x="41.1" y="1601" width="1.0" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="44.11" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (2 samples, 0.18%)</title><rect x="262.0" y="1713" width="2.0" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="264.97" 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 (3 samples, 0.26%)</title><rect x="135.5" y="1553" width="3.1" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="138.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>pipe_read (1 samples, 0.09%)</title><rect x="582.4" y="1697" width="1.0" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="585.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>Lorg/hibernate/validator/internal/engine/groups/ValidationOrderGenerator:::getValidationOrder (1 samples, 0.09%)</title><rect x="521.2" y="977" width="1.0" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="524.20" 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/ServiceLocatorImpl:::getUnqualifiedService (8 samples, 0.70%)</title><rect x="512.9" y="785" width="8.3" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="515.90" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/hibernate/validator/internal/util/CollectionHelper:::newHashMap (1 samples, 0.09%)</title><rect x="1114.3" y="769" width="1.0" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="1117.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>Lorg/jvnet/hk2/internal/ClazzCreator:::resolveAllDependencies (3 samples, 0.26%)</title><rect x="662.2" y="593" width="3.1" height="15.0" fill="rgb(95,242,95)" rx="2" ry="2" />
<text text-anchor="" x="665.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>Lorg/eclipse/jetty/http/HttpGenerator:::generateResponse (1 samples, 0.09%)</title><rect x="950.5" y="657" width="1.0" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="953.47" 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>__GI___writev (1 samples, 0.09%)</title><rect x="796.0" y="577" width="1.0" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text text-anchor="" x="798.98" 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/message/internal/OutboundMessageContext:::close (1 samples, 0.09%)</title><rect x="1161.0" y="913" width="1.0" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="1163.97" 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_push_pending_frames (1 samples, 0.09%)</title><rect x="718.2" y="1601" width="1.0" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="721.21" 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_nmi (1 samples, 0.09%)</title><rect x="271.3" y="1569" width="1.0" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="274.30" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.09%)</title><rect x="799.1" y="337" width="1.0" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="802.09" 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>__intel_pmu_enable_all (1 samples, 0.09%)</title><rect x="364.6" y="1473" width="1.1" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="367.62" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceHandleImpl:::getService (4 samples, 0.35%)</title><rect x="871.7" y="1489" width="4.1" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="874.67" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (1 samples, 0.09%)</title><rect x="796.0" y="401" width="1.0" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="798.98" 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/eclipse/jetty/server/HttpChannel:::write (5 samples, 0.44%)</title><rect x="1096.7" y="753" width="5.2" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="1099.68" 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>__tcp_push_pending_frames (1 samples, 0.09%)</title><rect x="595.9" y="1649" width="1.0" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="598.85" 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>vfs_writev (1 samples, 0.09%)</title><rect x="642.5" y="625" width="1.1" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="645.51" 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/internal/MappableExceptionWrapperInterceptor:::aroundReadFrom (5 samples, 0.44%)</title><rect x="655.0" y="753" width="5.1" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="657.96" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/util/thread/strategy/ExecuteProduceConsume:::executeProduceConsume (25 samples, 2.20%)</title><rect x="10.0" y="1617" width="25.9" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1627.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/io/ByteArrayOutputStream:::writeTo (8 samples, 0.70%)</title><rect x="792.9" y="833" width="8.3" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="795.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>Lch/qos/logback/access/jetty/RequestLogImpl:::log (5 samples, 0.44%)</title><rect x="1047.9" y="1505" width="5.2" height="15.0" fill="rgb(79,191,191)" rx="2" ry="2" />
<text text-anchor="" x="1050.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>Lch/qos/logback/core/UnsynchronizedAppenderBase:::doAppend (2 samples, 0.18%)</title><rect x="854.0" y="1489" width="2.1" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="857.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>Lio/dropwizard/jetty/BiDiGzipHandler:::handle (8 samples, 0.70%)</title><rect x="708.9" y="1473" width="8.3" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="711.88" 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:::getLegacyFallbackValue (1 samples, 0.09%)</title><rect x="502.5" y="849" width="1.1" height="15.0" fill="rgb(104,214,214)" rx="2" ry="2" />
<text text-anchor="" x="505.53" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (1 samples, 0.09%)</title><rect x="522.2" y="737" width="1.1" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="525.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/message/internal/EntityInputStream:::read (1 samples, 0.09%)</title><rect x="818.8" y="545" width="1.0" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="821.79" 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>G1ParPreserveCMReferentsTask::work (17 samples, 1.49%)</title><rect x="287.9" y="1793" width="17.6" height="15.0" fill="rgb(202,202,59)" rx="2" ry="2" />
<text text-anchor="" x="290.89" 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/routing/MethodSelectingRouter:::apply (1 samples, 0.09%)</title><rect x="1014.8" y="881" width="1.0" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text text-anchor="" x="1017.76" 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>__GI___writev (1 samples, 0.09%)</title><rect x="595.9" y="1825" width="1.0" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="598.85" 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>Lcom/codahale/metrics/Timer:::update (1 samples, 0.09%)</title><rect x="905.9" y="1361" width="1.0" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="908.89" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (2 samples, 0.18%)</title><rect x="881.0" y="1489" width="2.1" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="884.00" 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/servlet/ServletContainer:::service (79 samples, 6.94%)</title><rect x="605.2" y="1169" width="81.9" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="608.18" y="1179.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>Lsun/nio/ch/EPollSelectorImpl:::updateSelectedKeys (1 samples, 0.09%)</title><rect x="1156.8" y="1521" width="1.1" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text text-anchor="" x="1159.82" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.09%)</title><rect x="1022.0" y="1761" width="1.1" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="1025.02" 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] (2 samples, 0.18%)</title><rect x="45.3" y="1809" width="2.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text text-anchor="" x="48.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>Lorg/glassfish/jersey/servlet/WebComponent:::service (66 samples, 5.80%)</title><rect x="926.6" y="1137" width="68.5" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="929.63" 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>Ljava/lang/String:::indexOf (1 samples, 0.09%)</title><rect x="1072.8" y="1057" width="1.1" height="15.0" fill="rgb(54,168,168)" rx="2" ry="2" />
<text text-anchor="" x="1075.83" 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>nmi_handle (1 samples, 0.09%)</title><rect x="1174.4" y="1537" width="1.1" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="1177.45" 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/ContainerFilteringStage:::apply (3 samples, 0.26%)</title><rect x="477.6" y="945" width="3.2" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="480.64" 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/monitoring/RequestEventImpl$Builder:::build (1 samples, 0.09%)</title><rect x="961.9" y="897" width="1.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="964.88" 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/KeyComparatorHashMap:::put (1 samples, 0.09%)</title><rect x="839.5" y="1025" width="1.1" height="15.0" fill="rgb(108,219,219)" rx="2" ry="2" />
<text text-anchor="" x="842.53" 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/locks/ReentrantReadWriteLock$Sync:::tryAcquireShared (1 samples, 0.09%)</title><rect x="601.0" y="1265" width="1.1" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="604.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>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.35%)</title><rect x="364.6" y="1697" width="4.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="367.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>default_wake_function (2 samples, 0.18%)</title><rect x="105.4" y="1281" width="2.1" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="108.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>entry_SYSCALL_64_fastpath (2 samples, 0.18%)</title><rect x="236.0" y="1761" width="2.1" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="239.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>Lsun/misc/Unsafe:::park (15 samples, 1.32%)</title><rect x="118.9" y="1633" width="15.5" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="121.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>native_write_msr_safe (1 samples, 0.09%)</title><rect x="579.3" y="1553" width="1.0" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="582.26" 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/servlet/ServletHandler:::getHolderEntry (1 samples, 0.09%)</title><rect x="998.2" y="1329" width="1.0" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="1001.17" 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/ConcurrentHashMap$BaseIterator:::&lt;init&gt; (3 samples, 0.26%)</title><rect x="67.0" y="1489" width="3.1" height="15.0" fill="rgb(106,217,217)" rx="2" ry="2" />
<text text-anchor="" x="70.03" 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/message/internal/WriterInterceptorExecutor:::proceed (1 samples, 0.09%)</title><rect x="490.1" y="833" width="1.0" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="493.09" 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/hibernate/validator/internal/metadata/aggregated/BeanMetaDataImpl:::hasConstraints (1 samples, 0.09%)</title><rect x="966.0" y="801" width="1.1" height="15.0" fill="rgb(93,205,205)" rx="2" ry="2" />
<text text-anchor="" x="969.03" 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/servlet/ServletHandler:::doScope (85 samples, 7.47%)</title><rect x="602.1" y="1345" width="88.1" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="605.07" y="1355.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>Ljava/util/regex/Matcher:::replaceAll (1 samples, 0.09%)</title><rect x="557.5" y="833" width="1.0" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="560.49" 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/FactoryCreator:::create (1 samples, 0.09%)</title><rect x="781.5" y="801" width="1.0" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="784.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>Lorg/glassfish/jersey/server/internal/routing/MethodSelectingRouter$4:::apply (2 samples, 0.18%)</title><rect x="16.2" y="849" width="2.1" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="19.22" 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/server/ServerRuntime:::process (7 samples, 0.62%)</title><rect x="1012.7" y="1105" width="7.2" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="1015.69" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/process/internal/Stages:::process (1 samples, 0.09%)</title><rect x="487.0" y="929" width="1.0" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="489.98" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/io/FillInterest:::fillable (3 samples, 0.26%)</title><rect x="702.7" y="1601" width="3.1" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="705.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>jlong_disjoint_arraycopy (1 samples, 0.09%)</title><rect x="923.5" y="961" width="1.1" height="15.0" fill="rgb(252,125,125)" rx="2" ry="2" />
<text text-anchor="" x="926.51" 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/JsonWithPaddingInterceptor:::isJavascript (1 samples, 0.09%)</title><rect x="491.1" y="833" width="1.1" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="494.12" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/InboundMessageContext:::readEntity (6 samples, 0.53%)</title><rect x="1117.4" y="801" width="6.2" height="15.0" fill="rgb(64,177,177)" rx="2" ry="2" />
<text text-anchor="" x="1120.42" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:::releaseShared (1 samples, 0.09%)</title><rect x="755.5" y="1265" width="1.1" height="15.0" fill="rgb(68,182,182)" rx="2" ry="2" />
<text text-anchor="" x="758.54" 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>select_task_rq_fair (1 samples, 0.09%)</title><rect x="143.8" y="1505" width="1.0" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="146.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>do_readv_writev (1 samples, 0.09%)</title><rect x="540.9" y="1425" width="1.0" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="543.90" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.35%)</title><rect x="871.7" y="1441" width="4.1" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="874.67" 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/server/Server:::handle (101 samples, 8.88%)</title><rect x="437.2" y="1521" width="104.7" height="15.0" fill="rgb(80,193,193)" rx="2" ry="2" />
<text text-anchor="" x="440.21" 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>Lcom/fasterxml/jackson/databind/ObjectReader:::readValue (1 samples, 0.09%)</title><rect x="1119.5" y="657" width="1.0" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="1122.49" 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>vfs_write (1 samples, 0.09%)</title><rect x="37.0" y="1729" width="1.0" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="39.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>Lorg/eclipse/jetty/http/HttpParser:::parseNext (1 samples, 0.09%)</title><rect x="717.2" y="1537" width="1.0" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="720.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>Lorg/glassfish/jersey/server/internal/inject/AbstractContainerRequestValueFactory:::getContainerRequest (4 samples, 0.35%)</title><rect x="819.8" y="817" width="4.2" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text text-anchor="" x="822.82" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/AbstractStringBuilder:::ensureCapacityInternal (1 samples, 0.09%)</title><rect x="613.5" y="849" width="1.0" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="616.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>Lorg/glassfish/jersey/internal/Errors:::process (6 samples, 0.53%)</title><rect x="708.9" y="1041" width="6.2" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="711.88" 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/locks/ReentrantLock:::lock (1 samples, 0.09%)</title><rect x="752.4" y="1377" width="1.1" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="755.43" 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>Lio/dropwizard/servlets/ThreadNameFilter:::doFilter (4 samples, 0.35%)</title><rect x="555.4" y="1249" width="4.2" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text text-anchor="" x="558.41" 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/nio/charset/Charset:::toString (1 samples, 0.09%)</title><rect x="600.0" y="1297" width="1.0" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="603.00" 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>Ljava/util/concurrent/ConcurrentHashMap:::get (1 samples, 0.09%)</title><rect x="919.4" y="897" width="1.0" height="15.0" fill="rgb(70,184,184)" rx="2" ry="2" />
<text text-anchor="" x="922.37" 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.09%)</title><rect x="549.2" y="1601" width="1.0" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="552.19" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (1 samples, 0.09%)</title><rect x="35.9" y="1761" width="1.1" height="15.0" fill="rgb(215,71,71)" rx="2" ry="2" />
<text text-anchor="" x="38.92" 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 (1 samples, 0.09%)</title><rect x="643.6" y="753" width="1.0" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="646.55" 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_writev (3 samples, 0.26%)</title><rect x="797.0" y="641" width="3.1" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="800.01" 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/message/internal/CommittingOutputStream:::flushBuffer (1 samples, 0.09%)</title><rect x="859.2" y="865" width="1.1" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="862.23" 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.18%)</title><rect x="1028.2" y="1713" width="2.1" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="1031.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>Lcom/fasterxml/jackson/databind/deser/SettableBeanProperty:::deserialize (1 samples, 0.09%)</title><rect x="509.8" y="593" width="1.0" height="15.0" fill="rgb(89,200,200)" rx="2" ry="2" />
<text text-anchor="" x="512.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>gen8_irq_handler (1 samples, 0.09%)</title><rect x="325.2" y="1553" width="1.1" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="328.22" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java-?/Finalizer (5 samples, 0.44%)</title><rect x="236.0" y="1857" width="5.2" height="15.0" fill="rgb(72,221,72)" rx="2" ry="2" />
<text text-anchor="" x="239.05" 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 (1 samples, 0.09%)</title><rect x="141.7" y="1665" width="1.0" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="144.69" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.09%)</title><rect x="736.9" y="1729" width="1.0" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="739.87" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (8 samples, 0.70%)</title><rect x="724.4" y="1793" width="8.3" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text text-anchor="" x="727.43" 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.09%)</title><rect x="503.6" y="753" width="1.0" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="506.57" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (1 samples, 0.09%)</title><rect x="796.0" y="353" width="1.0" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="798.98" 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>Ljava/lang/String:::toLowerCase (1 samples, 0.09%)</title><rect x="1094.6" y="737" width="1.0" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="1097.60" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (1 samples, 0.09%)</title><rect x="1022.0" y="1617" width="1.1" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="1025.02" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.09%)</title><rect x="798.0" y="417" width="1.1" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="801.05" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_Throwable::fill_in_stack_trace (1 samples, 0.09%)</title><rect x="590.7" y="1809" width="1.0" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="593.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>futex_wait_queue_me (2 samples, 0.18%)</title><rect x="1043.8" y="1729" width="2.1" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="1046.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>Lorg/jvnet/hk2/internal/ServiceHandleImpl:::getService (4 samples, 0.35%)</title><rect x="670.5" y="977" width="4.2" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text text-anchor="" x="673.51" 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>PhiNode::Value (1 samples, 0.09%)</title><rect x="191.5" y="1553" width="1.0" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="194.46" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpChannel:::handle (1 samples, 0.09%)</title><rect x="1008.5" y="1553" width="1.1" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text text-anchor="" x="1011.54" 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/regex/Pattern:::compile (5 samples, 0.44%)</title><rect x="1107.0" y="817" width="5.2" height="15.0" fill="rgb(104,215,215)" rx="2" ry="2" />
<text text-anchor="" x="1110.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>Lorg/glassfish/jersey/server/internal/routing/MethodSelectingRouter$4:::apply (3 samples, 0.26%)</title><rect x="937.0" y="849" width="3.1" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="939.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>vfs_writev (4 samples, 0.35%)</title><rect x="1039.6" y="1761" width="4.2" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="1042.65" 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>update_rq_clock.part.80 (1 samples, 0.09%)</title><rect x="41.1" y="1505" width="1.0" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="44.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>Lorg/glassfish/jersey/model/internal/RankedComparator:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="1081.1" y="897" width="1.1" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="1084.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>Lorg/glassfish/jersey/internal/inject/Providers:::mergeAndSortRankedProviders (2 samples, 0.18%)</title><rect x="624.9" y="913" width="2.1" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text text-anchor="" x="627.89" 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/MappableExceptionWrapperInterceptor:::aroundReadFrom (2 samples, 0.18%)</title><rect x="25.6" y="753" width="2.0" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="28.55" 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/jersey/message/internal/HttpHeaderReader:::nextToken (1 samples, 0.09%)</title><rect x="29.7" y="945" width="1.0" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="32.70" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (1 samples, 0.09%)</title><rect x="34.9" y="1409" width="1.0" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="37.89" 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/jvnet/hk2/internal/ServiceHandleImpl:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="520.2" y="497" width="1.0" height="15.0" fill="rgb(78,225,78)" rx="2" ry="2" />
<text text-anchor="" x="523.16" 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>ip_finish_output2 (1 samples, 0.09%)</title><rect x="869.6" y="1393" width="1.0" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="872.60" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_Throwable::fill_in_stack_trace (8 samples, 0.70%)</title><rect x="911.1" y="913" width="8.3" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="914.07" 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/monitoring/RequestEventImpl$Builder:::build (1 samples, 0.09%)</title><rect x="674.7" y="1057" width="1.0" height="15.0" fill="rgb(103,213,213)" rx="2" ry="2" />
<text text-anchor="" x="677.66" 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>__netif_receive_skb (1 samples, 0.09%)</title><rect x="796.0" y="177" width="1.0" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="798.98" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (2 samples, 0.18%)</title><rect x="45.3" y="1681" width="2.0" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="48.25" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpOutput:::write (6 samples, 0.53%)</title><rect x="492.2" y="769" width="6.2" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="495.16" 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/uri/internal/JerseyUriBuilder:::host (14 samples, 1.23%)</title><rect x="910.0" y="1089" width="14.6" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="913.04" 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/ServiceLocatorImpl:::getInjecteeDescriptor (1 samples, 0.09%)</title><rect x="662.2" y="545" width="1.1" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="665.21" 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/jvnet/hk2/internal/ServiceHandleImpl:::getService (1 samples, 0.09%)</title><rect x="822.9" y="529" width="1.1" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text text-anchor="" x="825.93" 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>JavaThread::thread_main_inner (10 samples, 0.88%)</title><rect x="182.1" y="1793" width="10.4" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" />
<text text-anchor="" x="185.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>sys_writev (1 samples, 0.09%)</title><rect x="1149.6" y="1169" width="1.0" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="1152.56" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/ReaderInterceptorExecutor:::proceed (2 samples, 0.18%)</title><rect x="862.3" y="785" width="2.1" height="15.0" fill="rgb(108,254,108)" rx="2" ry="2" />
<text text-anchor="" x="865.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>Lorg/eclipse/jetty/util/thread/strategy/ExecuteProduceConsume:::executeProduceConsume (104 samples, 9.14%)</title><rect x="1047.9" y="1617" width="107.9" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text text-anchor="" x="1050.94" y="1627.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>Lch/qos/logback/access/pattern/RequestHeaderConverter:::convert (3 samples, 0.26%)</title><rect x="87.8" y="1505" width="3.1" height="15.0" fill="rgb(58,173,173)" rx="2" ry="2" />
<text text-anchor="" x="90.77" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (2 samples, 0.18%)</title><rect x="384.3" y="1633" width="2.1" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="387.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>Lcom/codahale/metrics/jersey2/InstrumentedResourceMethodApplicationListener$TimerRequestEventListener:::onEvent (1 samples, 0.09%)</title><rect x="506.7" y="865" width="1.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="509.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>smp_apic_timer_interrupt (1 samples, 0.09%)</title><rect x="1062.5" y="849" width="1.0" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="1065.46" 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.09%)</title><rect x="700.6" y="1505" width="1.0" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="703.58" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (2 samples, 0.18%)</title><rect x="236.0" y="1729" width="2.1" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="239.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_sendmsg (3 samples, 0.26%)</title><rect x="797.0" y="545" width="3.1" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="800.01" 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>Lch/qos/logback/access/spi/AccessEvent:::buildRequestParameterMap (1 samples, 0.09%)</title><rect x="74.3" y="1585" width="1.0" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="77.29" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/codahale/metrics/Meter:::mark (1 samples, 0.09%)</title><rect x="856.1" y="1361" width="1.1" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="859.12" 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/spi/internal/ParameterValueHelper:::getParameterValues (9 samples, 0.79%)</title><rect x="815.7" y="865" width="9.3" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="818.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/io/SelectChannelEndPoint$2:::run (113 samples, 9.93%)</title><rect x="432.0" y="1601" width="117.2" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text text-anchor="" x="435.02" y="1611.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>sys_writev (1 samples, 0.09%)</title><rect x="996.1" y="1121" width="1.0" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="999.10" 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:::toLowerCase (1 samples, 0.09%)</title><rect x="958.8" y="817" width="1.0" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text text-anchor="" x="961.77" 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/uri/internal/JerseyUriBuilder:::_build (1 samples, 0.09%)</title><rect x="703.7" y="1153" width="1.0" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="706.69" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap$KeySet:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="986.8" y="1025" width="1.0" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="989.77" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList$Itr:::next (1 samples, 0.09%)</title><rect x="965.0" y="817" width="1.0" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text text-anchor="" x="967.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>Lorg/glassfish/jersey/servlet/WebComponent:::service (1 samples, 0.09%)</title><rect x="1008.5" y="1153" width="1.1" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="1011.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>ip_queue_xmit (1 samples, 0.09%)</title><rect x="746.2" y="1409" width="1.0" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="749.20" 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/util/thread/strategy/ExecuteProduceConsume:::produceConsume (110 samples, 9.67%)</title><rect x="894.5" y="1633" width="114.0" height="15.0" fill="rgb(68,181,181)" rx="2" ry="2" />
<text text-anchor="" x="897.48" y="1643.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_iter_readv_writev (1 samples, 0.09%)</title><rect x="522.2" y="913" width="1.1" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="525.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>Lsun/nio/ch/EPollSelectorImpl:::doSelect (2 samples, 0.18%)</title><rect x="553.3" y="1537" width="2.1" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text text-anchor="" x="556.34" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpChannel:::onCompleted (5 samples, 0.44%)</title><rect x="1047.9" y="1521" width="5.2" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="1050.94" 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] (2 samples, 0.18%)</title><rect x="45.3" y="1793" width="2.0" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="48.25" 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 (1 samples, 0.09%)</title><rect x="417.5" y="1713" width="1.0" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="420.50" 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 (2 samples, 0.18%)</title><rect x="599.0" y="1409" width="2.0" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text text-anchor="" x="601.96" 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>[libpthread-2.23.so] (2 samples, 0.18%)</title><rect x="105.4" y="1441" width="2.1" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text text-anchor="" x="108.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/glassfish/jersey/server/internal/routing/RoutingStage:::apply (6 samples, 0.53%)</title><rect x="480.8" y="929" width="6.2" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="483.76" 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>vfs_write (1 samples, 0.09%)</title><rect x="44.2" y="1777" width="1.1" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="47.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>Lorg/jvnet/hk2/internal/FactoryCreator:::dispose (4 samples, 0.35%)</title><rect x="876.9" y="1617" width="4.1" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="879.85" 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>Parse::do_one_bytecode (4 samples, 0.35%)</title><rect x="187.3" y="1553" width="4.2" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="190.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>Lorg/glassfish/jersey/message/internal/InterceptorExecutor:::traceAfter (1 samples, 0.09%)</title><rect x="653.9" y="753" width="1.1" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="656.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>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorLinkedHashMap:::get (1 samples, 0.09%)</title><rect x="679.8" y="1025" width="1.1" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="682.84" 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>schedule_hrtimeout_range_clock (2 samples, 0.18%)</title><rect x="719.2" y="1729" width="2.1" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="722.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>Lorg/eclipse/jetty/server/HttpChannelState:::recycle (1 samples, 0.09%)</title><rect x="752.4" y="1441" width="1.1" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="755.43" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/servlet/ServletHandler$CachedChain:::doFilter (21 samples, 1.85%)</title><rect x="11.0" y="1249" width="21.8" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="14.04" y="1259.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_futex (2 samples, 0.18%)</title><rect x="591.7" y="1777" width="2.1" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="594.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>Lsun/nio/ch/SocketDispatcher:::writev (1 samples, 0.09%)</title><rect x="1098.8" y="561" width="1.0" height="15.0" fill="rgb(80,192,192)" rx="2" ry="2" />
<text text-anchor="" x="1101.75" 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>nf_hook_slow (1 samples, 0.09%)</title><rect x="411.3" y="1505" width="1.0" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="414.28" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpConnection:::onFillable (24 samples, 2.11%)</title><rect x="10.0" y="1553" width="24.9" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1563.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/net/URI:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="703.7" y="1121" width="1.0" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text text-anchor="" x="706.69" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ciObjectFactory::get_metadata (1 samples, 0.09%)</title><rect x="166.6" y="1729" width="1.0" height="15.0" fill="rgb(203,203,60)" rx="2" ry="2" />
<text text-anchor="" x="169.57" 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/core/encoder/LayoutWrappingEncoder:::convertToBytes (2 samples, 0.18%)</title><rect x="96.1" y="1585" width="2.0" height="15.0" fill="rgb(91,203,203)" rx="2" ry="2" />
<text text-anchor="" x="99.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>HeapRegion::block_size (1 samples, 0.09%)</title><rect x="324.2" y="1649" width="1.0" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="327.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>apparmor_file_permission (1 samples, 0.09%)</title><rect x="1042.8" y="1713" width="1.0" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="1045.76" 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 (1 samples, 0.09%)</title><rect x="474.5" y="849" width="1.1" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text text-anchor="" x="477.53" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (5 samples, 0.44%)</title><rect x="148.9" y="1809" width="5.2" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="151.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>futex_wait_queue_me (6 samples, 0.53%)</title><rect x="168.6" y="1745" width="6.3" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="171.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>Lorg/eclipse/jetty/server/handler/ContextHandler:::doHandle (21 samples, 1.85%)</title><rect x="11.0" y="1329" width="21.8" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text text-anchor="" x="14.04" y="1339.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>Ljersey/repackaged/com/google/common/collect/Collections2$TransformedCollection:::iterator (1 samples, 0.09%)</title><rect x="931.8" y="913" width="1.0" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="934.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>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorLinkedHashMap:::get (2 samples, 0.18%)</title><rect x="530.5" y="1025" width="2.1" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="533.53" 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>new_sync_write (1 samples, 0.09%)</title><rect x="42.1" y="1713" width="1.1" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="45.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>entry_SYSCALL_64_fastpath (1 samples, 0.09%)</title><rect x="40.1" y="1697" width="1.0" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="43.07" 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>__ip_local_out (1 samples, 0.09%)</title><rect x="1040.7" y="1553" width="1.0" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="1043.69" 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:::get (1 samples, 0.09%)</title><rect x="24.5" y="753" width="1.1" height="15.0" fill="rgb(78,191,191)" rx="2" ry="2" />
<text text-anchor="" x="27.52" 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:::internalGetDescriptor (1 samples, 0.09%)</title><rect x="483.9" y="769" width="1.0" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="486.87" 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/ContainerResponse:::close (7 samples, 0.62%)</title><rect x="639.4" y="913" width="7.3" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="642.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>tcp_packet (1 samples, 0.09%)</title><rect x="421.7" y="1473" width="1.0" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="424.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>[libpthread-2.23.so] (1 samples, 0.09%)</title><rect x="141.7" y="1681" width="1.0" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text text-anchor="" x="144.69" 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/servlet/ServletHandler$CachedChain:::doFilter (95 samples, 8.35%)</title><rect x="441.4" y="1297" width="98.5" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="444.35" y="1307.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/io/FileOutputStream:::write (9 samples, 0.79%)</title><rect x="101.2" y="1505" width="9.4" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="104.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>Ljava/util/HashMap:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="978.5" y="433" width="1.0" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="981.47" 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/glassfish/jersey/process/internal/Stages:::process (3 samples, 0.26%)</title><rect x="15.2" y="961" width="3.1" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="18.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>schedule (1 samples, 0.09%)</title><rect x="549.2" y="1553" width="1.0" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="552.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>finish_task_switch (8 samples, 0.70%)</title><rect x="288.9" y="1633" width="8.3" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="291.93" 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>HeapRegion::oops_on_card_seq_iterate_careful (2 samples, 0.18%)</title><rect x="324.2" y="1681" width="2.1" height="15.0" fill="rgb(191,191,55)" rx="2" ry="2" />
<text text-anchor="" x="327.18" 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/server/HttpConnection$SendCallback:::process (1 samples, 0.09%)</title><rect x="859.2" y="689" width="1.1" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" />
<text text-anchor="" x="862.23" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.09%)</title><rect x="971.2" y="497" width="1.0" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="974.21" 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/eclipse/jetty/servlet/ServletHandler:::doScope (21 samples, 1.85%)</title><rect x="11.0" y="1345" width="21.8" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="14.04" y="1355.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>enqueue_task_fair (1 samples, 0.09%)</title><rect x="999.2" y="705" width="1.0" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="1002.21" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (1 samples, 0.09%)</title><rect x="423.7" y="1761" width="1.1" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="426.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>CompileQueue::get (19 samples, 1.67%)</title><rect x="216.3" y="1761" width="19.7" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="219.34" 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/core/json/ByteSourceJsonBootstrapper:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="1120.5" y="609" width="1.1" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="1123.53" 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/internal/routing/UriRoutingContext:::pushMatchResult (1 samples, 0.09%)</title><rect x="934.9" y="881" width="1.1" height="15.0" fill="rgb(102,212,212)" rx="2" ry="2" />
<text text-anchor="" x="937.92" 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>perf_event_context_sched_in (2 samples, 0.18%)</title><rect x="257.8" y="1585" width="2.1" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="260.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>Ljava/lang/ThreadLocal:::set (5 samples, 0.44%)</title><rect x="412.3" y="1697" width="5.2" height="15.0" fill="rgb(76,188,188)" rx="2" ry="2" />
<text text-anchor="" x="415.32" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (1 samples, 0.09%)</title><rect x="1149.6" y="1105" width="1.0" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="1152.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>PhaseIFG::re_insert (1 samples, 0.09%)</title><rect x="196.6" y="1665" width="1.1" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="199.64" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpOutput:::write (4 samples, 0.35%)</title><rect x="708.9" y="817" width="4.1" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text text-anchor="" x="711.88" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.09%)</title><rect x="577.2" y="1761" width="1.0" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="580.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>Lsun/nio/ch/SocketChannelImpl:::read (1 samples, 0.09%)</title><rect x="1000.2" y="1505" width="1.1" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" />
<text text-anchor="" x="1003.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>__netif_receive_skb_core (1 samples, 0.09%)</title><rect x="746.2" y="1217" width="1.0" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="749.20" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_Thread::park_event (1 samples, 0.09%)</title><rect x="896.6" y="1313" width="1.0" height="15.0" fill="rgb(180,180,51)" rx="2" ry="2" />
<text text-anchor="" x="899.56" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/ServerRuntime$2:::run (53 samples, 4.66%)</title><rect x="1075.9" y="977" width="55.0" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="1078.94" y="987.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/lang/Character:::toLowerCase (1 samples, 0.09%)</title><rect x="854.0" y="1313" width="1.1" height="15.0" fill="rgb(89,200,200)" rx="2" ry="2" />
<text text-anchor="" x="857.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/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (1 samples, 0.09%)</title><rect x="803.2" y="657" width="1.1" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="806.23" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/routing/MethodSelectingRouter$4:::apply (1 samples, 0.09%)</title><rect x="1014.8" y="865" width="1.0" height="15.0" fill="rgb(57,172,172)" rx="2" ry="2" />
<text text-anchor="" x="1017.76" 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/hk2/utilities/cache/Cache:::compute (2 samples, 0.18%)</title><rect x="1128.8" y="561" width="2.1" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text text-anchor="" x="1131.82" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.09%)</title><rect x="576.2" y="1809" width="1.0" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="579.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>__netif_receive_skb (1 samples, 0.09%)</title><rect x="999.2" y="945" width="1.0" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="1002.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>Java_java_io_FileOutputStream_writeBytes (2 samples, 0.18%)</title><rect x="101.2" y="1489" width="2.1" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="104.25" 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>Lsun/nio/ch/SelectorImpl:::select (2 samples, 0.18%)</title><rect x="1009.6" y="1585" width="2.1" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="1012.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>sock_write_iter (1 samples, 0.09%)</title><rect x="746.2" y="1537" width="1.0" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="749.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/glassfish/jersey/internal/Errors:::process (8 samples, 0.70%)</title><rect x="858.2" y="1057" width="8.3" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="861.19" 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/server/ServerRuntime$Responder:::process (2 samples, 0.18%)</title><rect x="556.4" y="977" width="2.1" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="559.45" 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.18%)</title><rect x="876.9" y="1457" width="2.0" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="879.85" 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>BacktraceBuilder::push (2 samples, 0.18%)</title><rect x="1061.4" y="881" width="2.1" height="15.0" fill="rgb(180,180,51)" rx="2" ry="2" />
<text text-anchor="" x="1064.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>Lorg/glassfish/jersey/message/internal/WriterInterceptorExecutor:::proceed (2 samples, 0.18%)</title><rect x="490.1" y="865" width="2.1" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="493.09" 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_local_deliver (1 samples, 0.09%)</title><rect x="799.1" y="225" width="1.0" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="802.09" 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>JavaThread::thread_main_inner (5 samples, 0.44%)</title><rect x="363.6" y="1793" width="5.2" height="15.0" fill="rgb(178,178,51)" rx="2" ry="2" />
<text text-anchor="" x="366.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>futex_wait (3 samples, 0.26%)</title><rect x="350.1" y="1729" width="3.1" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="353.11" 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>futex_wait_queue_me (1 samples, 0.09%)</title><rect x="358.4" y="1697" width="1.0" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="361.40" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.09%)</title><rect x="416.5" y="1553" width="1.0" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="419.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>common_file_perm (1 samples, 0.09%)</title><rect x="723.4" y="1681" width="1.0" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="726.39" 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/ReentrantReadWriteLock$Sync:::tryAcquireShared (1 samples, 0.09%)</title><rect x="812.6" y="689" width="1.0" height="15.0" fill="rgb(103,213,213)" rx="2" ry="2" />
<text text-anchor="" x="815.57" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.09%)</title><rect x="406.1" y="1793" width="1.0" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="409.10" 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>OptoRuntime::is_deoptimized_caller_frame (1 samples, 0.09%)</title><rect x="94.0" y="1457" width="1.0" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="96.99" 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>sched_clock (1 samples, 0.09%)</title><rect x="1174.4" y="1521" width="1.1" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="1177.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>do_nmi (1 samples, 0.09%)</title><rect x="876.9" y="1297" width="1.0" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="879.85" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (2 samples, 0.18%)</title><rect x="876.9" y="1425" width="2.0" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="879.85" 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_event_context_sched_in (2 samples, 0.18%)</title><rect x="313.8" y="1649" width="2.1" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="316.81" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (1 samples, 0.09%)</title><rect x="1041.7" y="1393" width="1.1" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="1044.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>java_lang_Throwable::fill_in_stack_trace (7 samples, 0.62%)</title><rect x="912.1" y="897" width="7.3" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="915.11" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.09%)</title><rect x="41.1" y="1553" width="1.0" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="44.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>vfs_writev (1 samples, 0.09%)</title><rect x="522.2" y="945" width="1.1" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="525.23" 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.18%)</title><rect x="257.8" y="1665" width="2.1" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="260.82" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/handler/gzip/GzipHandler:::handle (4 samples, 0.35%)</title><rect x="555.4" y="1457" width="4.2" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text text-anchor="" x="558.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>ip_finish_output (1 samples, 0.09%)</title><rect x="954.6" y="273" width="1.1" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="957.62" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/model/internal/AbstractJavaResourceMethodDispatcher:::dispatch (3 samples, 0.26%)</title><rect x="24.5" y="913" width="3.1" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="27.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>Lorg/eclipse/jetty/http/HttpParser:::parseNext (6 samples, 0.53%)</title><rect x="1001.3" y="1521" width="6.2" height="15.0" fill="rgb(69,218,69)" rx="2" ry="2" />
<text text-anchor="" x="1004.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>do_futex (2 samples, 0.18%)</title><rect x="266.1" y="1745" width="2.1" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="269.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>inet_sendmsg (1 samples, 0.09%)</title><rect x="867.5" y="1377" width="1.1" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="870.52" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_local_out (1 samples, 0.09%)</title><rect x="589.6" y="1553" width="1.1" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="592.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/hibernate/validator/internal/util/ExecutableHelper:::getSignature (1 samples, 0.09%)</title><rect x="967.1" y="801" width="1.0" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text text-anchor="" x="970.07" 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.09%)</title><rect x="33.8" y="1489" width="1.1" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="36.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>entry_SYSCALL_64_fastpath (1 samples, 0.09%)</title><rect x="596.9" y="1793" width="1.0" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="599.89" 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/codahale/metrics/Timer$Context:::close (1 samples, 0.09%)</title><rect x="962.9" y="849" width="1.1" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="965.92" 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/io/ChannelEndPoint:::flush (5 samples, 0.44%)</title><rect x="951.5" y="609" width="5.2" height="15.0" fill="rgb(80,192,192)" rx="2" ry="2" />
<text text-anchor="" x="954.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>java-?/Gang_worker#3_(Parallel_GC_Threads) (23 samples, 2.02%)</title><rect x="334.6" y="1857" width="23.8" height="15.0" fill="rgb(69,218,69)" rx="2" ry="2" />
<text text-anchor="" x="337.55" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>frame::sender (3 samples, 0.26%)</title><rect x="1063.5" y="881" width="3.1" height="15.0" fill="rgb(199,199,59)" rx="2" ry="2" />
<text text-anchor="" x="1066.50" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.09%)</title><rect x="871.7" y="1409" width="1.0" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="874.67" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.09%)</title><rect x="410.2" y="1729" width="1.1" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="413.25" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/IllegalArgumentException:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="997.1" y="1201" width="1.1" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text text-anchor="" x="1000.14" 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>Lch/qos/logback/core/OutputStreamAppender:::writeOut (36 samples, 3.16%)</title><rect x="76.4" y="1617" width="37.3" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text text-anchor="" x="79.36" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lch..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/CommittingOutputStream:::close (1 samples, 0.09%)</title><rect x="859.2" y="897" width="1.1" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="862.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>futex_wait (2 samples, 0.18%)</title><rect x="400.9" y="1633" width="2.1" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="403.91" 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-8513.map] (12 samples, 1.05%)</title><rect x="1009.6" y="1665" width="12.4" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text text-anchor="" x="1012.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>Lorg/glassfish/jersey/server/model/ResourceMethodInvoker:::apply (13 samples, 1.14%)</title><rect x="811.5" y="961" width="13.5" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="814.53" 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>G1ParTask::work (9 samples, 0.79%)</title><rect x="276.5" y="1793" width="9.3" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="279.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/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetService (8 samples, 0.70%)</title><rect x="976.4" y="769" width="8.3" height="15.0" fill="rgb(92,203,203)" rx="2" ry="2" />
<text text-anchor="" x="979.40" 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 (3 samples, 0.26%)</title><rect x="797.0" y="609" width="3.1" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="800.01" 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_context_sched_in (1 samples, 0.09%)</title><rect x="358.4" y="1617" width="1.0" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="361.40" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (2 samples, 0.18%)</title><rect x="738.9" y="1777" width="2.1" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="741.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>Lorg/glassfish/jersey/message/internal/HttpHeaderReaderImpl:::next (1 samples, 0.09%)</title><rect x="1088.4" y="641" width="1.0" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="1091.38" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/hibernate/validator/internal/metadata/raw/ExecutableElement$MethodElement:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="1115.3" y="817" width="1.1" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="1118.34" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (2 samples, 0.18%)</title><rect x="421.7" y="1697" width="2.0" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="424.65" 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/process/internal/RequestScope:::runInScope (5 samples, 0.44%)</title><rect x="412.3" y="1729" width="5.2" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text text-anchor="" x="415.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>Lorg/glassfish/hk2/utilities/general/internal/DoubleNode:::getValue (1 samples, 0.09%)</title><rect x="975.4" y="673" width="1.0" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="978.36" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (1 samples, 0.09%)</title><rect x="842.6" y="1089" width="1.1" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="845.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>x86_pmu_enable (2 samples, 0.18%)</title><rect x="257.8" y="1553" width="2.1" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="260.82" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (5 samples, 0.44%)</title><rect x="169.7" y="1665" width="5.2" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="172.68" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.18%)</title><rect x="113.7" y="1601" width="2.1" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="116.69" 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/spi/AccessEvent:::prepareForDeferredProcessing (2 samples, 0.18%)</title><rect x="854.0" y="1425" width="2.1" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text text-anchor="" x="857.04" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>oopDesc::size_given_klass (1 samples, 0.09%)</title><rect x="768.0" y="849" width="1.0" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text text-anchor="" x="770.98" 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>Lcom/fasterxml/jackson/jaxrs/base/ProviderBase:::_createGenerator (1 samples, 0.09%)</title><rect x="1095.6" y="769" width="1.1" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="1098.64" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/servlet/ServletHandler$CachedChain:::doFilter (81 samples, 7.12%)</title><rect x="758.6" y="1249" width="84.0" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="761.65" y="1259.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>__vfs_write (1 samples, 0.09%)</title><rect x="42.1" y="1729" width="1.1" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="45.14" 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>Lio/dropwizard/servlets/ThreadNameFilter:::doFilter (7 samples, 0.62%)</title><rect x="708.9" y="1249" width="7.2" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text text-anchor="" x="711.88" 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>do_nmi (1 samples, 0.09%)</title><rect x="1174.4" y="1569" width="1.1" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="1177.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>intel_pmu_enable_all (2 samples, 0.18%)</title><rect x="253.7" y="1521" width="2.0" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="256.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>Lio/dropwizard/jackson/FuzzyEnumModule$PermissiveEnumDeserializer:::deserialize (1 samples, 0.09%)</title><rect x="658.1" y="561" width="1.0" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="661.07" 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/lang/AbstractStringBuilder:::append (3 samples, 0.26%)</title><rect x="90.9" y="1505" width="3.1" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="93.88" 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/LinkedList:::linkLast (1 samples, 0.09%)</title><rect x="980.5" y="497" width="1.1" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="983.54" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (3 samples, 0.26%)</title><rect x="336.6" y="1777" width="3.1" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="339.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>tcp_transmit_skb (1 samples, 0.09%)</title><rect x="735.8" y="1585" width="1.1" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="738.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/eclipse/jetty/server/HttpChannelState:::recycle (1 samples, 0.09%)</title><rect x="902.8" y="1441" width="1.0" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="905.78" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (10 samples, 0.88%)</title><rect x="1179.6" y="1617" width="10.4" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text text-anchor="" x="1182.63" 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 (4 samples, 0.35%)</title><rect x="326.3" y="1569" width="4.1" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="329.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/ServerRuntime$Responder:::process (1 samples, 0.09%)</title><rect x="1161.0" y="977" width="1.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1163.97" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (2 samples, 0.18%)</title><rect x="57.7" y="1681" width="2.1" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="60.70" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/hk2/utilities/cache/Cache:::compute (1 samples, 0.09%)</title><rect x="1140.2" y="865" width="1.1" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text text-anchor="" x="1143.23" 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/ClazzCreator$ResolutionInfo:::access$100 (1 samples, 0.09%)</title><rect x="517.0" y="577" width="1.1" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="520.05" 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>CodeCache::find_blob (2 samples, 0.18%)</title><rect x="1064.5" y="849" width="2.1" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="1067.53" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (1 samples, 0.09%)</title><rect x="313.8" y="1569" width="1.1" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="316.81" 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/ArrayList:::ensureExplicitCapacity (1 samples, 0.09%)</title><rect x="459.0" y="945" width="1.0" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="461.98" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/nio/HeapByteBuffer:::put (1 samples, 0.09%)</title><rect x="1000.2" y="1473" width="1.1" height="15.0" fill="rgb(55,169,169)" rx="2" ry="2" />
<text text-anchor="" x="1003.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/http/HttpFields:::getFieldNames (1 samples, 0.09%)</title><rect x="434.1" y="1345" width="1.0" height="15.0" fill="rgb(104,214,214)" rx="2" ry="2" />
<text text-anchor="" x="437.09" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 0.35%)</title><rect x="389.5" y="1681" width="4.2" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="392.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/jvnet/hk2/internal/Utilities:::createService (7 samples, 0.62%)</title><rect x="513.9" y="753" width="7.3" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text text-anchor="" x="516.94" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>frame::sender (1 samples, 0.09%)</title><rect x="773.2" y="881" width="1.0" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="776.16" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (4 samples, 0.35%)</title><rect x="326.3" y="1633" width="4.1" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="329.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>Ljava/util/regex/Pattern:::compile (1 samples, 0.09%)</title><rect x="646.7" y="817" width="1.0" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="649.66" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/util/AttributesMap:::getAttributeNamesCopy (3 samples, 0.26%)</title><rect x="67.0" y="1569" width="3.1" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="70.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>java-?/dw-admin-32-acceptor-1@4055e733-admin@515f4131{HTTP/1.1,[http/1.1]}{0.0.0.0:8081} (10 samples, 0.88%)</title><rect x="1164.1" y="1857" width="10.3" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="1167.08" 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/process/internal/Stages:::process (15 samples, 1.32%)</title><rect x="471.4" y="961" width="15.6" height="15.0" fill="rgb(93,204,204)" rx="2" ry="2" />
<text text-anchor="" x="474.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>itable stub (1 samples, 0.09%)</title><rect x="983.7" y="753" width="1.0" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="986.66" 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 (1 samples, 0.09%)</title><rect x="595.9" y="1793" width="1.0" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="598.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>ip_rcv (1 samples, 0.09%)</title><rect x="590.7" y="1361" width="1.0" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="593.67" 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>enqueue_task_fair (1 samples, 0.09%)</title><rect x="410.2" y="1633" width="1.1" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="413.25" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_lang_Throwable_fillInStackTrace (9 samples, 0.79%)</title><rect x="910.0" y="945" width="9.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="913.04" 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.09%)</title><rect x="746.2" y="1601" width="1.0" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="749.20" 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/servlet/ServletContainer:::service (87 samples, 7.64%)</title><rect x="447.6" y="1185" width="90.2" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="450.57" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/glass..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (1 samples, 0.09%)</title><rect x="1037.6" y="1345" width="1.0" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="1040.57" 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>Interpreter (1 samples, 0.09%)</title><rect x="363.6" y="1617" width="1.0" height="15.0" fill="rgb(235,100,100)" rx="2" ry="2" />
<text text-anchor="" x="366.59" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_writev (1 samples, 0.09%)</title><rect x="577.2" y="1745" width="1.0" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="580.19" 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/ArrayList$Itr:::next (1 samples, 0.09%)</title><rect x="1084.2" y="881" width="1.1" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="1087.24" 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/hk2/utilities/cache/internal/WeakCARCacheImpl:::compute (1 samples, 0.09%)</title><rect x="512.9" y="721" width="1.0" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text text-anchor="" x="515.90" 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/servlet/WebComponent:::service (9 samples, 0.79%)</title><rect x="858.2" y="1153" width="9.3" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="861.19" 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>Lcom/codahale/metrics/Timer$Context:::stop (1 samples, 0.09%)</title><rect x="812.6" y="833" width="1.0" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="815.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>inet_sendmsg (1 samples, 0.09%)</title><rect x="796.0" y="449" width="1.0" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="798.98" 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 (1 samples, 0.09%)</title><rect x="412.3" y="1505" width="1.1" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="415.32" 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 (17 samples, 1.49%)</title><rect x="1113.3" y="945" width="17.6" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="1116.27" 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$GroupHead:::match (1 samples, 0.09%)</title><rect x="921.4" y="881" width="1.1" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="924.44" 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_queue_xmit (1 samples, 0.09%)</title><rect x="842.6" y="1073" width="1.1" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="845.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>Lsun/reflect/Reflection:::quickCheckMemberAccess (1 samples, 0.09%)</title><rect x="1131.9" y="993" width="1.1" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text text-anchor="" x="1134.93" 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/OutboundMessageContext:::setMediaType (2 samples, 0.18%)</title><rect x="943.2" y="849" width="2.1" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="946.22" 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>do_futex (3 samples, 0.26%)</title><rect x="561.6" y="1713" width="3.1" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="564.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>ip_local_out (1 samples, 0.09%)</title><rect x="421.7" y="1569" width="1.0" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="424.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>Lorg/glassfish/jersey/process/internal/RequestScope$Instance:::remove (3 samples, 0.26%)</title><rect x="988.8" y="1041" width="3.2" height="15.0" fill="rgb(103,213,213)" rx="2" ry="2" />
<text text-anchor="" x="991.84" 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.09%)</title><rect x="574.1" y="1793" width="1.0" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="577.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>Lch/qos/logback/core/AsyncAppenderBase:::append (3 samples, 0.26%)</title><rect x="597.9" y="1457" width="3.1" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text text-anchor="" x="600.93" 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/regex/Pattern:::compile (2 samples, 0.18%)</title><rect x="807.4" y="785" width="2.1" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="810.38" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Throwable:::fillInStackTrace (1 samples, 0.09%)</title><rect x="702.7" y="993" width="1.0" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="705.65" 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/ServiceLocatorImpl:::getService (2 samples, 0.18%)</title><rect x="928.7" y="881" width="2.1" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="931.70" 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/SystemDescriptor:::create (5 samples, 0.44%)</title><rect x="1136.1" y="929" width="5.2" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="1139.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>__netif_receive_skb (1 samples, 0.09%)</title><rect x="595.9" y="1425" width="1.0" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="598.85" 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>VM_G1IncCollectionPause::doit (6 samples, 0.53%)</title><rect x="399.9" y="1745" width="6.2" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="402.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>Lorg/glassfish/jersey/server/internal/routing/MethodSelectingRouter:::getMethodRouter (1 samples, 0.09%)</title><rect x="1014.8" y="833" width="1.0" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1017.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>Lorg/eclipse/jetty/http/HttpParser:::parseNext (1 samples, 0.09%)</title><rect x="33.8" y="1521" width="1.1" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text text-anchor="" x="36.85" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.09%)</title><rect x="575.1" y="1665" width="1.1" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="578.11" 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/net/URI:::&lt;init&gt; (2 samples, 0.18%)</title><rect x="1145.4" y="1105" width="2.1" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text text-anchor="" x="1148.41" 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 (14 samples, 1.23%)</title><rect x="927.7" y="961" width="14.5" height="15.0" fill="rgb(68,182,182)" rx="2" ry="2" />
<text text-anchor="" x="930.66" 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/handler/StatisticsHandler:::handle (100 samples, 8.79%)</title><rect x="437.2" y="1489" width="103.7" height="15.0" fill="rgb(101,246,101)" rx="2" ry="2" />
<text text-anchor="" x="440.21" 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>__tcp_push_pending_frames (1 samples, 0.09%)</title><rect x="648.7" y="753" width="1.1" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="651.73" 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/Server:::handle (4 samples, 0.35%)</title><rect x="555.4" y="1537" width="4.2" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="558.41" 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>call_stub (124 samples, 10.90%)</title><rect x="893.4" y="1713" width="128.6" height="15.0" fill="rgb(252,127,127)" rx="2" ry="2" />
<text text-anchor="" x="896.44" y="1723.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>Lorg/eclipse/jetty/server/HttpChannel:::write (1 samples, 0.09%)</title><rect x="21.4" y="753" width="1.0" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="24.41" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/ConcurrentHashMap$TreeNode:::findTreeNode (2 samples, 0.18%)</title><rect x="1128.8" y="513" width="2.1" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="1131.82" 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/lang/Thread:::setNativeName (1 samples, 0.09%)</title><rect x="1054.2" y="1201" width="1.0" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text text-anchor="" x="1057.17" 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>CodeCache::find_blob (1 samples, 0.09%)</title><rect x="452.8" y="849" width="1.0" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="455.76" 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_transmit_skb (1 samples, 0.09%)</title><rect x="718.2" y="1569" width="1.0" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="721.21" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::indexOf (1 samples, 0.09%)</title><rect x="1072.8" y="1041" width="1.1" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="1075.83" 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>Ljersey/repackaged/com/google/common/net/InetAddresses:::forUriString (1 samples, 0.09%)</title><rect x="555.4" y="1073" width="1.0" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="558.41" 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/JerseyUriBuilder:::schemeSpecificPart (16 samples, 1.41%)</title><rect x="759.7" y="1105" width="16.6" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="762.68" 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/String:::substring (1 samples, 0.09%)</title><rect x="455.9" y="1009" width="1.0" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text text-anchor="" x="458.87" 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>CodeCache::find_blob (1 samples, 0.09%)</title><rect x="280.6" y="1681" width="1.1" height="15.0" fill="rgb(177,177,51)" rx="2" ry="2" />
<text text-anchor="" x="283.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/ServerRuntime:::process (1 samples, 0.09%)</title><rect x="1008.5" y="1105" width="1.1" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="1011.54" 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/eclipse/jetty/server/HttpConnection:::onCompleted (1 samples, 0.09%)</title><rect x="902.8" y="1505" width="1.0" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text text-anchor="" x="905.78" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (1 samples, 0.09%)</title><rect x="37.0" y="1745" width="1.0" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="39.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>native_write_msr_safe (6 samples, 0.53%)</title><rect x="566.8" y="1745" width="6.2" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="569.82" 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/jvnet/hk2/internal/SystemDescriptor:::create (2 samples, 0.18%)</title><rect x="989.9" y="929" width="2.1" height="15.0" fill="rgb(65,178,178)" rx="2" ry="2" />
<text text-anchor="" x="992.88" 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_futex (2 samples, 0.18%)</title><rect x="236.0" y="1745" width="2.1" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="239.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:::equalsIgnoreCase (1 samples, 0.09%)</title><rect x="1100.8" y="689" width="1.1" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="1103.83" 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/ServerRuntime:::process (56 samples, 4.92%)</title><rect x="778.3" y="1089" width="58.1" height="15.0" fill="rgb(54,169,169)" rx="2" ry="2" />
<text text-anchor="" x="781.35" y="1099.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>Lorg/eclipse/jetty/servlet/ServletHandler$CachedChain:::doFilter (83 samples, 7.29%)</title><rect x="604.1" y="1249" width="86.1" height="15.0" fill="rgb(80,193,193)" rx="2" ry="2" />
<text text-anchor="" x="607.15" y="1259.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>java_lang_Throwable::fill_in_stack_trace (10 samples, 0.88%)</title><rect x="1057.3" y="897" width="10.3" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="1060.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>Ljava/util/HashMap:::putVal (1 samples, 0.09%)</title><rect x="434.1" y="1281" width="1.0" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="437.09" 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/jvnet/hk2/internal/FactoryCreator:::create (1 samples, 0.09%)</title><rect x="1018.9" y="721" width="1.0" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="1021.91" 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>nmi_handle (1 samples, 0.09%)</title><rect x="591.7" y="1521" width="1.0" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="594.70" 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>Lio/dropwizard/jersey/jackson/JacksonMessageBodyProvider:::readFrom (1 samples, 0.09%)</title><rect x="1017.9" y="705" width="1.0" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="1020.87" 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 (1 samples, 0.09%)</title><rect x="869.6" y="1313" width="1.0" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="872.60" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/codahale/metrics/EWMA:::update (1 samples, 0.09%)</title><rect x="439.3" y="1345" width="1.0" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="442.28" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/ContainerResponse:::getStringHeaders (1 samples, 0.09%)</title><rect x="645.6" y="785" width="1.1" height="15.0" fill="rgb(77,189,189)" rx="2" ry="2" />
<text text-anchor="" x="648.62" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.90 (1 samples, 0.09%)</title><rect x="42.1" y="1601" width="1.1" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="45.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/glassfish/jersey/uri/internal/JerseyUriBuilder:::uri (18 samples, 1.58%)</title><rect x="759.7" y="1121" width="18.6" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="762.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>G1ParPreserveCMReferentsTask::work (1 samples, 0.09%)</title><rect x="344.9" y="1793" width="1.1" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="347.92" 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/ScopedHandler:::handle (9 samples, 0.79%)</title><rect x="1011.7" y="1393" width="9.3" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="1014.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/glassfish/jersey/server/model/ResourceMethodInvoker:::apply (13 samples, 1.14%)</title><rect x="811.5" y="945" width="13.5" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="814.53" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getUnqualifiedService (2 samples, 0.18%)</title><rect x="781.5" y="881" width="2.0" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="784.46" 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-?/dw-16_-_POST_/calculator (146 samples, 12.83%)</title><rect x="410.2" y="1857" width="151.4" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="413.25" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java-?/dw-16_-_POST..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/ReentrantReadWriteLock$Sync:::tryReleaseShared (1 samples, 0.09%)</title><rect x="864.4" y="465" width="1.0" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="867.41" 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>Lcom/codahale/metrics/Timer:::update (1 samples, 0.09%)</title><rect x="812.6" y="817" width="1.0" height="15.0" fill="rgb(104,215,215)" rx="2" ry="2" />
<text text-anchor="" x="815.57" 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.18%)</title><rect x="1174.4" y="1793" width="2.1" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="1177.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>finish_task_switch (1 samples, 0.09%)</title><rect x="549.2" y="1521" width="1.0" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="552.19" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/RuntimeException:::&lt;init&gt; (9 samples, 0.79%)</title><rect x="910.0" y="1025" width="9.4" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="913.04" 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>new_sync_read (1 samples, 0.09%)</title><rect x="34.9" y="1473" width="1.0" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="37.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/server/ServerRuntime$2:::run (49 samples, 4.31%)</title><rect x="470.4" y="977" width="50.8" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="473.39" y="987.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>tcp_v4_rcv (1 samples, 0.09%)</title><rect x="1022.0" y="1281" width="1.1" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="1025.02" 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>Lio/dropwizard/jersey/jackson/JacksonMessageBodyProvider:::readFrom (1 samples, 0.09%)</title><rect x="863.4" y="705" width="1.0" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="866.37" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (1 samples, 0.09%)</title><rect x="1022.0" y="1553" width="1.1" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="1025.02" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (2 samples, 0.18%)</title><rect x="271.3" y="1697" width="2.1" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="274.30" 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/UriParser:::parseComponent (2 samples, 0.18%)</title><rect x="1072.8" y="1073" width="2.1" height="15.0" fill="rgb(78,225,78)" rx="2" ry="2" />
<text text-anchor="" x="1075.83" 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>[unknown] (12 samples, 1.05%)</title><rect x="561.6" y="1809" width="12.5" height="15.0" fill="rgb(217,74,74)" rx="2" ry="2" />
<text text-anchor="" x="564.63" 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/HttpOutput:::write (8 samples, 0.70%)</title><rect x="792.9" y="785" width="8.3" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="795.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/glassfish/jersey/uri/internal/JerseyUriBuilder:::replacePath (1 samples, 0.09%)</title><rect x="686.1" y="1137" width="1.0" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="689.06" 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>Method::print_short_name (1 samples, 0.09%)</title><rect x="161.4" y="1729" width="1.0" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="164.39" 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>Lio/dropwizard/jetty/BiDiGzipHandler:::handle (92 samples, 8.08%)</title><rect x="904.9" y="1457" width="95.3" height="15.0" fill="rgb(54,168,168)" rx="2" ry="2" />
<text text-anchor="" x="907.85" y="1467.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>ip_queue_xmit (1 samples, 0.09%)</title><rect x="595.9" y="1601" width="1.0" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="598.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>perf_event_context_sched_in (2 samples, 0.18%)</title><rect x="1174.4" y="1665" width="2.1" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="1177.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>__wake_up_common (1 samples, 0.09%)</title><rect x="37.0" y="1649" width="1.0" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="39.96" 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_msr_safe (2 samples, 0.18%)</title><rect x="350.1" y="1553" width="2.1" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="353.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>G1CollectorPolicy::predict_region_elapsed_time_ms (2 samples, 0.18%)</title><rect x="250.6" y="1729" width="2.0" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="253.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>Lorg/eclipse/jetty/server/Request:::recycle (1 samples, 0.09%)</title><rect x="902.8" y="1457" width="1.0" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="905.78" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljersey/repackaged/com/google/common/collect/Iterables:::addAll (1 samples, 0.09%)</title><rect x="478.7" y="881" width="1.0" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text text-anchor="" x="481.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/eclipse/jetty/server/handler/gzip/GzipHandler:::handle (86 samples, 7.56%)</title><rect x="754.5" y="1441" width="89.2" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text text-anchor="" x="757.50" y="1451.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>Interpreter (9 samples, 0.79%)</title><rect x="1180.7" y="1537" width="9.3" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text text-anchor="" x="1183.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>Lorg/eclipse/jetty/http/HttpFields:::getFieldNames (1 samples, 0.09%)</title><rect x="73.3" y="1553" width="1.0" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="76.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>sock_write_iter (3 samples, 0.26%)</title><rect x="1039.6" y="1713" width="3.2" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="1042.65" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/IterableProviderImpl:::justInTime (1 samples, 0.09%)</title><rect x="474.5" y="881" width="1.1" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="477.53" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/io/SelectChannelEndPoint$2:::run (10 samples, 0.88%)</title><rect x="1011.7" y="1617" width="10.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1014.65" 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:::epollWait (1 samples, 0.09%)</title><rect x="1010.6" y="1505" width="1.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="1013.62" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (1 samples, 0.09%)</title><rect x="869.6" y="1425" width="1.0" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="872.60" 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.18%)</title><rect x="400.9" y="1617" width="2.1" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="403.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>Compile::Optimize (5 samples, 0.44%)</title><rect x="210.1" y="1713" width="5.2" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="213.12" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (1 samples, 0.09%)</title><rect x="411.3" y="1617" width="1.0" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="414.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>__netif_receive_skb_core (1 samples, 0.09%)</title><rect x="522.2" y="577" width="1.1" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="525.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>Lorg/eclipse/jetty/util/IteratingCallback:::iterate (5 samples, 0.44%)</title><rect x="493.2" y="705" width="5.2" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="496.20" 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/FactoryCreator:::dispose (4 samples, 0.35%)</title><rect x="871.7" y="1505" width="4.1" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="874.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>tcp_push (1 samples, 0.09%)</title><rect x="735.8" y="1633" width="1.1" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="738.83" 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_page_to_iter_iovec (1 samples, 0.09%)</title><rect x="734.8" y="1665" width="1.0" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="737.80" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.35%)</title><rect x="368.8" y="1649" width="4.1" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="371.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/uri/internal/CharacterIterator:::current (1 samples, 0.09%)</title><rect x="616.6" y="1089" width="1.0" height="15.0" fill="rgb(77,189,189)" rx="2" ry="2" />
<text text-anchor="" x="619.59" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (1 samples, 0.09%)</title><rect x="999.2" y="721" width="1.0" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="1002.21" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compile::fill_buffer (1 samples, 0.09%)</title><rect x="192.5" y="1697" width="1.0" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="195.50" 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/AbstractEntityProviderModel:::provider (1 samples, 0.09%)</title><rect x="862.3" y="673" width="1.1" height="15.0" fill="rgb(53,167,167)" rx="2" ry="2" />
<text text-anchor="" x="865.34" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (1 samples, 0.09%)</title><rect x="643.6" y="465" width="1.0" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="646.55" 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>os::javaTimeMillis (1 samples, 0.09%)</title><rect x="868.6" y="1505" width="1.0" height="15.0" fill="rgb(188,188,55)" rx="2" ry="2" />
<text text-anchor="" x="871.56" 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>Method::bci_from (1 samples, 0.09%)</title><rect x="606.2" y="897" width="1.1" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="609.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>YoungList::rs_length_sampling_next (3 samples, 0.26%)</title><rect x="250.6" y="1761" width="3.1" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="253.56" 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:::produce (3 samples, 0.26%)</title><rect x="1155.8" y="1617" width="3.1" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text text-anchor="" x="1158.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>Lorg/glassfish/jersey/servlet/WebComponent$4$1:::initialize (3 samples, 0.26%)</title><rect x="471.4" y="897" width="3.1" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="474.42" 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/Arrays:::sort (1 samples, 0.09%)</title><rect x="624.9" y="865" width="1.0" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="627.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>Lcom/fasterxml/jackson/databind/ObjectReader:::readValue (1 samples, 0.09%)</title><rect x="509.8" y="657" width="1.0" height="15.0" fill="rgb(66,179,179)" rx="2" ry="2" />
<text text-anchor="" x="512.79" 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/hibernate/validator/internal/util/logging/Messages_$bundle:::validatedMethodMustNotBeNull$str (1 samples, 0.09%)</title><rect x="865.4" y="1009" width="1.1" height="15.0" fill="rgb(99,244,99)" rx="2" ry="2" />
<text text-anchor="" x="868.45" 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>Lsun/nio/ch/SocketChannelImpl:::read (1 samples, 0.09%)</title><rect x="1163.0" y="1521" width="1.1" height="15.0" fill="rgb(105,251,105)" rx="2" ry="2" />
<text text-anchor="" x="1166.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>[unknown] (1 samples, 0.09%)</title><rect x="596.9" y="1841" width="1.0" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="599.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>ip_local_deliver (1 samples, 0.09%)</title><rect x="954.6" y="81" width="1.1" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="957.62" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_write (1 samples, 0.09%)</title><rect x="63.9" y="1441" width="1.1" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="66.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>call_stub (1 samples, 0.09%)</title><rect x="240.2" y="1713" width="1.0" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text text-anchor="" x="243.19" 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.09%)</title><rect x="870.6" y="1761" width="1.1" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="873.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>native_write_msr_safe (4 samples, 0.35%)</title><rect x="220.5" y="1473" width="4.1" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="223.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/io/ManagedSelector$SelectorProducer:::runActions (1 samples, 0.09%)</title><rect x="1158.9" y="1617" width="1.0" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text text-anchor="" x="1161.89" 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>sock_write_iter (1 samples, 0.09%)</title><rect x="867.5" y="1409" width="1.1" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="870.52" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpConnection:::onFillable (1 samples, 0.09%)</title><rect x="1008.5" y="1569" width="1.1" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text text-anchor="" x="1011.54" 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>ip_output (1 samples, 0.09%)</title><rect x="690.2" y="1105" width="1.0" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="693.21" 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>sys_futex (3 samples, 0.26%)</title><rect x="135.5" y="1633" width="3.1" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="138.47" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.18%)</title><rect x="403.0" y="1681" width="2.1" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="405.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>Lorg/glassfish/jersey/server/ServerRuntime$Responder:::writeResponse (18 samples, 1.58%)</title><rect x="488.0" y="929" width="18.7" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text text-anchor="" x="491.01" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_all_blocks (5 samples, 0.44%)</title><rect x="187.3" y="1681" width="5.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="190.31" 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/HttpURI:::parseRequestTarget (1 samples, 0.09%)</title><rect x="1006.5" y="1473" width="1.0" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="1009.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>inet_sendmsg (1 samples, 0.09%)</title><rect x="952.5" y="401" width="1.1" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="955.55" 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>Lsun/nio/ch/EPollArrayWrapper:::poll (1 samples, 0.09%)</title><rect x="553.3" y="1521" width="1.1" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text text-anchor="" x="556.34" 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>tcp_packet (1 samples, 0.09%)</title><rect x="648.7" y="593" width="1.1" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="651.73" 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/internal/util/collection/KeyComparatorHashMap:::getEntry (1 samples, 0.09%)</title><rect x="637.3" y="785" width="1.1" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="640.33" 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>Lch/qos/logback/access/spi/AccessEvent:::getRequestHeaderMap (1 samples, 0.09%)</title><rect x="10.0" y="1393" width="1.0" height="15.0" fill="rgb(91,203,203)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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/hibernate/validator/internal/engine/ValidatorImpl:::validateParameters (2 samples, 0.18%)</title><rect x="966.0" y="849" width="2.1" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="969.03" 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>ret_from_intr (1 samples, 0.09%)</title><rect x="325.2" y="1649" width="1.1" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="328.22" 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/Pattern:::compile (1 samples, 0.09%)</title><rect x="23.5" y="817" width="1.0" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="26.48" 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>sock_sendmsg (2 samples, 0.18%)</title><rect x="732.7" y="1697" width="2.1" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="735.72" 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/CommittingOutputStream:::flushBuffer (10 samples, 0.88%)</title><rect x="492.2" y="849" width="10.3" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="495.16" 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/server/internal/routing/RoutingStage:::apply (8 samples, 0.70%)</title><rect x="628.0" y="945" width="8.3" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text text-anchor="" x="631.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>Ljava/lang/String:::format (1 samples, 0.09%)</title><rect x="1159.9" y="1057" width="1.1" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="1162.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>[unknown] (13 samples, 1.14%)</title><rect x="561.6" y="1841" width="13.5" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="564.63" 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_write_xmit (1 samples, 0.09%)</title><rect x="1133.0" y="801" width="1.0" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="1135.97" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_start (42 samples, 3.69%)</title><rect x="192.5" y="1825" width="43.5" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text text-anchor="" x="195.50" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (2 samples, 0.18%)</title><rect x="45.3" y="1745" width="2.0" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="48.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>net_rx_action (1 samples, 0.09%)</title><rect x="522.2" y="625" width="1.1" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="525.23" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq.part.19 (1 samples, 0.09%)</title><rect x="577.2" y="1457" width="1.0" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="580.19" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BacktraceBuilder::push (5 samples, 0.44%)</title><rect x="913.1" y="881" width="5.2" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="916.15" 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/MediaTypes:::mostSpecific (1 samples, 0.09%)</title><rect x="1089.4" y="769" width="1.1" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="1092.42" 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/inject/EntityParamValueFactoryProvider$EntityValueFactory:::provide (13 samples, 1.14%)</title><rect x="1117.4" y="833" width="13.5" height="15.0" fill="rgb(68,182,182)" rx="2" ry="2" />
<text text-anchor="" x="1120.42" 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/SelectChannelEndPoint$2:::run (100 samples, 8.79%)</title><rect x="597.9" y="1601" width="103.7" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text text-anchor="" x="600.93" y="1611.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>Ljavax/ws/rs/core/MediaType:::valueOf (2 samples, 0.18%)</title><rect x="680.9" y="1009" width="2.1" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="683.88" 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>Monitor::lock_without_safepoint_check (1 samples, 0.09%)</title><rect x="251.6" y="1713" width="1.0" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="254.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>Ljava/util/HashSet:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="715.1" y="1041" width="1.0" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="718.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>Lsun/nio/ch/SelectorImpl:::lockAndDoSelect (2 samples, 0.18%)</title><rect x="553.3" y="1553" width="2.1" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="556.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>do_nmi (1 samples, 0.09%)</title><rect x="144.8" y="1569" width="1.0" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="147.80" 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/HttpOutput:::write (8 samples, 0.70%)</title><rect x="792.9" y="801" width="8.3" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="795.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>Lorg/glassfish/jersey/internal/inject/Injections:::getOrCreate (1 samples, 0.09%)</title><rect x="785.6" y="817" width="1.0" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="788.61" 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:::write (5 samples, 0.44%)</title><rect x="951.5" y="657" width="5.2" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="954.51" 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>__wake_up_sync_key (1 samples, 0.09%)</title><rect x="1041.7" y="1281" width="1.1" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="1044.72" 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>Lcom/codahale/metrics/jetty9/InstrumentedHandler:::handle (92 samples, 8.08%)</title><rect x="904.9" y="1409" width="95.3" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="907.85" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lcom/codaha..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (1 samples, 0.09%)</title><rect x="744.1" y="1697" width="1.1" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="747.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>Lio/dropwizard/jersey/jackson/JacksonMessageBodyProvider:::readFrom (3 samples, 0.26%)</title><rect x="972.2" y="689" width="3.2" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="975.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>perf_pmu_enable.part.89 (2 samples, 0.18%)</title><rect x="48.4" y="1633" width="2.0" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="51.37" 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$EntityContent:::setContent (1 samples, 0.09%)</title><rect x="838.5" y="1057" width="1.0" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="841.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>Lorg/eclipse/jetty/http/HttpGenerator:::generateHeaders (1 samples, 0.09%)</title><rect x="859.2" y="657" width="1.1" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text text-anchor="" x="862.23" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/FactoryCreator:::dispose (3 samples, 0.26%)</title><rect x="988.8" y="1009" width="3.2" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="991.84" 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/model/internal/AbstractJavaResourceMethodDispatcher:::dispatch (1 samples, 0.09%)</title><rect x="1008.5" y="929" width="1.1" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="1011.54" 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:::proceed (1 samples, 0.09%)</title><rect x="1008.5" y="753" width="1.1" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="1011.54" 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>end_repeat_nmi (2 samples, 0.18%)</title><rect x="169.7" y="1585" width="2.1" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="172.68" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.09%)</title><rect x="114.7" y="1441" width="1.1" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="117.73" 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/server/internal/process/ReferencesInitializer:::apply (6 samples, 0.53%)</title><rect x="471.4" y="929" width="6.2" height="15.0" fill="rgb(83,231,83)" rx="2" ry="2" />
<text text-anchor="" x="474.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>ip_queue_xmit (1 samples, 0.09%)</title><rect x="642.5" y="449" width="1.1" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="645.51" 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>[unknown] (1 samples, 0.09%)</title><rect x="37.0" y="1793" width="1.0" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="39.96" 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/Matcher:::find (1 samples, 0.09%)</title><rect x="1159.9" y="993" width="1.1" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="1162.93" 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>Ljavax/ws/rs/core/AbstractMultivaluedMap:::getValues (2 samples, 0.18%)</title><rect x="943.2" y="817" width="2.1" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
<text text-anchor="" x="946.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>Ljava/util/regex/Pattern$GroupHead:::match (1 samples, 0.09%)</title><rect x="775.2" y="881" width="1.1" height="15.0" fill="rgb(77,189,189)" rx="2" ry="2" />
<text text-anchor="" x="778.24" 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>JavaThread::run (5 samples, 0.44%)</title><rect x="363.6" y="1809" width="5.2" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="366.59" 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 (1 samples, 0.09%)</title><rect x="412.3" y="1537" width="1.1" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="415.32" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/model/ResourceMethodInvoker:::apply (3 samples, 0.26%)</title><rect x="24.5" y="945" width="3.1" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="27.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>Lorg/jvnet/hk2/internal/ClazzCreator:::resolveAllDependencies (6 samples, 0.53%)</title><rect x="977.4" y="593" width="6.3" height="15.0" fill="rgb(107,253,107)" rx="2" ry="2" />
<text text-anchor="" x="980.43" 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>futex_wait_queue_me (4 samples, 0.35%)</title><rect x="368.8" y="1697" width="4.1" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="371.77" 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/ServiceHandleImpl:::getService (1 samples, 0.09%)</title><rect x="864.4" y="689" width="1.0" height="15.0" fill="rgb(54,169,169)" rx="2" ry="2" />
<text text-anchor="" x="867.41" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lio/dropwizard/jetty/BiDiGzipHandler:::handle (22 samples, 1.93%)</title><rect x="11.0" y="1457" width="22.8" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="14.04" y="1467.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>Lch/qos/logback/core/OutputStreamAppender:::writeOut (1 samples, 0.09%)</title><rect x="35.9" y="1793" width="1.1" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="38.92" 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>__tcp_push_pending_frames (1 samples, 0.09%)</title><rect x="1149.6" y="1025" width="1.0" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="1152.56" 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>activate_task (1 samples, 0.09%)</title><rect x="106.4" y="1233" width="1.1" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="109.43" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (1 samples, 0.09%)</title><rect x="578.2" y="1553" width="1.1" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="581.22" 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>do_iter_readv_writev (1 samples, 0.09%)</title><rect x="700.6" y="1473" width="1.0" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="703.58" 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 (2 samples, 0.18%)</title><rect x="591.7" y="1585" width="2.1" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="594.70" 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>G1ParTask::work (3 samples, 0.26%)</title><rect x="323.1" y="1793" width="3.2" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text text-anchor="" x="326.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>Ljava/util/ArrayList:::ensureCapacityInternal (1 samples, 0.09%)</title><rect x="459.0" y="961" width="1.0" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="461.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>__intel_pmu_enable_all (1 samples, 0.09%)</title><rect x="425.8" y="1585" width="1.0" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="428.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>__tcp_push_pending_frames (1 samples, 0.09%)</title><rect x="1022.0" y="1601" width="1.1" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="1025.02" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/routing/RoutingStage:::apply (8 samples, 0.70%)</title><rect x="628.0" y="929" width="8.3" height="15.0" fill="rgb(89,200,200)" rx="2" ry="2" />
<text text-anchor="" x="631.00" 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/server/internal/routing/Router$Continuation:::of (1 samples, 0.09%)</title><rect x="482.8" y="849" width="1.1" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="485.83" 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_writev (1 samples, 0.09%)</title><rect x="718.2" y="1745" width="1.0" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="721.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>Lorg/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (1 samples, 0.09%)</title><rect x="679.8" y="977" width="1.1" height="15.0" fill="rgb(80,192,192)" rx="2" ry="2" />
<text text-anchor="" x="682.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>do_softirq.part.19 (1 samples, 0.09%)</title><rect x="690.2" y="1041" width="1.0" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="693.21" 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/internal/monitoring/CompositeRequestEventListener:::onEvent (1 samples, 0.09%)</title><rect x="1084.2" y="897" width="1.1" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="1087.24" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.09%)</title><rect x="869.6" y="1329" width="1.0" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="872.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>Ljava/util/HashMap:::keySet (1 samples, 0.09%)</title><rect x="986.8" y="1041" width="1.0" height="15.0" fill="rgb(80,192,192)" rx="2" ry="2" />
<text text-anchor="" x="989.77" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.09%)</title><rect x="735.8" y="1521" width="1.1" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="738.83" 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/strategy/ExecutingExecutionStrategy:::execute (1 samples, 0.09%)</title><rect x="701.6" y="1601" width="1.1" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text text-anchor="" x="704.62" 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/regex/Pattern$GroupTail:::match (1 samples, 0.09%)</title><rect x="775.2" y="833" width="1.1" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="778.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>entry_SYSCALL_64_fastpath (2 samples, 0.18%)</title><rect x="886.2" y="1793" width="2.1" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="889.19" 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/servlet/ServletHandler$CachedChain:::doFilter (9 samples, 0.79%)</title><rect x="1011.7" y="1265" width="9.3" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="1014.65" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/Errors$1:::call (12 samples, 1.05%)</title><rect x="15.2" y="1009" width="12.4" height="15.0" fill="rgb(68,181,181)" rx="2" ry="2" />
<text text-anchor="" x="18.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:::internalGetInjecteeDescriptor (1 samples, 0.09%)</title><rect x="975.4" y="753" width="1.0" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="978.36" 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>schedule (5 samples, 0.44%)</title><rect x="148.9" y="1729" width="5.2" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="151.95" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/ConcurrentHashMap$TreeNode:::findTreeNode (1 samples, 0.09%)</title><rect x="664.3" y="497" width="1.0" height="15.0" fill="rgb(68,182,182)" rx="2" ry="2" />
<text text-anchor="" x="667.29" 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/eclipse/jetty/server/Response:::newResponseMetaData (1 samples, 0.09%)</title><rect x="800.1" y="721" width="1.1" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="803.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>java_lang_Throwable::fill_in_stack_trace (11 samples, 0.97%)</title><rect x="762.8" y="897" width="11.4" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text text-anchor="" x="765.79" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (2 samples, 0.18%)</title><rect x="113.7" y="1569" width="2.1" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="116.69" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.09%)</title><rect x="1036.5" y="1713" width="1.1" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="1039.54" 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:::getService (3 samples, 0.26%)</title><rect x="471.4" y="881" width="3.1" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="474.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>Lorg/eclipse/jetty/util/thread/QueuedThreadPool:::runJob (25 samples, 2.20%)</title><rect x="10.0" y="1665" width="25.9" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1675.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>finish_task_switch (1 samples, 0.09%)</title><rect x="281.7" y="1633" width="1.0" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="284.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>ip_local_out (1 samples, 0.09%)</title><rect x="700.6" y="1313" width="1.0" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="703.58" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpChannel:::write (1 samples, 0.09%)</title><rect x="859.2" y="769" width="1.1" height="15.0" fill="rgb(54,168,168)" rx="2" ry="2" />
<text text-anchor="" x="862.23" 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/message/internal/CommittingOutputStream:::close (1 samples, 0.09%)</title><rect x="1161.0" y="897" width="1.0" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="1163.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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetDescriptor (1 samples, 0.09%)</title><rect x="661.2" y="753" width="1.0" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="664.18" 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/jersey/server/internal/routing/MethodSelectingRouter:::apply (2 samples, 0.18%)</title><rect x="631.1" y="865" width="2.1" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text text-anchor="" x="634.11" 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>JavaThread::run (124 samples, 10.90%)</title><rect x="893.4" y="1809" width="128.6" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text text-anchor="" x="896.44" y="1819.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>entry_SYSCALL_64_fastpath (1 samples, 0.09%)</title><rect x="1027.2" y="1777" width="1.0" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="1030.21" 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/Errors:::process (46 samples, 4.04%)</title><rect x="779.4" y="1025" width="47.7" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="782.38" 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>__local_bh_enable_ip (1 samples, 0.09%)</title><rect x="642.5" y="369" width="1.1" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="645.51" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (3 samples, 0.26%)</title><rect x="724.4" y="1761" width="3.1" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="727.43" 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>JavaCalls::call_helper (5 samples, 0.44%)</title><rect x="363.6" y="1729" width="5.2" height="15.0" fill="rgb(175,175,50)" rx="2" ry="2" />
<text text-anchor="" x="366.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/glassfish/jersey/process/internal/RequestScope$Instance:::release (1 samples, 0.09%)</title><rect x="715.1" y="1073" width="1.0" height="15.0" fill="rgb(69,218,69)" rx="2" ry="2" />
<text text-anchor="" x="718.10" 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/handler/gzip/GzipHandler:::handle (11 samples, 0.97%)</title><rect x="856.1" y="1457" width="11.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="859.12" 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/ContainerFilteringStage:::apply (1 samples, 0.09%)</title><rect x="1081.1" y="929" width="1.1" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text text-anchor="" x="1084.12" 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>do_futex (1 samples, 0.09%)</title><rect x="43.2" y="1745" width="1.0" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="46.18" 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 (116 samples, 10.19%)</title><rect x="597.9" y="1745" width="120.3" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text text-anchor="" x="600.93" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaCalls::cal..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Formatter:::format (4 samples, 0.35%)</title><rect x="612.4" y="1009" width="4.2" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text text-anchor="" x="615.44" 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/internal/inject/Providers:::mergeAndSortRankedProviders (1 samples, 0.09%)</title><rect x="945.3" y="881" width="1.0" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text text-anchor="" x="948.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>_raw_spin_lock (1 samples, 0.09%)</title><rect x="718.2" y="1361" width="1.0" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="721.21" 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>release_sock (1 samples, 0.09%)</title><rect x="588.6" y="1649" width="1.0" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="591.59" 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>Ljavax/ws/rs/core/UriBuilder:::fromUri (1 samples, 0.09%)</title><rect x="555.4" y="1169" width="1.0" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="558.41" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_prequeue (1 samples, 0.09%)</title><rect x="1037.6" y="1281" width="1.0" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="1040.57" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 0.35%)</title><rect x="241.2" y="1713" width="4.2" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="244.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>entry_SYSCALL_64_fastpath (1 samples, 0.09%)</title><rect x="522.2" y="977" width="1.1" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="525.23" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java-?/Gang_worker#1_(Parallel_GC_Threads) (23 samples, 2.02%)</title><rect x="285.8" y="1857" width="23.9" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text text-anchor="" x="288.82" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_nmi_handler (1 samples, 0.09%)</title><rect x="253.7" y="1441" width="1.0" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="256.67" 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>ttwu_do_activate.constprop.90 (1 samples, 0.09%)</title><rect x="37.0" y="1585" width="1.0" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="39.96" 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/process/ReferencesInitializer:::apply (1 samples, 0.09%)</title><rect x="858.2" y="929" width="1.0" height="15.0" fill="rgb(54,169,169)" rx="2" ry="2" />
<text text-anchor="" x="861.19" 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>Lch/qos/logback/access/spi/AccessEvent:::getResponseHeaderMap (1 samples, 0.09%)</title><rect x="436.2" y="1393" width="1.0" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="439.17" 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>Lio/dropwizard/jersey/jackson/JacksonMessageBodyProvider:::readFrom (4 samples, 0.35%)</title><rect x="1119.5" y="689" width="4.1" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="1122.49" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/servlet/ServletHandler:::doHandle (3 samples, 0.26%)</title><rect x="1159.9" y="1329" width="3.1" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text text-anchor="" x="1162.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>Lorg/glassfish/jersey/server/model/internal/JavaResourceMethodDispatcherProvider$AbstractMethodParamInvoker:::getParamValues (4 samples, 0.35%)</title><rect x="861.3" y="897" width="4.1" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="864.30" 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_v4_rcv (1 samples, 0.09%)</title><rect x="999.2" y="849" width="1.0" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="1002.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>Lorg/eclipse/jetty/io/ManagedSelector$SelectorProducer:::select (2 samples, 0.18%)</title><rect x="1155.8" y="1601" width="2.1" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
<text text-anchor="" x="1158.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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetDescriptor (1 samples, 0.09%)</title><rect x="819.8" y="737" width="1.1" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text text-anchor="" x="822.82" 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>apic_timer_interrupt (1 samples, 0.09%)</title><rect x="973.3" y="465" width="1.0" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="976.29" 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/server/HttpConnection:::fillRequestBuffer (1 samples, 0.09%)</title><rect x="1163.0" y="1553" width="1.1" height="15.0" fill="rgb(53,202,53)" rx="2" ry="2" />
<text text-anchor="" x="1166.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>ThreadStateTransition::trans_and_fence (1 samples, 0.09%)</title><rect x="126.1" y="1601" width="1.1" height="15.0" fill="rgb(193,193,56)" rx="2" ry="2" />
<text text-anchor="" x="129.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>Lcom/fasterxml/jackson/core/json/UTF8StreamJsonParser:::nextToken (1 samples, 0.09%)</title><rect x="25.6" y="657" width="1.0" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text text-anchor="" x="28.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>sys_mprotect (1 samples, 0.09%)</title><rect x="397.8" y="1777" width="1.0" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="400.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/jvnet/hk2/internal/SystemDescriptor:::create (2 samples, 0.18%)</title><rect x="526.4" y="929" width="2.1" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="529.38" 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/UriBuilder:::fromUri (14 samples, 1.23%)</title><rect x="605.2" y="1153" width="14.5" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="608.18" 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] (25 samples, 2.20%)</title><rect x="1022.0" y="1841" width="25.9" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text text-anchor="" x="1025.02" 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_v4_rcv (1 samples, 0.09%)</title><rect x="954.6" y="49" width="1.1" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="957.62" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (3 samples, 0.26%)</title><rect x="1180.7" y="1377" width="3.1" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="1183.67" 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/uri/internal/JerseyUriBuilder:::build (1 samples, 0.09%)</title><rect x="30.7" y="1153" width="1.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="33.74" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (1 samples, 0.09%)</title><rect x="871.7" y="1233" width="1.0" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="874.67" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.09%)</title><rect x="746.2" y="1521" width="1.0" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="749.20" 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/servlet/ServletContainer:::service (3 samples, 0.26%)</title><rect x="1159.9" y="1201" width="3.1" height="15.0" fill="rgb(92,204,204)" rx="2" ry="2" />
<text text-anchor="" x="1162.93" 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/glassfish/jersey/CommonProperties:::getValue (1 samples, 0.09%)</title><rect x="557.5" y="897" width="1.0" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="560.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>DirtyCardQueueSet::apply_closure_to_completed_buffer (1 samples, 0.09%)</title><rect x="308.6" y="1729" width="1.1" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="311.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/jvnet/hk2/internal/FactoryCreator:::create (3 samples, 0.26%)</title><rect x="662.2" y="705" width="3.1" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="665.21" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (9 samples, 0.79%)</title><rect x="1180.7" y="1553" width="9.3" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="1183.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>Lch/qos/logback/core/AsyncAppenderBase:::append (4 samples, 0.35%)</title><rect x="1047.9" y="1457" width="4.2" height="15.0" fill="rgb(53,202,53)" rx="2" ry="2" />
<text text-anchor="" x="1050.94" 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 (2 samples, 0.18%)</title><rect x="253.7" y="1585" width="2.0" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="256.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/server/HttpConnection:::onFillable (4 samples, 0.35%)</title><rect x="555.4" y="1569" width="4.2" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text text-anchor="" x="558.41" 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_futex (2 samples, 0.18%)</title><rect x="257.8" y="1697" width="2.1" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="260.82" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (1 samples, 0.09%)</title><rect x="398.8" y="1825" width="1.1" height="15.0" fill="rgb(217,74,74)" rx="2" ry="2" />
<text text-anchor="" x="401.84" 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/ConcurrentHashMap:::get (1 samples, 0.09%)</title><rect x="1123.6" y="513" width="1.1" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="1126.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>jlong_disjoint_arraycopy (1 samples, 0.09%)</title><rect x="1119.5" y="529" width="1.0" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text text-anchor="" x="1122.49" 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>nf_iterate (1 samples, 0.09%)</title><rect x="642.5" y="209" width="1.1" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="645.51" 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>Lorg/eclipse/jetty/server/Request:::getHeaders (1 samples, 0.09%)</title><rect x="837.5" y="1089" width="1.0" height="15.0" fill="rgb(58,208,58)" rx="2" ry="2" />
<text text-anchor="" x="840.45" 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>Lio/dropwizard/jetty/NonblockingServletHolder:::handle (4 samples, 0.35%)</title><rect x="555.4" y="1217" width="4.2" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text text-anchor="" x="558.41" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_start (25 samples, 2.20%)</title><rect x="10.0" y="1825" width="25.9" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (2 samples, 0.18%)</title><rect x="136.5" y="1537" width="2.1" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="139.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>Lcom/codahale/metrics/Meter:::mark (1 samples, 0.09%)</title><rect x="962.9" y="785" width="1.1" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="965.92" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_iter_readv_writev (1 samples, 0.09%)</title><rect x="840.6" y="1073" width="1.0" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="843.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>Ljava/lang/StringBuilder:::append (1 samples, 0.09%)</title><rect x="995.1" y="1057" width="1.0" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="998.06" 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 (1 samples, 0.09%)</title><rect x="35.9" y="1681" width="1.1" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="38.92" 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/WebComponent:::addRequestHeaders (1 samples, 0.09%)</title><rect x="994.0" y="1089" width="1.1" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text text-anchor="" x="997.02" 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/HttpOutput:::write (1 samples, 0.09%)</title><rect x="859.2" y="801" width="1.1" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="862.23" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/handler/ContextHandler:::doHandle (82 samples, 7.21%)</title><rect x="758.6" y="1329" width="85.1" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text text-anchor="" x="761.65" y="1339.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>native_sched_clock (1 samples, 0.09%)</title><rect x="41.1" y="1473" width="1.0" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="44.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>x86_pmu_enable (3 samples, 0.26%)</title><rect x="336.6" y="1601" width="3.1" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="339.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/jvnet/hk2/internal/ThreeThirtyResolver:::resolve (2 samples, 0.18%)</title><rect x="526.4" y="865" width="2.1" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="529.38" 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/concurrent/locks/ReentrantLock$Sync:::nonfairTryAcquire (1 samples, 0.09%)</title><rect x="1053.1" y="1409" width="1.1" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="1056.13" 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/server/Request:::setMetaData (1 samples, 0.09%)</title><rect x="697.5" y="1457" width="1.0" height="15.0" fill="rgb(108,219,219)" rx="2" ry="2" />
<text text-anchor="" x="700.47" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/AbstractStringBuilder:::append (1 samples, 0.09%)</title><rect x="618.7" y="993" width="1.0" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="621.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>vfs_write (1 samples, 0.09%)</title><rect x="42.1" y="1745" width="1.1" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="45.14" 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>jlong_disjoint_arraycopy (1 samples, 0.09%)</title><rect x="824.0" y="817" width="1.0" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text text-anchor="" x="826.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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetService (2 samples, 0.18%)</title><rect x="1124.7" y="609" width="2.0" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1127.67" 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_finish_output2 (1 samples, 0.09%)</title><rect x="799.1" y="401" width="1.0" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="802.09" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1 samples, 0.09%)</title><rect x="734.8" y="1761" width="1.0" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="737.80" 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/Formatter:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="919.4" y="1025" width="1.0" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text text-anchor="" x="922.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>Ljava/util/LinkedList:::addFirst (1 samples, 0.09%)</title><rect x="934.9" y="849" width="1.1" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="937.92" 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>ip_local_out (1 samples, 0.09%)</title><rect x="690.2" y="1121" width="1.0" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="693.21" 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>Compile::Code_Gen (17 samples, 1.49%)</title><rect x="192.5" y="1713" width="17.6" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="195.50" 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/ArrayList:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="774.2" y="977" width="1.0" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="777.20" 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>Lcom/fasterxml/jackson/jaxrs/base/ProviderBase:::_createGenerator (1 samples, 0.09%)</title><rect x="790.8" y="769" width="1.0" height="15.0" fill="rgb(55,169,169)" rx="2" ry="2" />
<text text-anchor="" x="793.79" 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/servlet/internal/ResponseWriter:::writeResponseStatusAndHeaders (2 samples, 0.18%)</title><rect x="804.3" y="801" width="2.0" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="807.27" 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>futex_wait_queue_me (2 samples, 0.18%)</title><rect x="309.7" y="1681" width="2.0" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="312.67" 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 (1 samples, 0.09%)</title><rect x="575.1" y="1745" width="1.1" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" />
<text text-anchor="" x="578.11" 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/servlet/ServletHandler$CachedChain:::doFilter (3 samples, 0.26%)</title><rect x="702.7" y="1313" width="3.1" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text text-anchor="" x="705.65" 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>schedule_hrtimeout_range_clock (2 samples, 0.18%)</title><rect x="578.2" y="1713" width="2.1" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="581.22" 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/ReaderInterceptorExecutor$TerminalReaderInterceptor:::invokeReadFrom (1 samples, 0.09%)</title><rect x="863.4" y="721" width="1.0" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="866.37" 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>[unknown] (4 samples, 0.35%)</title><rect x="876.9" y="1569" width="4.1" height="15.0" fill="rgb(228,92,92)" rx="2" ry="2" />
<text text-anchor="" x="879.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>__ip_local_out (1 samples, 0.09%)</title><rect x="411.3" y="1521" width="1.0" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="414.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>VMThread::run (6 samples, 0.53%)</title><rect x="399.9" y="1809" width="6.2" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text text-anchor="" x="402.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>Lorg/glassfish/jersey/internal/Errors$1:::call (45 samples, 3.95%)</title><rect x="619.7" y="993" width="46.7" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text text-anchor="" x="622.70" y="1003.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/process/internal/RequestScope:::findOrCreate (7 samples, 0.62%)</title><rect x="513.9" y="737" width="7.3" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" />
<text text-anchor="" x="516.94" 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>Ljava/lang/ref/SoftReference:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="790.8" y="705" width="1.0" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="793.79" 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:::regionMatches (1 samples, 0.09%)</title><rect x="1100.8" y="673" width="1.1" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text text-anchor="" x="1103.83" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorLinkedHashMap:::get (1 samples, 0.09%)</title><rect x="637.3" y="801" width="1.1" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="640.33" 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>x86_pmu_enable (2 samples, 0.18%)</title><rect x="48.4" y="1617" width="2.0" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="51.37" 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/nio/HeapByteBuffer:::asReadOnlyBuffer (1 samples, 0.09%)</title><rect x="974.3" y="417" width="1.1" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="977.32" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_Throwable::set_backtrace (1 samples, 0.09%)</title><rect x="736.9" y="1793" width="1.0" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="739.87" 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>tcp_push (1 samples, 0.09%)</title><rect x="733.8" y="1649" width="1.0" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="736.76" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/servlet/ServletContainer:::service (2 samples, 0.18%)</title><rect x="702.7" y="1201" width="2.0" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="705.65" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.09%)</title><rect x="589.6" y="1537" width="1.1" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="592.63" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq.part.19 (1 samples, 0.09%)</title><rect x="999.2" y="1025" width="1.0" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="1002.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>nf_conntrack_in (1 samples, 0.09%)</title><rect x="700.6" y="1233" width="1.0" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="703.58" 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>tcp_transmit_skb (1 samples, 0.09%)</title><rect x="1022.0" y="1569" width="1.1" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="1025.02" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>autoremove_wake_function (1 samples, 0.09%)</title><rect x="114.7" y="1473" width="1.1" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="117.73" 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/Errors$1:::call (49 samples, 4.31%)</title><rect x="470.4" y="993" width="50.8" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text text-anchor="" x="473.39" y="1003.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/server/internal/routing/PushMethodHandlerRouter:::apply (1 samples, 0.09%)</title><rect x="785.6" y="849" width="1.0" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text text-anchor="" x="788.61" 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/AbstractStringBuilder:::append (1 samples, 0.09%)</title><rect x="465.2" y="993" width="1.0" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="468.20" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (1 samples, 0.09%)</title><rect x="560.6" y="1505" width="1.0" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="563.60" 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/uri/internal/JerseyUriBuilder:::uri (1 samples, 0.09%)</title><rect x="702.7" y="1137" width="1.0" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="705.65" 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/http/HttpParser:::parseLine (2 samples, 0.18%)</title><rect x="1005.4" y="1505" width="2.1" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1008.43" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParseGenerator::generate (5 samples, 0.44%)</title><rect x="187.3" y="1713" width="5.2" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="190.31" 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/internal/JerseyUriBuilder:::build (3 samples, 0.26%)</title><rect x="683.0" y="1153" width="3.1" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text text-anchor="" x="685.95" 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>Lch/qos/logback/access/spi/AccessEvent:::buildRequestHeaderMap (2 samples, 0.18%)</title><rect x="1049.0" y="1377" width="2.1" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="1051.98" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/uri/internal/JerseyUriBuilder:::uri (14 samples, 1.23%)</title><rect x="605.2" y="1137" width="14.5" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="608.18" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_readv_writev (1 samples, 0.09%)</title><rect x="496.3" y="529" width="1.0" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="499.31" 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/glassfish/jersey/server/ServerRuntime$Responder:::process (20 samples, 1.76%)</title><rect x="1092.5" y="961" width="20.8" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="1095.53" 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>Lio/dropwizard/servlets/ThreadNameFilter:::doFilter (10 samples, 0.88%)</title><rect x="857.2" y="1249" width="10.3" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text text-anchor="" x="860.15" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.09%)</title><rect x="406.1" y="1681" width="1.0" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="409.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>ClassLoaderData::oops_do (3 samples, 0.26%)</title><rect x="277.5" y="1729" width="3.1" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="280.52" 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_nmi (1 samples, 0.09%)</title><rect x="257.8" y="1489" width="1.1" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="260.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>Ljava/util/LinkedList:::addAll (1 samples, 0.09%)</title><rect x="932.8" y="865" width="1.1" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="935.85" 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_write_msr_safe (2 samples, 0.18%)</title><rect x="891.4" y="1793" width="2.0" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="894.37" 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 (1 samples, 0.09%)</title><rect x="485.9" y="913" width="1.1" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
<text text-anchor="" x="488.94" 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>native_write_msr_safe (2 samples, 0.18%)</title><rect x="419.6" y="1793" width="2.1" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="422.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>PhaseIterGVN::transform_old (1 samples, 0.09%)</title><rect x="186.3" y="1681" width="1.0" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="189.27" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getServiceHandleImpl (1 samples, 0.09%)</title><rect x="520.2" y="513" width="1.0" height="15.0" fill="rgb(68,181,181)" rx="2" ry="2" />
<text text-anchor="" x="523.16" 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/HashMap:::getNode (1 samples, 0.09%)</title><rect x="539.9" y="1281" width="1.0" height="15.0" fill="rgb(67,180,180)" rx="2" ry="2" />
<text text-anchor="" x="542.86" 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>perf_event_context_sched_in (2 samples, 0.18%)</title><rect x="888.3" y="1649" width="2.0" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="891.26" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljersey/repackaged/com/google/common/collect/Lists:::newArrayList (1 samples, 0.09%)</title><rect x="666.4" y="977" width="1.0" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="669.36" 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>__wake_up_common (1 samples, 0.09%)</title><rect x="1041.7" y="1265" width="1.1" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="1044.72" 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>sys_writev (1 samples, 0.09%)</title><rect x="999.2" y="1313" width="1.0" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="1002.21" 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/glassfish/jersey/servlet/ServletContainer:::service (8 samples, 0.70%)</title><rect x="1011.7" y="1201" width="8.2" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="1014.65" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.09%)</title><rect x="867.5" y="1489" width="1.1" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="870.52" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lio/dropwizard/request/logging/async/AsyncAccessEventAppenderFactory$1:::preprocess (1 samples, 0.09%)</title><rect x="10.0" y="1425" width="1.0" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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/general/internal/WeakHashClockImpl:::get (1 samples, 0.09%)</title><rect x="975.4" y="689" width="1.0" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="978.36" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (1 samples, 0.09%)</title><rect x="549.2" y="1489" width="1.0" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="552.19" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.09%)</title><rect x="740.0" y="1569" width="1.0" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="742.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>Ljavax/ws/rs/core/UriBuilder:::fromUri (2 samples, 0.18%)</title><rect x="11.0" y="1153" width="2.1" height="15.0" fill="rgb(104,215,215)" rx="2" ry="2" />
<text text-anchor="" x="14.04" 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>security_file_permission (1 samples, 0.09%)</title><rect x="723.4" y="1713" width="1.0" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="726.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>Lorg/jvnet/hk2/internal/ClazzCreator:::resolve (5 samples, 0.44%)</title><rect x="977.4" y="577" width="5.2" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text text-anchor="" x="980.43" 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/server/HttpChannel:::handle (106 samples, 9.31%)</title><rect x="432.0" y="1537" width="109.9" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text text-anchor="" x="435.02" 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>tcp_push (1 samples, 0.09%)</title><rect x="718.2" y="1617" width="1.0" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="721.21" 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/util/IteratingCallback:::iterate (1 samples, 0.09%)</title><rect x="859.2" y="721" width="1.1" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="862.23" 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/Collections$UnmodifiableCollection$1:::next (1 samples, 0.09%)</title><rect x="965.0" y="833" width="1.0" height="15.0" fill="rgb(93,204,204)" rx="2" ry="2" />
<text text-anchor="" x="967.99" 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/concurrent/locks/ReentrantLock$NonfairSync:::lock (1 samples, 0.09%)</title><rect x="752.4" y="1361" width="1.1" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="755.43" 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>__schedule (4 samples, 0.35%)</title><rect x="368.8" y="1665" width="4.1" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="371.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>all (1,138 samples, 100%)</title><rect x="10.0" y="1873" width="1180.0" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text text-anchor="" x="13.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>entry_SYSCALL_64_fastpath (1 samples, 0.09%)</title><rect x="690.2" y="1345" width="1.0" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="693.21" 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/internal/Errors:::process (1 samples, 0.09%)</title><rect x="1161.0" y="1041" width="1.0" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="1163.97" 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>__perf_event_task_sched_in (1 samples, 0.09%)</title><rect x="971.2" y="449" width="1.0" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="974.21" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getInjectionResolverForInjectee (1 samples, 0.09%)</title><rect x="982.6" y="577" width="1.1" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="985.62" 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/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (1 samples, 0.09%)</title><rect x="18.3" y="753" width="1.0" height="15.0" fill="rgb(78,191,191)" rx="2" ry="2" />
<text text-anchor="" x="21.30" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.09%)</title><rect x="267.2" y="1553" width="1.0" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="270.15" 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/servlet/ServletHandler$CachedChain:::doFilter (95 samples, 8.35%)</title><rect x="441.4" y="1249" width="98.5" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="444.35" y="1259.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>Lorg/glassfish/jersey/server/model/MethodHandler$ClassBasedMethodHandler:::getInstance (1 samples, 0.09%)</title><rect x="785.6" y="833" width="1.0" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="788.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>Lorg/eclipse/jetty/server/Request:::getParameterNames (1 samples, 0.09%)</title><rect x="600.0" y="1361" width="1.0" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="603.00" 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>__do_softirq (1 samples, 0.09%)</title><rect x="577.2" y="1425" width="1.0" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="580.19" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.09%)</title><rect x="418.5" y="1793" width="1.1" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="421.54" 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>intel_pmu_enable_all (2 samples, 0.18%)</title><rect x="271.3" y="1617" width="2.1" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="274.30" 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_iter_readv_writev (1 samples, 0.09%)</title><rect x="560.6" y="1601" width="1.0" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="563.60" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.09%)</title><rect x="364.6" y="1601" width="1.1" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="367.62" 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>_raw_spin_lock (1 samples, 0.09%)</title><rect x="135.5" y="1521" width="1.0" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="138.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>sys_writev (1 samples, 0.09%)</title><rect x="499.4" y="769" width="1.1" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="502.42" 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>Lsun/nio/ch/SelectorImpl:::lockAndDoSelect (2 samples, 0.18%)</title><rect x="1009.6" y="1553" width="2.1" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text text-anchor="" x="1012.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>Lorg/jvnet/hk2/internal/Utilities:::createService (4 samples, 0.35%)</title><rect x="1126.7" y="657" width="4.2" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text text-anchor="" x="1129.75" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (2 samples, 0.18%)</title><rect x="384.3" y="1617" width="2.1" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="387.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>BacktraceBuilder::push (2 samples, 0.18%)</title><rect x="609.3" y="881" width="2.1" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text text-anchor="" x="612.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>Lorg/eclipse/jetty/io/WriteFlusher:::write (2 samples, 0.18%)</title><rect x="640.4" y="641" width="2.1" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="643.44" 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/internal/util/collection/KeyComparatorHashMap:::getEntry (1 samples, 0.09%)</title><rect x="679.8" y="1009" width="1.1" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="682.84" 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>C2Compiler::compile_method (22 samples, 1.93%)</title><rect x="192.5" y="1745" width="22.8" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="195.50" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >C..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1RootProcessor::scan_remembered_sets (2 samples, 0.18%)</title><rect x="324.2" y="1777" width="2.1" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text text-anchor="" x="327.18" 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/servlet/internal/ResponseWriter$NonCloseableOutputStreamWrapper:::write (8 samples, 0.70%)</title><rect x="492.2" y="817" width="8.3" height="15.0" fill="rgb(78,191,191)" rx="2" ry="2" />
<text text-anchor="" x="495.16" 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:::parse (2 samples, 0.18%)</title><rect x="774.2" y="993" width="2.1" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="777.20" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/HeaderUtils:::asStringHeaders (1 samples, 0.09%)</title><rect x="645.6" y="753" width="1.1" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="648.62" 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>Lch/qos/logback/access/spi/AccessEvent:::prepareForDeferredProcessing (4 samples, 0.35%)</title><rect x="433.1" y="1409" width="4.1" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text text-anchor="" x="436.06" 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>finish_task_switch (2 samples, 0.18%)</title><rect x="309.7" y="1633" width="2.0" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="312.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>Lorg/glassfish/jersey/message/internal/ReaderInterceptorExecutor:::proceed (6 samples, 0.53%)</title><rect x="1117.4" y="769" width="6.2" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text text-anchor="" x="1120.42" 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/codahale/metrics/ExponentiallyDecayingReservoir:::lockForRegularUsage (1 samples, 0.09%)</title><rect x="601.0" y="1313" width="1.1" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="604.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/glassfish/jersey/server/internal/routing/MethodSelectingRouter$3:::apply (1 samples, 0.09%)</title><rect x="18.3" y="881" width="1.0" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="21.30" 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/ServerProcessingBinder$ContainerRequestFactory:::provide (1 samples, 0.09%)</title><rect x="820.9" y="689" width="1.0" height="15.0" fill="rgb(77,189,189)" rx="2" ry="2" />
<text text-anchor="" x="823.86" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_prequeue (1 samples, 0.09%)</title><rect x="1041.7" y="1297" width="1.1" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="1044.72" 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>x86_pmu_enable (2 samples, 0.18%)</title><rect x="881.0" y="1473" width="2.1" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="884.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>__ip_local_out (1 samples, 0.09%)</title><rect x="733.8" y="1553" width="1.0" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="736.76" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_Thread::park_event (1 samples, 0.09%)</title><rect x="597.9" y="1313" width="1.1" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="600.93" 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>entry_SYSCALL_64_fastpath (1 samples, 0.09%)</title><rect x="706.8" y="1473" width="1.0" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="709.80" 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/Request:::getAttributeNames (1 samples, 0.09%)</title><rect x="63.9" y="1601" width="1.1" height="15.0" fill="rgb(66,179,179)" rx="2" ry="2" />
<text text-anchor="" x="66.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>Ljava/text/DecimalFormatSymbols:::getInstance (1 samples, 0.09%)</title><rect x="1067.6" y="977" width="1.1" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="1070.64" 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/ManagedSelector$SelectorProducer:::select (2 samples, 0.18%)</title><rect x="850.9" y="1601" width="2.1" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
<text text-anchor="" x="853.93" 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>Lcom/fasterxml/jackson/core/JsonFactory:::_createContext (1 samples, 0.09%)</title><rect x="790.8" y="737" width="1.0" height="15.0" fill="rgb(91,203,203)" rx="2" ry="2" />
<text text-anchor="" x="793.79" 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>__wake_up_sync_key (2 samples, 0.18%)</title><rect x="105.4" y="1329" width="2.1" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="108.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>Lorg/glassfish/jersey/server/model/internal/JavaResourceMethodDispatcherProvider$AbstractMethodParamInvoker:::getParamValues (11 samples, 0.97%)</title><rect x="509.8" y="881" width="11.4" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="512.79" 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/SystemDescriptor:::create (4 samples, 0.35%)</title><rect x="670.5" y="929" width="4.2" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="673.51" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.35%)</title><rect x="309.7" y="1761" width="4.1" height="15.0" fill="rgb(228,92,92)" rx="2" ry="2" />
<text text-anchor="" x="312.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/lang/RuntimeException:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="11.0" y="1025" width="1.1" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="14.04" 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_sendmsg (2 samples, 0.18%)</title><rect x="421.7" y="1665" width="2.0" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="424.65" 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/Errors$1:::call (3 samples, 0.26%)</title><rect x="556.4" y="1025" width="3.2" height="15.0" fill="rgb(103,213,213)" rx="2" ry="2" />
<text text-anchor="" x="559.45" 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/message/internal/MessageBodyFactory:::readFrom (2 samples, 0.18%)</title><rect x="25.6" y="785" width="2.0" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="28.55" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq.part.19 (1 samples, 0.09%)</title><rect x="799.1" y="369" width="1.0" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="802.09" 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>Lcom/fasterxml/jackson/core/JsonFactory:::createGenerator (1 samples, 0.09%)</title><rect x="556.4" y="769" width="1.1" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="559.45" 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/inject/EntityParamValueFactoryProvider$EntityValueFactory:::provide (2 samples, 0.18%)</title><rect x="1017.9" y="849" width="2.0" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="1020.87" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (3 samples, 0.26%)</title><rect x="1180.7" y="1313" width="3.1" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="1183.67" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/servlet/WebComponent:::service (67 samples, 5.89%)</title><rect x="1075.9" y="1137" width="69.5" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="1078.94" 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>nf_conntrack_in (1 samples, 0.09%)</title><rect x="842.6" y="977" width="1.1" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="845.64" 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_packet (1 samples, 0.09%)</title><rect x="1149.6" y="865" width="1.0" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="1152.56" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2 samples, 0.18%)</title><rect x="1036.5" y="1809" width="2.1" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text text-anchor="" x="1039.54" 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/String:::toLowerCase (1 samples, 0.09%)</title><rect x="530.5" y="929" width="1.1" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="533.53" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/hk2/utilities/reflection/ReflectionHelper:::getNameFromAllQualifiers (1 samples, 0.09%)</title><rect x="1077.0" y="833" width="1.0" height="15.0" fill="rgb(101,211,211)" rx="2" ry="2" />
<text text-anchor="" x="1079.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>futex_wait_queue_me (2 samples, 0.18%)</title><rect x="253.7" y="1649" width="2.0" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="256.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>Lorg/eclipse/jetty/servlet/ServletHandler:::doHandle (87 samples, 7.64%)</title><rect x="908.0" y="1313" width="90.2" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text text-anchor="" x="910.96" y="1323.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>Lorg/glassfish/jersey/message/internal/OutboundMessageContext:::enableBuffering (3 samples, 0.26%)</title><rect x="956.7" y="897" width="3.1" height="15.0" fill="rgb(69,183,183)" rx="2" ry="2" />
<text text-anchor="" x="959.70" 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] (1 samples, 0.09%)</title><rect x="35.9" y="1777" width="1.1" height="15.0" fill="rgb(228,92,92)" rx="2" ry="2" />
<text text-anchor="" x="38.92" 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/server/handler/ContextHandler:::doScope (90 samples, 7.91%)</title><rect x="906.9" y="1361" width="93.3" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text text-anchor="" x="909.92" y="1371.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>Lorg/jvnet/hk2/internal/IterableProviderImpl:::justInTime (1 samples, 0.09%)</title><rect x="820.9" y="625" width="1.0" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="823.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>intel_pmu_enable_all (2 samples, 0.18%)</title><rect x="136.5" y="1457" width="2.1" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="139.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/lang/String:::toLowerCase (1 samples, 0.09%)</title><rect x="18.3" y="705" width="1.0" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text text-anchor="" x="21.30" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (1 samples, 0.09%)</title><rect x="954.6" y="353" width="1.1" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="957.62" 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>Ljava/nio/HeapByteBuffer:::put (1 samples, 0.09%)</title><rect x="950.5" y="577" width="1.0" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="953.47" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/HeaderUtils$1:::apply (1 samples, 0.09%)</title><rect x="644.6" y="753" width="1.0" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="647.59" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap:::put (1 samples, 0.09%)</title><rect x="928.7" y="801" width="1.0" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="931.70" 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>Lcom/fasterxml/jackson/jaxrs/base/ProviderBase:::writeTo (1 samples, 0.09%)</title><rect x="948.4" y="785" width="1.0" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text text-anchor="" x="951.40" 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/internal/ResponseWriter$NonCloseableOutputStreamWrapper:::write (5 samples, 0.44%)</title><rect x="639.4" y="817" width="5.2" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="642.40" 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_pending_frames (1 samples, 0.09%)</title><rect x="421.7" y="1633" width="1.0" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="424.65" 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>futex_wait (2 samples, 0.18%)</title><rect x="57.7" y="1761" width="2.1" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="60.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>Lorg/eclipse/jetty/http/HttpParser:::convertContentLength (1 samples, 0.09%)</title><rect x="1001.3" y="1473" width="1.0" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="1004.28" 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>[unknown] (14 samples, 1.23%)</title><rect x="167.6" y="1841" width="14.5" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="170.61" 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::~JavaThread (1 samples, 0.09%)</title><rect x="410.2" y="1825" width="1.1" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="413.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>ip_queue_xmit (2 samples, 0.18%)</title><rect x="798.0" y="465" width="2.1" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="801.05" 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>Lcom/codahale/metrics/Meter:::mark (1 samples, 0.09%)</title><rect x="904.9" y="1361" width="1.0" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="907.85" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (1 samples, 0.09%)</title><rect x="61.8" y="1697" width="1.1" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="64.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>[unknown] (1 samples, 0.09%)</title><rect x="37.0" y="1809" width="1.0" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text text-anchor="" x="39.96" 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>BacktraceBuilder::expand (1 samples, 0.09%)</title><rect x="768.0" y="881" width="1.0" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text text-anchor="" x="770.98" 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 (1 samples, 0.09%)</title><rect x="952.5" y="321" width="1.1" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="955.55" 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>Lorg/glassfish/jersey/message/internal/OutboundJaxrsResponse$Builder:::clearBaseUri (1 samples, 0.09%)</title><rect x="470.4" y="961" width="1.0" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text text-anchor="" x="473.39" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::keyComparatorHash (2 samples, 0.18%)</title><rect x="530.5" y="993" width="2.1" height="15.0" fill="rgb(57,172,172)" rx="2" ry="2" />
<text text-anchor="" x="533.53" 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/channels/spi/AbstractInterruptibleChannel:::end (1 samples, 0.09%)</title><rect x="951.5" y="577" width="1.0" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="954.51" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.18%)</title><rect x="1025.1" y="1761" width="2.1" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="1028.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>new_sync_read (2 samples, 0.18%)</title><rect x="587.6" y="1729" width="2.0" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="590.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>Lorg/eclipse/jetty/server/Request:::getHeaderNames (1 samples, 0.09%)</title><rect x="434.1" y="1361" width="1.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="437.09" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/codahale/metrics/Timer:::update (1 samples, 0.09%)</title><rect x="812.6" y="801" width="1.0" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="815.57" 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>local_clock (1 samples, 0.09%)</title><rect x="40.1" y="1553" width="1.0" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="43.07" 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>nmi_handle (1 samples, 0.09%)</title><rect x="888.3" y="1521" width="1.0" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="891.26" 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/HandlerWrapper:::handle (10 samples, 0.88%)</title><rect x="857.2" y="1409" width="10.3" height="15.0" fill="rgb(93,205,205)" rx="2" ry="2" />
<text text-anchor="" x="860.15" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (8 samples, 0.70%)</title><rect x="336.6" y="1793" width="8.3" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text text-anchor="" x="339.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>Lorg/glassfish/jersey/internal/Errors:::process (48 samples, 4.22%)</title><rect x="619.7" y="1057" width="49.8" height="15.0" fill="rgb(70,184,184)" rx="2" ry="2" />
<text text-anchor="" x="622.70" 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>__GI___writev (1 samples, 0.09%)</title><rect x="1133.0" y="993" width="1.0" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="1135.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>intel_pmu_enable_all (2 samples, 0.18%)</title><rect x="591.7" y="1601" width="2.1" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="594.70" 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/lang/ref/SoftReference:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="948.4" y="705" width="1.0" height="15.0" fill="rgb(81,194,194)" rx="2" ry="2" />
<text text-anchor="" x="951.40" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (1 samples, 0.09%)</title><rect x="643.6" y="513" width="1.0" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="646.55" 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/server/handler/StatisticsHandler:::handle (4 samples, 0.35%)</title><rect x="555.4" y="1505" width="4.2" height="15.0" fill="rgb(102,247,102)" rx="2" ry="2" />
<text text-anchor="" x="558.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>Lsun/nio/ch/SelectorImpl:::select (2 samples, 0.18%)</title><rect x="1155.8" y="1569" width="2.1" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="1158.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>Lorg/eclipse/jetty/server/Server:::handle (93 samples, 8.17%)</title><rect x="903.8" y="1521" width="96.4" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="906.81" y="1531.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/concurrent/ConcurrentHashMap$TreeBin:::find (1 samples, 0.09%)</title><rect x="664.3" y="529" width="1.0" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="667.29" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lio/dropwizard/jersey/filter/AllowedMethodsFilter:::doFilter (10 samples, 0.88%)</title><rect x="857.2" y="1297" width="10.3" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="860.15" 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>Parse::Parse (5 samples, 0.44%)</title><rect x="187.3" y="1697" width="5.2" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" />
<text text-anchor="" x="190.31" 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/FillInterest:::fillable (10 samples, 0.88%)</title><rect x="707.8" y="1601" width="10.4" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" />
<text text-anchor="" x="710.84" 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/message/internal/EntityInputStream:::read (2 samples, 0.18%)</title><rect x="973.3" y="545" width="2.1" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="976.29" 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>do_iter_readv_writev (1 samples, 0.09%)</title><rect x="642.5" y="593" width="1.1" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="645.51" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (1 samples, 0.09%)</title><rect x="42.1" y="1553" width="1.1" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="45.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>Lorg/jvnet/hk2/internal/IterableProviderImpl:::get (8 samples, 0.70%)</title><rect x="512.9" y="801" width="8.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="515.90" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.18%)</title><rect x="551.3" y="1633" width="2.0" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="554.27" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_iter_readv_writev (1 samples, 0.09%)</title><rect x="576.2" y="1745" width="1.0" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="579.15" 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_pmu_enable.part.89 (2 samples, 0.18%)</title><rect x="266.1" y="1617" width="2.1" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="269.12" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (1 samples, 0.09%)</title><rect x="733.8" y="1601" width="1.0" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="736.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>Ljava/util/regex/Pattern$BnM:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="23.5" y="753" width="1.0" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="26.48" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (2 samples, 0.18%)</title><rect x="591.7" y="1617" width="2.1" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="594.70" 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/HttpInputOverHTTP:::produceContent (1 samples, 0.09%)</title><rect x="818.8" y="497" width="1.0" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="821.79" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (5 samples, 0.44%)</title><rect x="148.9" y="1777" width="5.2" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="151.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>__perf_event_task_sched_out (1 samples, 0.09%)</title><rect x="40.1" y="1585" width="1.0" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="43.07" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.18%)</title><rect x="738.9" y="1713" width="2.1" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="741.95" 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/StringBuilder:::append (1 samples, 0.09%)</title><rect x="776.3" y="1041" width="1.0" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="779.27" 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/HashSet:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="1137.1" y="801" width="1.1" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="1140.12" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.18%)</title><rect x="48.4" y="1569" width="2.0" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="51.37" 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/ReaderInterceptorExecutor$TerminalReaderInterceptor:::invokeReadFrom (1 samples, 0.09%)</title><rect x="1017.9" y="721" width="1.0" height="15.0" fill="rgb(79,191,191)" rx="2" ry="2" />
<text text-anchor="" x="1020.87" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/ContainerFilteringStage$ResponseFilterStage:::apply (2 samples, 0.18%)</title><rect x="945.3" y="897" width="2.1" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="948.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/eclipse/jetty/server/HttpOutput:::write (4 samples, 0.35%)</title><rect x="639.4" y="785" width="4.2" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="642.40" 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/String:::format (4 samples, 0.35%)</title><rect x="1067.6" y="1041" width="4.2" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="1070.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>Ljersey/repackaged/com/google/common/collect/Lists:::newLinkedList (1 samples, 0.09%)</title><rect x="638.4" y="865" width="1.0" height="15.0" fill="rgb(79,191,191)" rx="2" ry="2" />
<text text-anchor="" x="641.37" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq.part.19 (1 samples, 0.09%)</title><rect x="1022.0" y="1457" width="1.1" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="1025.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>counter_overflow Runtime1 stub (1 samples, 0.09%)</title><rect x="852.0" y="1489" width="1.0" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text text-anchor="" x="854.97" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (1 samples, 0.09%)</title><rect x="796.0" y="337" width="1.0" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="798.98" 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>ttwu_do_activate.constprop.90 (1 samples, 0.09%)</title><rect x="41.1" y="1537" width="1.0" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="44.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>perf_pmu_enable.part.89 (3 samples, 0.26%)</title><rect x="724.4" y="1617" width="3.1" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="727.43" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/OutboundMessageContext:::getLocation (2 samples, 0.18%)</title><rect x="802.2" y="785" width="2.1" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="805.20" 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>VMThread::execute (8 samples, 0.70%)</title><rect x="1180.7" y="1409" width="8.3" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text text-anchor="" x="1183.67" 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/net/URI$Parser:::parseHierarchical (1 samples, 0.09%)</title><rect x="703.7" y="1089" width="1.0" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="706.69" 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/hibernate/validator/internal/engine/ValidatorImpl:::validateParameters (1 samples, 0.09%)</title><rect x="966.0" y="833" width="1.1" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="969.03" 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>native_write_msr_safe (1 samples, 0.09%)</title><rect x="310.7" y="1521" width="1.0" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="313.70" 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>x86_pmu_enable (1 samples, 0.09%)</title><rect x="187.3" y="1313" width="1.0" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="190.31" 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>entry_SYSCALL_64_fastpath (1 samples, 0.09%)</title><rect x="1098.8" y="513" width="1.0" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="1101.75" 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/server/handler/gzip/GzipHandler:::handle (88 samples, 7.73%)</title><rect x="601.0" y="1441" width="91.3" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text text-anchor="" x="604.04" y="1451.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>tcp_sendmsg (1 samples, 0.09%)</title><rect x="411.3" y="1633" width="1.0" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="414.28" 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_cleanup_rbuf (1 samples, 0.09%)</title><rect x="34.9" y="1393" width="1.0" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="37.89" 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/uri/internal/UriParser:::parsePath (1 samples, 0.09%)</title><rect x="618.7" y="1073" width="1.0" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="621.66" 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/ExponentiallyDecayingReservoir:::update (1 samples, 0.09%)</title><rect x="601.0" y="1329" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="604.04" 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>Lsun/nio/ch/SelectionKeyImpl:::nioInterestOps (1 samples, 0.09%)</title><rect x="1157.9" y="1537" width="1.0" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text text-anchor="" x="1160.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>Lorg/glassfish/jersey/internal/Errors$1:::call (1 samples, 0.09%)</title><rect x="1008.5" y="1025" width="1.1" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="1011.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>Lsun/nio/ch/SocketDispatcher:::writev (2 samples, 0.18%)</title><rect x="494.2" y="561" width="2.1" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="497.24" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpChannel:::onRequestComplete (1 samples, 0.09%)</title><rect x="818.8" y="401" width="1.0" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="821.79" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.09%)</title><rect x="1027.2" y="1649" width="1.0" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="1030.21" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/ref/Reference:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="790.8" y="673" width="1.0" height="15.0" fill="rgb(53,167,167)" rx="2" ry="2" />
<text text-anchor="" x="793.79" 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/Formatter:::format (4 samples, 0.35%)</title><rect x="456.9" y="1009" width="4.2" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text text-anchor="" x="459.91" 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/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (1 samples, 0.09%)</title><rect x="24.5" y="673" width="1.1" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="27.52" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (1 samples, 0.09%)</title><rect x="133.4" y="1553" width="1.0" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="136.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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getService (1 samples, 0.09%)</title><rect x="864.4" y="561" width="1.0" height="15.0" fill="rgb(93,205,205)" rx="2" ry="2" />
<text text-anchor="" x="867.41" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (1 samples, 0.09%)</title><rect x="1022.0" y="1345" width="1.1" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="1025.02" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/ref/Reference:::tryHandlePending (1 samples, 0.09%)</title><rect x="362.5" y="1681" width="1.1" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text text-anchor="" x="365.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>Ljava/lang/Throwable:::fillInStackTrace (1 samples, 0.09%)</title><rect x="11.0" y="961" width="1.1" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text text-anchor="" x="14.04" 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_event_task_sched_in (2 samples, 0.18%)</title><rect x="1174.4" y="1681" width="2.1" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="1177.45" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:::release (1 samples, 0.09%)</title><rect x="597.9" y="1393" width="1.1" height="15.0" fill="rgb(106,217,217)" rx="2" ry="2" />
<text text-anchor="" x="600.93" 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/ServiceHandleImpl:::getService (7 samples, 0.62%)</title><rect x="829.2" y="977" width="7.2" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="832.16" 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 (1 samples, 0.09%)</title><rect x="38.0" y="1633" width="1.0" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="41.00" 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/jvnet/hk2/internal/FactoryCreator:::create (2 samples, 0.18%)</title><rect x="471.4" y="801" width="2.1" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="474.42" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:::acquire (1 samples, 0.09%)</title><rect x="902.8" y="1345" width="1.0" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="905.78" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpConnection$SendCallback:::process (4 samples, 0.35%)</title><rect x="792.9" y="673" width="4.1" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text text-anchor="" x="795.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>[unknown] (1 samples, 0.09%)</title><rect x="1022.0" y="1793" width="1.1" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text text-anchor="" x="1025.02" 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/ServiceLocatorImpl:::internalGetService (2 samples, 0.18%)</title><rect x="1012.7" y="881" width="2.1" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="1015.69" 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>Lch/qos/logback/access/spi/AccessEvent:::buildRequestHeaderMap (2 samples, 0.18%)</title><rect x="433.1" y="1377" width="2.0" height="15.0" fill="rgb(104,215,215)" rx="2" ry="2" />
<text text-anchor="" x="436.06" 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/hk2/utilities/AbstractActiveDescriptor:::isReified (1 samples, 0.09%)</title><rect x="672.6" y="801" width="1.0" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="675.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>Ljava/lang/Thread:::setName (1 samples, 0.09%)</title><rect x="604.1" y="1217" width="1.1" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="607.15" 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>schedule (1 samples, 0.09%)</title><rect x="875.8" y="1697" width="1.1" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="878.82" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/ThreadLocal$ThreadLocalMap:::access$100 (5 samples, 0.44%)</title><rect x="412.3" y="1681" width="5.2" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="415.32" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_writev (1 samples, 0.09%)</title><rect x="496.3" y="561" width="1.0" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="499.31" 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>schedule (8 samples, 0.70%)</title><rect x="288.9" y="1665" width="8.3" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="291.93" 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>schedule (2 samples, 0.18%)</title><rect x="266.1" y="1697" width="2.1" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="269.12" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (1 samples, 0.09%)</title><rect x="61.8" y="1825" width="1.1" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text text-anchor="" x="64.85" y="1835.5" font-size="12" font-family="Verdana" fill="rgb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment