Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@epickrram
Created March 27, 2017 20:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save epickrram/99f4dda169cbb2540300c90393f79d26 to your computer and use it in GitHub Desktop.
Save epickrram/99f4dda169cbb2540300c90393f79d26 to your computer and use it in GitHub Desktop.
flamegraph-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="1938" onload="init(evt)" viewBox="0 0 1200 1938" 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="1938.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="1921" 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="1921" 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>_raw_spin_lock_irqsave (1 samples, 0.07%)</title><rect x="720.8" y="705" width="0.8" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="723.81" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/process/internal/Stages:::process (3 samples, 0.21%)</title><rect x="964.9" y="945" width="2.5" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="967.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>__do_softirq (1 samples, 0.07%)</title><rect x="1123.8" y="257" width="0.8" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="1126.80" 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>Lcom/fasterxml/jackson/databind/ObjectReader:::_bind (4 samples, 0.28%)</title><rect x="667.9" y="657" width="3.3" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text text-anchor="" x="670.85" 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_pmu_enable.part.89 (2 samples, 0.14%)</title><rect x="754.7" y="1537" width="1.7" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="757.74" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="64.6" y="1569" width="0.8" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="67.61" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (2 samples, 0.14%)</title><rect x="747.3" y="1537" width="1.6" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="750.29" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/net/Inet4Address:::numericToTextFormat (2 samples, 0.14%)</title><rect x="358.4" y="1361" width="1.6" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text text-anchor="" x="361.37" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.35%)</title><rect x="332.7" y="1825" width="4.2" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text text-anchor="" x="335.72" 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/util/IncludeExclude$SetContainsPredicate:::test (3 samples, 0.21%)</title><rect x="480.8" y="1425" width="2.5" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="483.84" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="124.2" y="1841" width="0.8" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="127.19" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_cpu_backtrace (1 samples, 0.07%)</title><rect x="548.7" y="1825" width="0.8" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="551.70" 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/Formatter:::format (1 samples, 0.07%)</title><rect x="955.0" y="1041" width="0.8" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text text-anchor="" x="957.99" 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:::containsKey (3 samples, 0.21%)</title><rect x="480.8" y="1393" width="2.5" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="483.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>__GI___writev (2 samples, 0.14%)</title><rect x="869.8" y="1041" width="1.6" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="872.76" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/text/SimpleDateFormat:::format (7 samples, 0.49%)</title><rect x="246.7" y="1457" width="5.8" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text text-anchor="" x="249.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>hash_futex (1 samples, 0.07%)</title><rect x="227.6" y="1793" width="0.9" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="230.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/servlet/ServletContainer:::service (1 samples, 0.07%)</title><rect x="1175.9" y="1217" width="0.9" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text text-anchor="" x="1178.93" 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>Lorg/glassfish/jersey/server/ContainerResponse:::enableBuffering (3 samples, 0.21%)</title><rect x="984.8" y="929" width="2.5" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="987.78" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/MessageBodyFactory$ModelLookupKey:::hashCode (1 samples, 0.07%)</title><rect x="634.8" y="769" width="0.8" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="637.75" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Unsafe_Unpark (1 samples, 0.07%)</title><rect x="557.8" y="1345" width="0.8" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text text-anchor="" x="560.80" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (2 samples, 0.14%)</title><rect x="103.5" y="1681" width="1.7" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="106.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/hibernate/validator/internal/util/ExecutableHelper:::getSignature (1 samples, 0.07%)</title><rect x="994.7" y="785" width="0.8" height="15.0" fill="rgb(67,180,180)" rx="2" ry="2" />
<text text-anchor="" x="997.71" 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-?/7629 (23 samples, 1.61%)</title><rect x="127.5" y="1873" width="19.0" height="15.0" fill="rgb(106,252,106)" rx="2" ry="2" />
<text text-anchor="" x="130.50" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/uri/internal/JerseyUriBuilder:::_build (10 samples, 0.70%)</title><rect x="470.9" y="1153" width="8.3" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="473.91" 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>Lsun/nio/ch/EPollSelectorImpl:::putEventOps (1 samples, 0.07%)</title><rect x="1051.8" y="1489" width="0.8" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text text-anchor="" x="1054.81" 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.07%)</title><rect x="1022.8" y="1041" width="0.9" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="1025.85" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (2 samples, 0.14%)</title><rect x="720.0" y="1105" width="1.6" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="722.99" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/nio/ch/Util:::getTemporaryDirectBuffer (1 samples, 0.07%)</title><rect x="1026.2" y="1489" width="0.8" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="1029.16" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/uri/internal/JerseyUriBuilder:::createURI (6 samples, 0.42%)</title><rect x="715.0" y="1137" width="5.0" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="718.02" 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>sys_futex (2 samples, 0.14%)</title><rect x="45.6" y="1729" width="1.6" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="48.58" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (2 samples, 0.14%)</title><rect x="52.2" y="1697" width="1.7" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="55.20" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/jaxrs/base/ProviderBase:::isWriteable (2 samples, 0.14%)</title><rect x="410.5" y="737" width="1.7" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text text-anchor="" x="413.50" 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/InboundMessageContext$5:::apply (2 samples, 0.14%)</title><rect x="469.3" y="1057" width="1.6" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="472.26" 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>sock_read_iter (1 samples, 0.07%)</title><rect x="336.9" y="1681" width="0.8" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="339.86" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/http/HttpGenerator:::generateResponse (1 samples, 0.07%)</title><rect x="974.0" y="689" width="0.9" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text text-anchor="" x="977.03" 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/model/MethodHandler$ClassBasedMethodHandler:::getInstance (2 samples, 0.14%)</title><rect x="399.7" y="849" width="1.7" height="15.0" fill="rgb(67,180,180)" rx="2" ry="2" />
<text text-anchor="" x="402.75" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (1 samples, 0.07%)</title><rect x="979.0" y="385" width="0.8" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="981.99" 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>SpinPause (1 samples, 0.07%)</title><rect x="496.6" y="1569" width="0.8" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="499.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 (115 samples, 8.06%)</title><rect x="600.8" y="1041" width="95.2" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text text-anchor="" x="603.83" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/glassf..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::toLowerCase (5 samples, 0.35%)</title><rect x="252.5" y="1489" width="4.1" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="255.45" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/HeaderUtils:::asString (1 samples, 0.07%)</title><rect x="832.5" y="737" width="0.9" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="835.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>start_thread (11 samples, 0.77%)</title><rect x="106.8" y="1857" width="9.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="109.82" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (1 samples, 0.07%)</title><rect x="830.9" y="353" width="0.8" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="833.87" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (1 samples, 0.07%)</title><rect x="509.0" y="1601" width="0.8" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="511.98" 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>Interpreter (15 samples, 1.05%)</title><rect x="741.5" y="1697" width="12.4" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="744.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/server/internal/process/RequestProcessingContext:::triggerEvent (2 samples, 0.14%)</title><rect x="430.4" y="929" width="1.6" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="433.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>x86_pmu_enable (2 samples, 0.14%)</title><rect x="758.1" y="1601" width="1.6" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="761.05" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lch/qos/logback/access/PatternLayout:::doLayout (29 samples, 2.03%)</title><rect x="240.0" y="1585" width="24.0" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="243.04" 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>Ljava/lang/String:::toLowerCase (1 samples, 0.07%)</title><rect x="398.1" y="641" width="0.8" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text text-anchor="" x="401.09" 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_transmit_skb (1 samples, 0.07%)</title><rect x="778.7" y="1633" width="0.9" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="781.74" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/StringBuilder:::append (1 samples, 0.07%)</title><rect x="382.4" y="1073" width="0.8" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="385.37" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getUnqualifiedService (2 samples, 0.14%)</title><rect x="816.0" y="897" width="1.6" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="818.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/eclipse/jetty/util/IteratingCallback:::processing (7 samples, 0.49%)</title><rect x="416.3" y="705" width="5.8" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text text-anchor="" x="419.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>Compiler::compile_method (2 samples, 0.14%)</title><rect x="178.8" y="1761" width="1.7" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="181.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/eclipse/jetty/server/Request:::getRemoteAddr (1 samples, 0.07%)</title><rect x="926.0" y="1393" width="0.9" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="929.03" 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>__local_bh_enable_ip (2 samples, 0.14%)</title><rect x="916.9" y="1537" width="1.7" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="919.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>ip_finish_output (1 samples, 0.07%)</title><rect x="484.2" y="1233" width="0.8" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="487.15" 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>HandleMarkCleaner::~HandleMarkCleaner (1 samples, 0.07%)</title><rect x="284.7" y="1441" width="0.9" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" />
<text text-anchor="" x="287.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>sys_read (1 samples, 0.07%)</title><rect x="901.2" y="1793" width="0.8" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="904.21" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (1 samples, 0.07%)</title><rect x="725.8" y="1425" width="0.8" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="728.78" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lch/qos/logback/access/spi/AccessEvent:::buildRequestHeaderMap (2 samples, 0.14%)</title><rect x="236.7" y="1601" width="1.7" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="239.73" 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/Formatter:::format (8 samples, 0.56%)</title><rect x="586.8" y="1041" width="6.6" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text text-anchor="" x="589.76" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap:::containsKey (1 samples, 0.07%)</title><rect x="1024.5" y="1393" width="0.8" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="1027.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>Lorg/glassfish/jersey/server/ApplicationHandler:::handle (131 samples, 9.19%)</title><rect x="600.0" y="1121" width="108.4" height="15.0" fill="rgb(67,180,180)" rx="2" ry="2" />
<text text-anchor="" x="603.00" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/glassfis..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___writev (1 samples, 0.07%)</title><rect x="882.2" y="1377" width="0.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text text-anchor="" x="885.17" 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>PeriodicTask::real_time_tick (1 samples, 0.07%)</title><rect x="186.3" y="1809" width="0.8" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text text-anchor="" x="189.26" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (220 samples, 15.43%)</title><rect x="551.2" y="1857" width="182.0" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="554.18" y="1867.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>Ljersey/repackaged/com/google/common/collect/Collections2$TransformedCollection:::iterator (1 samples, 0.07%)</title><rect x="393.1" y="929" width="0.9" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="396.13" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.07%)</title><rect x="78.7" y="1761" width="0.8" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="81.68" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (1 samples, 0.07%)</title><rect x="134.1" y="1617" width="0.9" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="137.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_write_xmit (1 samples, 0.07%)</title><rect x="657.1" y="753" width="0.8" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="660.10" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (1 samples, 0.07%)</title><rect x="1158.6" y="1009" width="0.8" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text text-anchor="" x="1161.56" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mod_timer (1 samples, 0.07%)</title><rect x="778.7" y="1297" width="0.9" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="781.74" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpConnection:::fillRequestBuffer (2 samples, 0.14%)</title><rect x="485.8" y="1553" width="1.7" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text text-anchor="" x="488.81" 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/concurrent/locks/ReentrantLock:::lock (1 samples, 0.07%)</title><rect x="936.0" y="1441" width="0.8" height="15.0" fill="rgb(79,191,191)" rx="2" ry="2" />
<text text-anchor="" x="938.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>net_rx_action (1 samples, 0.07%)</title><rect x="331.1" y="1473" width="0.8" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="334.07" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (2 samples, 0.14%)</title><rect x="733.2" y="1761" width="1.7" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="736.23" 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_epoll_wait (2 samples, 0.14%)</title><rect x="352.6" y="1473" width="1.6" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="355.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>tcp_transmit_skb (2 samples, 0.14%)</title><rect x="772.9" y="1617" width="1.7" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="775.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>enqueue_entity (1 samples, 0.07%)</title><rect x="550.4" y="1201" width="0.8" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="553.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>finish_task_switch (2 samples, 0.14%)</title><rect x="115.9" y="1665" width="1.7" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="118.92" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/io/ManagedSelector$SelectorProducer:::processSelected (1 samples, 0.07%)</title><rect x="350.9" y="1617" width="0.9" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text text-anchor="" x="353.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>BacktraceBuilder::push (4 samples, 0.28%)</title><rect x="945.9" y="897" width="3.3" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" />
<text text-anchor="" x="948.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>Ljava/util/regex/Pattern$Branch:::match (1 samples, 0.07%)</title><rect x="590.1" y="785" width="0.8" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text text-anchor="" x="593.07" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (1 samples, 0.07%)</title><rect x="882.2" y="1281" width="0.8" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="885.17" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (2 samples, 0.14%)</title><rect x="205.3" y="1713" width="1.6" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="208.29" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (1 samples, 0.07%)</title><rect x="484.2" y="1281" width="0.8" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="487.15" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::replaceAll (1 samples, 0.07%)</title><rect x="1131.2" y="833" width="0.9" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="1134.25" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (2 samples, 0.14%)</title><rect x="171.4" y="1617" width="1.6" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="174.36" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (5 samples, 0.35%)</title><rect x="499.0" y="1361" width="4.2" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="502.05" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_call_function_single_interrupt (2 samples, 0.14%)</title><rect x="969.1" y="769" width="1.6" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="972.06" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.07%)</title><rect x="550.4" y="1713" width="0.8" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="553.35" 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 (1 samples, 0.07%)</title><rect x="215.2" y="1697" width="0.8" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="218.22" 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/metadata/raw/ExecutableElement$MethodElement:::&lt;init&gt; (2 samples, 0.14%)</title><rect x="842.5" y="833" width="1.6" height="15.0" fill="rgb(101,246,101)" rx="2" ry="2" />
<text text-anchor="" x="845.45" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::put (1 samples, 0.07%)</title><rect x="631.4" y="817" width="0.9" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="634.44" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (1 samples, 0.07%)</title><rect x="778.7" y="1553" width="0.9" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="781.74" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (1 samples, 0.07%)</title><rect x="892.9" y="1553" width="0.9" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="895.93" 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-?/7638 (160 samples, 11.22%)</title><rect x="198.7" y="1873" width="132.4" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text text-anchor="" x="201.67" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java-?/7638</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_writev (1 samples, 0.07%)</title><rect x="1175.1" y="1137" width="0.8" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="1178.11" 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>sys_writev (1 samples, 0.07%)</title><rect x="1008.0" y="977" width="0.8" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="1010.95" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/util/AttributesMap:::setAttribute (1 samples, 0.07%)</title><rect x="1012.9" y="1009" width="0.8" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1015.92" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_start (5 samples, 0.35%)</title><rect x="41.4" y="1841" width="4.2" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text text-anchor="" x="44.44" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::equalsIgnoreCase (1 samples, 0.07%)</title><rect x="963.3" y="769" width="0.8" height="15.0" fill="rgb(57,172,172)" rx="2" ry="2" />
<text text-anchor="" x="966.27" 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/Class:::getAnnotation (1 samples, 0.07%)</title><rect x="1154.4" y="497" width="0.8" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text text-anchor="" x="1157.42" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compilation::generate_exception_handler_table (1 samples, 0.07%)</title><rect x="178.8" y="1681" width="0.8" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="181.81" 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:::parsePath (2 samples, 0.14%)</title><rect x="812.7" y="1089" width="1.6" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="815.66" 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>Lcom/fasterxml/jackson/core/util/BufferRecycler:::allocByteBuffer (1 samples, 0.07%)</title><rect x="998.8" y="577" width="0.9" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="1001.85" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/SystemDescriptor:::create (9 samples, 0.63%)</title><rect x="861.5" y="641" width="7.4" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="864.49" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_write (2 samples, 0.14%)</title><rect x="200.3" y="1697" width="1.7" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="203.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>JavaCalls::call_helper (5 samples, 0.35%)</title><rect x="753.9" y="1745" width="4.2" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="756.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>ip_queue_xmit (1 samples, 0.07%)</title><rect x="422.1" y="481" width="0.8" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="425.09" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/ReaderInterceptorExecutor$TerminalReaderInterceptor:::invokeReadFrom (8 samples, 0.56%)</title><rect x="1140.4" y="721" width="6.6" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="1143.35" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (2 samples, 0.14%)</title><rect x="57.2" y="1585" width="1.6" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="60.17" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/FactoryCreator:::dispose (4 samples, 0.28%)</title><rect x="768.0" y="1585" width="3.3" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="770.98" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq.part.19 (1 samples, 0.07%)</title><rect x="989.7" y="625" width="0.9" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="992.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/HttpHeaderReaderImpl:::next (1 samples, 0.07%)</title><rect x="619.9" y="657" width="0.8" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="622.86" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (2 samples, 0.14%)</title><rect x="115.9" y="1745" width="1.7" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="118.92" 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 (2 samples, 0.14%)</title><rect x="79.5" y="1761" width="1.7" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="82.51" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/ConcurrentHashMap$KeyIterator:::next (1 samples, 0.07%)</title><rect x="357.5" y="1377" width="0.9" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="360.55" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (1 samples, 0.07%)</title><rect x="223.5" y="1553" width="0.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="226.49" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/nio/ch/SocketChannelImpl:::write (4 samples, 0.28%)</title><rect x="640.5" y="609" width="3.4" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text text-anchor="" x="643.55" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (2 samples, 0.14%)</title><rect x="63.8" y="1633" width="1.6" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="66.79" 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>jlong_disjoint_arraycopy (1 samples, 0.07%)</title><rect x="988.1" y="737" width="0.8" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="991.09" 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/util/HashMap:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="699.3" y="1009" width="0.8" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="702.30" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (1 samples, 0.07%)</title><rect x="1032.8" y="1665" width="0.8" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="1035.78" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/aitusoftware/workshop/usvc/common/Request$Creator4JacksonDeserializer2e54f9ac:::createUsingDefault (1 samples, 0.07%)</title><rect x="668.7" y="625" width="0.8" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text text-anchor="" x="671.68" 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>nf_hook_slow (3 samples, 0.21%)</title><rect x="340.2" y="1553" width="2.5" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="343.17" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/http/PathMap:::pathInfo (1 samples, 0.07%)</title><rect x="936.8" y="1345" width="0.8" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="939.79" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (1 samples, 0.07%)</title><rect x="640.5" y="417" width="0.9" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="643.55" 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>CodeBlob::is_zombie (1 samples, 0.07%)</title><rect x="806.9" y="865" width="0.8" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="809.87" 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>call_stub (15 samples, 1.05%)</title><rect x="741.5" y="1729" width="12.4" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text text-anchor="" x="744.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>Ljersey/repackaged/com/google/common/collect/Iterables:::addAll (1 samples, 0.07%)</title><rect x="826.7" y="865" width="0.9" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text text-anchor="" x="829.73" 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:::getUnqualifiedService (9 samples, 0.63%)</title><rect x="1149.5" y="801" width="7.4" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="1152.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>__intel_pmu_enable_all (1 samples, 0.07%)</title><rect x="347.6" y="1617" width="0.8" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="350.62" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SharedRuntime::resolve_virtual_call_C (1 samples, 0.07%)</title><rect x="555.3" y="1553" width="0.8" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text text-anchor="" x="558.32" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/ReentrantReadWriteLock$ReadLock:::&lt;init&gt; (2 samples, 0.14%)</title><rect x="690.2" y="465" width="1.7" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="693.20" 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>__netif_receive_skb (1 samples, 0.07%)</title><rect x="1123.8" y="209" width="0.8" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="1126.80" 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>__enqueue_entity (1 samples, 0.07%)</title><rect x="989.7" y="273" width="0.9" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="992.75" 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>ip_local_out (2 samples, 0.14%)</title><rect x="869.8" y="801" width="1.6" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="872.76" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.28%)</title><rect x="130.8" y="1825" width="3.3" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text text-anchor="" x="133.81" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_iter_readv_writev (1 samples, 0.07%)</title><rect x="550.4" y="1777" width="0.8" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="553.35" 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>do_iter_readv_writev (2 samples, 0.14%)</title><rect x="1049.3" y="1761" width="1.7" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="1052.33" 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 (2 samples, 0.14%)</title><rect x="138.3" y="1473" width="1.6" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="141.26" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/InboundMessageContext$5:::apply (1 samples, 0.07%)</title><rect x="821.8" y="753" width="0.8" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="824.77" 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/StringBuilder:::append (1 samples, 0.07%)</title><rect x="1019.5" y="1089" width="0.9" height="15.0" fill="rgb(66,179,179)" rx="2" ry="2" />
<text text-anchor="" x="1022.54" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/StringBuilder:::append (1 samples, 0.07%)</title><rect x="842.5" y="769" width="0.8" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="845.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/model/ResourceMethodInvoker:::invoke (34 samples, 2.38%)</title><rect x="840.8" y="945" width="28.1" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="843.80" y="955.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/ServiceLocatorImpl:::getInjecteeDescriptor (1 samples, 0.07%)</title><rect x="873.9" y="865" width="0.8" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="876.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/internal/process/ServerProcessingBinder$ContainerRequestFactory:::provide (2 samples, 0.14%)</title><rect x="859.8" y="689" width="1.7" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="862.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/uri/internal/JerseyUriBuilder:::schemeSpecificPart (17 samples, 1.19%)</title><rect x="368.3" y="1121" width="14.1" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="371.30" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParseGenerator::generate (1 samples, 0.07%)</title><rect x="144.1" y="1345" width="0.8" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="147.05" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JVM_SetNativeThreadName (1 samples, 0.07%)</title><rect x="1067.5" y="1201" width="0.9" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text text-anchor="" x="1070.53" 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>__tcp_push_pending_frames (1 samples, 0.07%)</title><rect x="465.9" y="913" width="0.9" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="468.95" 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/ContainerResponse:::enableBuffering (5 samples, 0.35%)</title><rect x="1130.4" y="929" width="4.2" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="1133.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>Ljava/util/HashMap:::get (1 samples, 0.07%)</title><rect x="387.3" y="817" width="0.9" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="390.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>Lcom/fasterxml/jackson/jaxrs/base/ProviderBase:::_createParser (5 samples, 0.35%)</title><rect x="998.8" y="673" width="4.2" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="1001.85" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (2 samples, 0.14%)</title><rect x="515.6" y="1761" width="1.7" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="518.60" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/net/URI$Parser:::parse (6 samples, 0.42%)</title><rect x="715.0" y="1105" width="5.0" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="718.02" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (1 samples, 0.07%)</title><rect x="882.2" y="929" width="0.8" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="885.17" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/ReentrantLock:::unlock (3 samples, 0.21%)</title><rect x="557.0" y="1425" width="2.5" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="559.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>Lorg/eclipse/jetty/server/HttpChannel:::sendResponse (4 samples, 0.28%)</title><rect x="828.4" y="753" width="3.3" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="831.39" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::allocate_objArray (1 samples, 0.07%)</title><rect x="251.6" y="1265" width="0.9" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text text-anchor="" x="254.63" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/AbstractStringBuilder:::append (1 samples, 0.07%)</title><rect x="384.9" y="1121" width="0.8" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text text-anchor="" x="387.85" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (2 samples, 0.14%)</title><rect x="897.9" y="1601" width="1.7" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="900.90" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (1 samples, 0.07%)</title><rect x="528.8" y="1153" width="0.9" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="531.84" 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_futex (1 samples, 0.07%)</title><rect x="493.3" y="1793" width="0.8" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="496.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>do_futex (2 samples, 0.14%)</title><rect x="758.1" y="1745" width="1.6" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="761.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/RuntimeException:::&lt;init&gt; (20 samples, 1.40%)</title><rect x="568.6" y="1041" width="16.5" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="571.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>Compilation::emit_code_body (1 samples, 0.07%)</title><rect x="178.8" y="1697" width="0.8" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="181.81" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap$KeyIterator:::next (1 samples, 0.07%)</title><rect x="1159.4" y="1057" width="0.8" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="1162.38" 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>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="497.4" y="1553" width="0.8" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="500.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/eclipse/jetty/server/HttpConnection$Content:::succeeded (1 samples, 0.07%)</title><rect x="675.3" y="513" width="0.8" height="15.0" fill="rgb(78,191,191)" rx="2" ry="2" />
<text text-anchor="" x="678.30" 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>x86_pmu_enable (2 samples, 0.14%)</title><rect x="969.1" y="625" width="1.6" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="972.06" 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>vfprintf (1 samples, 0.07%)</title><rect x="137.4" y="1841" width="0.9" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="140.43" 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/hibernate/validator/internal/metadata/raw/ExecutableElement$MethodElement:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="994.7" y="833" width="0.8" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text text-anchor="" x="997.71" 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/OutboundMessageContext:::setMediaType (1 samples, 0.07%)</title><rect x="1104.8" y="865" width="0.8" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="1107.77" 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/HashMap:::get (1 samples, 0.07%)</title><rect x="613.2" y="817" width="0.9" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="616.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>do_futex (1 samples, 0.07%)</title><rect x="776.3" y="1777" width="0.8" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="779.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>Lorg/jvnet/hk2/internal/ClazzCreator:::resolveAllDependencies (4 samples, 0.28%)</title><rect x="460.2" y="913" width="3.3" height="15.0" fill="rgb(64,212,64)" rx="2" ry="2" />
<text text-anchor="" x="463.15" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/Errors:::process (68 samples, 4.77%)</title><rect x="815.1" y="1073" width="56.3" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="818.15" y="1083.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 (124 samples, 8.70%)</title><rect x="228.5" y="1745" width="102.6" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="231.46" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaCalls::c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_write (2 samples, 0.14%)</title><rect x="206.9" y="1681" width="1.7" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="209.94" 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>Lch/qos/logback/access/jetty/RequestLogImpl:::log (15 samples, 1.05%)</title><rect x="923.5" y="1521" width="12.5" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="926.55" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (3 samples, 0.21%)</title><rect x="912.0" y="1585" width="2.4" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="914.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/jvnet/hk2/internal/ServiceHandleImpl:::getService (4 samples, 0.28%)</title><rect x="449.4" y="689" width="3.3" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="452.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>sock_write_iter (1 samples, 0.07%)</title><rect x="657.1" y="849" width="0.8" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="660.10" 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/core/base/ParserMinimalBase:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="855.7" y="577" width="0.8" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="858.69" 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/servlet/ServletHandler$CachedChain:::doFilter (136 samples, 9.54%)</title><rect x="367.5" y="1313" width="112.5" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text text-anchor="" x="370.48" y="1323.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 (2 samples, 0.14%)</title><rect x="120.9" y="1601" width="1.6" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="123.88" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="46.4" y="1521" width="0.8" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="49.41" 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>G1RootProcessor::process_java_roots (4 samples, 0.28%)</title><rect x="42.3" y="1777" width="3.3" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="45.27" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.14%)</title><rect x="1034.4" y="1713" width="1.7" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="1037.43" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.07%)</title><rect x="215.2" y="1681" width="0.8" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="218.22" 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/StringBuffer:::append (1 samples, 0.07%)</title><rect x="1079.1" y="945" width="0.8" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="1082.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>Lorg/eclipse/jetty/server/HttpChannelOverHttp:::headerComplete (3 samples, 0.21%)</title><rect x="489.1" y="1505" width="2.5" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text text-anchor="" x="492.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>__perf_event_task_sched_in (4 samples, 0.28%)</title><rect x="1042.7" y="1681" width="3.3" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="1045.71" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/servlet/ServletContainer:::service (183 samples, 12.83%)</title><rect x="568.6" y="1201" width="151.4" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="571.56" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/glassfish/jers..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (15 samples, 1.05%)</title><rect x="496.6" y="1857" width="12.4" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text text-anchor="" x="499.56" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::ensureExplicitCapacity (1 samples, 0.07%)</title><rect x="614.1" y="897" width="0.8" height="15.0" fill="rgb(67,180,180)" rx="2" ry="2" />
<text text-anchor="" x="617.07" 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:::format (2 samples, 0.14%)</title><rect x="808.5" y="1057" width="1.7" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="811.53" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (1 samples, 0.07%)</title><rect x="130.8" y="1649" width="0.8" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="133.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>find_next_bit (1 samples, 0.07%)</title><rect x="919.4" y="1713" width="0.8" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="922.41" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (1 samples, 0.07%)</title><rect x="882.2" y="897" width="0.8" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="885.17" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/SystemDescriptor:::create (7 samples, 0.49%)</title><rect x="447.7" y="737" width="5.8" height="15.0" fill="rgb(106,252,106)" rx="2" ry="2" />
<text text-anchor="" x="450.74" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.07%)</title><rect x="77.9" y="1745" width="0.8" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="80.85" 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 (1 samples, 0.07%)</title><rect x="734.1" y="1601" width="0.8" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="737.05" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_writev (1 samples, 0.07%)</title><rect x="422.1" y="657" width="0.8" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="425.09" 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/message/internal/HttpHeaderReader:::nextSeparator (1 samples, 0.07%)</title><rect x="619.9" y="673" width="0.8" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="622.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>JavaCalls::call_virtual (5 samples, 0.35%)</title><rect x="753.9" y="1761" width="4.2" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="756.91" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_readv_writev (1 samples, 0.07%)</title><rect x="830.9" y="497" width="0.8" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="833.87" 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>Ljava/lang/Integer:::hashCode (1 samples, 0.07%)</title><rect x="552.8" y="1473" width="0.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="555.83" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_writev (1 samples, 0.07%)</title><rect x="725.8" y="1473" width="0.8" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="728.78" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (1 samples, 0.07%)</title><rect x="1185.0" y="1457" width="0.9" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="1188.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>Ljava/lang/String:::getBytes (1 samples, 0.07%)</title><rect x="1120.5" y="609" width="0.8" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="1123.49" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/MediaTypeProvider:::valueOf (1 samples, 0.07%)</title><rect x="437.0" y="689" width="0.8" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="439.98" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap$HashIterator:::nextNode (1 samples, 0.07%)</title><rect x="696.8" y="1041" width="0.8" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="699.82" 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/routing/RoutingStage:::apply (17 samples, 1.19%)</title><rect x="614.9" y="945" width="14.1" height="15.0" fill="rgb(67,180,180)" rx="2" ry="2" />
<text text-anchor="" x="617.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/eclipse/jetty/server/HttpConnection$SendCallback:::process (1 samples, 0.07%)</title><rect x="1117.2" y="705" width="0.8" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text text-anchor="" x="1120.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>deactivate_task (1 samples, 0.07%)</title><rect x="182.1" y="1697" width="0.8" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="185.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>Lorg/eclipse/jetty/servlet/ServletHandler$CachedChain:::doFilter (103 samples, 7.22%)</title><rect x="939.3" y="1265" width="85.2" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="942.27" y="1275.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 (1 samples, 0.07%)</title><rect x="920.2" y="1361" width="0.9" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="923.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>Ljava/util/concurrent/ArrayBlockingQueue:::put (1 samples, 0.07%)</title><rect x="784.5" y="1441" width="0.9" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="787.53" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Object:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="983.1" y="721" width="0.9" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="986.13" 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>entry_SYSCALL_64_fastpath (7 samples, 0.49%)</title><rect x="28.2" y="1809" width="5.8" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="31.20" 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 (4 samples, 0.28%)</title><rect x="1042.7" y="1665" width="3.3" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="1045.71" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/reflect/Constructor:::newInstance (1 samples, 0.07%)</title><rect x="1152.8" y="577" width="0.8" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="1155.76" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (2 samples, 0.14%)</title><rect x="103.5" y="1793" width="1.7" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="106.51" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.14%)</title><rect x="103.5" y="1825" width="1.7" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="106.51" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/MappableExceptionWrapperInterceptor:::aroundReadFrom (9 samples, 0.63%)</title><rect x="849.1" y="769" width="7.4" height="15.0" fill="rgb(94,206,206)" rx="2" ry="2" />
<text text-anchor="" x="852.07" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lch/qos/logback/access/spi/AccessEvent:::copyAttributeMap (1 samples, 0.07%)</title><rect x="228.5" y="1697" width="0.8" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="231.46" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lock_timer_base.isra.22 (1 samples, 0.07%)</title><rect x="543.7" y="1281" width="0.9" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="546.73" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (2 samples, 0.14%)</title><rect x="976.5" y="449" width="1.7" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="979.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>enqueue_task_fair (1 samples, 0.07%)</title><rect x="331.1" y="1201" width="0.8" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="334.07" 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/access/jetty/JettyServerAdapter:::buildResponseHeaderMap (1 samples, 0.07%)</title><rect x="1059.3" y="1377" width="0.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="1062.26" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/routing/RoutingStage:::_apply (2 samples, 0.14%)</title><rect x="962.4" y="897" width="1.7" height="15.0" fill="rgb(82,230,82)" rx="2" ry="2" />
<text text-anchor="" x="965.44" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/atomic/AtomicReferenceArray:::checkedByteOffset (1 samples, 0.07%)</title><rect x="443.6" y="401" width="0.8" height="15.0" fill="rgb(69,183,183)" rx="2" ry="2" />
<text text-anchor="" x="446.60" 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/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (1 samples, 0.07%)</title><rect x="1173.5" y="977" width="0.8" height="15.0" fill="rgb(55,169,169)" rx="2" ry="2" />
<text text-anchor="" x="1176.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>[unknown] (4 samples, 0.28%)</title><rect x="48.9" y="1809" width="3.3" height="15.0" fill="rgb(250,124,124)" rx="2" ry="2" />
<text text-anchor="" x="51.89" 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/Thread:::setNativeName (1 samples, 0.07%)</title><rect x="797.8" y="1217" width="0.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="800.77" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (1 samples, 0.07%)</title><rect x="1123.0" y="65" width="0.8" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="1125.97" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/misc/Unsafe:::park (1 samples, 0.07%)</title><rect x="316.2" y="1681" width="0.8" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" />
<text text-anchor="" x="319.17" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/core/json/ByteSourceJsonBootstrapper:::ensureLoaded (5 samples, 0.35%)</title><rect x="1142.0" y="593" width="4.1" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text text-anchor="" x="1145.01" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.07%)</title><rect x="523.0" y="1697" width="0.9" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="526.04" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.07%)</title><rect x="202.8" y="1745" width="0.8" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="205.81" 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.07%)</title><rect x="1127.1" y="609" width="0.8" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="1130.11" 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:::createMe (1 samples, 0.07%)</title><rect x="1152.8" y="609" width="0.8" height="15.0" fill="rgb(58,208,58)" rx="2" ry="2" />
<text text-anchor="" x="1155.76" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/model/internal/AbstractJavaResourceMethodDispatcher$1:::run (1 samples, 0.07%)</title><rect x="845.8" y="881" width="0.8" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="848.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>ObjectMonitor::EnterI (15 samples, 1.05%)</title><rect x="496.6" y="1585" width="12.4" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="499.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/jvnet/hk2/internal/IterableProviderImpl:::get (7 samples, 0.49%)</title><rect x="447.7" y="817" width="5.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="450.74" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (5 samples, 0.35%)</title><rect x="108.5" y="1681" width="4.1" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="111.47" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/ThreadLocal$ThreadLocalMap:::access$100 (2 samples, 0.14%)</title><rect x="298.8" y="1649" width="1.6" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="301.79" 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/concurrent/locks/AbstractQueuedSynchronizer:::unparkSuccessor (1 samples, 0.07%)</title><rect x="784.5" y="1393" width="0.9" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="787.53" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.07%)</title><rect x="518.9" y="1793" width="0.8" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="521.91" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_send_mss (1 samples, 0.07%)</title><rect x="1041.9" y="1665" width="0.8" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="1044.88" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::checkState (1 samples, 0.07%)</title><rect x="602.5" y="865" width="0.8" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="605.48" 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:::internalGetDescriptor (1 samples, 0.07%)</title><rect x="391.5" y="865" width="0.8" height="15.0" fill="rgb(80,192,192)" rx="2" ry="2" />
<text text-anchor="" x="394.47" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lio/dropwizard/jackson/FuzzyEnumModule$PermissiveEnumDeserializer:::deserialize (1 samples, 0.07%)</title><rect x="852.4" y="577" width="0.8" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="855.38" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/model/MethodHandler$ClassBasedMethodHandler:::getInstance (2 samples, 0.14%)</title><rect x="624.8" y="849" width="1.7" height="15.0" fill="rgb(79,191,191)" rx="2" ry="2" />
<text text-anchor="" x="627.82" 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 (1 samples, 0.07%)</title><rect x="546.2" y="1633" width="0.8" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="549.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>CodeCache::find_blob (3 samples, 0.21%)</title><rect x="581.8" y="865" width="2.5" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="584.80" 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/EntityInputStream:::read (5 samples, 0.35%)</title><rect x="1142.0" y="561" width="4.1" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="1145.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_pending_frames (2 samples, 0.14%)</title><rect x="869.8" y="865" width="1.6" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="872.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>[unknown] (12 samples, 0.84%)</title><rect x="45.6" y="1857" width="9.9" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text text-anchor="" x="48.58" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/monitoring/CompositeRequestEventListener:::onEvent (1 samples, 0.07%)</title><rect x="840.8" y="913" width="0.8" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="843.80" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Thread:::setNativeName (2 samples, 0.14%)</title><rect x="1067.5" y="1217" width="1.7" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text text-anchor="" x="1070.53" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ObjectSynchronizer::notify (1 samples, 0.07%)</title><rect x="678.6" y="353" width="0.8" height="15.0" fill="rgb(177,177,51)" rx="2" ry="2" />
<text text-anchor="" x="681.61" 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/text/DateFormatSymbols:::getProviderInstance (2 samples, 0.14%)</title><rect x="250.8" y="1393" width="1.7" height="15.0" fill="rgb(65,213,65)" rx="2" ry="2" />
<text text-anchor="" x="253.80" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.28%)</title><rect x="195.4" y="1809" width="3.3" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="198.36" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/monitoring/RequestEventImpl:::&lt;init&gt; (2 samples, 0.14%)</title><rect x="464.3" y="1057" width="1.6" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text text-anchor="" x="467.29" 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/LinkedList:::add (1 samples, 0.07%)</title><rect x="1104.8" y="833" width="0.8" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="1107.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/server/ContainerRequest:::readEntity (22 samples, 1.54%)</title><rect x="662.1" y="833" width="18.2" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text text-anchor="" x="665.06" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (4 samples, 0.28%)</title><rect x="67.1" y="1697" width="3.3" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="70.10" 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/internal/util/PropertiesHelper:::getValue (3 samples, 0.21%)</title><rect x="423.7" y="881" width="2.5" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
<text text-anchor="" x="426.74" 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>vfs_read (1 samples, 0.07%)</title><rect x="336.9" y="1729" width="0.8" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="339.86" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.14%)</title><rect x="212.7" y="1761" width="1.7" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="215.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>change_protection (1 samples, 0.07%)</title><rect x="102.7" y="1777" width="0.8" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="105.68" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/databind/ObjectReader:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="1140.4" y="641" width="0.8" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="1143.35" 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>end_repeat_nmi (1 samples, 0.07%)</title><rect x="138.3" y="1409" width="0.8" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="141.26" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hash_futex (1 samples, 0.07%)</title><rect x="216.9" y="1761" width="0.8" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="219.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>new_sync_read (1 samples, 0.07%)</title><rect x="336.9" y="1697" width="0.8" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="339.86" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/hk2/utilities/InjecteeImpl:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="856.5" y="785" width="0.8" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text text-anchor="" x="859.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>Interpreter (15 samples, 1.05%)</title><rect x="741.5" y="1713" width="12.4" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text text-anchor="" x="744.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>Parse::do_one_bytecode (1 samples, 0.07%)</title><rect x="144.1" y="1473" width="0.8" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="147.05" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (2 samples, 0.14%)</title><rect x="1034.4" y="1617" width="1.7" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="1037.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/server/internal/routing/MethodSelectingRouter$ConsumesProducesAcceptor:::isConsumable (2 samples, 0.14%)</title><rect x="619.9" y="817" width="1.6" height="15.0" fill="rgb(82,195,195)" rx="2" ry="2" />
<text text-anchor="" x="622.86" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="897.1" y="1777" width="0.8" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="900.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/jvnet/hk2/internal/ServiceLocatorImpl:::getService (1 samples, 0.07%)</title><rect x="691.9" y="561" width="0.8" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="694.85" 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/String:::regionMatches (1 samples, 0.07%)</title><rect x="937.6" y="1313" width="0.8" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="940.62" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getServiceHandle (1 samples, 0.07%)</title><rect x="701.8" y="993" width="0.8" height="15.0" fill="rgb(52,166,166)" rx="2" ry="2" />
<text text-anchor="" x="704.78" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (2 samples, 0.14%)</title><rect x="720.0" y="1121" width="1.6" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="722.99" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/servlet/ServletContainer:::service (134 samples, 9.40%)</title><rect x="368.3" y="1201" width="110.9" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="371.30" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/glassfis..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="437.8" y="753" width="0.8" height="15.0" fill="rgb(67,180,180)" rx="2" ry="2" />
<text text-anchor="" x="440.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>Lorg/glassfish/jersey/message/internal/CommittingOutputStream:::commit (16 samples, 1.12%)</title><rect x="1117.2" y="881" width="13.2" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1120.18" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.14%)</title><rect x="494.9" y="1825" width="1.7" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="497.91" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.07%)</title><rect x="77.9" y="1649" width="0.8" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="80.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>Lorg/eclipse/jetty/util/thread/strategy/ExecuteProduceConsume:::produceConsume (133 samples, 9.33%)</title><rect x="921.1" y="1649" width="110.0" height="15.0" fill="rgb(103,213,213)" rx="2" ry="2" />
<text text-anchor="" x="924.07" 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>default_do_nmi (1 samples, 0.07%)</title><rect x="120.9" y="1425" width="0.8" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="123.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>Ljava/util/Formatter:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="1022.0" y="1217" width="0.8" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text text-anchor="" x="1025.02" 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>frame::sender_for_compiled_frame (4 samples, 0.28%)</title><rect x="581.0" y="881" width="3.3" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text text-anchor="" x="583.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>[unknown] (34 samples, 2.38%)</title><rect x="199.5" y="1857" width="28.1" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="202.50" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/IterableProviderImpl:::justInTime (2 samples, 0.14%)</title><rect x="856.5" y="801" width="1.7" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="859.52" 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>process_backlog (1 samples, 0.07%)</title><rect x="1022.8" y="833" width="0.9" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="1025.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_transmit_skb (2 samples, 0.14%)</title><rect x="869.8" y="833" width="1.6" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="872.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>Lsun/nio/ch/EPollSelectorImpl:::doSelect (3 samples, 0.21%)</title><rect x="552.8" y="1537" width="2.5" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text text-anchor="" x="555.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>Lorg/jvnet/hk2/internal/InstanceLifecycleEventImpl:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="693.5" y="721" width="0.8" height="15.0" fill="rgb(103,213,213)" rx="2" ry="2" />
<text text-anchor="" x="696.51" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (2 samples, 0.14%)</title><rect x="103.5" y="1761" width="1.7" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="106.51" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Character:::toLowerCase (1 samples, 0.07%)</title><rect x="987.3" y="737" width="0.8" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="990.27" 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>Interpreter (163 samples, 11.43%)</title><rect x="1051.8" y="1713" width="134.9" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="1054.81" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Interpreter</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/MessageBodyFactory:::getMessageBodyWriter (1 samples, 0.07%)</title><rect x="967.4" y="817" width="0.8" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="970.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>BacktraceBuilder::expand (1 samples, 0.07%)</title><rect x="948.4" y="881" width="0.8" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text text-anchor="" x="951.37" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.07%)</title><rect x="293.8" y="1489" width="0.9" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="296.83" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (3 samples, 0.21%)</title><rect x="154.0" y="1633" width="2.5" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="156.98" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.07%)</title><rect x="753.9" y="1617" width="0.8" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="756.91" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ClazzCreator:::resolve (3 samples, 0.21%)</title><rect x="450.2" y="593" width="2.5" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text text-anchor="" x="453.22" 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>__netif_receive_skb (1 samples, 0.07%)</title><rect x="778.7" y="1441" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="781.74" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (1 samples, 0.07%)</title><rect x="336.0" y="1633" width="0.9" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="339.03" 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_write (4 samples, 0.28%)</title><rect x="205.3" y="1745" width="3.3" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="208.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>Lorg/glassfish/jersey/uri/internal/UriParser:::parseComponent (2 samples, 0.14%)</title><rect x="382.4" y="1105" width="1.6" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="385.37" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/WriterInterceptorExecutor$TerminalWriterInterceptor:::aroundWriteTo (2 samples, 0.14%)</title><rect x="634.8" y="833" width="1.6" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text text-anchor="" x="637.75" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (2 samples, 0.14%)</title><rect x="52.2" y="1633" width="1.7" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="55.20" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.14%)</title><rect x="332.7" y="1745" width="1.7" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="335.72" 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>__fget_light (1 samples, 0.07%)</title><rect x="274.0" y="1393" width="0.8" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="276.97" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljavax/ws/rs/core/AbstractMultivaluedMap:::putSingle (1 samples, 0.07%)</title><rect x="1104.8" y="849" width="0.8" height="15.0" fill="rgb(108,219,219)" rx="2" ry="2" />
<text text-anchor="" x="1107.77" 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/log/Slf4jLog:::isDebugEnabled (1 samples, 0.07%)</title><rect x="413.8" y="721" width="0.8" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="416.81" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/codahale/metrics/Timer:::update (2 samples, 0.14%)</title><rect x="1064.2" y="1393" width="1.7" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="1067.22" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_iter_readv_writev (1 samples, 0.07%)</title><rect x="762.2" y="1761" width="0.8" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="765.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>Ljavax/ws/rs/core/Response:::ok (1 samples, 0.07%)</title><rect x="657.9" y="897" width="0.9" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="660.92" 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/Utilities:::createService (4 samples, 0.28%)</title><rect x="1165.2" y="977" width="3.3" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text text-anchor="" x="1168.18" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/process/internal/RequestScope:::findOrCreate (9 samples, 0.63%)</title><rect x="1149.5" y="753" width="7.4" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text text-anchor="" x="1152.45" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (1 samples, 0.07%)</title><rect x="479.2" y="993" width="0.8" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="482.19" 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:::release (1 samples, 0.07%)</title><rect x="838.3" y="961" width="0.8" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="841.32" 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:::addRequestHeaders (3 samples, 0.21%)</title><rect x="466.8" y="1105" width="2.5" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text text-anchor="" x="469.77" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_conntrack_in (1 samples, 0.07%)</title><rect x="646.3" y="497" width="0.9" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="649.34" 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>x86_pmu_enable (1 samples, 0.07%)</title><rect x="1189.2" y="1729" width="0.8" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="1192.17" 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>BacktraceBuilder::expand (1 samples, 0.07%)</title><rect x="1071.7" y="897" width="0.8" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="1074.67" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.07%)</title><rect x="912.0" y="1553" width="0.8" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="914.96" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java-?/7758 (163 samples, 11.43%)</title><rect x="896.2" y="1873" width="134.9" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text text-anchor="" x="899.24" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java-?/7758</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_nmi_handler (1 samples, 0.07%)</title><rect x="863.1" y="289" width="0.9" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="866.14" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="219.4" y="1793" width="0.8" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="222.35" 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>Ljavax/ws/rs/core/MediaType:::equals (1 samples, 0.07%)</title><rect x="663.7" y="657" width="0.8" height="15.0" fill="rgb(68,182,182)" rx="2" ry="2" />
<text text-anchor="" x="666.72" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap$HashIterator:::nextNode (1 samples, 0.07%)</title><rect x="1056.8" y="1345" width="0.8" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="1059.77" 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/ReferenceQueue:::remove (1 samples, 0.07%)</title><rect x="120.1" y="1681" width="0.8" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="123.06" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq.part.19 (1 samples, 0.07%)</title><rect x="657.1" y="625" width="0.8" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="660.10" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lio/dropwizard/request/logging/async/AsyncAccessEventAppenderFactory$1:::preprocess (9 samples, 0.63%)</title><rect x="785.4" y="1441" width="7.4" height="15.0" fill="rgb(90,201,201)" rx="2" ry="2" />
<text text-anchor="" x="788.36" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/process/internal/RequestScope$Instance:::remove (3 samples, 0.21%)</title><rect x="1009.6" y="1057" width="2.5" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="1012.61" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (1 samples, 0.07%)</title><rect x="988.9" y="801" width="0.8" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="991.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>Lcom/fasterxml/jackson/core/JsonFactory:::createGenerator (1 samples, 0.07%)</title><rect x="968.2" y="769" width="0.9" height="15.0" fill="rgb(53,167,167)" rx="2" ry="2" />
<text text-anchor="" x="971.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>net_rx_action (1 samples, 0.07%)</title><rect x="882.2" y="1009" width="0.8" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="885.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>Lorg/glassfish/jersey/process/internal/Stages:::process (16 samples, 1.12%)</title><rect x="1089.9" y="977" width="13.2" height="15.0" fill="rgb(54,168,168)" rx="2" ry="2" />
<text text-anchor="" x="1092.87" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (1 samples, 0.07%)</title><rect x="1157.7" y="801" width="0.9" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="1160.73" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (2 samples, 0.14%)</title><rect x="733.2" y="1681" width="1.7" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="736.23" 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.07%)</title><rect x="763.8" y="1681" width="0.9" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="766.84" 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>Compile::Code_Gen (12 samples, 0.84%)</title><rect x="154.0" y="1729" width="9.9" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="156.98" 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/text/DecimalFormatSymbols:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="378.2" y="961" width="0.9" height="15.0" fill="rgb(93,204,204)" rx="2" ry="2" />
<text text-anchor="" x="381.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>x86_pmu_enable (2 samples, 0.14%)</title><rect x="63.8" y="1617" width="1.6" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="66.79" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.07%)</title><rect x="250.0" y="1329" width="0.8" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="252.97" 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/util/PropertiesHelper:::getPropertyNameForRuntime (4 samples, 0.28%)</title><rect x="1130.4" y="865" width="3.3" height="15.0" fill="rgb(92,203,203)" rx="2" ry="2" />
<text text-anchor="" x="1133.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>Lorg/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (1 samples, 0.07%)</title><rect x="427.1" y="801" width="0.8" height="15.0" fill="rgb(93,204,204)" rx="2" ry="2" />
<text text-anchor="" x="430.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>Lorg/glassfish/jersey/message/internal/OutboundMessageContext:::getMediaType (1 samples, 0.07%)</title><rect x="964.9" y="865" width="0.9" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="967.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/glassfish/jersey/servlet/internal/ResponseWriter:::writeResponseStatusAndHeaders (4 samples, 0.28%)</title><rect x="648.0" y="817" width="3.3" height="15.0" fill="rgb(107,218,218)" rx="2" ry="2" />
<text text-anchor="" x="650.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>__netif_receive_skb (2 samples, 0.14%)</title><rect x="772.9" y="1425" width="1.7" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="775.95" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/codahale/metrics/jersey2/InstrumentedResourceMethodApplicationListener$ChainedRequestEventListener:::onEvent (1 samples, 0.07%)</title><rect x="840.8" y="897" width="0.8" height="15.0" fill="rgb(83,196,196)" rx="2" ry="2" />
<text text-anchor="" x="843.80" 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:::handle (123 samples, 8.63%)</title><rect x="923.5" y="1553" width="101.8" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="926.55" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/monitoring/CompositeApplicationEventListener:::onRequest (1 samples, 0.07%)</title><rect x="876.4" y="1089" width="0.8" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text text-anchor="" x="879.38" 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/net/InetSocketAddress$InetSocketAddressHolder:::access$700 (1 samples, 0.07%)</title><rect x="1055.9" y="1361" width="0.9" height="15.0" fill="rgb(93,205,205)" rx="2" ry="2" />
<text text-anchor="" x="1058.95" 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/servlet/ServletHandler$CachedChain:::doFilter (188 samples, 13.18%)</title><rect x="566.1" y="1313" width="155.5" height="15.0" fill="rgb(102,247,102)" rx="2" ry="2" />
<text text-anchor="" x="569.07" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/jetty/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.14%)</title><rect x="82.0" y="1777" width="1.6" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="84.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>vfs_writev (1 samples, 0.07%)</title><rect x="712.5" y="1089" width="0.9" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="715.54" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/core/json/ByteSourceJsonBootstrapper:::constructParser (6 samples, 0.42%)</title><rect x="442.8" y="625" width="4.9" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="445.78" 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.07%)</title><rect x="761.4" y="1585" width="0.8" height="15.0" fill="rgb(217,76,76)" rx="2" ry="2" />
<text text-anchor="" x="764.36" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.14%)</title><rect x="759.7" y="1777" width="1.7" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="762.71" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (2 samples, 0.14%)</title><rect x="332.7" y="1585" width="1.7" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="335.72" 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>sk_stream_alloc_skb (1 samples, 0.07%)</title><rect x="910.3" y="1665" width="0.8" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="913.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>schedule (2 samples, 0.14%)</title><rect x="45.6" y="1665" width="1.6" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="48.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>Ljava/lang/CharacterData:::of (1 samples, 0.07%)</title><rect x="664.5" y="577" width="0.9" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="667.54" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/routing/MethodSelectingRouter:::getMethodRouter (3 samples, 0.21%)</title><rect x="1097.3" y="833" width="2.5" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text text-anchor="" x="1100.32" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/hibernate/validator/internal/metadata/descriptor/ElementDescriptorImpl:::hasConstraints (1 samples, 0.07%)</title><rect x="844.1" y="849" width="0.8" height="15.0" fill="rgb(102,212,212)" rx="2" ry="2" />
<text text-anchor="" x="847.11" 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_iter_readv_writev (1 samples, 0.07%)</title><rect x="880.5" y="1089" width="0.8" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="883.52" 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/io/ManagedSelector$SelectorProducer:::select (3 samples, 0.21%)</title><rect x="782.0" y="1601" width="2.5" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text text-anchor="" x="785.05" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/hk2/utilities/AbstractActiveDescriptor:::&lt;init&gt; (4 samples, 0.28%)</title><rect x="688.5" y="513" width="3.4" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text text-anchor="" x="691.54" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (1 samples, 0.07%)</title><rect x="98.5" y="1745" width="0.9" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="101.54" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>C2Compiler::compile_method (9 samples, 0.63%)</title><rect x="138.3" y="1761" width="7.4" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="141.26" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="762.2" y="1825" width="0.8" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="765.19" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/util/thread/Locker:::concLock (1 samples, 0.07%)</title><rect x="563.6" y="1505" width="0.8" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="566.59" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (1 samples, 0.07%)</title><rect x="269.0" y="1473" width="0.8" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text text-anchor="" x="272.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>finish_task_switch (2 samples, 0.14%)</title><rect x="754.7" y="1585" width="1.7" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="757.74" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/CommonProperties:::getValue (4 samples, 0.28%)</title><rect x="1130.4" y="897" width="3.3" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="1133.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/lang/String:::indexOf (1 samples, 0.07%)</title><rect x="715.0" y="1041" width="0.8" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="718.02" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.07%)</title><rect x="202.8" y="1761" width="0.8" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="205.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>JavaCalls::call_virtual (1 samples, 0.07%)</title><rect x="119.2" y="1761" width="0.9" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="122.23" 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>activate_task (1 samples, 0.07%)</title><rect x="279.8" y="1249" width="0.8" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="282.76" 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>ip_rcv (1 samples, 0.07%)</title><rect x="1123.0" y="113" width="0.8" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="1125.97" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/OutboundMessageContext:::getMediaType (1 samples, 0.07%)</title><rect x="988.9" y="913" width="0.8" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="991.92" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (1 samples, 0.07%)</title><rect x="1008.0" y="769" width="0.8" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="1010.95" 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/HashMap:::tableSizeFor (1 samples, 0.07%)</title><rect x="361.7" y="1281" width="0.8" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="364.68" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (220 samples, 15.43%)</title><rect x="551.2" y="1713" width="182.0" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text text-anchor="" x="554.18" y="1723.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>do_nmi (1 samples, 0.07%)</title><rect x="182.9" y="1569" width="0.9" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="185.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>__intel_pmu_enable_all (2 samples, 0.14%)</title><rect x="342.7" y="1601" width="1.6" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="345.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>__ip_local_out (1 samples, 0.07%)</title><rect x="513.9" y="1537" width="0.9" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="516.94" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (1 samples, 0.07%)</title><rect x="15.0" y="1521" width="0.8" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="17.96" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.35%)</title><rect x="10.0" y="1857" width="4.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/io/AbstractConnection$ReadCallback:::succeeded (164 samples, 11.50%)</title><rect x="357.5" y="1585" width="135.8" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text text-anchor="" x="360.55" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/jett..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/http/HttpFields:::add (1 samples, 0.07%)</title><rect x="650.5" y="737" width="0.8" height="15.0" fill="rgb(91,203,203)" rx="2" ry="2" />
<text text-anchor="" x="653.48" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (2 samples, 0.14%)</title><rect x="754.7" y="1505" width="1.7" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="757.74" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_writev (1 samples, 0.07%)</title><rect x="830.9" y="513" width="0.8" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="833.87" 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>ip_finish_output (1 samples, 0.07%)</title><rect x="1022.8" y="945" width="0.9" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="1025.85" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (3 samples, 0.21%)</title><rect x="340.2" y="1681" width="2.5" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="343.17" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/uri/internal/UriParser:::parse (3 samples, 0.21%)</title><rect x="955.8" y="1121" width="2.5" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="958.82" 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_futex (2 samples, 0.14%)</title><rect x="758.1" y="1761" width="1.6" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="761.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>Ljava/util/AbstractCollection:::addAll (1 samples, 0.07%)</title><rect x="660.4" y="753" width="0.8" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="663.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>java-?/7621 (5 samples, 0.35%)</title><rect x="120.1" y="1873" width="4.1" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text text-anchor="" x="123.06" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpChannelOverHttp:::headerComplete (1 samples, 0.07%)</title><rect x="886.3" y="1505" width="0.8" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text text-anchor="" x="889.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>Compilation::compile_method (2 samples, 0.14%)</title><rect x="178.8" y="1729" width="1.7" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text text-anchor="" x="181.81" 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/LinkedHashMap:::get (2 samples, 0.14%)</title><rect x="684.4" y="593" width="1.7" height="15.0" fill="rgb(83,231,83)" rx="2" ry="2" />
<text text-anchor="" x="687.40" 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/concurrent/locks/ReentrantReadWriteLock:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="864.8" y="481" width="0.8" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="867.80" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.07%)</title><rect x="737.4" y="1665" width="0.8" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="740.36" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/ThreadLocal:::get (1 samples, 0.07%)</title><rect x="600.8" y="1025" width="0.9" height="15.0" fill="rgb(54,169,169)" rx="2" ry="2" />
<text text-anchor="" x="603.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>__GI___writev (1 samples, 0.07%)</title><rect x="509.0" y="1777" width="0.8" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text text-anchor="" x="511.98" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (1 samples, 0.07%)</title><rect x="210.3" y="1633" width="0.8" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="213.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>Lorg/glassfish/hk2/utilities/AbstractActiveDescriptor:::isReified (1 samples, 0.07%)</title><rect x="1166.0" y="817" width="0.8" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="1169.00" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/util/thread/Locker$Lock:::close (1 samples, 0.07%)</title><rect x="1124.6" y="689" width="0.9" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1127.63" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.28%)</title><rect x="130.8" y="1841" width="3.3" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text text-anchor="" x="133.81" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___writev (1 samples, 0.07%)</title><rect x="989.7" y="945" width="0.9" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text text-anchor="" x="992.75" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.14%)</title><rect x="293.0" y="1617" width="1.7" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="296.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>inet_sendmsg (1 samples, 0.07%)</title><rect x="1123.0" y="417" width="0.8" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="1125.97" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.07%)</title><rect x="95.2" y="1697" width="0.9" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="98.23" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.14%)</title><rect x="190.4" y="1745" width="1.6" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="193.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>ip_rcv (1 samples, 0.07%)</title><rect x="1022.8" y="785" width="0.9" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="1025.85" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_blocked_averages (1 samples, 0.07%)</title><rect x="744.8" y="1425" width="0.8" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="747.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/util/concurrent/ConcurrentHashMap:::comparableClassFor (1 samples, 0.07%)</title><rect x="706.7" y="753" width="0.9" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="709.75" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.28%)</title><rect x="115.9" y="1793" width="3.3" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text text-anchor="" x="118.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/jvnet/hk2/internal/InstanceLifecycleEventImpl:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="607.4" y="817" width="0.9" height="15.0" fill="rgb(93,204,204)" rx="2" ry="2" />
<text text-anchor="" x="610.45" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/hibernate/validator/internal/metadata/raw/ExecutableElement:::forMethod (2 samples, 0.14%)</title><rect x="434.5" y="849" width="1.7" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="437.50" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (1 samples, 0.07%)</title><rect x="428.7" y="785" width="0.8" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="431.71" 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.14%)</title><rect x="756.4" y="1697" width="1.7" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="759.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>Lorg/glassfish/jersey/server/internal/monitoring/RequestEventImpl$Builder:::build (1 samples, 0.07%)</title><rect x="819.3" y="913" width="0.8" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="822.28" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (6 samples, 0.42%)</title><rect x="220.2" y="1697" width="4.9" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="223.18" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/MessageBodyFactory$ModelLookupKey:::hashCode (1 samples, 0.07%)</title><rect x="849.1" y="673" width="0.8" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="852.07" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::getChars (1 samples, 0.07%)</title><rect x="384.9" y="1105" width="0.8" height="15.0" fill="rgb(106,217,217)" rx="2" ry="2" />
<text text-anchor="" x="387.85" 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/uri/UriTemplate:::createURI (2 samples, 0.14%)</title><rect x="713.4" y="1137" width="1.6" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="716.37" 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>Matcher::ReduceInst_Interior (1 samples, 0.07%)</title><rect x="160.6" y="1617" width="0.8" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="163.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>ip_local_deliver_finish (1 samples, 0.07%)</title><rect x="484.2" y="1025" width="0.8" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="487.15" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lio/dropwizard/jetty/NonblockingServletHolder:::handle (184 samples, 12.90%)</title><rect x="567.7" y="1217" width="152.3" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="570.73" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lio/dropwizard/jett..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.07%)</title><rect x="119.2" y="1713" width="0.9" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="122.23" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/ContainerFilteringStage:::apply (1 samples, 0.07%)</title><rect x="614.1" y="961" width="0.8" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text text-anchor="" x="617.07" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (2 samples, 0.14%)</title><rect x="1034.4" y="1793" width="1.7" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="1037.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>Lorg/hibernate/validator/internal/engine/ValidationContext$ValidationContextBuilder:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="433.7" y="801" width="0.8" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text text-anchor="" x="436.67" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::validate (1 samples, 0.07%)</title><rect x="625.7" y="737" width="0.8" height="15.0" fill="rgb(92,203,203)" rx="2" ry="2" />
<text text-anchor="" x="628.65" 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/http/PathMap:::isPathWildcardMatch (1 samples, 0.07%)</title><rect x="937.6" y="1329" width="0.8" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="940.62" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (1 samples, 0.07%)</title><rect x="428.7" y="849" width="0.8" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="431.71" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/Response:::addHeader (3 samples, 0.21%)</title><rect x="648.0" y="801" width="2.5" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="650.99" 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/hibernate/validator/internal/engine/ValidatorImpl:::validateParameters (2 samples, 0.14%)</title><rect x="993.1" y="849" width="1.6" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="996.06" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/ReentrantReadWriteLock$Sync$ThreadLocalHoldCounter:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="864.8" y="433" width="0.8" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="867.80" 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>Matcher::ReduceInst (1 samples, 0.07%)</title><rect x="160.6" y="1633" width="0.8" height="15.0" fill="rgb(202,202,60)" rx="2" ry="2" />
<text text-anchor="" x="163.60" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (1 samples, 0.07%)</title><rect x="124.2" y="1697" width="0.8" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="127.19" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (1 samples, 0.07%)</title><rect x="336.0" y="1329" width="0.9" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="339.03" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/Utilities:::createService (5 samples, 0.35%)</title><rect x="1152.8" y="673" width="4.1" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text text-anchor="" x="1155.76" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ImmediateResults:::addValidatedResult (1 samples, 0.07%)</title><rect x="399.7" y="737" width="0.9" height="15.0" fill="rgb(78,191,191)" rx="2" ry="2" />
<text text-anchor="" x="402.75" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpInput:::nextContent (1 samples, 0.07%)</title><rect x="854.9" y="529" width="0.8" height="15.0" fill="rgb(104,214,214)" rx="2" ry="2" />
<text text-anchor="" x="857.87" 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 (2 samples, 0.14%)</title><rect x="754.7" y="1665" width="1.7" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="757.74" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (3 samples, 0.21%)</title><rect x="340.2" y="1665" width="2.5" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="343.17" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.07%)</title><rect x="546.2" y="1793" width="0.8" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="549.21" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (1 samples, 0.07%)</title><rect x="210.3" y="1553" width="0.8" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="213.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>Ljava/lang/StringBuilder:::toString (1 samples, 0.07%)</title><rect x="731.6" y="1489" width="0.8" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="734.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>ConcurrentG1RefineThread::run (12 samples, 0.84%)</title><rect x="88.6" y="1825" width="9.9" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="91.61" 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>mod_timer (1 samples, 0.07%)</title><rect x="543.7" y="1297" width="0.9" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="546.73" 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>JavaThread::run (172 samples, 12.06%)</title><rect x="350.9" y="1825" width="142.4" height="15.0" fill="rgb(225,225,68)" rx="2" ry="2" />
<text text-anchor="" x="353.93" y="1835.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/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (1 samples, 0.07%)</title><rect x="1016.2" y="993" width="0.9" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="1019.23" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/core/json/ByteSourceJsonBootstrapper:::detectEncoding (5 samples, 0.35%)</title><rect x="442.8" y="609" width="4.1" height="15.0" fill="rgb(91,203,203)" rx="2" ry="2" />
<text text-anchor="" x="445.78" 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/net/URI:::access$300 (1 samples, 0.07%)</title><rect x="879.7" y="1041" width="0.8" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="882.69" 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>finish_task_switch (2 samples, 0.14%)</title><rect x="352.6" y="1377" width="1.6" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="355.58" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/hk2/utilities/cache/internal/WeakCARCacheImpl:::getValueFromT (1 samples, 0.07%)</title><rect x="1093.2" y="817" width="0.8" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="1096.18" 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>Parse::Parse (1 samples, 0.07%)</title><rect x="144.1" y="1329" width="0.8" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text text-anchor="" x="147.05" 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>Ljersey/repackaged/com/google/common/collect/Sets:::newHashSet (1 samples, 0.07%)</title><rect x="457.7" y="1057" width="0.8" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="460.67" 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>vfs_writev (2 samples, 0.14%)</title><rect x="869.8" y="993" width="1.6" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="872.76" 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/JerseyUriBuilder:::host (30 samples, 2.10%)</title><rect x="568.6" y="1105" width="24.8" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="571.56" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.07%)</title><rect x="85.3" y="1665" width="0.8" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="88.30" 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.07%)</title><rect x="712.5" y="1105" width="0.9" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="715.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>futex_wake_op (1 samples, 0.07%)</title><rect x="776.3" y="1761" width="0.8" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="779.26" 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_in_window (1 samples, 0.07%)</title><rect x="465.9" y="737" width="0.9" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="468.95" 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/pattern/PatternLayoutBase:::writeLoopOnConverters (29 samples, 2.03%)</title><rect x="240.0" y="1569" width="24.0" height="15.0" fill="rgb(56,171,171)" rx="2" ry="2" />
<text text-anchor="" x="243.04" 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>end_repeat_nmi (1 samples, 0.07%)</title><rect x="1034.4" y="1585" width="0.9" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="1037.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>Lorg/glassfish/jersey/server/internal/MappableExceptionWrapperInterceptor:::aroundWriteTo (3 samples, 0.21%)</title><rect x="410.5" y="897" width="2.5" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text text-anchor="" x="413.50" 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_readv_writev (2 samples, 0.14%)</title><rect x="1126.3" y="753" width="1.6" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="1129.28" 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.07%)</title><rect x="762.2" y="1665" width="0.8" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="765.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>Lorg/glassfish/jersey/server/model/ResourceMethodInvoker:::apply (29 samples, 2.03%)</title><rect x="429.5" y="961" width="24.0" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="432.54" 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/servlet/ServletContainer:::service (100 samples, 7.01%)</title><rect x="798.6" y="1201" width="82.7" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="801.60" y="1211.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>Lio/dropwizard/jetty/NonblockingServletHolder:::handle (129 samples, 9.05%)</title><rect x="1069.2" y="1217" width="106.7" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text text-anchor="" x="1072.19" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lio/dropwizar..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sk_stream_alloc_skb (1 samples, 0.07%)</title><rect x="523.0" y="1649" width="0.9" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="526.04" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/Request:::getHeader (1 samples, 0.07%)</title><rect x="1063.4" y="1457" width="0.8" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="1066.39" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/ServerRuntime:::process (131 samples, 9.19%)</title><rect x="600.0" y="1105" width="108.4" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="603.00" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/glassfis..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.07%)</title><rect x="215.2" y="1761" width="0.8" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="218.22" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::valueOf (1 samples, 0.07%)</title><rect x="1086.6" y="1025" width="0.8" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="1089.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>do_iter_readv_writev (1 samples, 0.07%)</title><rect x="1031.9" y="1713" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="1034.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>[unknown] (1 samples, 0.07%)</title><rect x="897.1" y="1825" width="0.8" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text text-anchor="" x="900.07" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_writev (3 samples, 0.21%)</title><rect x="340.2" y="1793" width="2.5" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="343.17" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.07%)</title><rect x="1125.5" y="801" width="0.8" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="1128.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>tcp_in_window (2 samples, 0.14%)</title><rect x="341.0" y="1473" width="1.7" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="344.00" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (1 samples, 0.07%)</title><rect x="332.7" y="1505" width="0.8" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="335.72" 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/HttpHeaderReaderImpl:::process (2 samples, 0.14%)</title><rect x="710.9" y="1009" width="1.6" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text text-anchor="" x="713.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>Lorg/eclipse/jetty/servlet/ServletHandler:::doHandle (188 samples, 13.18%)</title><rect x="566.1" y="1329" width="155.5" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text text-anchor="" x="569.07" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/jetty/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/databind/type/TypeBindings:::isEmpty (1 samples, 0.07%)</title><rect x="671.2" y="625" width="0.8" height="15.0" fill="rgb(106,217,217)" rx="2" ry="2" />
<text text-anchor="" x="674.16" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_packet (1 samples, 0.07%)</title><rect x="465.9" y="753" width="0.9" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="468.95" 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>Ljavax/ws/rs/core/AbstractMultivaluedMap:::get (1 samples, 0.07%)</title><rect x="398.1" y="769" width="0.8" height="15.0" fill="rgb(105,216,216)" rx="2" ry="2" />
<text text-anchor="" x="401.09" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (2 samples, 0.14%)</title><rect x="720.0" y="1137" width="1.6" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="722.99" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/ReentrantReadWriteLock$ReadLock:::unlock (1 samples, 0.07%)</title><rect x="1166.0" y="801" width="0.8" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text text-anchor="" x="1169.00" 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>nmi_handle (1 samples, 0.07%)</title><rect x="321.1" y="1393" width="0.9" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="324.14" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/LinkedList:::add (1 samples, 0.07%)</title><rect x="399.7" y="721" width="0.9" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="402.75" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:::getState (1 samples, 0.07%)</title><rect x="1166.0" y="753" width="0.8" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="1169.00" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/codahale/metrics/Histogram:::update (1 samples, 0.07%)</title><rect x="364.2" y="1377" width="0.8" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="367.17" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (2 samples, 0.14%)</title><rect x="1034.4" y="1761" width="1.7" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="1037.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>Lorg/eclipse/jetty/server/handler/HandlerWrapper:::handle (146 samples, 10.24%)</title><rect x="364.2" y="1521" width="120.8" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="367.17" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/je..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_readv_writev (1 samples, 0.07%)</title><rect x="1032.8" y="1761" width="0.8" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="1035.78" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (7 samples, 0.49%)</title><rect x="28.2" y="1729" width="5.8" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="31.20" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.07%)</title><rect x="640.5" y="433" width="0.9" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="643.55" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/codahale/metrics/ExponentiallyDecayingReservoir:::update (1 samples, 0.07%)</title><rect x="1065.9" y="1329" width="0.8" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text text-anchor="" x="1068.88" 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/hibernate/validator/internal/metadata/raw/ExecutableElement$MethodElement:::&lt;init&gt; (2 samples, 0.14%)</title><rect x="434.5" y="833" width="1.7" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text text-anchor="" x="437.50" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_start (124 samples, 8.70%)</title><rect x="228.5" y="1841" width="102.6" height="15.0" fill="rgb(250,124,124)" rx="2" ry="2" />
<text text-anchor="" x="231.46" y="1851.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>Lorg/glassfish/jersey/server/internal/routing/MethodSelectingRouter:::apply (8 samples, 0.56%)</title><rect x="616.5" y="881" width="6.7" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text text-anchor="" x="619.55" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.28%)</title><rect x="115.9" y="1825" width="3.3" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text text-anchor="" x="118.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>start_thread (1 samples, 0.07%)</title><rect x="761.4" y="1857" width="0.8" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text text-anchor="" x="764.36" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.07%)</title><rect x="204.5" y="1681" width="0.8" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="207.46" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/model/internal/AbstractJavaResourceMethodDispatcher:::invoke (5 samples, 0.35%)</title><rect x="991.4" y="897" width="4.1" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="994.40" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/Request:::getRemoteAddr (2 samples, 0.14%)</title><rect x="358.4" y="1393" width="1.6" height="15.0" fill="rgb(78,191,191)" rx="2" ry="2" />
<text text-anchor="" x="361.37" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/hibernate/validator/internal/util/CollectionHelper:::newHashSet (1 samples, 0.07%)</title><rect x="660.4" y="785" width="0.8" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="663.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>intel_pmu_enable_all (3 samples, 0.21%)</title><rect x="192.0" y="1617" width="2.5" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="195.05" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (4 samples, 0.28%)</title><rect x="285.6" y="1489" width="3.3" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="288.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>futex_wait_queue_me (2 samples, 0.14%)</title><rect x="217.7" y="1745" width="1.7" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="220.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_finish_output2 (1 samples, 0.07%)</title><rect x="1008.0" y="721" width="0.8" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="1010.95" 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/io/FillInterest:::fillable (160 samples, 11.22%)</title><rect x="1054.3" y="1601" width="132.4" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text text-anchor="" x="1057.29" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/jet..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_readv_writev (1 samples, 0.07%)</title><rect x="331.9" y="1729" width="0.8" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="334.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>do_futex (8 samples, 0.56%)</title><rect x="317.0" y="1633" width="6.6" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="320.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/eclipse/jetty/server/handler/StatisticsHandler:::handle (191 samples, 13.39%)</title><rect x="564.4" y="1505" width="158.1" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="567.42" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/jetty/s..</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.21%)</title><rect x="984.8" y="913" width="2.5" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="987.78" 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 (1 samples, 0.07%)</title><rect x="758.1" y="1553" width="0.8" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="761.05" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>autoremove_wake_function (1 samples, 0.07%)</title><rect x="293.0" y="1489" width="0.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="296.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/eclipse/jetty/server/HttpChannel:::handle (119 samples, 8.35%)</title><rect x="784.5" y="1553" width="98.5" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text text-anchor="" x="787.53" y="1563.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>x86_pmu_enable (7 samples, 0.49%)</title><rect x="28.2" y="1633" width="5.8" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="31.20" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/inject/ReferenceTransformingFactory:::provide (3 samples, 0.21%)</title><rect x="1150.3" y="673" width="2.5" height="15.0" fill="rgb(66,179,179)" rx="2" ry="2" />
<text text-anchor="" x="1153.28" 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/HashMap:::get (1 samples, 0.07%)</title><rect x="552.8" y="1505" width="0.9" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text text-anchor="" x="555.83" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap:::put (1 samples, 0.07%)</title><rect x="896.2" y="1841" width="0.9" height="15.0" fill="rgb(78,190,190)" rx="2" ry="2" />
<text text-anchor="" x="899.24" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/FactoryCreator:::getFactoryHandle (1 samples, 0.07%)</title><rect x="448.6" y="705" width="0.8" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="451.57" 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/StringBuffer:::append (1 samples, 0.07%)</title><rect x="384.9" y="1137" width="0.8" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="387.85" 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/AbstractStringBuilder:::append (1 samples, 0.07%)</title><rect x="435.3" y="753" width="0.9" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="438.33" 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>PredictedCallGenerator::generate (1 samples, 0.07%)</title><rect x="144.1" y="1249" width="0.8" height="15.0" fill="rgb(188,188,54)" rx="2" ry="2" />
<text text-anchor="" x="147.05" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/io/FillInterest:::fillable (131 samples, 9.19%)</title><rect x="784.5" y="1601" width="108.4" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text text-anchor="" x="787.53" 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>tcp_write_xmit (1 samples, 0.07%)</title><rect x="778.7" y="1649" width="0.9" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="781.74" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (1 samples, 0.07%)</title><rect x="1022.8" y="961" width="0.9" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="1025.85" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.07%)</title><rect x="640.5" y="401" width="0.9" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="643.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>Lorg/eclipse/jetty/http/MetaData:::getContentLength (1 samples, 0.07%)</title><rect x="638.9" y="641" width="0.8" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text text-anchor="" x="641.89" 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_task_sched_in (2 samples, 0.14%)</title><rect x="515.6" y="1697" width="1.7" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="518.60" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>WatcherThread::run (7 samples, 0.49%)</title><rect x="186.3" y="1825" width="5.7" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="189.26" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>OverflowTaskQueue&lt;StarTask, (1 samples, 0.07%)</title><rect x="60.5" y="1729" width="0.8" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text text-anchor="" x="63.48" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (2 samples, 0.14%)</title><rect x="342.7" y="1745" width="1.6" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="345.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/util/ConcurrentArrayQueue:::offer (1 samples, 0.07%)</title><rect x="1001.3" y="449" width="0.9" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="1004.33" 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>vfs_write (1 samples, 0.07%)</title><rect x="288.0" y="1457" width="0.9" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="291.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/FactoryCreator:::dispose (2 samples, 0.14%)</title><rect x="1010.4" y="1025" width="1.7" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="1013.43" 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/regex/Matcher:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="592.6" y="977" width="0.8" height="15.0" fill="rgb(104,214,214)" rx="2" ry="2" />
<text text-anchor="" x="595.55" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="121.7" y="1457" width="0.8" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="124.71" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (1 samples, 0.07%)</title><rect x="916.9" y="1361" width="0.9" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="919.93" 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/servlet/ServletHandler$CachedChain:::doFilter (102 samples, 7.15%)</title><rect x="797.8" y="1313" width="84.4" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text text-anchor="" x="800.77" y="1323.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>__do_softirq (7 samples, 0.49%)</title><rect x="527.2" y="1473" width="5.8" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="530.18" 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/Arrays:::copyOfRange (1 samples, 0.07%)</title><rect x="262.4" y="1521" width="0.8" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="265.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>do_softirq.part.19 (1 samples, 0.07%)</title><rect x="1123.0" y="225" width="0.8" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="1125.97" 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>Lcom/codahale/metrics/jersey2/InstrumentedResourceMethodApplicationListener$ChainedRequestEventListener:::onEvent (2 samples, 0.14%)</title><rect x="430.4" y="897" width="1.6" height="15.0" fill="rgb(102,212,212)" rx="2" ry="2" />
<text text-anchor="" x="433.36" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CodeCache::find_blob (2 samples, 0.14%)</title><rect x="1075.8" y="865" width="1.7" height="15.0" fill="rgb(215,215,64)" rx="2" ry="2" />
<text text-anchor="" x="1078.81" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/PerLookupContext:::findOrCreate (4 samples, 0.28%)</title><rect x="449.4" y="657" width="3.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="452.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>Lorg/glassfish/jersey/message/internal/CommittingOutputStream:::close (6 samples, 0.42%)</title><rect x="828.4" y="897" width="5.0" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="831.39" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.07%)</title><rect x="77.9" y="1729" width="0.8" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="80.85" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fput (1 samples, 0.07%)</title><rect x="509.8" y="1761" width="0.8" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="512.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>activate_task (1 samples, 0.07%)</title><rect x="1008.0" y="385" width="0.8" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="1010.95" 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/glassfish/jersey/message/internal/OutboundMessageContext:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="657.9" y="817" width="0.9" height="15.0" fill="rgb(55,169,169)" rx="2" ry="2" />
<text text-anchor="" x="660.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>schedule_hrtimeout_range (2 samples, 0.14%)</title><rect x="897.9" y="1761" width="1.7" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="900.90" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_local_out (1 samples, 0.07%)</title><rect x="346.0" y="1585" width="0.8" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="348.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>perf_pmu_enable.part.89 (2 samples, 0.14%)</title><rect x="352.6" y="1329" width="1.6" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="355.58" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/handler/HandlerWrapper:::handle (106 samples, 7.43%)</title><rect x="795.3" y="1521" width="87.7" height="15.0" fill="rgb(57,172,172)" rx="2" ry="2" />
<text text-anchor="" x="798.29" y="1531.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/eclipse/jetty/util/thread/strategy/ExecuteProduceConsume:::run (140 samples, 9.82%)</title><rect x="780.4" y="1665" width="115.8" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="783.39" 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>tcp_write_xmit (1 samples, 0.07%)</title><rect x="839.1" y="769" width="0.9" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="842.14" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (1 samples, 0.07%)</title><rect x="917.8" y="1425" width="0.8" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="920.76" 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>[libc-2.23.so] (4 samples, 0.28%)</title><rect x="892.9" y="1633" width="3.3" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text text-anchor="" x="895.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>Lio/dropwizard/jersey/filter/AllowedMethodsFilter:::handle (102 samples, 7.15%)</title><rect x="797.8" y="1281" width="84.4" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="800.77" y="1291.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>Lcom/codahale/metrics/jetty9/InstrumentedHandler:::updateResponses (1 samples, 0.07%)</title><rect x="1065.9" y="1409" width="0.8" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="1068.88" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (2 samples, 0.14%)</title><rect x="1034.4" y="1777" width="1.7" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="1037.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>Lorg/glassfish/jersey/internal/Errors$1:::call (62 samples, 4.35%)</title><rect x="958.3" y="1025" width="51.3" height="15.0" fill="rgb(56,171,171)" rx="2" ry="2" />
<text text-anchor="" x="961.30" 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>perf_event_context_sched_in (1 samples, 0.07%)</title><rect x="920.2" y="1441" width="0.9" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="923.24" 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>intel_pmu_enable_all (1 samples, 0.07%)</title><rect x="134.1" y="1633" width="0.9" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="137.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>Ljava/util/concurrent/ConcurrentHashMap:::put (1 samples, 0.07%)</title><rect x="1012.9" y="993" width="0.8" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="1015.92" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.07%)</title><rect x="454.4" y="897" width="0.8" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="457.36" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (1 samples, 0.07%)</title><rect x="868.9" y="1009" width="0.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="871.93" 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>Lio/dropwizard/jetty/RoutingHandler:::handle (140 samples, 9.82%)</title><rect x="364.2" y="1441" width="115.8" height="15.0" fill="rgb(101,211,211)" rx="2" ry="2" />
<text text-anchor="" x="367.17" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lio/dropwizard..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (1 samples, 0.07%)</title><rect x="1022.8" y="817" width="0.9" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="1025.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>ip_local_out (1 samples, 0.07%)</title><rect x="657.1" y="705" width="0.8" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="660.10" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::thread_main_inner (5 samples, 0.35%)</title><rect x="120.1" y="1809" width="4.1" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="123.06" 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 (4 samples, 0.28%)</title><rect x="828.4" y="817" width="3.3" height="15.0" fill="rgb(102,247,102)" rx="2" ry="2" />
<text text-anchor="" x="831.39" 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 (140 samples, 9.82%)</title><rect x="780.4" y="1761" width="115.8" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="783.39" 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>Lorg/glassfish/jersey/internal/Errors:::process (62 samples, 4.35%)</title><rect x="958.3" y="1041" width="51.3" height="15.0" fill="rgb(54,203,54)" rx="2" ry="2" />
<text text-anchor="" x="961.30" y="1051.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.07%)</title><rect x="522.2" y="1793" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="525.22" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (1 samples, 0.07%)</title><rect x="892.9" y="1441" width="0.9" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="895.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>Lsun/nio/ch/IOUtil:::write (2 samples, 0.14%)</title><rect x="830.0" y="593" width="1.7" height="15.0" fill="rgb(90,236,90)" rx="2" ry="2" />
<text text-anchor="" x="833.04" 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>end_repeat_nmi (1 samples, 0.07%)</title><rect x="332.7" y="1521" width="0.8" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="335.72" 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>Ljavax/ws/rs/core/AbstractMultivaluedMap:::add (1 samples, 0.07%)</title><rect x="1016.2" y="1073" width="0.9" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="1019.23" 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>__alloc_skb (1 samples, 0.07%)</title><rect x="523.0" y="1633" width="0.9" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="526.04" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CallGenerator::for_inline (1 samples, 0.07%)</title><rect x="153.2" y="1729" width="0.8" height="15.0" fill="rgb(175,175,50)" rx="2" ry="2" />
<text text-anchor="" x="156.16" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_q (1 samples, 0.07%)</title><rect x="779.6" y="1761" width="0.8" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="782.57" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::subSequence (1 samples, 0.07%)</title><rect x="620.7" y="609" width="0.8" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="623.69" 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 (3 samples, 0.21%)</title><rect x="902.0" y="1649" width="2.5" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="905.03" 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:::singleHeader (1 samples, 0.07%)</title><rect x="1174.3" y="1073" width="0.8" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1177.28" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/ReentrantLock$FairSync:::lock (1 samples, 0.07%)</title><rect x="292.2" y="1617" width="0.8" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="295.17" 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.07%)</title><rect x="451.9" y="561" width="0.8" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="454.88" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections$UnmodifiableCollection:::size (1 samples, 0.07%)</title><rect x="1150.3" y="641" width="0.8" height="15.0" fill="rgb(80,193,193)" rx="2" ry="2" />
<text text-anchor="" x="1153.28" 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>x86_pmu_enable (2 samples, 0.14%)</title><rect x="733.2" y="1649" width="1.7" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="736.23" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_writev (3 samples, 0.21%)</title><rect x="777.1" y="1809" width="2.5" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="780.08" 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>enqueue_entity (1 samples, 0.07%)</title><rect x="772.1" y="1649" width="0.8" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="775.12" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/CommonProperties:::getValue (5 samples, 0.35%)</title><rect x="651.3" y="897" width="4.1" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="654.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>pthread_cond_timedwait@@GLIBC_2.3.2 (1 samples, 0.07%)</title><rect x="181.3" y="1729" width="0.8" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text text-anchor="" x="184.29" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/ReentrantReadWriteLock$Sync:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="864.8" y="449" width="0.8" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="867.80" 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>native_write_msr_safe (2 samples, 0.14%)</title><rect x="769.6" y="1537" width="1.7" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="772.64" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (1 samples, 0.07%)</title><rect x="1172.6" y="993" width="0.9" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="1175.62" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Type::cmp (1 samples, 0.07%)</title><rect x="165.6" y="1697" width="0.8" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text text-anchor="" x="168.57" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (2 samples, 0.14%)</title><rect x="285.6" y="1425" width="1.6" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="288.55" 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:::charAt (1 samples, 0.07%)</title><rect x="984.0" y="753" width="0.8" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="986.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/glassfish/jersey/server/model/ResourceMethodInvoker$3:::apply (1 samples, 0.07%)</title><rect x="1105.6" y="897" width="0.8" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="1108.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>java-?/7655 (5 samples, 0.35%)</title><rect x="753.9" y="1873" width="4.2" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text text-anchor="" x="756.91" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (3 samples, 0.21%)</title><rect x="192.0" y="1633" width="2.5" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="195.05" 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/ExponentiallyDecayingReservoir:::update (2 samples, 0.14%)</title><rect x="1064.2" y="1345" width="1.7" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text text-anchor="" x="1067.22" 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>entry_SYSCALL_64_fastpath (2 samples, 0.14%)</title><rect x="768.0" y="1537" width="1.6" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="770.98" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/ReentrantReadWriteLock$Sync:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="689.4" y="449" width="0.8" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="692.37" 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>__local_bh_enable_ip (1 samples, 0.07%)</title><rect x="1050.2" y="1537" width="0.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="1053.15" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (1 samples, 0.07%)</title><rect x="647.2" y="529" width="0.8" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="650.17" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceHandleImpl:::addSubHandle (1 samples, 0.07%)</title><rect x="461.8" y="849" width="0.8" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="464.81" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.28%)</title><rect x="48.9" y="1777" width="3.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text text-anchor="" x="51.89" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::getEntry (1 samples, 0.07%)</title><rect x="656.3" y="833" width="0.8" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="659.27" 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>smp_apic_timer_interrupt (1 samples, 0.07%)</title><rect x="250.0" y="1361" width="0.8" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="252.97" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GangWorker::loop (5 samples, 0.35%)</title><rect x="41.4" y="1825" width="4.2" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text text-anchor="" x="44.44" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap:::getNode (1 samples, 0.07%)</title><rect x="1116.4" y="817" width="0.8" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="1119.35" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (1 samples, 0.07%)</title><rect x="550.4" y="1633" width="0.8" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="553.35" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::getEntry (1 samples, 0.07%)</title><rect x="988.9" y="833" width="0.8" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="991.92" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpInputOverHTTP:::produceContent (4 samples, 0.28%)</title><rect x="676.1" y="513" width="3.3" height="15.0" fill="rgb(100,210,210)" rx="2" ry="2" />
<text text-anchor="" x="679.13" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/process/internal/RequestScope$Instance:::release (13 samples, 0.91%)</title><rect x="696.8" y="1073" width="10.8" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text text-anchor="" x="699.82" 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>__vfs_read (1 samples, 0.07%)</title><rect x="510.6" y="1729" width="0.9" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="513.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 (1 samples, 0.07%)</title><rect x="776.3" y="1809" width="0.8" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="779.26" 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:::internalGetDescriptor (1 samples, 0.07%)</title><rect x="680.3" y="593" width="0.8" height="15.0" fill="rgb(60,210,60)" rx="2" ry="2" />
<text text-anchor="" x="683.27" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lio/dropwizard/request/logging/async/AsyncAccessEventAppenderFactory$1:::preprocess (7 samples, 0.49%)</title><rect x="357.5" y="1441" width="5.8" height="15.0" fill="rgb(66,179,179)" rx="2" ry="2" />
<text text-anchor="" x="360.55" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/codahale/metrics/jersey2/InstrumentedResourceMethodApplicationListener$MeterRequestEventListener:::onEvent (1 samples, 0.07%)</title><rect x="1135.4" y="881" width="0.8" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text text-anchor="" x="1138.39" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_readv_writev (1 samples, 0.07%)</title><rect x="523.0" y="1745" width="0.9" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="526.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/HttpChannelOverHttp:::headerComplete (1 samples, 0.07%)</title><rect x="1180.9" y="1505" width="0.8" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text text-anchor="" x="1183.90" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/Response:::setContentLength (1 samples, 0.07%)</title><rect x="650.5" y="801" width="0.8" height="15.0" fill="rgb(83,196,196)" rx="2" ry="2" />
<text text-anchor="" x="653.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>__netif_receive_skb (7 samples, 0.49%)</title><rect x="527.2" y="1425" width="5.8" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="530.18" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:::apparentlyFirstQueuedIsExclusive (1 samples, 0.07%)</title><rect x="564.4" y="1249" width="0.8" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="567.42" 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>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.28%)</title><rect x="85.3" y="1793" width="3.3" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text text-anchor="" x="88.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>Lorg/glassfish/jersey/server/ContainerRequest:::setProperty (1 samples, 0.07%)</title><rect x="1012.9" y="1073" width="0.8" height="15.0" fill="rgb(92,203,203)" rx="2" ry="2" />
<text text-anchor="" x="1015.92" 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/internal/util/PropertiesHelper:::getValue (5 samples, 0.35%)</title><rect x="833.4" y="881" width="4.1" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text text-anchor="" x="836.35" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/ReentrantReadWriteLock$Sync:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="451.1" y="449" width="0.8" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="454.05" 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/concurrent/locks/AbstractQueuedSynchronizer:::acquireShared (1 samples, 0.07%)</title><rect x="1065.9" y="1281" width="0.8" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="1068.88" 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/internal/routing/RoutingStage:::apply (2 samples, 0.14%)</title><rect x="962.4" y="961" width="1.7" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text text-anchor="" x="965.44" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_do_nmi (1 samples, 0.07%)</title><rect x="182.9" y="1553" width="0.9" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="185.95" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (2 samples, 0.14%)</title><rect x="52.2" y="1793" width="1.7" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="55.20" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_readv_writev (1 samples, 0.07%)</title><rect x="1031.9" y="1729" width="0.9" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="1034.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>jshort_disjoint_arraycopy (1 samples, 0.07%)</title><rect x="587.6" y="881" width="0.8" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="590.59" 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 (163 samples, 11.43%)</title><rect x="1051.8" y="1777" width="134.9" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="1054.81" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaCalls::call_v..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (2 samples, 0.14%)</title><rect x="332.7" y="1729" width="1.7" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="335.72" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java-?/7642 (19 samples, 1.33%)</title><rect x="493.3" y="1873" width="15.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="496.25" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.28%)</title><rect x="157.3" y="1681" width="3.3" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="160.29" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/model/internal/AbstractJavaResourceMethodDispatcher:::dispatch (33 samples, 2.31%)</title><rect x="841.6" y="929" width="27.3" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="844.63" 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>schedule (2 samples, 0.14%)</title><rect x="897.9" y="1729" width="1.7" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="900.90" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.07%)</title><rect x="549.5" y="1713" width="0.9" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="552.52" 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/Throwable:::fillInStackTrace (10 samples, 0.70%)</title><rect x="1069.2" y="993" width="8.3" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="1072.19" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/util/log/JettyAwareLogger:::isDebugEnabled (1 samples, 0.07%)</title><rect x="636.4" y="705" width="0.8" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="639.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>entry_SYSCALL_64_fastpath (2 samples, 0.14%)</title><rect x="754.7" y="1697" width="1.7" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="757.74" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_writev (1 samples, 0.07%)</title><rect x="336.0" y="1745" width="0.9" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="339.03" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lch/qos/logback/access/spi/AccessEvent:::getRequestURL (1 samples, 0.07%)</title><rect x="562.8" y="1409" width="0.8" height="15.0" fill="rgb(82,230,82)" rx="2" ry="2" />
<text text-anchor="" x="565.76" 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_softirq_own_stack (1 samples, 0.07%)</title><rect x="657.1" y="609" width="0.8" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="660.10" 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>sock_write_iter (1 samples, 0.07%)</title><rect x="1031.1" y="1745" width="0.8" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="1034.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>Lio/dropwizard/jackson/FuzzyEnumModule$PermissiveEnumDeserializer:::deserialize (1 samples, 0.07%)</title><rect x="669.5" y="593" width="0.8" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="672.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>ClassLoaderDataGraph::roots_cld_do (2 samples, 0.14%)</title><rect x="25.7" y="1761" width="1.7" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" />
<text text-anchor="" x="28.72" 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.14%)</title><rect x="869.8" y="977" width="1.6" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="872.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>native_write_msr_safe (1 samples, 0.07%)</title><rect x="104.3" y="1601" width="0.9" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="107.33" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (3 samples, 0.21%)</title><rect x="154.0" y="1489" width="2.5" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="156.98" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="353.4" y="1265" width="0.8" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="356.41" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:::release (1 samples, 0.07%)</title><rect x="414.6" y="641" width="0.9" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text text-anchor="" x="417.64" 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/jvnet/hk2/internal/InstanceLifecycleEventImpl:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="452.7" y="721" width="0.8" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="455.71" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_writev (1 samples, 0.07%)</title><rect x="1123.8" y="561" width="0.8" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="1126.80" 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/handler/HandlerWrapper:::handle (138 samples, 9.68%)</title><rect x="365.8" y="1409" width="114.2" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="368.82" y="1419.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/server/HttpConnection:::onFillable (131 samples, 9.19%)</title><rect x="784.5" y="1569" width="108.4" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text text-anchor="" x="787.53" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/codahale/metrics/ExponentiallyDecayingReservoir:::update (2 samples, 0.14%)</title><rect x="1064.2" y="1361" width="1.7" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="1067.22" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="425.4" y="833" width="0.8" height="15.0" fill="rgb(63,176,176)" rx="2" ry="2" />
<text text-anchor="" x="428.40" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/AbstractStringBuilder:::ensureCapacityInternal (1 samples, 0.07%)</title><rect x="435.3" y="737" width="0.9" height="15.0" fill="rgb(67,180,180)" rx="2" ry="2" />
<text text-anchor="" x="438.33" 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/Request:::getParameterNames (4 samples, 0.28%)</title><rect x="931.0" y="1377" width="3.3" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="934.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>JavaThread::oops_do (4 samples, 0.28%)</title><rect x="45.6" y="1777" width="3.3" height="15.0" fill="rgb(212,212,63)" rx="2" ry="2" />
<text text-anchor="" x="48.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>__local_bh_enable_ip (1 samples, 0.07%)</title><rect x="525.5" y="1649" width="0.9" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="528.53" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.07%)</title><rect x="880.5" y="1057" width="0.8" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="883.52" 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>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="737.4" y="1777" width="0.8" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="740.36" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceHandleImpl:::getService (1 samples, 0.07%)</title><rect x="451.9" y="545" width="0.8" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text text-anchor="" x="454.88" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:::acquireShared (2 samples, 0.14%)</title><rect x="795.3" y="1281" width="1.6" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="798.29" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.07%)</title><rect x="761.4" y="1569" width="0.8" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text text-anchor="" x="764.36" 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/MediaType:::valueOf (2 samples, 0.14%)</title><rect x="619.9" y="737" width="1.6" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="622.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>Ljavax/ws/rs/core/AbstractMultivaluedMap:::get (1 samples, 0.07%)</title><rect x="426.2" y="881" width="0.9" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="429.23" 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/StringBuilder:::append (1 samples, 0.07%)</title><rect x="1079.1" y="993" width="0.8" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="1082.12" 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>__perf_event_task_sched_in (2 samples, 0.14%)</title><rect x="223.5" y="1665" width="1.6" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="226.49" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList:::toArray (1 samples, 0.07%)</title><rect x="1106.4" y="817" width="0.9" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text text-anchor="" x="1109.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>Ljava/lang/IllegalArgumentException:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="881.3" y="1217" width="0.9" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text text-anchor="" x="884.35" 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>Lorg/eclipse/jetty/util/AbstractTrie:::get (1 samples, 0.07%)</title><rect x="360.9" y="1313" width="0.8" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (1 samples, 0.07%)</title><rect x="837.5" y="785" width="0.8" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="840.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/lang/Throwable:::fillInStackTrace (16 samples, 1.12%)</title><rect x="940.9" y="993" width="13.3" height="15.0" fill="rgb(64,177,177)" rx="2" ry="2" />
<text text-anchor="" x="943.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>tcp_prequeue (1 samples, 0.07%)</title><rect x="882.2" y="865" width="0.8" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="885.17" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/ContainerFilteringStage$ResponseFilterStage:::apply (1 samples, 0.07%)</title><rect x="632.3" y="913" width="0.8" height="15.0" fill="rgb(66,179,179)" rx="2" ry="2" />
<text text-anchor="" x="635.27" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (3 samples, 0.21%)</title><rect x="340.2" y="1809" width="2.5" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="343.17" 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 (2 samples, 0.14%)</title><rect x="138.3" y="1633" width="1.6" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="141.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>tcp_sendmsg (1 samples, 0.07%)</title><rect x="346.0" y="1697" width="0.8" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="348.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>Ljersey/repackaged/com/google/common/collect/Iterables:::addAll (1 samples, 0.07%)</title><rect x="961.6" y="897" width="0.8" height="15.0" fill="rgb(90,236,90)" rx="2" ry="2" />
<text text-anchor="" x="964.61" 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/model/internal/JavaResourceMethodDispatcherProvider$TypeOutInvoker:::doDispatch (25 samples, 1.75%)</title><rect x="1136.2" y="913" width="20.7" height="15.0" fill="rgb(51,165,165)" rx="2" ry="2" />
<text text-anchor="" x="1139.21" 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/uri/internal/JerseyUriBuilder:::uri (23 samples, 1.61%)</title><rect x="1069.2" y="1137" width="19.0" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="1072.19" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/process/ReferencesInitializer:::apply (8 samples, 0.56%)</title><rect x="1089.9" y="945" width="6.6" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text text-anchor="" x="1092.87" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/ConcurrentHashMap$TreeNode:::findTreeNode (2 samples, 0.14%)</title><rect x="705.9" y="833" width="1.7" height="15.0" fill="rgb(83,231,83)" rx="2" ry="2" />
<text text-anchor="" x="708.92" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (15 samples, 1.05%)</title><rect x="496.6" y="1665" width="12.4" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text text-anchor="" x="499.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>Lorg/jvnet/hk2/internal/FactoryCreator:::dispose (6 samples, 0.42%)</title><rect x="871.4" y="1025" width="5.0" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="874.42" 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/ReentrantLock:::unlock (1 samples, 0.07%)</title><rect x="414.6" y="657" width="0.9" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="417.64" 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>activate_task (1 samples, 0.07%)</title><rect x="914.4" y="1697" width="0.9" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="917.45" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.14%)</title><rect x="758.1" y="1681" width="1.6" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="761.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>vtable stub (5 samples, 0.35%)</title><rect x="294.7" y="1633" width="4.1" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text text-anchor="" x="297.66" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/servlet/ServletHandler:::doHandle (133 samples, 9.33%)</title><rect x="1067.5" y="1329" width="110.1" height="15.0" fill="rgb(82,230,82)" rx="2" ry="2" />
<text text-anchor="" x="1070.53" y="1339.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_futex (1 samples, 0.07%)</title><rect x="1033.6" y="1713" width="0.8" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="1036.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>futex_wait_queue_me (1 samples, 0.07%)</title><rect x="493.3" y="1761" width="0.8" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="496.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>Ljavax/ws/rs/core/MediaType:::hashCode (1 samples, 0.07%)</title><rect x="1110.6" y="753" width="0.8" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="1113.56" 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/Class:::getName (1 samples, 0.07%)</title><rect x="389.0" y="833" width="0.8" height="15.0" fill="rgb(55,169,169)" rx="2" ry="2" />
<text text-anchor="" x="391.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>pthread_cond_wait@@GLIBC_2.3.2 (12 samples, 0.84%)</title><rect x="15.0" y="1777" width="9.9" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text text-anchor="" x="17.96" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (1 samples, 0.07%)</title><rect x="988.9" y="785" width="0.8" height="15.0" fill="rgb(102,212,212)" rx="2" ry="2" />
<text text-anchor="" x="991.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>__perf_event_task_sched_in (1 samples, 0.07%)</title><rect x="892.9" y="1489" width="0.9" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="895.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>schedule_hrtimeout_range_clock (2 samples, 0.14%)</title><rect x="352.6" y="1425" width="1.6" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="355.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>x86_pmu_enable (1 samples, 0.07%)</title><rect x="134.1" y="1649" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="137.12" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/AbstractStringBuilder:::ensureCapacityInternal (1 samples, 0.07%)</title><rect x="470.9" y="1041" width="0.8" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="473.91" 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>ip_output (1 samples, 0.07%)</title><rect x="979.0" y="305" width="0.8" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="981.99" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (1 samples, 0.07%)</title><rect x="331.1" y="1649" width="0.8" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="334.07" 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/HashMap:::getNode (1 samples, 0.07%)</title><rect x="1011.3" y="769" width="0.8" height="15.0" fill="rgb(59,174,174)" rx="2" ry="2" />
<text text-anchor="" x="1014.26" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lch/qos/logback/access/spi/AccessEvent:::getRequestURL (1 samples, 0.07%)</title><rect x="256.6" y="1537" width="0.8" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text text-anchor="" x="259.59" 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>inet_sendmsg (1 samples, 0.07%)</title><rect x="657.1" y="817" width="0.8" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="660.10" 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>Lch/qos/logback/core/UnsynchronizedAppenderBase:::doAppend (7 samples, 0.49%)</title><rect x="1055.1" y="1489" width="5.8" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="1058.12" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/io/WriteFlusher:::flush (6 samples, 0.42%)</title><rect x="974.9" y="641" width="4.9" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="977.85" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (1 samples, 0.07%)</title><rect x="331.1" y="1393" width="0.8" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="334.07" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.14%)</title><rect x="338.5" y="1809" width="1.7" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="341.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>perf_sample_event_took (1 samples, 0.07%)</title><rect x="499.9" y="1249" width="0.8" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="502.87" 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/IterableProviderImpl:::justInTime (1 samples, 0.07%)</title><rect x="680.3" y="641" width="0.8" height="15.0" fill="rgb(54,168,168)" rx="2" ry="2" />
<text text-anchor="" x="683.27" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (1 samples, 0.07%)</title><rect x="880.5" y="881" width="0.8" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="883.52" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (1 samples, 0.07%)</title><rect x="546.2" y="1617" width="0.8" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="549.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>vfs_writev (1 samples, 0.07%)</title><rect x="454.4" y="961" width="0.8" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="457.36" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ConcurrentG1RefineThread::~ConcurrentG1RefineThread (4 samples, 0.28%)</title><rect x="82.0" y="1841" width="3.3" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text text-anchor="" x="84.99" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (124 samples, 8.70%)</title><rect x="228.5" y="1777" width="102.6" height="15.0" fill="rgb(188,188,54)" rx="2" ry="2" />
<text text-anchor="" x="231.46" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaCalls::c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (2 samples, 0.14%)</title><rect x="188.7" y="1633" width="1.7" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="191.74" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/nio/charset/CharsetEncoder:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="1120.5" y="529" width="0.8" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="1123.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>JavaThread::run (5 samples, 0.35%)</title><rect x="120.1" y="1825" width="4.1" height="15.0" fill="rgb(191,191,55)" rx="2" ry="2" />
<text text-anchor="" x="123.06" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/InboundMessageContext:::getMediaType (2 samples, 0.14%)</title><rect x="619.9" y="801" width="1.6" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="622.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/eclipse/jetty/http/HttpFields:::iterator (1 samples, 0.07%)</title><rect x="1171.8" y="1041" width="0.8" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="1174.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>Lcom/codahale/metrics/Histogram:::update (1 samples, 0.07%)</title><rect x="1065.9" y="1361" width="0.8" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="1068.88" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.07%)</title><rect x="1123.8" y="465" width="0.8" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="1126.80" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_start (220 samples, 15.43%)</title><rect x="551.2" y="1841" width="182.0" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text text-anchor="" x="554.18" y="1851.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>Lorg/eclipse/jetty/io/WriteFlusher:::write (6 samples, 0.42%)</title><rect x="974.9" y="657" width="4.9" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="977.85" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_blocked_averages (1 samples, 0.07%)</title><rect x="293.8" y="1425" width="0.9" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="296.83" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_writev (5 samples, 0.35%)</title><rect x="910.3" y="1777" width="4.1" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="913.31" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (2 samples, 0.14%)</title><rect x="10.0" y="1617" width="1.7" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (1 samples, 0.07%)</title><rect x="989.7" y="657" width="0.9" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="992.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>Lorg/glassfish/jersey/server/ContainerFilteringStage$ResponseFilterStage:::apply (2 samples, 0.14%)</title><rect x="826.7" y="929" width="1.7" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="829.73" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.07%)</title><rect x="914.4" y="1777" width="0.9" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="917.45" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap:::get (1 samples, 0.07%)</title><rect x="1011.3" y="785" width="0.8" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="1014.26" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/Request:::getContentType (1 samples, 0.07%)</title><rect x="561.9" y="1329" width="0.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="564.94" 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/ClazzCreator:::resolve (1 samples, 0.07%)</title><rect x="449.4" y="609" width="0.8" height="15.0" fill="rgb(101,246,101)" rx="2" ry="2" />
<text text-anchor="" x="452.40" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (1 samples, 0.07%)</title><rect x="422.1" y="609" width="0.8" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="425.09" 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/ReaderInterceptorExecutor$TerminalReaderInterceptor:::invokeReadFrom (7 samples, 0.49%)</title><rect x="850.7" y="721" width="5.8" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="853.73" 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>ObjectMonitor::enter (15 samples, 1.05%)</title><rect x="496.6" y="1601" width="12.4" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="499.56" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/LinkedList:::linkLast (1 samples, 0.07%)</title><rect x="461.8" y="817" width="0.8" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="464.81" 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>__intel_pmu_enable_all (4 samples, 0.28%)</title><rect x="109.3" y="1569" width="3.3" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="112.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>native_write_msr_safe (4 samples, 0.28%)</title><rect x="750.6" y="1569" width="3.3" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="753.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>Ljava/util/concurrent/atomic/AtomicReferenceArray:::getRaw (1 samples, 0.07%)</title><rect x="1142.0" y="401" width="0.8" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="1145.01" 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/io/ByteBufferPool$Bucket:::release (1 samples, 0.07%)</title><rect x="1001.3" y="465" width="0.9" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text text-anchor="" x="1004.33" 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>finish_task_switch (2 samples, 0.14%)</title><rect x="743.2" y="1441" width="1.6" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="746.16" 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>Lsun/nio/ch/SelectorImpl:::select (6 samples, 0.42%)</title><rect x="351.8" y="1585" width="4.9" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text text-anchor="" x="354.75" 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>end_repeat_nmi (1 samples, 0.07%)</title><rect x="515.6" y="1601" width="0.8" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="518.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>Lorg/glassfish/jersey/server/ServerRuntime$Responder$1:::getOutputStream (2 samples, 0.14%)</title><rect x="1128.8" y="833" width="1.6" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="1131.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/server/ContainerFilteringStage:::apply (1 samples, 0.07%)</title><rect x="614.1" y="945" width="0.8" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text text-anchor="" x="617.07" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::keyComparatorHash (1 samples, 0.07%)</title><rect x="398.1" y="705" width="0.8" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="401.09" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpConnection:::fillAndParseForContent (4 samples, 0.28%)</title><rect x="676.1" y="497" width="3.3" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="679.13" 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>futex_wait_queue_me (2 samples, 0.14%)</title><rect x="747.3" y="1505" width="1.6" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="750.29" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (1 samples, 0.07%)</title><rect x="762.2" y="1617" width="0.8" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="765.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>sys_writev (1 samples, 0.07%)</title><rect x="657.1" y="913" width="0.8" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="660.10" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpChannel:::sendResponse (10 samples, 0.70%)</title><rect x="1117.2" y="753" width="8.3" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="1120.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>native_write_msr_safe (2 samples, 0.14%)</title><rect x="154.8" y="1457" width="1.7" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="157.81" 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:::uri (23 samples, 1.61%)</title><rect x="1069.2" y="1153" width="19.0" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="1072.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>native_apic_mem_write (1 samples, 0.07%)</title><rect x="290.5" y="1601" width="0.8" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="293.52" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_conntrack_in (1 samples, 0.07%)</title><rect x="912.0" y="1505" width="0.8" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="914.96" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/io/AbstractEndPoint:::write (6 samples, 0.42%)</title><rect x="974.9" y="673" width="4.9" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="977.85" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (4 samples, 0.28%)</title><rect x="1042.7" y="1601" width="3.3" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="1045.71" 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.07%)</title><rect x="696.0" y="1009" width="0.8" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="698.99" 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>itable stub (3 samples, 0.21%)</title><rect x="401.4" y="929" width="2.5" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text text-anchor="" x="404.40" 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.07%)</title><rect x="493.3" y="1697" width="0.8" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="496.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>Lorg/eclipse/jetty/http/HttpParser:::parsedHeader (1 samples, 0.07%)</title><rect x="488.3" y="1505" width="0.8" height="15.0" fill="rgb(102,247,102)" rx="2" ry="2" />
<text text-anchor="" x="491.29" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="134.1" y="1825" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="137.12" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (1 samples, 0.07%)</title><rect x="522.2" y="1569" width="0.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="525.22" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/TreeMap$Entry:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="789.5" y="1361" width="0.8" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="792.50" 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>ip_local_out (1 samples, 0.07%)</title><rect x="882.2" y="1137" width="0.8" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="885.17" 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>__GI___libc_open (1 samples, 0.07%)</title><rect x="736.5" y="1793" width="0.9" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text text-anchor="" x="739.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>native_write_msr_safe (1 samples, 0.07%)</title><rect x="1189.2" y="1681" width="0.8" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="1192.17" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.14%)</title><rect x="332.7" y="1665" width="1.7" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="335.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>CollectedHeap::accumulate_statistics_all_tlabs (4 samples, 0.28%)</title><rect x="45.6" y="1841" width="3.3" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text text-anchor="" x="48.58" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/WriterInterceptorExecutor$TerminalWriterInterceptor:::invokeWriteTo (1 samples, 0.07%)</title><rect x="412.2" y="817" width="0.8" height="15.0" fill="rgb(67,180,180)" rx="2" ry="2" />
<text text-anchor="" x="415.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>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::keyComparatorHash (1 samples, 0.07%)</title><rect x="1173.5" y="1009" width="0.8" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="1176.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>Ljava/net/URI$Parser:::scan (2 samples, 0.14%)</title><rect x="474.2" y="1057" width="1.7" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="477.22" 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/core/json/UTF8StreamJsonParser:::_nextTokenNotInObject (1 samples, 0.07%)</title><rect x="666.2" y="657" width="0.8" height="15.0" fill="rgb(92,204,204)" rx="2" ry="2" />
<text text-anchor="" x="669.20" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.14%)</title><rect x="342.7" y="1713" width="1.6" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="345.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>Ljava/util/concurrent/ArrayBlockingQueue:::enqueue (1 samples, 0.07%)</title><rect x="556.1" y="1425" width="0.9" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="559.14" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (16 samples, 1.12%)</title><rect x="28.2" y="1841" width="13.2" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text text-anchor="" x="31.20" 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/process/internal/RequestScope:::findOrCreate (2 samples, 0.14%)</title><rect x="816.0" y="849" width="1.6" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="818.97" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_iter_readv_writev (1 samples, 0.07%)</title><rect x="1175.1" y="1089" width="0.8" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="1178.11" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_queue_xmit (1 samples, 0.07%)</title><rect x="479.2" y="929" width="0.8" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="482.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>__netif_receive_skb_core (1 samples, 0.07%)</title><rect x="1032.8" y="1409" width="0.8" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="1035.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>vfs_write (1 samples, 0.07%)</title><rect x="269.0" y="1425" width="0.8" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="272.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>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="465.9" y="1073" width="0.9" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="468.95" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_irq_return_iret (1 samples, 0.07%)</title><rect x="67.9" y="1601" width="0.9" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="70.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>Lsun/nio/ch/SocketAdaptor:::isInputShutdown (1 samples, 0.07%)</title><rect x="727.4" y="1521" width="0.9" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="730.43" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::is_Java_thread (1 samples, 0.07%)</title><rect x="370.0" y="913" width="0.8" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="372.96" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (2 samples, 0.14%)</title><rect x="146.5" y="1633" width="1.7" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="149.54" 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.14%)</title><rect x="148.2" y="1809" width="1.6" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="151.19" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ObjectMonitor::enter (15 samples, 1.05%)</title><rect x="741.5" y="1601" width="12.4" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="744.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>do_iter_readv_writev (10 samples, 0.70%)</title><rect x="524.7" y="1745" width="8.3" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="527.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>Lorg/eclipse/jetty/server/HttpChannel:::onCompleted (8 samples, 0.56%)</title><rect x="1054.3" y="1537" width="6.6" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="1057.29" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (1 samples, 0.07%)</title><rect x="338.5" y="1697" width="0.8" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="341.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/jvnet/hk2/internal/Utilities:::createService (2 samples, 0.14%)</title><rect x="1010.4" y="977" width="1.7" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text text-anchor="" x="1013.43" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (1 samples, 0.07%)</title><rect x="839.1" y="625" width="0.9" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="842.14" 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>mutex_lock (1 samples, 0.07%)</title><rect x="288.0" y="1393" width="0.9" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="291.04" 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] (7 samples, 0.49%)</title><rect x="199.5" y="1825" width="5.8" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text text-anchor="" x="202.50" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:::release (1 samples, 0.07%)</title><rect x="1124.6" y="657" width="0.9" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1127.63" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (2 samples, 0.14%)</title><rect x="720.0" y="961" width="1.6" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="722.99" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (2 samples, 0.14%)</title><rect x="217.7" y="1777" width="1.7" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="220.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>__perf_event_task_sched_in (2 samples, 0.14%)</title><rect x="897.9" y="1681" width="1.7" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="900.90" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljavax/ws/rs/core/AbstractMultivaluedMap:::get (1 samples, 0.07%)</title><rect x="630.6" y="833" width="0.8" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="633.62" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.14%)</title><rect x="135.8" y="1825" width="1.6" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="138.78" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.28%)</title><rect x="146.5" y="1825" width="3.3" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" />
<text text-anchor="" x="149.54" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___writev (1 samples, 0.07%)</title><rect x="1031.9" y="1809" width="0.9" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text text-anchor="" x="1034.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>JVM_MonitorNotify (1 samples, 0.07%)</title><rect x="678.6" y="369" width="0.8" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text text-anchor="" x="681.61" 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/jvnet/hk2/internal/SystemDescriptor:::create (6 samples, 0.42%)</title><rect x="702.6" y="945" width="5.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="705.61" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_sys_open (1 samples, 0.07%)</title><rect x="736.5" y="1745" width="0.9" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="739.54" 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/Errors:::process (85 samples, 5.96%)</title><rect x="1089.0" y="1057" width="70.4" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="1092.05" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/routing/MethodSelectingRouter:::getMethodRouter (2 samples, 0.14%)</title><rect x="820.9" y="833" width="1.7" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text text-anchor="" x="823.94" 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/internal/inject/ReferenceTransformingFactory:::provide (1 samples, 0.07%)</title><rect x="1006.3" y="673" width="0.8" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="1009.30" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/http/HttpMethod:::lookAheadGet (1 samples, 0.07%)</title><rect x="890.4" y="1489" width="0.9" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text text-anchor="" x="893.45" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_iter_readv_writev (4 samples, 0.28%)</title><rect x="915.3" y="1761" width="3.3" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="918.27" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/hibernate/validator/internal/metadata/descriptor/BeanDescriptorImpl:::getConstrainedConstructors (1 samples, 0.07%)</title><rect x="436.2" y="801" width="0.8" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="439.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>Ljava/lang/String:::regionMatches (1 samples, 0.07%)</title><rect x="663.7" y="625" width="0.8" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="666.72" 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>futex_wait_queue_me (5 samples, 0.35%)</title><rect x="15.0" y="1697" width="4.1" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="17.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>ip_rcv (1 samples, 0.07%)</title><rect x="916.9" y="1409" width="0.9" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="919.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>Lcom/fasterxml/jackson/databind/ObjectReader:::readValue (1 samples, 0.07%)</title><rect x="522.2" y="1809" width="0.8" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="525.22" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ThreeThirtyResolver:::resolve (2 samples, 0.14%)</title><rect x="873.9" y="881" width="1.7" height="15.0" fill="rgb(104,214,214)" rx="2" ry="2" />
<text text-anchor="" x="876.90" 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/jaxrs/cfg/AnnotationBundleKey:::calcHash (1 samples, 0.07%)</title><rect x="1113.9" y="769" width="0.8" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="1116.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>[libc-2.23.so] (4 samples, 0.28%)</title><rect x="764.7" y="1777" width="3.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="767.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>JavaCalls::call_helper (172 samples, 12.06%)</title><rect x="350.9" y="1745" width="142.4" height="15.0" fill="rgb(217,217,65)" rx="2" ry="2" />
<text text-anchor="" x="353.93" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaCalls::call_he..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/WriterInterceptorExecutor$TerminalWriterInterceptor:::aroundWriteTo (7 samples, 0.49%)</title><rect x="1109.7" y="833" width="5.8" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text text-anchor="" x="1112.73" 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/ServerRuntime$Responder:::processResponse (39 samples, 2.73%)</title><rect x="1103.1" y="961" width="32.3" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text text-anchor="" x="1106.11" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/HttpHeaderReaderImpl:::next (1 samples, 0.07%)</title><rect x="1018.7" y="945" width="0.8" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="1021.71" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpChannelState:::handling (1 samples, 0.07%)</title><rect x="485.0" y="1553" width="0.8" height="15.0" fill="rgb(101,246,101)" rx="2" ry="2" />
<text text-anchor="" x="487.98" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/codahale/metrics/ExponentiallyDecayingReservoir:::lockForRegularUsage (2 samples, 0.14%)</title><rect x="795.3" y="1313" width="1.6" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="798.29" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lch/qos/logback/access/spi/AccessEvent:::getResponseHeaderMap (1 samples, 0.07%)</title><rect x="1059.3" y="1409" width="0.8" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="1062.26" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.07%)</title><rect x="725.8" y="1377" width="0.8" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="728.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>TypeArrayKlass::allocate_common (1 samples, 0.07%)</title><rect x="579.3" y="897" width="0.8" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" />
<text text-anchor="" x="582.31" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.07%)</title><rect x="920.2" y="1473" width="0.9" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="923.24" 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/ContainerResponse:::setMediaType (1 samples, 0.07%)</title><rect x="1104.8" y="881" width="0.8" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="1107.77" 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/http/HttpFields:::getFieldNamesCollection (1 samples, 0.07%)</title><rect x="1060.1" y="1361" width="0.8" height="15.0" fill="rgb(78,191,191)" rx="2" ry="2" />
<text text-anchor="" x="1063.08" 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>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.28%)</title><rect x="98.5" y="1825" width="3.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="101.54" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_writev (6 samples, 0.42%)</title><rect x="909.5" y="1793" width="4.9" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="912.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/glassfish/jersey/message/internal/MediaTypeProvider:::valueOf (1 samples, 0.07%)</title><rect x="1174.3" y="977" width="0.8" height="15.0" fill="rgb(92,203,203)" rx="2" ry="2" />
<text text-anchor="" x="1177.28" 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/LinkedList$Node:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="461.8" y="801" width="0.8" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="464.81" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (2 samples, 0.14%)</title><rect x="1037.7" y="1585" width="1.7" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="1040.74" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/model/ResourceMethodInvoker$3:::apply (1 samples, 0.07%)</title><rect x="1105.6" y="913" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="1108.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>do_readv_writev (1 samples, 0.07%)</title><rect x="428.7" y="881" width="0.8" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="431.71" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/util/ArrayTrie:::getBest (1 samples, 0.07%)</title><rect x="887.1" y="1489" width="0.9" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text text-anchor="" x="890.14" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_nmi_handler (1 samples, 0.07%)</title><rect x="188.7" y="1457" width="0.9" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="191.74" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_Throwable::fill_in_stack_trace (11 samples, 0.77%)</title><rect x="369.1" y="929" width="9.1" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="372.13" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.28%)</title><rect x="30.7" y="1585" width="3.3" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="33.69" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.07%)</title><rect x="1032.8" y="1473" width="0.8" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="1035.78" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lch/qos/logback/access/spi/AccessEvent:::buildRequestHeaderMap (1 samples, 0.07%)</title><rect x="1060.1" y="1409" width="0.8" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="1063.08" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.14%)</title><rect x="105.2" y="1825" width="1.6" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="108.16" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/io/ChannelEndPoint:::flush (5 samples, 0.35%)</title><rect x="640.5" y="625" width="4.2" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="643.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/uri/UriTemplate:::createUriComponent (2 samples, 0.14%)</title><rect x="1020.4" y="1089" width="1.6" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="1023.36" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (1 samples, 0.07%)</title><rect x="764.7" y="1601" width="0.8" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="767.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/MethodSelectingRouter:::apply (4 samples, 0.28%)</title><rect x="1096.5" y="881" width="3.3" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text text-anchor="" x="1099.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>entry_SYSCALL_64_fastpath (2 samples, 0.14%)</title><rect x="168.1" y="1809" width="1.6" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="171.05" 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:::equalsIgnoreCase (1 samples, 0.07%)</title><rect x="441.9" y="561" width="0.9" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="444.95" 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/uri/internal/JerseyUriBuilder:::build (3 samples, 0.21%)</title><rect x="1019.5" y="1169" width="2.5" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text text-anchor="" x="1022.54" 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/HeaderUtils:::createOutbound (1 samples, 0.07%)</title><rect x="432.0" y="801" width="0.8" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="435.02" 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 (3 samples, 0.21%)</title><rect x="605.8" y="833" width="2.5" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text text-anchor="" x="608.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:::indexOf (1 samples, 0.07%)</title><rect x="593.4" y="1041" width="0.8" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="596.38" 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/ServiceLocatorImpl:::internalGetService (1 samples, 0.07%)</title><rect x="815.1" y="881" width="0.9" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="818.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>[libpthread-2.23.so] (3 samples, 0.21%)</title><rect x="200.3" y="1793" width="2.5" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text text-anchor="" x="203.32" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/AbstractSequentialList:::iterator (2 samples, 0.14%)</title><rect x="982.3" y="801" width="1.7" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="985.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>Ljava/lang/String:::substring (1 samples, 0.07%)</title><rect x="955.8" y="1073" width="0.8" height="15.0" fill="rgb(91,203,203)" rx="2" ry="2" />
<text text-anchor="" x="958.82" 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>sock_write_iter (2 samples, 0.14%)</title><rect x="720.0" y="1153" width="1.6" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="722.99" 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/server/internal/JsonWithPaddingInterceptor:::aroundWriteTo (9 samples, 0.63%)</title><rect x="1109.7" y="865" width="7.5" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="1112.73" 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>Interpreter (1 samples, 0.07%)</title><rect x="761.4" y="1521" width="0.8" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text text-anchor="" x="764.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/lang/String:::&lt;init&gt; (2 samples, 0.14%)</title><rect x="597.5" y="1025" width="1.7" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="600.52" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections$UnmodifiableCollection$1:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="610.8" y="817" width="0.8" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="613.76" 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$KeySet:::iterator (1 samples, 0.07%)</title><rect x="1014.6" y="1009" width="0.8" height="15.0" fill="rgb(68,181,181)" rx="2" ry="2" />
<text text-anchor="" x="1017.57" 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>__intel_pmu_enable_all (3 samples, 0.21%)</title><rect x="192.0" y="1601" width="2.5" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="195.05" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljersey/repackaged/com/google/common/collect/Sets:::newHashSet (2 samples, 0.14%)</title><rect x="698.5" y="1057" width="1.6" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="701.47" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections$3:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="1059.3" y="1329" width="0.8" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="1062.26" 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>itable stub (1 samples, 0.07%)</title><rect x="1102.3" y="961" width="0.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1105.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/server/HttpConnection:::onCompleted (1 samples, 0.07%)</title><rect x="793.6" y="1521" width="0.9" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text text-anchor="" x="796.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>Ljava/util/HashMap:::getNode (1 samples, 0.07%)</title><rect x="704.3" y="769" width="0.8" height="15.0" fill="rgb(80,192,192)" rx="2" ry="2" />
<text text-anchor="" x="707.26" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/Request:::getRemoteUser (3 samples, 0.21%)</title><rect x="234.2" y="1601" width="2.5" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="237.25" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (1 samples, 0.07%)</title><rect x="764.7" y="1713" width="0.8" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="767.67" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/process/ReferencesInitializer:::apply (8 samples, 0.56%)</title><rect x="386.5" y="945" width="6.6" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text text-anchor="" x="389.51" 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_push_pending_frames (1 samples, 0.07%)</title><rect x="1008.0" y="833" width="0.8" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="1010.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>perf_pmu_enable.part.89 (2 samples, 0.14%)</title><rect x="168.1" y="1649" width="1.6" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="171.05" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="1132.1" y="817" width="0.8" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="1135.08" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.07%)</title><rect x="493.3" y="1729" width="0.8" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="496.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>intel_pmu_enable_all (2 samples, 0.14%)</title><rect x="57.2" y="1569" width="1.6" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="60.17" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.90 (1 samples, 0.07%)</title><rect x="772.1" y="1697" width="0.8" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="775.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>Interpreter (1 samples, 0.07%)</title><rect x="761.4" y="1697" width="0.8" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text text-anchor="" x="764.36" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::format (5 samples, 0.35%)</title><rect x="378.2" y="1057" width="4.2" height="15.0" fill="rgb(104,215,215)" rx="2" ry="2" />
<text text-anchor="" x="381.23" 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>default_do_nmi (1 samples, 0.07%)</title><rect x="91.9" y="1473" width="0.8" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="94.92" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (1 samples, 0.07%)</title><rect x="1123.0" y="273" width="0.8" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="1125.97" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap$KeyIterator:::next (1 samples, 0.07%)</title><rect x="698.5" y="1009" width="0.8" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="701.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>Lcom/fasterxml/jackson/module/afterburner/deser/SettableLongMethodProperty:::deserializeAndSet (1 samples, 0.07%)</title><rect x="670.3" y="625" width="0.9" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="673.34" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/nio/cs/UTF_8$Encoder:::encode (1 samples, 0.07%)</title><rect x="264.9" y="1521" width="0.8" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text text-anchor="" x="267.87" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>thread_entry (172 samples, 12.06%)</title><rect x="350.9" y="1793" width="142.4" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" />
<text text-anchor="" x="353.93" y="1803.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/glassfish/jersey/message/internal/InboundMessageContext:::singleHeader (2 samples, 0.14%)</title><rect x="398.1" y="785" width="1.6" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="401.09" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (2 samples, 0.14%)</title><rect x="863.1" y="465" width="1.7" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="866.14" 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>G1ParCopyClosure&lt; (1 samples, 0.07%)</title><rect x="77.0" y="1729" width="0.9" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text text-anchor="" x="80.03" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_readv_writev (4 samples, 0.28%)</title><rect x="915.3" y="1777" width="3.3" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="918.27" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/net/URI$Parser:::charAt (2 samples, 0.14%)</title><rect x="715.8" y="1041" width="1.7" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="718.85" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sk_stream_alloc_skb (1 samples, 0.07%)</title><rect x="1175.1" y="1009" width="0.8" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="1178.11" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorLinkedHashMap:::get (1 samples, 0.07%)</title><rect x="656.3" y="849" width="0.8" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="659.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>do_softirq.part.19 (1 samples, 0.07%)</title><rect x="1050.2" y="1521" width="0.8" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="1053.15" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.07%)</title><rect x="920.2" y="1569" width="0.9" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="923.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>__fget (2 samples, 0.14%)</title><rect x="205.3" y="1697" width="1.6" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="208.29" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::valueOf (2 samples, 0.14%)</title><rect x="1084.9" y="1057" width="1.7" height="15.0" fill="rgb(56,171,171)" rx="2" ry="2" />
<text text-anchor="" x="1087.91" 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/message/internal/InboundMessageContext:::singleHeader (1 samples, 0.07%)</title><rect x="962.4" y="801" width="0.9" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="965.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>Lorg/jvnet/hk2/internal/Utilities:::translatePrimitiveType (1 samples, 0.07%)</title><rect x="387.3" y="833" width="0.9" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="390.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/jvnet/hk2/internal/ServiceLocatorImpl:::getInjecteeDescriptor (6 samples, 0.42%)</title><rect x="686.9" y="561" width="5.0" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="689.89" 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_sync_write (1 samples, 0.07%)</title><rect x="293.0" y="1553" width="0.8" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="296.00" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>InstanceKlass::mask_for (1 samples, 0.07%)</title><rect x="62.1" y="1697" width="0.9" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text text-anchor="" x="65.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>__GI___writev (1 samples, 0.07%)</title><rect x="725.8" y="1521" width="0.8" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text text-anchor="" x="728.78" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (3 samples, 0.21%)</title><rect x="916.1" y="1617" width="2.5" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="919.10" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/servlet/WebComponent:::service (105 samples, 7.36%)</title><rect x="1088.2" y="1153" width="86.9" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="1091.22" y="1163.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>Ljava/lang/AbstractStringBuilder:::append (1 samples, 0.07%)</title><rect x="986.4" y="785" width="0.9" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text text-anchor="" x="989.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>Ljava/util/HashMap:::hash (1 samples, 0.07%)</title><rect x="684.4" y="577" width="0.8" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="687.40" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/nio/ch/EPollSelectorImpl:::doSelect (5 samples, 0.35%)</title><rect x="351.8" y="1537" width="4.1" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text text-anchor="" x="354.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>tcp_sendmsg (2 samples, 0.14%)</title><rect x="869.8" y="897" width="1.6" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="872.76" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lll_unlock_wake (1 samples, 0.07%)</title><rect x="214.4" y="1793" width="0.8" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="217.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/jvnet/hk2/internal/PerLookupContext:::findOrCreate (5 samples, 0.35%)</title><rect x="1152.8" y="657" width="4.1" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text text-anchor="" x="1155.76" 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>nf_hook_slow (1 samples, 0.07%)</title><rect x="513.9" y="1521" width="0.9" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="516.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>__vfs_write (1 samples, 0.07%)</title><rect x="288.0" y="1441" width="0.9" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="291.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>Ljava/lang/System$2:::blockedOn (1 samples, 0.07%)</title><rect x="418.0" y="561" width="0.8" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="420.95" 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_finish (1 samples, 0.07%)</title><rect x="484.2" y="1057" width="0.8" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="487.15" 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/message/internal/HttpHeaderReaderImpl:::process (1 samples, 0.07%)</title><rect x="437.0" y="625" width="0.8" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text text-anchor="" x="439.98" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/nio/ch/SocketChannelImpl:::write (1 samples, 0.07%)</title><rect x="1033.6" y="1825" width="0.8" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" />
<text text-anchor="" x="1036.60" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.07%)</title><rect x="882.2" y="785" width="0.8" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="885.17" 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/atomic/AtomicReferenceArray:::checkedByteOffset (1 samples, 0.07%)</title><rect x="442.8" y="401" width="0.8" height="15.0" fill="rgb(92,203,203)" rx="2" ry="2" />
<text text-anchor="" x="445.78" 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>Ljava/util/concurrent/locks/ReentrantReadWriteLock$Sync:::tryAcquireShared (1 samples, 0.07%)</title><rect x="1064.2" y="1281" width="0.8" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="1067.22" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Thread:::blockedOn (1 samples, 0.07%)</title><rect x="418.0" y="545" width="0.8" height="15.0" fill="rgb(102,212,212)" rx="2" ry="2" />
<text text-anchor="" x="420.95" 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>Ljava/net/URI$Parser:::parseIPv4Address (1 samples, 0.07%)</title><rect x="472.6" y="1041" width="0.8" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="475.57" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/http/HttpFields:::contains (1 samples, 0.07%)</title><rect x="1180.9" y="1489" width="0.8" height="15.0" fill="rgb(103,213,213)" rx="2" ry="2" />
<text text-anchor="" x="1183.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>Ljava/util/concurrent/ConcurrentLinkedQueue:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="1168.5" y="1025" width="0.8" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="1171.49" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_writev (1 samples, 0.07%)</title><rect x="882.2" y="1345" width="0.8" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="885.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>do_nmi (2 samples, 0.14%)</title><rect x="499.0" y="1313" width="1.7" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="502.05" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.07%)</title><rect x="428.7" y="673" width="0.8" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="431.71" 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/StringIgnoreCaseKeyComparator:::hash (1 samples, 0.07%)</title><rect x="1173.5" y="993" width="0.8" height="15.0" fill="rgb(91,203,203)" rx="2" ry="2" />
<text text-anchor="" x="1176.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>Ljava/util/Formatter$FormatSpecifier:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="379.9" y="993" width="0.8" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text text-anchor="" x="382.89" 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/util/concurrent/locks/AbstractQueuedSynchronizer:::release (1 samples, 0.07%)</title><rect x="363.3" y="1489" width="0.9" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="366.34" 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/ManagedSelector$SelectorProducer:::update (1 samples, 0.07%)</title><rect x="555.3" y="1601" width="0.8" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
<text text-anchor="" x="558.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>Lsun/nio/ch/SocketDispatcher:::writev (1 samples, 0.07%)</title><rect x="1123.0" y="577" width="0.8" height="15.0" fill="rgb(68,182,182)" rx="2" ry="2" />
<text text-anchor="" x="1125.97" 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>vfs_writev (1 samples, 0.07%)</title><rect x="1175.1" y="1121" width="0.8" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="1178.11" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/ReentrantLock$NonfairSync:::lock (1 samples, 0.07%)</title><rect x="563.6" y="1473" width="0.8" height="15.0" fill="rgb(92,203,203)" rx="2" ry="2" />
<text text-anchor="" x="566.59" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (1 samples, 0.07%)</title><rect x="331.1" y="1425" width="0.8" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="334.07" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/process/internal/RequestScope:::runInScope (96 samples, 6.73%)</title><rect x="1089.0" y="1089" width="79.5" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text text-anchor="" x="1092.05" y="1099.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>Lorg/glassfish/jersey/internal/Errors$1:::call (112 samples, 7.85%)</title><rect x="602.5" y="1009" width="92.7" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text text-anchor="" x="605.48" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/glassf..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lch/qos/logback/core/OutputStreamAppender:::append (81 samples, 5.68%)</title><rect x="231.8" y="1665" width="67.0" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="234.77" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lch/qos..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (1 samples, 0.07%)</title><rect x="908.7" y="1601" width="0.8" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="911.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>ttwu_do_activate.constprop.90 (1 samples, 0.07%)</title><rect x="279.8" y="1265" width="0.8" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="282.76" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="811.8" y="1025" width="0.9" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="814.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>sock_sendmsg (1 samples, 0.07%)</title><rect x="479.2" y="1137" width="0.8" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="482.19" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lch/qos/logback/access/spi/AccessEvent:::copyAttributeMap (4 samples, 0.28%)</title><rect x="785.4" y="1409" width="3.3" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text text-anchor="" x="788.36" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (1 samples, 0.07%)</title><rect x="725.8" y="1345" width="0.8" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="728.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>sys_writev (1 samples, 0.07%)</title><rect x="979.0" y="529" width="0.8" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="981.99" 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>update_cfs_shares (1 samples, 0.07%)</title><rect x="215.2" y="1617" width="0.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="218.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>__do_softirq (1 samples, 0.07%)</title><rect x="720.8" y="897" width="0.8" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="723.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>CastP2XNode::Opcode (1 samples, 0.07%)</title><rect x="163.9" y="1681" width="0.8" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text text-anchor="" x="166.91" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/HttpHeaderReader:::newInstance (1 samples, 0.07%)</title><rect x="469.3" y="977" width="0.8" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="472.26" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (1 samples, 0.07%)</title><rect x="134.1" y="1681" width="0.9" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="137.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>futex_wait_setup (1 samples, 0.07%)</title><rect x="313.7" y="1537" width="0.8" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="316.69" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/uri/internal/UriParser:::parseComponent (3 samples, 0.21%)</title><rect x="593.4" y="1057" width="2.5" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text text-anchor="" x="596.38" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (1 samples, 0.07%)</title><rect x="427.1" y="785" width="0.8" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="430.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>dev_queue_xmit (1 samples, 0.07%)</title><rect x="880.5" y="865" width="0.8" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="883.52" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/ReentrantLock$Sync:::nonfairTryAcquire (1 samples, 0.07%)</title><rect x="563.6" y="1425" width="0.8" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="566.59" 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/Timer:::update (1 samples, 0.07%)</title><rect x="564.4" y="1409" width="0.8" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="567.42" 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.14%)</title><rect x="897.9" y="1697" width="1.7" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="900.90" 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.07%)</title><rect x="550.4" y="1409" width="0.8" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="553.35" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_iterate (1 samples, 0.07%)</title><rect x="346.0" y="1553" width="0.8" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="348.96" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getService (1 samples, 0.07%)</title><rect x="874.7" y="865" width="0.9" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="877.73" 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/hibernate/validator/internal/engine/ValidatorImpl:::validateParameters (3 samples, 0.21%)</title><rect x="993.1" y="865" width="2.4" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="996.06" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashSet:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="929.3" y="1329" width="0.9" height="15.0" fill="rgb(55,169,169)" rx="2" ry="2" />
<text text-anchor="" x="932.34" 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>Ljavax/ws/rs/core/AbstractMultivaluedMap:::putSingle (1 samples, 0.07%)</title><rect x="631.4" y="849" width="0.9" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="634.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>Ljava/util/concurrent/ConcurrentHashMap:::get (1 samples, 0.07%)</title><rect x="682.7" y="561" width="0.9" height="15.0" fill="rgb(104,214,214)" rx="2" ry="2" />
<text text-anchor="" x="685.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>__perf_event_task_sched_in (1 samples, 0.07%)</title><rect x="546.2" y="1697" width="0.8" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="549.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>intel_pmu_enable_all (1 samples, 0.07%)</title><rect x="920.2" y="1393" width="0.9" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="923.24" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (2 samples, 0.14%)</title><rect x="758.1" y="1633" width="1.6" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="761.05" 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>MacroAssembler::jump (4 samples, 0.28%)</title><rect x="138.3" y="1681" width="3.3" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="141.26" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (2 samples, 0.14%)</title><rect x="869.8" y="817" width="1.6" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="872.76" 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$Curly:::match0 (1 samples, 0.07%)</title><rect x="590.1" y="865" width="0.8" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="593.07" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/AbstractRuntimeDelegate:::createHeaderDelegate (1 samples, 0.07%)</title><rect x="398.9" y="721" width="0.8" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="401.92" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (1 samples, 0.07%)</title><rect x="522.2" y="1633" width="0.8" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="525.22" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/routing/MethodSelectingRouter:::access$000 (2 samples, 0.14%)</title><rect x="962.4" y="849" width="1.7" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="965.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/SelectorImpl:::select (1 samples, 0.07%)</title><rect x="921.1" y="1569" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="924.07" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/http/HttpParser:::parseNext (9 samples, 0.63%)</title><rect x="883.8" y="1537" width="7.5" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text text-anchor="" x="886.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>__perf_event_task_sched_in (2 samples, 0.14%)</title><rect x="1037.7" y="1665" width="1.7" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="1040.74" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake_op (1 samples, 0.07%)</title><rect x="919.4" y="1777" width="0.8" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="922.41" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/StringBuilder:::append (1 samples, 0.07%)</title><rect x="594.2" y="1041" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="597.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>ciEnv::register_method (1 samples, 0.07%)</title><rect x="179.6" y="1697" width="0.9" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" />
<text text-anchor="" x="182.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>ipt_do_table (1 samples, 0.07%)</title><rect x="532.1" y="1297" width="0.9" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="535.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>Ljava/util/regex/Matcher:::match (1 samples, 0.07%)</title><rect x="395.6" y="849" width="0.8" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text text-anchor="" x="398.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>Lorg/glassfish/jersey/internal/AbstractRuntimeDelegate:::createResponseBuilder (1 samples, 0.07%)</title><rect x="657.9" y="833" width="0.9" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text text-anchor="" x="660.92" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/net/URI$Parser:::charAt (1 samples, 0.07%)</title><rect x="477.5" y="1057" width="0.9" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="480.53" 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_softirq (1 samples, 0.07%)</title><rect x="1022.8" y="865" width="0.9" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="1025.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>jshort_disjoint_arraycopy (1 samples, 0.07%)</title><rect x="836.7" y="801" width="0.8" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text text-anchor="" x="839.66" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/net/URI$Parser:::scanIPv4Address (1 samples, 0.07%)</title><rect x="472.6" y="1025" width="0.8" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="475.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>Ljavax/ws/rs/core/AbstractMultivaluedMap:::get (3 samples, 0.21%)</title><rect x="404.7" y="817" width="2.5" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="407.71" 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/io/ByteArrayOutputStream:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="1133.7" y="865" width="0.9" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="1136.73" 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_rcv (1 samples, 0.07%)</title><rect x="336.0" y="1361" width="0.9" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="339.03" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_writev (1 samples, 0.07%)</title><rect x="1123.8" y="577" width="0.8" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="1126.80" 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/String:::toLowerCase (1 samples, 0.07%)</title><rect x="631.4" y="737" width="0.9" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text text-anchor="" x="634.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>do_iter_readv_writev (1 samples, 0.07%)</title><rect x="428.7" y="865" width="0.8" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="431.71" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.14%)</title><rect x="58.8" y="1761" width="1.7" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="61.82" 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/ServletContainer:::service (129 samples, 9.05%)</title><rect x="1069.2" y="1185" width="106.7" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="1072.19" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/glassfis..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>OptoRuntime::new_array_C (1 samples, 0.07%)</title><rect x="998.8" y="529" width="0.9" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text text-anchor="" x="1001.85" 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>Lsun/nio/ch/EPollArrayWrapper:::epollWait (1 samples, 0.07%)</title><rect x="351.8" y="1505" width="0.8" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text text-anchor="" x="354.75" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.07%)</title><rect x="465.9" y="945" width="0.9" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="468.95" 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/http/HttpFields:::getFieldNames (1 samples, 0.07%)</title><rect x="1059.3" y="1361" width="0.8" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="1062.26" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (5 samples, 0.35%)</title><rect x="108.5" y="1745" width="4.1" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="111.47" 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_iter_readv_writev (2 samples, 0.14%)</title><rect x="1156.9" y="929" width="1.7" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="1159.90" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/ConcurrentHashMap:::putVal (1 samples, 0.07%)</title><rect x="1149.5" y="689" width="0.8" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text text-anchor="" x="1152.45" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/text/DecimalFormatSymbols:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="954.2" y="961" width="0.8" height="15.0" fill="rgb(90,201,201)" rx="2" ry="2" />
<text text-anchor="" x="957.17" 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>ipv4_conntrack_local (1 samples, 0.07%)</title><rect x="428.7" y="641" width="0.8" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="431.71" 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/MessageBodyFactory:::_getMessageBodyWriter (2 samples, 0.14%)</title><rect x="1110.6" y="801" width="1.6" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text text-anchor="" x="1113.56" 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/AbstractList:::listIterator (2 samples, 0.14%)</title><rect x="982.3" y="785" width="1.7" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="985.30" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (1 samples, 0.07%)</title><rect x="201.2" y="1633" width="0.8" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="204.15" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/HeaderUtils$1:::apply (1 samples, 0.07%)</title><rect x="832.5" y="769" width="0.9" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="835.52" 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/Formatter:::format (4 samples, 0.28%)</title><rect x="379.1" y="1041" width="3.3" height="15.0" fill="rgb(90,236,90)" rx="2" ry="2" />
<text text-anchor="" x="382.06" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___writev (5 samples, 0.35%)</title><rect x="332.7" y="1809" width="4.2" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text text-anchor="" x="335.72" 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>pthread_self@plt (1 samples, 0.07%)</title><rect x="883.0" y="1505" width="0.8" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="886.00" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ObjArrayKlass::allocate (1 samples, 0.07%)</title><rect x="576.8" y="865" width="0.9" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text text-anchor="" x="579.83" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (5 samples, 0.35%)</title><rect x="15.0" y="1649" width="4.1" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="17.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>do_iter_readv_writev (1 samples, 0.07%)</title><rect x="422.1" y="625" width="0.8" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="425.09" 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/RequestScope:::setCurrent (1 samples, 0.07%)</title><rect x="1012.1" y="1073" width="0.8" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="1015.09" 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/Response:::addHeader (1 samples, 0.07%)</title><rect x="1129.6" y="801" width="0.8" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="1132.59" 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/HttpChannel:::onCompleted (9 samples, 0.63%)</title><rect x="556.1" y="1537" width="7.5" height="15.0" fill="rgb(104,214,214)" rx="2" ry="2" />
<text text-anchor="" x="559.14" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (8 samples, 0.56%)</title><rect x="317.0" y="1665" width="6.6" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="320.00" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (3 samples, 0.21%)</title><rect x="209.4" y="1697" width="2.5" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="212.42" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/core/util/BufferRecycler:::allocByteBuffer (1 samples, 0.07%)</title><rect x="998.8" y="593" width="0.9" height="15.0" fill="rgb(103,213,213)" rx="2" ry="2" />
<text text-anchor="" x="1001.85" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.14%)</title><rect x="747.3" y="1489" width="1.6" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="750.29" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_handle (2 samples, 0.14%)</title><rect x="499.0" y="1281" width="1.7" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="502.05" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/ConcurrentHashMap:::get (1 samples, 0.07%)</title><rect x="692.7" y="561" width="0.8" height="15.0" fill="rgb(56,171,171)" rx="2" ry="2" />
<text text-anchor="" x="695.68" 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/ServerRuntime:::process (75 samples, 5.26%)</title><rect x="815.1" y="1105" width="62.1" height="15.0" fill="rgb(101,211,211)" rx="2" ry="2" />
<text text-anchor="" x="818.15" y="1115.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>update_rq_clock.part.80 (1 samples, 0.07%)</title><rect x="204.5" y="1649" width="0.8" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="207.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>Lorg/jvnet/hk2/internal/PerLookupContext:::findOrCreate (2 samples, 0.14%)</title><rect x="1010.4" y="961" width="1.7" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text text-anchor="" x="1013.43" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (5 samples, 0.35%)</title><rect x="15.0" y="1553" width="4.1" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="17.96" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.14%)</title><rect x="171.4" y="1825" width="1.6" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="174.36" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljavax/ws/rs/core/AbstractMultivaluedMap:::get (1 samples, 0.07%)</title><rect x="996.4" y="769" width="0.8" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="999.37" 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/internal/util/collection/KeyComparatorLinkedHashMap:::get (1 samples, 0.07%)</title><rect x="988.9" y="849" width="0.8" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="991.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/glassfish/jersey/message/internal/WriterInterceptorExecutor$TerminalWriterInterceptor:::invokeWriteTo (3 samples, 0.21%)</title><rect x="1113.0" y="817" width="2.5" height="15.0" fill="rgb(88,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1116.04" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java-?/7611 (22 samples, 1.54%)</title><rect x="63.8" y="1873" width="18.2" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text text-anchor="" x="66.79" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/hk2/utilities/reflection/ParameterizedTypeImpl:::getRawType (1 samples, 0.07%)</title><rect x="691.9" y="513" width="0.8" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="694.85" 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/jvnet/hk2/internal/ServiceLocatorImpl:::getService (2 samples, 0.14%)</title><rect x="624.8" y="817" width="1.7" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="627.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>tcp_write_xmit (5 samples, 0.35%)</title><rect x="542.1" y="1649" width="4.1" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="545.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>Lorg/glassfish/jersey/message/WriterModel:::isWriteable (2 samples, 0.14%)</title><rect x="410.5" y="785" width="1.7" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="413.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>mod_timer (1 samples, 0.07%)</title><rect x="1032.8" y="1281" width="0.8" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="1035.78" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (7 samples, 0.49%)</title><rect x="540.4" y="1713" width="5.8" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="543.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>Lcom/fasterxml/jackson/databind/deser/impl/MethodProperty:::deserializeAndSet (1 samples, 0.07%)</title><rect x="852.4" y="625" width="0.8" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="855.38" 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>Lch/qos/logback/access/pattern/ContentLengthConverter:::convert (1 samples, 0.07%)</title><rect x="244.2" y="1521" width="0.8" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="247.18" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SpinPause (1 samples, 0.07%)</title><rect x="56.3" y="1777" width="0.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text text-anchor="" x="59.34" 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>[unknown] (1 samples, 0.07%)</title><rect x="736.5" y="1809" width="0.9" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="739.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>Lcom/fasterxml/jackson/core/JsonFactory:::_createContext (1 samples, 0.07%)</title><rect x="672.8" y="641" width="0.8" height="15.0" fill="rgb(104,215,215)" rx="2" ry="2" />
<text text-anchor="" x="675.82" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___writev (1 samples, 0.07%)</title><rect x="331.9" y="1793" width="0.8" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="334.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>perf_pmu_enable.part.89 (4 samples, 0.28%)</title><rect x="320.3" y="1505" width="3.3" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="323.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>tcp_sendmsg (1 samples, 0.07%)</title><rect x="454.4" y="865" width="0.8" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="457.36" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_start (140 samples, 9.82%)</title><rect x="780.4" y="1841" width="115.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="783.39" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java_start</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/AbstractStringBuilder:::ensureCapacityInternal (1 samples, 0.07%)</title><rect x="842.5" y="737" width="0.8" height="15.0" fill="rgb(93,204,204)" rx="2" ry="2" />
<text text-anchor="" x="845.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>__tcp_push_pending_frames (1 samples, 0.07%)</title><rect x="763.8" y="1617" width="0.9" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="766.84" 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/jaxrs/base/ProviderBase:::readFrom (2 samples, 0.14%)</title><rect x="438.6" y="737" width="1.7" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="441.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/internal/Errors$1:::call (65 samples, 4.56%)</title><rect x="815.1" y="1009" width="53.8" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text text-anchor="" x="818.15" y="1019.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.07%)</title><rect x="550.4" y="1553" width="0.8" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="553.35" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (1 samples, 0.07%)</title><rect x="388.2" y="801" width="0.8" height="15.0" fill="rgb(237,103,103)" rx="2" ry="2" />
<text text-anchor="" x="391.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>Ljava/lang/AbstractStringBuilder:::newCapacity (1 samples, 0.07%)</title><rect x="883.8" y="1457" width="0.9" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="886.83" 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>dequeue_entity (2 samples, 0.14%)</title><rect x="317.8" y="1521" width="1.7" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="320.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>Lsun/nio/ch/IOUtil:::write (1 samples, 0.07%)</title><rect x="1123.0" y="593" width="0.8" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text text-anchor="" x="1125.97" 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>RefineRecordRefsIntoCSCardTableEntryClosure::do_card_ptr (1 samples, 0.07%)</title><rect x="27.4" y="1729" width="0.8" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="30.38" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jlong_disjoint_arraycopy (1 samples, 0.07%)</title><rect x="1173.5" y="929" width="0.8" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1176.45" 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/LinkedList:::linkLast (1 samples, 0.07%)</title><rect x="866.5" y="513" width="0.8" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="869.45" 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 (1 samples, 0.07%)</title><rect x="920.2" y="1457" width="0.9" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="923.24" 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/UriParser:::parseComponentWithIP (2 samples, 0.14%)</title><rect x="1086.6" y="1073" width="1.6" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="1089.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/jvnet/hk2/internal/ServiceLocatorImpl:::getService (3 samples, 0.21%)</title><rect x="1089.9" y="897" width="2.5" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1092.87" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (3 samples, 0.21%)</title><rect x="743.2" y="1505" width="2.4" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="746.16" 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>intel_pmu_enable_all (2 samples, 0.14%)</title><rect x="747.3" y="1377" width="1.6" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="750.29" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (1 samples, 0.07%)</title><rect x="762.2" y="1361" width="0.8" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="765.19" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/ReentrantReadWriteLock$Sync:::tryReleaseShared (1 samples, 0.07%)</title><rect x="840.8" y="705" width="0.8" height="15.0" fill="rgb(106,217,217)" rx="2" ry="2" />
<text text-anchor="" x="843.80" 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.07%)</title><rect x="566.1" y="1201" width="0.8" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="569.07" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/Response:::setContentType (1 samples, 0.07%)</title><rect x="1129.6" y="785" width="0.8" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text text-anchor="" x="1132.59" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Formatter:::format (2 samples, 0.14%)</title><rect x="808.5" y="1041" width="1.7" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text text-anchor="" x="811.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>Lorg/eclipse/jetty/util/ArrayTrie:::get (1 samples, 0.07%)</title><rect x="561.9" y="1297" width="0.9" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="564.94" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/codahale/metrics/jetty9/InstrumentedHandler:::updateResponses (2 samples, 0.14%)</title><rect x="795.3" y="1409" width="1.6" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="798.29" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (1 samples, 0.07%)</title><rect x="643.0" y="497" width="0.9" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="646.03" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.14%)</title><rect x="91.9" y="1649" width="1.7" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="94.92" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/process/internal/Stages$LinkedStage:::apply (1 samples, 0.07%)</title><rect x="964.9" y="929" width="0.9" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="967.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>native_write_msr_safe (1 samples, 0.07%)</title><rect x="10.8" y="1553" width="0.9" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="13.83" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (2 samples, 0.14%)</title><rect x="10.0" y="1713" width="1.7" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/Request:::extractParameters (1 samples, 0.07%)</title><rect x="360.9" y="1361" width="0.8" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="363.86" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/OutboundMessageContext:::singleHeader (1 samples, 0.07%)</title><rect x="656.3" y="897" width="0.8" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="659.27" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_start (163 samples, 11.43%)</title><rect x="1051.8" y="1841" width="134.9" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text text-anchor="" x="1054.81" y="1851.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>Lorg/glassfish/jersey/server/internal/monitoring/RequestEventImpl:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="614.9" y="865" width="0.8" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="617.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>Lorg/glassfish/jersey/server/model/internal/AbstractJavaResourceMethodDispatcher:::dispatch (26 samples, 1.82%)</title><rect x="432.0" y="929" width="21.5" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="435.02" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceHandleImpl:::getService (6 samples, 0.42%)</title><rect x="702.6" y="1009" width="5.0" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="705.61" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/process/ReferencesInitializer:::apply (8 samples, 0.56%)</title><rect x="1089.9" y="929" width="6.6" height="15.0" fill="rgb(90,201,201)" rx="2" ry="2" />
<text text-anchor="" x="1092.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>Lorg/eclipse/jetty/http/HttpFields:::getFieldNames (1 samples, 0.07%)</title><rect x="237.6" y="1569" width="0.8" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="240.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>tcp_transmit_skb (1 samples, 0.07%)</title><rect x="882.2" y="1169" width="0.8" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="885.17" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="336.9" y="1761" width="0.8" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="339.86" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1 samples, 0.07%)</title><rect x="119.2" y="1857" width="0.9" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text text-anchor="" x="122.23" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_writev (1 samples, 0.07%)</title><rect x="640.5" y="513" width="0.9" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="643.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>sys_futex (2 samples, 0.14%)</title><rect x="57.2" y="1745" width="1.6" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="60.17" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:::releaseShared (1 samples, 0.07%)</title><rect x="1166.0" y="785" width="0.8" height="15.0" fill="rgb(94,206,206)" rx="2" ry="2" />
<text text-anchor="" x="1169.00" 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 (2 samples, 0.14%)</title><rect x="91.9" y="1713" width="1.7" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="94.92" 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>Interpreter (1 samples, 0.07%)</title><rect x="740.7" y="1633" width="0.8" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text text-anchor="" x="743.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>G1ParCleanupCTTask::work (1 samples, 0.07%)</title><rect x="55.5" y="1809" width="0.8" height="15.0" fill="rgb(191,191,56)" rx="2" ry="2" />
<text text-anchor="" x="58.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>x86_pmu_enable (1 samples, 0.07%)</title><rect x="737.4" y="1601" width="0.8" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="740.36" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_local_out (1 samples, 0.07%)</title><rect x="422.1" y="449" width="0.8" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="425.09" 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>local_clock (1 samples, 0.07%)</title><rect x="1157.7" y="785" width="0.9" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="1160.73" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/hibernate/validator/internal/engine/ValidatorImpl:::validateParameters (2 samples, 0.14%)</title><rect x="842.5" y="865" width="1.6" height="15.0" fill="rgb(81,194,194)" rx="2" ry="2" />
<text text-anchor="" x="845.45" 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/HttpParser:::parseNext (5 samples, 0.35%)</title><rect x="487.5" y="1537" width="4.1" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="490.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>Ljava/lang/Exception:::&lt;init&gt; (16 samples, 1.12%)</title><rect x="940.9" y="1025" width="13.3" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="943.93" 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/monitoring/CompositeRequestEventListener:::onEvent (1 samples, 0.07%)</title><rect x="1135.4" y="913" width="0.8" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="1138.39" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_writev (1 samples, 0.07%)</title><rect x="643.9" y="561" width="0.8" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="646.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>Lio/dropwizard/jersey/filter/AllowedMethodsFilter:::doFilter (133 samples, 9.33%)</title><rect x="1067.5" y="1297" width="110.1" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="1070.53" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lio/dropwizar..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (1 samples, 0.07%)</title><rect x="891.3" y="1537" width="0.8" height="15.0" fill="rgb(228,92,92)" rx="2" ry="2" />
<text text-anchor="" x="894.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>futex_wait_queue_me (2 samples, 0.14%)</title><rect x="63.8" y="1729" width="1.6" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="66.79" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.07%)</title><rect x="134.1" y="1809" width="0.9" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="137.12" 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.07%)</title><rect x="1008.0" y="897" width="0.8" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="1010.95" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.07%)</title><rect x="149.8" y="1809" width="0.9" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="152.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>local_clock (1 samples, 0.07%)</title><rect x="221.8" y="1649" width="0.9" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="224.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>Lorg/eclipse/jetty/http/HttpParser:::parsedHeader (1 samples, 0.07%)</title><rect x="1184.2" y="1521" width="0.8" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text text-anchor="" x="1187.21" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/model/ResourceMethodInvoker:::apply (26 samples, 1.82%)</title><rect x="1135.4" y="961" width="21.5" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="1138.39" 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>Ljava/lang/AbstractStringBuilder:::append (1 samples, 0.07%)</title><rect x="654.6" y="833" width="0.8" height="15.0" fill="rgb(93,205,205)" rx="2" ry="2" />
<text text-anchor="" x="657.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>Ljava/lang/AbstractStringBuilder:::append (1 samples, 0.07%)</title><rect x="1079.1" y="913" width="0.8" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="1082.12" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/ConcurrentHashMap:::get (3 samples, 0.21%)</title><rect x="705.1" y="865" width="2.5" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="708.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>tcp_write_xmit (1 samples, 0.07%)</title><rect x="1008.0" y="817" width="0.8" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="1010.95" 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$FormatSpecifier:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="1079.9" y="993" width="0.9" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text text-anchor="" x="1082.94" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String$CaseInsensitiveComparator:::compare (1 samples, 0.07%)</title><rect x="257.4" y="1537" width="0.8" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="260.42" 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>inet_sendmsg (1 samples, 0.07%)</title><rect x="550.4" y="1729" width="0.8" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="553.35" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (16 samples, 1.12%)</title><rect x="28.2" y="1857" width="13.2" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text text-anchor="" x="31.20" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>writeBytes (9 samples, 0.63%)</title><rect x="219.4" y="1825" width="7.4" height="15.0" fill="rgb(204,55,55)" rx="2" ry="2" />
<text text-anchor="" x="222.35" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>frame::sender (5 samples, 0.35%)</title><rect x="580.1" y="897" width="4.2" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="583.14" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/PerLookupContext:::findOrCreate (9 samples, 0.63%)</title><rect x="861.5" y="657" width="7.4" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text text-anchor="" x="864.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>__tcp_push_pending_frames (6 samples, 0.42%)</title><rect x="541.2" y="1665" width="5.0" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="544.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>Ljava/util/concurrent/locks/ReentrantLock$NonfairSync:::lock (1 samples, 0.07%)</title><rect x="936.0" y="1425" width="0.8" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="938.96" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll (2 samples, 0.14%)</title><rect x="897.9" y="1777" width="1.7" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="900.90" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ksize (1 samples, 0.07%)</title><rect x="523.0" y="1617" width="0.9" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="526.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>Lorg/eclipse/jetty/http/HttpFields:::getValues (1 samples, 0.07%)</title><rect x="877.2" y="1073" width="0.8" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="880.21" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (1 samples, 0.07%)</title><rect x="647.2" y="561" width="0.8" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="650.17" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="92.7" y="1505" width="0.9" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="95.75" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (2 samples, 0.14%)</title><rect x="223.5" y="1633" width="1.6" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="226.49" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/text/DecimalFormatSymbols:::initialize (1 samples, 0.07%)</title><rect x="378.2" y="945" width="0.9" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="381.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>Lorg/jvnet/hk2/internal/IterableProviderImpl:::justInTime (2 samples, 0.14%)</title><rect x="859.8" y="641" width="1.7" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="862.83" 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.07%)</title><rect x="768.8" y="1313" width="0.8" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="771.81" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/util/locale/provider/LocaleResources:::removeEmptyReferences (1 samples, 0.07%)</title><rect x="378.2" y="913" width="0.9" height="15.0" fill="rgb(54,169,169)" rx="2" ry="2" />
<text text-anchor="" x="381.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>ip_queue_xmit (3 samples, 0.21%)</title><rect x="912.0" y="1601" width="2.4" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="914.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>Ljava/util/regex/Matcher:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="424.6" y="817" width="0.8" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="427.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/jvnet/hk2/internal/CacheKey:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="611.6" y="833" width="0.8" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="614.58" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (1 samples, 0.07%)</title><rect x="52.2" y="1569" width="0.8" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="55.20" 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>default_do_nmi (1 samples, 0.07%)</title><rect x="138.3" y="1377" width="0.8" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="141.26" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (4 samples, 0.28%)</title><rect x="276.5" y="1265" width="3.3" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="279.45" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/AbstractStringBuilder:::ensureCapacityInternal (1 samples, 0.07%)</title><rect x="1019.5" y="1057" width="0.9" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="1022.54" 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>JavaThread::thread_main_inner (1 samples, 0.07%)</title><rect x="119.2" y="1809" width="0.9" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="122.23" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/core/JsonFactory:::createParser (6 samples, 0.42%)</title><rect x="442.8" y="657" width="4.9" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text text-anchor="" x="445.78" 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>Parse::do_one_block (1 samples, 0.07%)</title><rect x="144.1" y="1185" width="0.8" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text text-anchor="" x="147.05" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_readv_writev (1 samples, 0.07%)</title><rect x="1022.8" y="1153" width="0.9" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="1025.85" 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/concurrent/locks/ReentrantLock$NonfairSync:::tryAcquire (1 samples, 0.07%)</title><rect x="563.6" y="1441" width="0.8" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="566.59" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___writev (1 samples, 0.07%)</title><rect x="837.5" y="945" width="0.8" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="840.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>pthread_getspecific (1 samples, 0.07%)</title><rect x="807.7" y="913" width="0.8" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
<text text-anchor="" x="810.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>Lio/dropwizard/jersey/jackson/JacksonMessageBodyProvider:::readFrom (17 samples, 1.19%)</title><rect x="666.2" y="705" width="14.1" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="669.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/ClazzCreator:::resolve (8 samples, 0.56%)</title><rect x="861.5" y="593" width="6.6" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text text-anchor="" x="864.49" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (2 samples, 0.14%)</title><rect x="1049.3" y="1713" width="1.7" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="1052.33" 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>default_do_nmi (1 samples, 0.07%)</title><rect x="168.1" y="1553" width="0.8" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="171.05" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/InboundMessageContext$5:::apply (1 samples, 0.07%)</title><rect x="847.4" y="753" width="0.8" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="850.42" 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>[unknown] (5 samples, 0.35%)</title><rect x="10.0" y="1841" width="4.1" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (2 samples, 0.14%)</title><rect x="342.7" y="1697" width="1.6" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="345.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>__GI___writev (1 samples, 0.07%)</title><rect x="479.2" y="1249" width="0.8" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text text-anchor="" x="482.19" 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>inet_sendmsg (1 samples, 0.07%)</title><rect x="1022.8" y="1089" width="0.9" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="1025.85" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap:::keySet (3 samples, 0.21%)</title><rect x="931.0" y="1361" width="2.5" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="934.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>sys_epoll_wait (1 samples, 0.07%)</title><rect x="764.7" y="1745" width="0.8" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="767.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/jvnet/hk2/internal/SystemDescriptor:::dispose (6 samples, 0.42%)</title><rect x="871.4" y="1041" width="5.0" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="874.42" 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>JavaThread::run (15 samples, 1.05%)</title><rect x="741.5" y="1825" width="12.4" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text text-anchor="" x="744.50" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (8 samples, 0.56%)</title><rect x="171.4" y="1841" width="6.6" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="174.36" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/uri/UriTemplate:::createURIWithStringValues (2 samples, 0.14%)</title><rect x="713.4" y="1121" width="1.6" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="716.37" 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>Ljavax/ws/rs/core/MediaType:::valueOf (1 samples, 0.07%)</title><rect x="437.0" y="737" width="0.8" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="439.98" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_writev (1 samples, 0.07%)</title><rect x="629.0" y="897" width="0.8" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="631.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/Long:::equals (1 samples, 0.07%)</title><rect x="865.6" y="449" width="0.9" height="15.0" fill="rgb(94,206,206)" rx="2" ry="2" />
<text text-anchor="" x="868.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>Lorg/glassfish/jersey/message/internal/ReaderInterceptorExecutor$UnCloseableInputStream:::read (5 samples, 0.35%)</title><rect x="442.8" y="577" width="4.1" height="15.0" fill="rgb(107,218,218)" rx="2" ry="2" />
<text text-anchor="" x="445.78" 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/String:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="728.3" y="1473" width="0.8" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="731.26" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.28%)</title><rect x="168.1" y="1825" width="3.3" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text text-anchor="" x="171.05" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lch/qos/logback/access/spi/AccessEvent:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="1054.3" y="1505" width="0.8" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="1057.29" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (2 samples, 0.14%)</title><rect x="733.2" y="1633" width="1.7" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="736.23" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (3 samples, 0.21%)</title><rect x="772.9" y="1697" width="2.5" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="775.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>Lorg/eclipse/jetty/util/thread/Locker$Lock:::close (1 samples, 0.07%)</title><rect x="979.8" y="689" width="0.8" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="982.82" 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>Ljersey/repackaged/com/google/common/collect/Iterables:::addAll (1 samples, 0.07%)</title><rect x="1106.4" y="865" width="0.9" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text text-anchor="" x="1109.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>Lcom/fasterxml/jackson/core/util/BufferRecycler:::allocByteBuffer (1 samples, 0.07%)</title><rect x="673.6" y="577" width="0.9" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="676.65" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.35%)</title><rect x="182.1" y="1857" width="4.2" height="15.0" fill="rgb(237,103,103)" rx="2" ry="2" />
<text text-anchor="" x="185.12" 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>sock_write_iter (1 samples, 0.07%)</title><rect x="837.5" y="849" width="0.8" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="840.49" 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>Matcher::ReduceInst (1 samples, 0.07%)</title><rect x="160.6" y="1601" width="0.8" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="163.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>Lorg/eclipse/jetty/http/HttpParser:::parsedHeader (2 samples, 0.14%)</title><rect x="884.7" y="1505" width="1.6" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="887.66" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Character:::toString (1 samples, 0.07%)</title><rect x="956.6" y="1009" width="0.9" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="959.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>perf_pmu_enable.part.89 (2 samples, 0.14%)</title><rect x="515.6" y="1665" width="1.7" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="518.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>JavaCalls::call_virtual (134 samples, 9.40%)</title><rect x="920.2" y="1761" width="110.9" height="15.0" fill="rgb(191,191,55)" rx="2" ry="2" />
<text text-anchor="" x="923.24" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaCalls::ca..</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.28%)</title><rect x="828.4" y="689" width="3.3" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="831.39" 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_futex (4 samples, 0.28%)</title><rect x="1042.7" y="1793" width="3.3" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="1045.71" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/AbstractStringBuilder:::append (1 samples, 0.07%)</title><rect x="596.7" y="1009" width="0.8" height="15.0" fill="rgb(101,211,211)" rx="2" ry="2" />
<text text-anchor="" x="599.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>do_futex (2 samples, 0.14%)</title><rect x="63.8" y="1761" width="1.6" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="66.79" 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/ChannelEndPoint:::flush (6 samples, 0.42%)</title><rect x="417.1" y="625" width="5.0" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="420.12" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="343.5" y="1585" width="0.8" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="346.48" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.14%)</title><rect x="334.4" y="1745" width="1.6" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="337.38" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/ThreadLocal$ThreadLocalMap:::set (2 samples, 0.14%)</title><rect x="298.8" y="1633" width="1.6" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text text-anchor="" x="301.79" 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>[unknown] (8 samples, 0.56%)</title><rect x="146.5" y="1857" width="6.7" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="149.54" 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>Ljersey/repackaged/com/google/common/net/InetAddresses:::forUriString (30 samples, 2.10%)</title><rect x="568.6" y="1073" width="24.8" height="15.0" fill="rgb(94,206,206)" rx="2" ry="2" />
<text text-anchor="" x="571.56" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.07%)</title><rect x="1031.9" y="1649" width="0.9" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="1034.95" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___writev (1 samples, 0.07%)</title><rect x="1123.0" y="545" width="0.8" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text text-anchor="" x="1125.97" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (7 samples, 0.49%)</title><rect x="317.8" y="1585" width="5.8" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="320.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>futex_wait (1 samples, 0.07%)</title><rect x="95.2" y="1729" width="0.9" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="98.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>Lorg/hibernate/validator/internal/engine/ValidatorImpl:::validateParameters (1 samples, 0.07%)</title><rect x="1137.9" y="865" width="0.8" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="1140.87" 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_prequeue (1 samples, 0.07%)</title><rect x="657.1" y="433" width="0.8" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="660.10" 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>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="989.7" y="929" width="0.9" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="992.75" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getService (2 samples, 0.14%)</title><rect x="386.5" y="897" width="1.7" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="389.51" 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>TypeInstPtr::add_offset (1 samples, 0.07%)</title><rect x="142.4" y="1649" width="0.8" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text text-anchor="" x="145.40" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (1 samples, 0.07%)</title><rect x="1123.0" y="145" width="0.8" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="1125.97" 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>x86_pmu_enable (1 samples, 0.07%)</title><rect x="764.7" y="1585" width="0.8" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="767.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>entry_SYSCALL_64_fastpath (6 samples, 0.42%)</title><rect x="220.2" y="1793" width="4.9" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="223.18" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/ServerRuntime$Responder:::processResponse (15 samples, 1.05%)</title><rect x="825.9" y="961" width="12.4" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text text-anchor="" x="828.90" 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>net_rx_action (2 samples, 0.14%)</title><rect x="916.9" y="1473" width="1.7" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="919.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>ip_finish_output (1 samples, 0.07%)</title><rect x="336.0" y="1521" width="0.9" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="339.03" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_enable_asynccancel (1 samples, 0.07%)</title><rect x="421.3" y="545" width="0.8" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text text-anchor="" x="424.26" 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>tcp_transmit_skb (2 samples, 0.14%)</title><rect x="646.3" y="609" width="1.7" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="649.34" 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.07%)</title><rect x="327.8" y="1489" width="0.8" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="330.76" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.14%)</title><rect x="332.7" y="1649" width="1.7" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="335.72" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (1 samples, 0.07%)</title><rect x="657.1" y="785" width="0.8" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="660.10" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (3 samples, 0.21%)</title><rect x="192.0" y="1713" width="2.5" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="195.05" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (2 samples, 0.14%)</title><rect x="223.5" y="1617" width="1.6" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="226.49" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_iterate (1 samples, 0.07%)</title><rect x="544.6" y="1553" width="0.8" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="547.56" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/HttpHeaderReaderImpl:::next (1 samples, 0.07%)</title><rect x="1018.7" y="929" width="0.8" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="1021.71" 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.07%)</title><rect x="892.9" y="1425" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="895.93" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/hibernate/validator/internal/metadata/raw/ExecutableElement:::forMethod (1 samples, 0.07%)</title><rect x="994.7" y="849" width="0.8" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="997.71" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (1 samples, 0.07%)</title><rect x="522.2" y="1313" width="0.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="525.22" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_iter_readv_writev (1 samples, 0.07%)</title><rect x="549.5" y="1745" width="0.9" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="552.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>Lorg/glassfish/jersey/process/internal/RequestScope:::runInScope (131 samples, 9.19%)</title><rect x="600.0" y="1089" width="108.4" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text text-anchor="" x="603.00" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/glassfis..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>thread_entry (220 samples, 15.43%)</title><rect x="551.2" y="1793" width="182.0" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text text-anchor="" x="554.18" y="1803.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>x86_pmu_commit_txn (2 samples, 0.14%)</title><rect x="969.1" y="673" width="1.6" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="972.06" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (5 samples, 0.35%)</title><rect x="15.0" y="1665" width="4.1" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="17.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>JavaCalls::call_helper (220 samples, 15.43%)</title><rect x="551.2" y="1745" width="182.0" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="554.18" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaCalls::call_helper</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.14%)</title><rect x="1126.3" y="801" width="1.6" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="1129.28" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/databind/ObjectReader:::forType (1 samples, 0.07%)</title><rect x="667.0" y="673" width="0.9" height="15.0" fill="rgb(68,181,181)" rx="2" ry="2" />
<text text-anchor="" x="670.03" 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/jvnet/hk2/internal/ThreeThirtyResolver:::resolve (4 samples, 0.28%)</title><rect x="1153.6" y="577" width="3.3" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1156.59" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/ServerRuntime$Responder:::writeResponse (29 samples, 2.03%)</title><rect x="633.1" y="945" width="24.0" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text text-anchor="" x="636.10" y="955.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>__vfs_write (1 samples, 0.07%)</title><rect x="199.5" y="1681" width="0.8" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="202.50" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.14%)</title><rect x="733.2" y="1745" width="1.7" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="736.23" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scheduler_tick (1 samples, 0.07%)</title><rect x="269.8" y="1329" width="0.9" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="272.83" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/jaxrs/base/ProviderBase:::_createParser (3 samples, 0.21%)</title><rect x="854.0" y="673" width="2.5" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="857.04" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/SystemDescriptor:::invokeInstanceListeners (1 samples, 0.07%)</title><rect x="959.1" y="817" width="0.9" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="962.13" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (1 samples, 0.07%)</title><rect x="979.0" y="401" width="0.8" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="981.99" 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>__vfs_write (1 samples, 0.07%)</title><rect x="269.0" y="1409" width="0.8" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="272.00" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (7 samples, 0.49%)</title><rect x="317.8" y="1601" width="5.8" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="320.83" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/WriterInterceptorExecutor:::proceed (9 samples, 0.63%)</title><rect x="1109.7" y="913" width="7.5" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="1112.73" 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$Itr:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="385.7" y="1009" width="0.8" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text text-anchor="" x="388.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/SystemDescriptor:::dispose (4 samples, 0.28%)</title><rect x="768.0" y="1601" width="3.3" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="770.98" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.07%)</title><rect x="77.9" y="1665" width="0.8" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="80.85" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_readv_writev (1 samples, 0.07%)</title><rect x="882.2" y="1313" width="0.8" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="885.17" 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/http/HttpParser:::parseContent (2 samples, 0.14%)</title><rect x="1144.5" y="449" width="1.6" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text text-anchor="" x="1147.49" 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>perf_event_context_sched_in (1 samples, 0.07%)</title><rect x="130.8" y="1665" width="0.8" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="133.81" 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/IterableProviderImpl:::get (6 samples, 0.42%)</title><rect x="388.2" y="913" width="4.9" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text text-anchor="" x="391.16" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (2 samples, 0.14%)</title><rect x="115.9" y="1761" width="1.7" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="118.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>native_write_msr_safe (1 samples, 0.07%)</title><rect x="210.3" y="1537" width="0.8" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="213.25" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/ReentrantLock:::lock (1 samples, 0.07%)</title><rect x="365.0" y="1361" width="0.8" height="15.0" fill="rgb(107,218,218)" rx="2" ry="2" />
<text text-anchor="" x="367.99" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/HttpHeaderReaderImpl:::next (1 samples, 0.07%)</title><rect x="821.8" y="657" width="0.8" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="824.77" 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>Parker::park (3 samples, 0.21%)</title><rect x="306.2" y="1617" width="2.5" height="15.0" fill="rgb(213,213,64)" rx="2" ry="2" />
<text text-anchor="" x="309.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/jvnet/hk2/internal/ClazzCreator:::create (1 samples, 0.07%)</title><rect x="1011.3" y="929" width="0.8" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="1014.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>GangWorker::loop (10 samples, 0.70%)</title><rect x="73.7" y="1825" width="8.3" height="15.0" fill="rgb(224,224,67)" rx="2" ry="2" />
<text text-anchor="" x="76.72" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetInjecteeDescriptor (6 samples, 0.42%)</title><rect x="686.9" y="545" width="5.0" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text text-anchor="" x="689.89" 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.07%)</title><rect x="772.1" y="1793" width="0.8" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="775.12" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/ThreadLocal$ThreadLocalMap:::getEntryAfterMiss (1 samples, 0.07%)</title><rect x="1026.2" y="1425" width="0.8" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="1029.16" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (2 samples, 0.14%)</title><rect x="772.9" y="1553" width="1.7" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="775.95" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>iptable_filter_hook (1 samples, 0.07%)</title><rect x="532.1" y="1313" width="0.9" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="535.15" 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/hk2/utilities/reflection/ReflectionHelper:::getNameFromAllQualifiers (1 samples, 0.07%)</title><rect x="388.2" y="849" width="0.8" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="391.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>futex_wait_queue_me (3 samples, 0.21%)</title><rect x="192.0" y="1745" width="2.5" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="195.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>ip_finish_output (1 samples, 0.07%)</title><rect x="880.5" y="897" width="0.8" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="883.52" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/SystemDescriptor:::invokeInstanceListeners (1 samples, 0.07%)</title><rect x="463.5" y="1025" width="0.8" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="466.46" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/StringBuffer:::append (1 samples, 0.07%)</title><rect x="599.2" y="1137" width="0.8" height="15.0" fill="rgb(54,169,169)" rx="2" ry="2" />
<text text-anchor="" x="602.17" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/AbstractSequentialList:::iterator (1 samples, 0.07%)</title><rect x="818.5" y="929" width="0.8" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text text-anchor="" x="821.46" 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>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="522.2" y="1777" width="0.8" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="525.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/eclipse/jetty/util/ArrayTrie:::getBest (2 samples, 0.14%)</title><rect x="729.9" y="1505" width="1.7" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="732.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>Lorg/eclipse/jetty/io/ArrayByteBufferPool:::bucketFor (1 samples, 0.07%)</title><rect x="675.3" y="465" width="0.8" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="678.30" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (1 samples, 0.07%)</title><rect x="1008.0" y="433" width="0.8" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="1010.95" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.14%)</title><rect x="766.3" y="1761" width="1.7" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="769.33" 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_write_iter (3 samples, 0.21%)</title><rect x="772.9" y="1729" width="2.5" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="775.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>futex_wake_op (1 samples, 0.07%)</title><rect x="514.8" y="1729" width="0.8" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="517.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>Ljava/lang/CharacterDataLatin1:::getProperties (1 samples, 0.07%)</title><rect x="631.4" y="689" width="0.9" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="634.44" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::last_frame (1 samples, 0.07%)</title><rect x="949.2" y="897" width="0.8" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="952.20" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="630.6" y="689" width="0.8" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="633.62" 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>enqueue_task_fair (1 samples, 0.07%)</title><rect x="989.7" y="305" width="0.9" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="992.75" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (1 samples, 0.07%)</title><rect x="778.7" y="1537" width="0.9" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="781.74" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (2 samples, 0.14%)</title><rect x="120.9" y="1505" width="1.6" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="123.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>Lorg/eclipse/jetty/http/HttpParser:::parseContent (4 samples, 0.28%)</title><rect x="676.1" y="449" width="3.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text text-anchor="" x="679.13" 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>sock_sendmsg (2 samples, 0.14%)</title><rect x="869.8" y="929" width="1.6" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="872.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>default_wake_function (1 samples, 0.07%)</title><rect x="773.8" y="1249" width="0.8" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="776.77" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpInput:::consumeNonContent (1 samples, 0.07%)</title><rect x="1001.3" y="529" width="0.9" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="1004.33" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_getspecific (1 samples, 0.07%)</title><rect x="377.4" y="913" width="0.8" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text text-anchor="" x="380.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_futex (4 samples, 0.28%)</title><rect x="311.2" y="1569" width="3.3" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="314.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>Lorg/jvnet/hk2/internal/SystemDescriptor:::isClosed (1 samples, 0.07%)</title><rect x="1164.3" y="977" width="0.9" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="1167.35" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/routing/MethodSelectingRouter:::determineResponseMediaType (1 samples, 0.07%)</title><rect x="407.2" y="865" width="0.8" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text text-anchor="" x="410.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>Lch/qos/logback/core/OutputStreamAppender:::append (1 samples, 0.07%)</title><rect x="1060.1" y="1473" width="0.8" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="1063.08" 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>__local_bh_enable_ip (1 samples, 0.07%)</title><rect x="882.2" y="1073" width="0.8" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="885.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>activate_task (1 samples, 0.07%)</title><rect x="772.1" y="1681" width="0.8" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="775.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>Lorg/glassfish/jersey/message/internal/HttpHeaderReader:::nextToken (1 samples, 0.07%)</title><rect x="620.7" y="673" width="0.8" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="623.69" 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] (4 samples, 0.28%)</title><rect x="737.4" y="1825" width="3.3" height="15.0" fill="rgb(248,119,119)" rx="2" ry="2" />
<text text-anchor="" x="740.36" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/routing/RoutingStage:::_apply (8 samples, 0.56%)</title><rect x="394.8" y="929" width="6.6" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text text-anchor="" x="397.78" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/util/thread/strategy/ExecuteProduceConsume:::executeProduceConsume (163 samples, 11.43%)</title><rect x="1051.8" y="1633" width="134.9" height="15.0" fill="rgb(78,225,78)" rx="2" ry="2" />
<text text-anchor="" x="1054.81" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/jett..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (2 samples, 0.14%)</title><rect x="1037.7" y="1681" width="1.7" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="1040.74" 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/ContainerRequest:::readEntity (13 samples, 0.91%)</title><rect x="437.0" y="833" width="10.7" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text text-anchor="" x="439.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>do_nmi (1 samples, 0.07%)</title><rect x="91.9" y="1489" width="0.8" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="94.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>__intel_pmu_enable_all (2 samples, 0.14%)</title><rect x="120.9" y="1473" width="1.6" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="123.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>do_readv_writev (5 samples, 0.35%)</title><rect x="910.3" y="1761" width="4.1" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="913.31" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (1 samples, 0.07%)</title><rect x="618.2" y="689" width="0.8" height="15.0" fill="rgb(108,219,219)" rx="2" ry="2" />
<text text-anchor="" x="621.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>native_write_msr_safe (2 samples, 0.14%)</title><rect x="225.1" y="1793" width="1.7" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="228.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/lang/ThreadLocal$ThreadLocalMap:::access$000 (1 samples, 0.07%)</title><rect x="724.1" y="1457" width="0.9" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="727.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>JavaCalls::call_helper (5 samples, 0.35%)</title><rect x="120.1" y="1745" width="4.1" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="123.06" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/WriterInterceptorExecutor:::proceed (3 samples, 0.21%)</title><rect x="410.5" y="881" width="2.5" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="413.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>vfs_writev (1 samples, 0.07%)</title><rect x="549.5" y="1777" width="0.9" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="552.52" 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/Utilities:::createService (1 samples, 0.07%)</title><rect x="451.9" y="529" width="0.8" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text text-anchor="" x="454.88" 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/model/internal/AbstractJavaResourceMethodDispatcher:::dispatch (45 samples, 3.16%)</title><rect x="657.9" y="929" width="37.3" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="660.92" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lor..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jlong_disjoint_arraycopy (1 samples, 0.07%)</title><rect x="383.2" y="1089" width="0.8" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text text-anchor="" x="386.20" 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>Ljavax/ws/rs/core/AbstractMultivaluedMap:::getValues (3 samples, 0.21%)</title><rect x="466.8" y="1057" width="2.5" height="15.0" fill="rgb(68,181,181)" rx="2" ry="2" />
<text text-anchor="" x="469.77" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/text/DateFormatSymbols:::getInstance (2 samples, 0.14%)</title><rect x="250.8" y="1409" width="1.7" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="253.80" 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.14%)</title><rect x="758.1" y="1665" width="1.6" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="761.05" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (6 samples, 0.42%)</title><rect x="220.2" y="1745" width="4.9" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="223.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>Ljava/lang/CharacterData:::of (1 samples, 0.07%)</title><rect x="987.3" y="721" width="0.8" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="990.27" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (4 samples, 0.28%)</title><rect x="109.3" y="1617" width="3.3" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="112.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>JavaCalls::call_virtual (1 samples, 0.07%)</title><rect x="761.4" y="1777" width="0.8" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="764.36" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:::setState (1 samples, 0.07%)</title><rect x="413.0" y="817" width="0.8" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text text-anchor="" x="415.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/server/ServerRuntime$AbstractCallbackRunner:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="1168.5" y="1041" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1171.49" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="146.5" y="1585" width="0.9" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="149.54" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/process/internal/Stages$LinkedStage:::apply (8 samples, 0.56%)</title><rect x="386.5" y="961" width="6.6" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text text-anchor="" x="389.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/eclipse/jetty/server/HttpConnection$SendCallback:::process (8 samples, 0.56%)</title><rect x="1118.0" y="689" width="6.6" height="15.0" fill="rgb(84,232,84)" rx="2" ry="2" />
<text text-anchor="" x="1121.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>nf_iterate (1 samples, 0.07%)</title><rect x="916.1" y="1553" width="0.8" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="919.10" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.07%)</title><rect x="919.4" y="1793" width="0.8" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="922.41" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lio/dropwizard/servlets/ThreadNameFilter:::formatName (1 samples, 0.07%)</title><rect x="566.1" y="1233" width="0.8" height="15.0" fill="rgb(79,191,191)" rx="2" ry="2" />
<text text-anchor="" x="569.07" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sk_reset_timer (1 samples, 0.07%)</title><rect x="1032.8" y="1297" width="0.8" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="1035.78" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (1 samples, 0.07%)</title><rect x="1123.8" y="337" width="0.8" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="1126.80" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/ThreadLocal:::get (1 samples, 0.07%)</title><rect x="681.9" y="561" width="0.8" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="684.92" 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/String:::toLowerCase (1 samples, 0.07%)</title><rect x="1173.5" y="961" width="0.8" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="1176.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>Lorg/eclipse/jetty/servlet/ServletHandler$CachedChain:::doFilter (184 samples, 12.90%)</title><rect x="567.7" y="1233" width="152.3" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text text-anchor="" x="570.73" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/jetty/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (5 samples, 0.35%)</title><rect x="910.3" y="1729" width="4.1" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="913.31" 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 (2 samples, 0.14%)</title><rect x="93.6" y="1729" width="1.6" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="96.58" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lio/dropwizard/jackson/FuzzyEnumModule$PermissiveEnumDeserializer:::deserialize (1 samples, 0.07%)</title><rect x="441.9" y="593" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="444.95" 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>tick_sched_timer (1 samples, 0.07%)</title><rect x="269.8" y="1377" width="0.9" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="272.83" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (1 samples, 0.07%)</title><rect x="1123.8" y="369" width="0.8" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="1126.80" 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>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="514.8" y="1761" width="0.8" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="517.77" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.07%)</title><rect x="1050.2" y="1489" width="0.8" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="1053.15" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/nio/ch/IOVecWrapper:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="974.9" y="561" width="0.8" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="977.85" 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/jvnet/hk2/internal/Utilities:::createService (1 samples, 0.07%)</title><rect x="400.6" y="785" width="0.8" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text text-anchor="" x="403.58" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.14%)</title><rect x="863.1" y="481" width="1.7" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="866.14" 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/String:::toLowerCase (2 samples, 0.14%)</title><rect x="405.5" y="705" width="1.7" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text text-anchor="" x="408.54" 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_sendmsg (1 samples, 0.07%)</title><rect x="979.0" y="449" width="0.8" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="981.99" 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>__wake_up_sync_key (1 samples, 0.07%)</title><rect x="1008.0" y="481" width="0.8" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="1010.95" 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>process_backlog (1 samples, 0.07%)</title><rect x="762.2" y="1457" width="0.8" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="765.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>[unknown] (4 samples, 0.28%)</title><rect x="10.0" y="1825" width="3.3" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/servlet/ServletContainer:::service (5 samples, 0.35%)</title><rect x="768.0" y="1793" width="4.1" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="770.98" 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 (5 samples, 0.35%)</title><rect x="15.0" y="1681" width="4.1" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="17.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/eclipse/jetty/io/FillInterest:::fillable (164 samples, 11.50%)</title><rect x="357.5" y="1601" width="135.8" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text text-anchor="" x="360.55" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/jett..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="331.1" y="1825" width="0.8" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="334.07" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/ref/ReferenceQueue:::enqueue (1 samples, 0.07%)</title><rect x="119.2" y="1681" width="0.9" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text text-anchor="" x="122.23" 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/nio/ch/Util:::getTemporaryDirectBuffer (3 samples, 0.21%)</title><rect x="723.3" y="1489" width="2.5" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="726.30" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorLinkedHashMap:::get (2 samples, 0.14%)</title><rect x="987.3" y="849" width="1.6" height="15.0" fill="rgb(91,203,203)" rx="2" ry="2" />
<text text-anchor="" x="990.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>Lcom/codahale/metrics/Timer$Context:::close (1 samples, 0.07%)</title><rect x="840.8" y="865" width="0.8" height="15.0" fill="rgb(104,215,215)" rx="2" ry="2" />
<text text-anchor="" x="843.80" 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/Formatter:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="378.2" y="1041" width="0.9" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text text-anchor="" x="381.23" 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/servlet/ServletHandler$CachedChain:::doFilter (188 samples, 13.18%)</title><rect x="566.1" y="1265" width="155.5" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="569.07" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/jetty/..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Arrays:::copyOf (1 samples, 0.07%)</title><rect x="249.1" y="1361" width="0.9" height="15.0" fill="rgb(101,211,211)" rx="2" ry="2" />
<text text-anchor="" x="252.14" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetService (18 samples, 1.26%)</title><rect x="680.3" y="785" width="14.9" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="683.27" 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$Responder$1:::getOutputStream (3 samples, 0.21%)</title><rect x="982.3" y="833" width="2.5" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="985.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/eclipse/jetty/http/HttpGenerator:::generateResponse (1 samples, 0.07%)</title><rect x="416.3" y="673" width="0.8" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text text-anchor="" x="419.30" 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>monitorenter_nofpu Runtime1 stub (1 samples, 0.07%)</title><rect x="554.5" y="1521" width="0.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="557.49" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/Errors:::process (86 samples, 6.03%)</title><rect x="385.7" y="1057" width="71.1" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="388.68" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gla..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/SystemDescriptor:::create (1 samples, 0.07%)</title><rect x="1011.3" y="945" width="0.8" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text text-anchor="" x="1014.26" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/aitusoftware/workshop/usvc/common/Request$Creator4JacksonDeserializer2e54f9ac:::createUsingDefault (1 samples, 0.07%)</title><rect x="441.1" y="625" width="0.8" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text text-anchor="" x="444.12" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lio/dropwizard/jersey/validation/DropwizardConfiguredValidator:::getGroup (1 samples, 0.07%)</title><rect x="1137.0" y="865" width="0.9" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="1140.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/hk2/utilities/InjecteeImpl:::setRequiredType (1 samples, 0.07%)</title><rect x="1147.8" y="785" width="0.8" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="1150.80" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/io/ByteArrayOutputStream:::writeTo (10 samples, 0.70%)</title><rect x="973.2" y="849" width="8.3" height="15.0" fill="rgb(93,204,204)" rx="2" ry="2" />
<text text-anchor="" x="976.20" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/process/internal/Stages$LinkedStage:::apply (4 samples, 0.28%)</title><rect x="815.1" y="961" width="3.4" height="15.0" fill="rgb(72,221,72)" rx="2" ry="2" />
<text text-anchor="" x="818.15" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (2 samples, 0.14%)</title><rect x="352.6" y="1441" width="1.6" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="355.58" 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>__wake_up_common (6 samples, 0.42%)</title><rect x="275.6" y="1329" width="5.0" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="278.62" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>autoremove_wake_function (1 samples, 0.07%)</title><rect x="206.9" y="1633" width="0.9" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="209.94" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (7 samples, 0.49%)</title><rect x="28.2" y="1681" width="5.8" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="31.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>Ljava/net/URI$Parser:::scan (1 samples, 0.07%)</title><rect x="719.2" y="1073" width="0.8" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="722.16" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_write (1 samples, 0.07%)</title><rect x="216.0" y="1745" width="0.9" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="219.04" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_readv_writev (1 samples, 0.07%)</title><rect x="1123.0" y="481" width="0.8" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="1125.97" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_start (12 samples, 0.84%)</title><rect x="88.6" y="1841" width="9.9" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" />
<text text-anchor="" x="91.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>Ljava/lang/CharacterData:::of (2 samples, 0.14%)</title><rect x="926.9" y="1297" width="1.6" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="929.86" 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>sock_read_iter (1 samples, 0.07%)</title><rect x="510.6" y="1697" width="0.9" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="513.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>ip_rcv_finish (1 samples, 0.07%)</title><rect x="522.2" y="1345" width="0.8" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="525.22" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (3 samples, 0.21%)</title><rect x="902.0" y="1665" width="2.5" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="905.03" 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>deactivate_task (1 samples, 0.07%)</title><rect x="204.5" y="1665" width="0.8" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="207.46" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>thread_entry (140 samples, 9.82%)</title><rect x="780.4" y="1793" width="115.8" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text text-anchor="" x="783.39" y="1803.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>Lsun/nio/ch/IOUtil:::write (4 samples, 0.28%)</title><rect x="418.8" y="593" width="3.3" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="421.78" 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/uri/internal/JerseyUriBuilder:::_build (3 samples, 0.21%)</title><rect x="1019.5" y="1153" width="2.5" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="1022.54" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::keyComparatorHash (1 samples, 0.07%)</title><rect x="426.2" y="817" width="0.9" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="429.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>Lorg/glassfish/jersey/message/internal/ReaderInterceptorExecutor:::proceed (21 samples, 1.47%)</title><rect x="662.9" y="785" width="17.4" height="15.0" fill="rgb(105,251,105)" rx="2" ry="2" />
<text text-anchor="" x="665.89" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.14%)</title><rect x="138.3" y="1537" width="1.6" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="141.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>intel_pmu_enable_all (1 samples, 0.07%)</title><rect x="85.3" y="1585" width="0.8" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="88.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>schedule (5 samples, 0.35%)</title><rect x="499.0" y="1473" width="4.2" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="502.05" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpChannel:::onCompleted (7 samples, 0.49%)</title><rect x="357.5" y="1537" width="5.8" height="15.0" fill="rgb(54,168,168)" rx="2" ry="2" />
<text text-anchor="" x="360.55" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (2 samples, 0.14%)</title><rect x="969.1" y="593" width="1.6" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="972.06" 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>native_write_msr_safe (2 samples, 0.14%)</title><rect x="171.4" y="1601" width="1.6" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="174.36" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/FactoryCreator:::create (12 samples, 0.84%)</title><rect x="859.0" y="721" width="9.9" height="15.0" fill="rgb(92,203,203)" rx="2" ry="2" />
<text text-anchor="" x="862.00" 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_write_iter (1 samples, 0.07%)</title><rect x="331.1" y="1745" width="0.8" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="334.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>Ljava/lang/RuntimeException:::&lt;init&gt; (11 samples, 0.77%)</title><rect x="799.4" y="1041" width="9.1" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="802.42" 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>G1CollectorPolicy::predict_region_elapsed_time_ms (4 samples, 0.28%)</title><rect x="91.9" y="1761" width="3.3" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="94.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>Ljava/util/concurrent/locks/ReentrantReadWriteLock$ReadLock:::unlock (1 samples, 0.07%)</title><rect x="451.9" y="497" width="0.8" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text text-anchor="" x="454.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>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorLinkedHashMap$EntryIterator:::next (1 samples, 0.07%)</title><rect x="981.5" y="849" width="0.8" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text text-anchor="" x="984.47" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_recvmsg (1 samples, 0.07%)</title><rect x="763.0" y="1649" width="0.8" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="766.02" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (6 samples, 0.42%)</title><rect x="220.2" y="1729" width="4.9" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="223.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>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorLinkedHashMap:::get (1 samples, 0.07%)</title><rect x="618.2" y="753" width="0.8" height="15.0" fill="rgb(100,210,210)" rx="2" ry="2" />
<text text-anchor="" x="621.20" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (1 samples, 0.07%)</title><rect x="85.3" y="1569" width="0.8" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="88.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>schedule (1 samples, 0.07%)</title><rect x="124.2" y="1761" width="0.8" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="127.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>call_stub (134 samples, 9.40%)</title><rect x="920.2" y="1729" width="110.9" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="923.24" y="1739.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>update_blocked_averages (1 samples, 0.07%)</title><rect x="250.0" y="1281" width="0.8" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="252.97" 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>Ljersey/repackaged/com/google/common/net/InetAddresses:::forUriString (18 samples, 1.26%)</title><rect x="940.9" y="1073" width="14.9" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="943.93" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.14%)</title><rect x="1037.7" y="1697" width="1.7" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="1040.74" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_lang_Throwable_fillInStackTrace (11 samples, 0.77%)</title><rect x="369.1" y="961" width="9.1" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="372.13" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.14%)</title><rect x="352.6" y="1409" width="1.6" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="355.58" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/hk2/utilities/cache/Cache:::compute (3 samples, 0.21%)</title><rect x="705.1" y="881" width="2.5" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text text-anchor="" x="708.09" 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_finish (1 samples, 0.07%)</title><rect x="1032.8" y="1377" width="0.8" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="1035.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>Ljava/lang/String:::valueOf (1 samples, 0.07%)</title><rect x="594.2" y="1025" width="0.8" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="597.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>__vdso_gettimeofday (1 samples, 0.07%)</title><rect x="1179.2" y="1505" width="0.9" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text text-anchor="" x="1182.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>__tcp_push_pending_frames (1 samples, 0.07%)</title><rect x="1123.0" y="369" width="0.8" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="1125.97" 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>Ljava/util/regex/Pattern:::matcher (2 samples, 0.14%)</title><rect x="1083.3" y="993" width="1.6" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="1086.25" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/io/SelectChannelEndPoint$2:::run (131 samples, 9.19%)</title><rect x="784.5" y="1617" width="108.4" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text text-anchor="" x="787.53" 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>autoremove_wake_function (1 samples, 0.07%)</title><rect x="522.2" y="1233" width="0.8" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="525.22" 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_wait_queue_me (2 samples, 0.14%)</title><rect x="171.4" y="1761" width="1.6" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="174.36" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/MessageBodyFactory:::getMessageBodyWriter (2 samples, 0.14%)</title><rect x="410.5" y="817" width="1.7" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="413.50" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (2 samples, 0.14%)</title><rect x="320.3" y="1425" width="1.7" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="323.31" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>StatSamplerTask::task (1 samples, 0.07%)</title><rect x="186.3" y="1793" width="0.8" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="189.26" 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>[libpthread-2.23.so] (1 samples, 0.07%)</title><rect x="199.5" y="1745" width="0.8" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text text-anchor="" x="202.50" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___writev (1 samples, 0.07%)</title><rect x="1185.0" y="1553" width="0.9" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="1188.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>schedule (2 samples, 0.14%)</title><rect x="1037.7" y="1713" width="1.7" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="1040.74" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (2 samples, 0.14%)</title><rect x="772.9" y="1473" width="1.7" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="775.95" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (1 samples, 0.07%)</title><rect x="720.8" y="769" width="0.8" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="723.81" 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:::getService (9 samples, 0.63%)</title><rect x="861.5" y="705" width="7.4" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="864.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>schedule (1 samples, 0.07%)</title><rect x="98.5" y="1729" width="0.9" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="101.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>intel_pmu_enable_all (4 samples, 0.28%)</title><rect x="109.3" y="1585" width="3.3" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="112.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>__perf_event_task_sched_in (2 samples, 0.14%)</title><rect x="45.6" y="1617" width="1.6" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="48.58" 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/databind/type/TypeFactory:::constructType (1 samples, 0.07%)</title><rect x="853.2" y="673" width="0.8" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="856.21" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (1 samples, 0.07%)</title><rect x="1008.0" y="577" width="0.8" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="1010.95" 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>nmethod::find_pc_desc_internal (1 samples, 0.07%)</title><rect x="376.6" y="913" width="0.8" height="15.0" fill="rgb(227,227,68)" rx="2" ry="2" />
<text text-anchor="" x="379.58" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_nmi_handler (1 samples, 0.07%)</title><rect x="754.7" y="1425" width="0.9" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="757.74" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.28%)</title><rect x="115.9" y="1809" width="3.3" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="118.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>Lcom/fasterxml/jackson/jaxrs/base/ProviderBase:::_createGenerator (1 samples, 0.07%)</title><rect x="1113.0" y="785" width="0.9" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="1116.04" 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>Lio/dropwizard/jersey/jackson/JacksonMessageBodyProvider:::isReadable (1 samples, 0.07%)</title><rect x="665.4" y="657" width="0.8" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="668.37" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap$HashIterator:::nextNode (1 samples, 0.07%)</title><rect x="787.8" y="1361" width="0.9" height="15.0" fill="rgb(104,214,214)" rx="2" ry="2" />
<text text-anchor="" x="790.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>sys_futex (1 samples, 0.07%)</title><rect x="914.4" y="1793" width="0.9" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="917.45" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/Utilities:::createService (2 samples, 0.14%)</title><rect x="816.0" y="865" width="1.6" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text text-anchor="" x="818.97" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/hk2/utilities/cache/internal/WeakCARCacheImpl:::compute (1 samples, 0.07%)</title><rect x="1093.2" y="833" width="0.8" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text text-anchor="" x="1096.18" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::charAt (1 samples, 0.07%)</title><rect x="595.9" y="1025" width="0.8" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="598.86" 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:::internalGetInjecteeDescriptor (2 samples, 0.14%)</title><rect x="1004.6" y="769" width="1.7" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text text-anchor="" x="1007.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>ip_output (1 samples, 0.07%)</title><rect x="331.1" y="1585" width="0.8" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="334.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>Ljava/util/concurrent/TimeUnit$1:::toNanos (1 samples, 0.07%)</title><rect x="740.7" y="1601" width="0.8" height="15.0" fill="rgb(90,236,90)" rx="2" ry="2" />
<text text-anchor="" x="743.67" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="1123.8" y="593" width="0.8" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="1126.80" 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/ServiceLocatorImpl:::internalGetDescriptor (1 samples, 0.07%)</title><rect x="1093.2" y="849" width="0.8" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text text-anchor="" x="1096.18" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/ReentrantLock$Sync:::nonfairTryAcquire (1 samples, 0.07%)</title><rect x="315.3" y="1633" width="0.9" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="318.34" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_iter_readv_writev (1 samples, 0.07%)</title><rect x="1041.9" y="1745" width="0.8" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="1044.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>JavaCalls::call_virtual (15 samples, 1.05%)</title><rect x="741.5" y="1761" width="12.4" height="15.0" fill="rgb(180,180,52)" rx="2" ry="2" />
<text text-anchor="" x="744.50" 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>try_to_wake_up (1 samples, 0.07%)</title><rect x="327.8" y="1521" width="0.8" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="330.76" 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>jshort_arraycopy (1 samples, 0.07%)</title><rect x="926.0" y="1361" width="0.9" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text text-anchor="" x="929.03" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/AbstractList:::listIterator (1 samples, 0.07%)</title><rect x="702.6" y="881" width="0.8" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="705.61" 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.07%)</title><rect x="550.4" y="1425" width="0.8" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="553.35" 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 (2 samples, 0.14%)</title><rect x="754.7" y="1649" width="1.7" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="757.74" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_iter_readv_writev (1 samples, 0.07%)</title><rect x="522.2" y="1713" width="0.8" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="525.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>sock_sendmsg (1 samples, 0.07%)</title><rect x="1175.1" y="1057" width="0.8" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="1178.11" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::charAt (1 samples, 0.07%)</title><rect x="472.6" y="977" width="0.8" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="475.57" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/util/ArrayTrie:::get (2 samples, 0.14%)</title><rect x="648.8" y="753" width="1.7" height="15.0" fill="rgb(67,180,180)" rx="2" ry="2" />
<text text-anchor="" x="651.82" 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/Matcher:::replaceAll (2 samples, 0.14%)</title><rect x="652.1" y="833" width="1.7" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text text-anchor="" x="655.13" 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/handler/RequestLogHandler:::handle (144 samples, 10.10%)</title><rect x="364.2" y="1489" width="119.1" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="367.17" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/j..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>iptable_nat_ipv4_local_fn (1 samples, 0.07%)</title><rect x="340.2" y="1521" width="0.8" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="343.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/jvnet/hk2/internal/ServiceLocatorImpl:::getServiceHandle (1 samples, 0.07%)</title><rect x="448.6" y="673" width="0.8" height="15.0" fill="rgb(79,192,192)" rx="2" ry="2" />
<text text-anchor="" x="451.57" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (1 samples, 0.07%)</title><rect x="733.2" y="1585" width="0.9" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="736.23" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Object:::notify (5 samples, 0.35%)</title><rect x="332.7" y="1841" width="4.2" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text text-anchor="" x="335.72" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_writev (1 samples, 0.07%)</title><rect x="522.2" y="1761" width="0.8" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="525.22" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (5 samples, 0.35%)</title><rect x="182.1" y="1825" width="4.2" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="185.12" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:::getState (1 samples, 0.07%)</title><rect x="315.3" y="1617" width="0.9" height="15.0" fill="rgb(58,173,173)" rx="2" ry="2" />
<text text-anchor="" x="318.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>CodeBuffer::relocate_code_to (1 samples, 0.07%)</title><rect x="179.6" y="1617" width="0.9" height="15.0" fill="rgb(176,176,50)" rx="2" ry="2" />
<text text-anchor="" x="182.64" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljersey/repackaged/com/google/common/collect/RegularImmutableMap:::get (1 samples, 0.07%)</title><rect x="431.2" y="865" width="0.8" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="434.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>Ljava/util/regex/Pattern$GroupHead:::match (2 samples, 0.14%)</title><rect x="1081.6" y="897" width="1.7" height="15.0" fill="rgb(58,173,173)" rx="2" ry="2" />
<text text-anchor="" x="1084.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/io/ChannelEndPoint:::isInputShutdown (1 samples, 0.07%)</title><rect x="727.4" y="1537" width="0.9" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="730.43" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.07%)</title><rect x="550.4" y="1489" width="0.8" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="553.35" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/LinkedList:::listIterator (1 samples, 0.07%)</title><rect x="702.6" y="865" width="0.8" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="705.61" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (1 samples, 0.07%)</title><rect x="989.7" y="321" width="0.9" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="992.75" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (2 samples, 0.14%)</title><rect x="758.1" y="1585" width="1.6" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="761.05" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/HeaderUtils:::asString (1 samples, 0.07%)</title><rect x="1128.8" y="737" width="0.8" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="1131.77" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ConstantActiveDescriptor:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="1011.3" y="833" width="0.8" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="1014.26" 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/WriteFlusher:::write (5 samples, 0.35%)</title><rect x="640.5" y="657" width="4.2" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="643.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>Ljavax/ws/rs/core/AbstractMultivaluedMap:::get (1 samples, 0.07%)</title><rect x="1134.6" y="881" width="0.8" height="15.0" fill="rgb(103,213,213)" rx="2" ry="2" />
<text text-anchor="" x="1137.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>entry_SYSCALL_64_fastpath (2 samples, 0.14%)</title><rect x="115.9" y="1777" width="1.7" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="118.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>Ljava/lang/ThreadLocal:::get (1 samples, 0.07%)</title><rect x="1026.2" y="1473" width="0.8" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="1029.16" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.07%)</title><rect x="269.8" y="1457" width="0.9" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="272.83" 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/ClazzCreator:::create (1 samples, 0.07%)</title><rect x="1007.1" y="625" width="0.9" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="1010.12" 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>G1RootProcessor::scan_remembered_sets (1 samples, 0.07%)</title><rect x="63.0" y="1793" width="0.8" height="15.0" fill="rgb(180,180,51)" rx="2" ry="2" />
<text text-anchor="" x="65.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>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="1123.0" y="529" width="0.8" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="1125.97" 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/util/regex/Matcher:::match (1 samples, 0.07%)</title><rect x="615.7" y="849" width="0.8" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text text-anchor="" x="618.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/eclipse/jetty/http/HttpParser:::parseNext (6 samples, 0.42%)</title><rect x="1180.1" y="1537" width="4.9" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text text-anchor="" x="1183.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>G1CollectedHeap::iterate_dirty_card_closure (1 samples, 0.07%)</title><rect x="63.0" y="1761" width="0.8" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="65.96" 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>ttwu_do_activate.constprop.90 (1 samples, 0.07%)</title><rect x="989.7" y="337" width="0.9" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="992.75" 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>Lorg/glassfish/jersey/server/internal/process/RequestProcessingContext:::triggerEvent (1 samples, 0.07%)</title><rect x="819.3" y="929" width="0.8" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="822.28" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (2 samples, 0.14%)</title><rect x="332.7" y="1713" width="1.7" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="335.72" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="437.0" y="577" width="0.8" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="439.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>sock_write_iter (1 samples, 0.07%)</title><rect x="1022.8" y="1121" width="0.9" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="1025.85" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java-?/7653 (15 samples, 1.05%)</title><rect x="741.5" y="1873" width="12.4" height="15.0" fill="rgb(102,247,102)" rx="2" ry="2" />
<text text-anchor="" x="744.50" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpConnection$Content:::succeeded (1 samples, 0.07%)</title><rect x="1142.0" y="513" width="0.8" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="1145.01" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/util/ConcurrentArrayQueue:::getTailBlock (1 samples, 0.07%)</title><rect x="443.6" y="433" width="0.8" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="446.60" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.07%)</title><rect x="347.6" y="1713" width="0.8" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="350.62" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (2 samples, 0.14%)</title><rect x="10.0" y="1745" width="1.7" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="13.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>JavaThread::run (10 samples, 0.70%)</title><rect x="138.3" y="1825" width="8.2" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text text-anchor="" x="141.26" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/codahale/metrics/ExponentiallyDecayingReservoir:::update (1 samples, 0.07%)</title><rect x="364.2" y="1345" width="0.8" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text text-anchor="" x="367.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>Lsun/nio/ch/SocketDispatcher:::writev (1 samples, 0.07%)</title><rect x="1033.6" y="1793" width="0.8" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="1036.60" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/http/HttpParser:::parseHeaders (5 samples, 0.35%)</title><rect x="883.8" y="1521" width="4.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text text-anchor="" x="886.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/server/HttpConnection:::parseRequestBuffer (4 samples, 0.28%)</title><rect x="1027.0" y="1553" width="3.3" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="1029.98" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.23.so] (1 samples, 0.07%)</title><rect x="897.1" y="1793" width="0.8" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text text-anchor="" x="900.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>inet_recvmsg (1 samples, 0.07%)</title><rect x="896.2" y="1697" width="0.9" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="899.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>Lorg/eclipse/jetty/http/HttpFields$Itr:::next (1 samples, 0.07%)</title><rect x="1171.0" y="1025" width="0.8" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="1173.97" 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.07%)</title><rect x="331.9" y="1697" width="0.8" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="334.89" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.07%)</title><rect x="98.5" y="1793" width="0.9" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="101.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>tcp_prequeue (1 samples, 0.07%)</title><rect x="989.7" y="433" width="0.9" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="992.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/util/concurrent/locks/ReentrantReadWriteLock$Sync:::tryAcquireShared (1 samples, 0.07%)</title><rect x="1065.9" y="1265" width="0.8" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="1068.88" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (4 samples, 0.28%)</title><rect x="511.5" y="1681" width="3.3" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="514.46" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_out (1 samples, 0.07%)</title><rect x="221.8" y="1665" width="0.9" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="224.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>__wake_up_sync_key (6 samples, 0.42%)</title><rect x="275.6" y="1345" width="5.0" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="278.62" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/process/internal/RequestScope:::current (1 samples, 0.07%)</title><rect x="681.9" y="577" width="0.8" height="15.0" fill="rgb(80,193,193)" rx="2" ry="2" />
<text text-anchor="" x="684.92" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.14%)</title><rect x="1049.3" y="1825" width="1.7" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="1052.33" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1CollectedHeap::iterate_dirty_card_closure (1 samples, 0.07%)</title><rect x="27.4" y="1761" width="0.8" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="30.38" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/ServerRuntime$Responder:::process (39 samples, 2.73%)</title><rect x="1103.1" y="977" width="32.3" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="1106.11" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (172 samples, 12.06%)</title><rect x="350.9" y="1697" width="142.4" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="353.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>__intel_pmu_enable_all (2 samples, 0.14%)</title><rect x="515.6" y="1617" width="1.7" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="518.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>vtable stub (4 samples, 0.28%)</title><rect x="861.5" y="561" width="3.3" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text text-anchor="" x="864.49" 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>__intel_pmu_enable_all (3 samples, 0.21%)</title><rect x="154.0" y="1473" width="2.5" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="156.98" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="468.4" y="929" width="0.9" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="471.43" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (1 samples, 0.07%)</title><rect x="989.7" y="481" width="0.9" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="992.75" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (1 samples, 0.07%)</title><rect x="550.4" y="1665" width="0.8" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="553.35" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/process/internal/RequestScope$Instance:::remove (9 samples, 0.63%)</title><rect x="700.1" y="1057" width="7.5" height="15.0" fill="rgb(87,198,198)" rx="2" ry="2" />
<text text-anchor="" x="703.13" 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>sock_sendmsg (1 samples, 0.07%)</title><rect x="484.2" y="1393" width="0.8" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="487.15" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iter (1 samples, 0.07%)</title><rect x="520.6" y="1681" width="0.8" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="523.56" 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>Lio/dropwizard/request/logging/async/AsyncAccessEventAppenderFactory$1:::preprocess (9 samples, 0.63%)</title><rect x="785.4" y="1457" width="7.4" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="788.36" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (2 samples, 0.14%)</title><rect x="754.7" y="1633" width="1.7" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="757.74" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1ParEvacuateFollowersClosure::do_void (3 samples, 0.21%)</title><rect x="73.7" y="1793" width="2.5" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text text-anchor="" x="76.72" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/nio/ch/IOVecWrapper:::get (2 samples, 0.14%)</title><rect x="418.8" y="577" width="1.6" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="421.78" 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>__wake_up_common (1 samples, 0.07%)</title><rect x="331.1" y="1297" width="0.8" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="334.07" 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>ip_output (1 samples, 0.07%)</title><rect x="882.2" y="1121" width="0.8" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="885.17" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/CommittingOutputStream:::close (18 samples, 1.26%)</title><rect x="636.4" y="897" width="14.9" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="639.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>__schedule (2 samples, 0.14%)</title><rect x="103.5" y="1729" width="1.7" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="106.51" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/Request:::setAttribute (1 samples, 0.07%)</title><rect x="1012.9" y="1025" width="0.8" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="1015.92" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/ReaderInterceptorExecutor$TerminalReaderInterceptor:::invokeReadFrom (9 samples, 0.63%)</title><rect x="440.3" y="721" width="7.4" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="443.29" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::getEntry (3 samples, 0.21%)</title><rect x="466.8" y="1025" width="2.5" height="15.0" fill="rgb(104,215,215)" rx="2" ry="2" />
<text text-anchor="" x="469.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>__schedule (1 samples, 0.07%)</title><rect x="737.4" y="1681" width="0.8" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="740.36" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/text/SimpleDateFormat:::format (11 samples, 0.77%)</title><rect x="205.3" y="1793" width="9.1" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text text-anchor="" x="208.29" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::keyComparatorHash (2 samples, 0.14%)</title><rect x="1017.1" y="993" width="1.6" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="1020.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>sock_sendmsg (2 samples, 0.14%)</title><rect x="1156.9" y="897" width="1.7" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="1159.90" 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>PhaseChaitin::gather_lrg_masks (1 samples, 0.07%)</title><rect x="163.1" y="1697" width="0.8" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text text-anchor="" x="166.09" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/process/ReferencesInitializer:::apply (14 samples, 0.98%)</title><rect x="602.5" y="929" width="11.6" height="15.0" fill="rgb(67,180,180)" rx="2" ry="2" />
<text text-anchor="" x="605.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>pthread_cond_timedwait@@GLIBC_2.3.2 (8 samples, 0.56%)</title><rect x="192.0" y="1825" width="6.7" height="15.0" fill="rgb(213,70,70)" rx="2" ry="2" />
<text text-anchor="" x="195.05" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.07%)</title><rect x="85.3" y="1697" width="0.8" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="88.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>Ljavax/ws/rs/core/MediaType:::valueOf (1 samples, 0.07%)</title><rect x="821.8" y="737" width="0.8" height="15.0" fill="rgb(54,169,169)" rx="2" ry="2" />
<text text-anchor="" x="824.77" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/hibernate/validator/internal/engine/ValidatorImpl:::validateParameters (2 samples, 0.14%)</title><rect x="659.6" y="849" width="1.6" height="15.0" fill="rgb(82,195,195)" rx="2" ry="2" />
<text text-anchor="" x="662.58" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/Request:::getUserPrincipal (1 samples, 0.07%)</title><rect x="326.9" y="1697" width="0.9" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="329.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>ip_local_deliver_finish (1 samples, 0.07%)</title><rect x="1032.8" y="1345" width="0.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="1035.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>Ljava/lang/ThreadLocal:::setInitialValue (1 samples, 0.07%)</title><rect x="600.8" y="1009" width="0.9" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="603.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/glassfish/jersey/uri/internal/UriParser:::parsePath (3 samples, 0.21%)</title><rect x="596.7" y="1089" width="2.5" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="599.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>tcp_v4_rcv (1 samples, 0.07%)</title><rect x="1123.0" y="49" width="0.8" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="1125.97" 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>Lorg/glassfish/jersey/message/internal/ReaderInterceptorExecutor$TerminalReaderInterceptor:::invokeReadFrom (7 samples, 0.49%)</title><rect x="998.0" y="721" width="5.8" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="1001.02" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/AbstractStringBuilder:::append (1 samples, 0.07%)</title><rect x="957.5" y="1009" width="0.8" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="960.48" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/monitoring/RequestEventImpl:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="1107.3" y="833" width="0.8" height="15.0" fill="rgb(106,217,217)" rx="2" ry="2" />
<text text-anchor="" x="1110.25" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetDescriptor (1 samples, 0.07%)</title><rect x="1151.9" y="609" width="0.9" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="1154.94" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/net/URI$Parser:::scan (1 samples, 0.07%)</title><rect x="473.4" y="1041" width="0.8" height="15.0" fill="rgb(68,181,181)" rx="2" ry="2" />
<text text-anchor="" x="476.39" 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>ttwu_do_activate.constprop.90 (1 samples, 0.07%)</title><rect x="914.4" y="1713" width="0.9" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="917.45" 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>PhaseIdealLoop::get_late_ctrl (1 samples, 0.07%)</title><rect x="143.2" y="1665" width="0.9" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text text-anchor="" x="146.23" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/uri/internal/JerseyUriBuilder:::host (14 samples, 0.98%)</title><rect x="798.6" y="1105" width="11.6" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="801.60" 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/util/thread/QueuedThreadPool:::access$800 (1 samples, 0.07%)</title><rect x="920.2" y="1681" width="0.9" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text text-anchor="" x="923.24" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (1 samples, 0.07%)</title><rect x="550.4" y="1681" width="0.8" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="553.35" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseIdealLoop::build_loop_late (1 samples, 0.07%)</title><rect x="143.2" y="1697" width="0.9" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="146.23" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (2 samples, 0.14%)</title><rect x="120.9" y="1521" width="1.6" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="123.88" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (1 samples, 0.07%)</title><rect x="908.7" y="1585" width="0.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="911.65" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (1 samples, 0.07%)</title><rect x="712.5" y="1041" width="0.9" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="715.54" 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/net/URI:::&lt;init&gt; (9 samples, 0.63%)</title><rect x="471.7" y="1121" width="7.5" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="474.74" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Compile::call_generator (1 samples, 0.07%)</title><rect x="144.1" y="1137" width="0.8" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="147.05" 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/ServiceLocatorImpl:::getUnqualifiedService (4 samples, 0.28%)</title><rect x="681.1" y="641" width="3.3" height="15.0" fill="rgb(79,191,191)" rx="2" ry="2" />
<text text-anchor="" x="684.09" 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>do_iter_readv_writev (2 samples, 0.14%)</title><rect x="346.0" y="1761" width="1.6" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="348.96" 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/Throwable:::fillInStackTrace (20 samples, 1.40%)</title><rect x="568.6" y="977" width="16.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="571.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>__schedule (2 samples, 0.14%)</title><rect x="768.0" y="1441" width="1.6" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="770.98" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/util/AttributesMap:::getAttributeNamesCopy (2 samples, 0.14%)</title><rect x="232.6" y="1585" width="1.6" height="15.0" fill="rgb(94,206,206)" rx="2" ry="2" />
<text text-anchor="" x="235.59" 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_write_xmit (2 samples, 0.14%)</title><rect x="646.3" y="625" width="1.7" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="649.34" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/LinkedHashMap:::get (1 samples, 0.07%)</title><rect x="844.9" y="833" width="0.9" height="15.0" fill="rgb(69,218,69)" rx="2" ry="2" />
<text text-anchor="" x="847.94" 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:::getHeaderString (1 samples, 0.07%)</title><rect x="618.2" y="801" width="0.8" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="621.20" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/IterableProviderImpl:::get (15 samples, 1.05%)</title><rect x="856.5" y="817" width="12.4" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text text-anchor="" x="859.52" 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/PushMethodHandlerRouter:::apply (2 samples, 0.14%)</title><rect x="399.7" y="865" width="1.7" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="402.75" 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>[libpthread-2.23.so] (2 samples, 0.14%)</title><rect x="509.8" y="1793" width="1.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="512.80" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/codahale/metrics/ExponentiallyDecayingReservoir:::lockForRegularUsage (1 samples, 0.07%)</title><rect x="364.2" y="1329" width="0.8" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="367.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/lang/reflect/Constructor:::newInstance (1 samples, 0.07%)</title><rect x="514.8" y="1809" width="0.8" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="517.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>Ljava/lang/String:::substring (1 samples, 0.07%)</title><rect x="811.0" y="1073" width="0.8" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="814.01" 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] (4 samples, 0.28%)</title><rect x="1186.7" y="1857" width="3.3" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text text-anchor="" x="1189.69" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.28%)</title><rect x="174.7" y="1825" width="3.3" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="177.67" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__tcp_push_pending_frames (1 samples, 0.07%)</title><rect x="880.5" y="993" width="0.8" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="883.52" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/hibernate/validator/internal/metadata/raw/ExecutableElement:::&lt;init&gt; (2 samples, 0.14%)</title><rect x="434.5" y="801" width="1.7" height="15.0" fill="rgb(91,203,203)" rx="2" ry="2" />
<text text-anchor="" x="437.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>end_repeat_nmi (2 samples, 0.14%)</title><rect x="499.0" y="1329" width="1.7" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="502.05" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (1 samples, 0.07%)</title><rect x="863.1" y="353" width="0.9" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="866.14" 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>resolve_virtual_call (1 samples, 0.07%)</title><rect x="555.3" y="1569" width="0.8" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" />
<text text-anchor="" x="558.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>TypeArrayKlass::allocate_common (1 samples, 0.07%)</title><rect x="948.4" y="865" width="0.8" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="951.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>perf_event_context_sched_in (2 samples, 0.14%)</title><rect x="138.3" y="1489" width="1.6" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="141.26" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/PerLookupContext:::findOrCreate (1 samples, 0.07%)</title><rect x="606.6" y="753" width="0.8" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text text-anchor="" x="609.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>[unknown] (4 samples, 0.28%)</title><rect x="45.6" y="1809" width="3.3" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text text-anchor="" x="48.58" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljersey/repackaged/com/google/common/collect/Sets:::newHashSet (2 samples, 0.14%)</title><rect x="1160.2" y="1057" width="1.7" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="1163.21" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/PerLocatorUtilities:::getAutoAnalyzerName (1 samples, 0.07%)</title><rect x="1011.3" y="817" width="0.8" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="1014.26" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.07%)</title><rect x="1123.0" y="177" width="0.8" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="1125.97" 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>tcp_push (1 samples, 0.07%)</title><rect x="346.0" y="1681" width="0.8" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="348.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>ip_local_deliver_finish (1 samples, 0.07%)</title><rect x="839.1" y="481" width="0.9" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="842.14" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (2 samples, 0.14%)</title><rect x="897.9" y="1793" width="1.7" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="900.90" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.28%)</title><rect x="546.2" y="1841" width="3.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="549.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>native_sched_clock (1 samples, 0.07%)</title><rect x="494.1" y="1825" width="0.8" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="497.08" 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>ciTypeFlow::df_flow_types (1 samples, 0.07%)</title><rect x="153.2" y="1649" width="0.8" height="15.0" fill="rgb(181,181,52)" rx="2" ry="2" />
<text text-anchor="" x="156.16" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/routing/PathMatchingRouter:::apply (1 samples, 0.07%)</title><rect x="615.7" y="897" width="0.8" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="618.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>apic_timer_interrupt (1 samples, 0.07%)</title><rect x="293.8" y="1521" width="0.9" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="296.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>itable stub (1 samples, 0.07%)</title><rect x="838.3" y="945" width="0.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="841.32" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (1 samples, 0.07%)</title><rect x="778.7" y="1617" width="0.9" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="781.74" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorLinkedHashMap:::get (1 samples, 0.07%)</title><rect x="1173.5" y="1041" width="0.8" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="1176.45" 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>itable stub (2 samples, 0.14%)</title><rect x="626.5" y="897" width="1.6" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="629.48" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/AbstractStringBuilder:::append (1 samples, 0.07%)</title><rect x="1079.1" y="961" width="0.8" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text text-anchor="" x="1082.12" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/PropertiesHelper:::getValue (3 samples, 0.21%)</title><rect x="984.8" y="881" width="2.5" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text text-anchor="" x="987.78" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/ReentrantReadWriteLock$Sync:::tryReleaseShared (1 samples, 0.07%)</title><rect x="451.9" y="465" width="0.8" height="15.0" fill="rgb(59,174,174)" rx="2" ry="2" />
<text text-anchor="" x="454.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/util/concurrent/CopyOnWriteArrayList:::size (1 samples, 0.07%)</title><rect x="1066.7" y="1313" width="0.8" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="1069.70" 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>Ljersey/repackaged/com/google/common/net/InetAddresses:::isUriInetAddress (13 samples, 0.91%)</title><rect x="799.4" y="1089" width="10.8" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="802.42" 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/StringBuffer:::append (1 samples, 0.07%)</title><rect x="652.1" y="801" width="0.9" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="655.13" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_Throwable::fill_in_stack_trace (19 samples, 1.33%)</title><rect x="568.6" y="913" width="15.7" height="15.0" fill="rgb(222,222,67)" rx="2" ry="2" />
<text text-anchor="" x="571.56" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_get_xxx (1 samples, 0.07%)</title><rect x="164.7" y="1633" width="0.9" height="15.0" fill="rgb(194,194,57)" rx="2" ry="2" />
<text text-anchor="" x="167.74" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/codahale/metrics/jetty9/InstrumentedHandler:::handle (190 samples, 13.32%)</title><rect x="564.4" y="1425" width="157.2" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="567.42" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lcom/codahale/metric..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ThreadInVMfromNative::~ThreadInVMfromNative (1 samples, 0.07%)</title><rect x="273.1" y="1457" width="0.9" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="276.14" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (1 samples, 0.07%)</title><rect x="764.7" y="1553" width="0.8" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="767.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/message/internal/MessageBodyFactory:::writeTo (6 samples, 0.42%)</title><rect x="408.0" y="929" width="5.0" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="411.02" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (1 samples, 0.07%)</title><rect x="479.2" y="977" width="0.8" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="482.19" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/OutboundMessageContext:::singleHeader (1 samples, 0.07%)</title><rect x="988.9" y="897" width="0.8" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="991.92" 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/json/ByteSourceJsonBootstrapper:::constructParser (5 samples, 0.35%)</title><rect x="1142.0" y="625" width="4.1" height="15.0" fill="rgb(93,204,204)" rx="2" ry="2" />
<text text-anchor="" x="1145.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>Node_Backward_Iterator::next (1 samples, 0.07%)</title><rect x="161.4" y="1665" width="0.9" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text text-anchor="" x="164.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>Lorg/glassfish/jersey/internal/inject/Injections:::getOrCreate (2 samples, 0.14%)</title><rect x="624.8" y="833" width="1.7" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="627.82" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (2 samples, 0.14%)</title><rect x="82.0" y="1665" width="1.6" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="84.99" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/jaxrs/base/ProviderBase:::writeTo (1 samples, 0.07%)</title><rect x="412.2" y="801" width="0.8" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text text-anchor="" x="415.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>Threads::possibly_parallel_oops_do (2 samples, 0.14%)</title><rect x="61.3" y="1761" width="1.7" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text text-anchor="" x="64.30" 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/Histogram:::update (1 samples, 0.07%)</title><rect x="840.8" y="801" width="0.8" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="843.80" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.07%)</title><rect x="134.1" y="1745" width="0.9" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="137.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>[unknown] (5 samples, 0.35%)</title><rect x="736.5" y="1857" width="4.2" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="739.54" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:::acquireQueued (1 samples, 0.07%)</title><rect x="300.4" y="1665" width="0.9" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="303.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>tcp_write_xmit (1 samples, 0.07%)</title><rect x="1123.0" y="353" width="0.8" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="1125.97" 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>[libpthread-2.23.so] (1 samples, 0.07%)</title><rect x="1125.5" y="817" width="0.8" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text text-anchor="" x="1128.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>Interpreter (15 samples, 1.05%)</title><rect x="741.5" y="1633" width="12.4" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text text-anchor="" x="744.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>__tcp_push_pending_frames (3 samples, 0.21%)</title><rect x="916.1" y="1665" width="2.5" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="919.10" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ClazzCreator:::resolve (2 samples, 0.14%)</title><rect x="873.9" y="897" width="1.7" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text text-anchor="" x="876.90" 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_context_sched_in (2 samples, 0.14%)</title><rect x="115.9" y="1633" width="1.7" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="118.92" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/InboundMessageContext:::getMediaType (1 samples, 0.07%)</title><rect x="962.4" y="817" width="0.9" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text text-anchor="" x="965.44" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (9 samples, 0.63%)</title><rect x="338.5" y="1841" width="7.5" height="15.0" fill="rgb(202,52,52)" rx="2" ry="2" />
<text text-anchor="" x="341.51" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_write (2 samples, 0.14%)</title><rect x="206.9" y="1697" width="1.7" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="209.94" 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_prequeue (1 samples, 0.07%)</title><rect x="720.8" y="737" width="0.8" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="723.81" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.07%)</title><rect x="762.2" y="1729" width="0.8" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="765.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>do_futex (2 samples, 0.14%)</title><rect x="146.5" y="1777" width="1.7" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="149.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>Lorg/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (1 samples, 0.07%)</title><rect x="656.3" y="785" width="0.8" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="659.27" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/nio/ch/EPollSelectorImpl:::doSelect (1 samples, 0.07%)</title><rect x="1053.5" y="1537" width="0.8" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="1056.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>ip_local_out (1 samples, 0.07%)</title><rect x="712.5" y="897" width="0.9" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="715.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>LinkResolver::resolve_interface_method (1 samples, 0.07%)</title><rect x="153.2" y="1505" width="0.8" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="156.16" 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>ciTypeFlow::df_flow_types (1 samples, 0.07%)</title><rect x="144.1" y="1057" width="0.8" height="15.0" fill="rgb(208,208,62)" rx="2" ry="2" />
<text text-anchor="" x="147.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>Lio/dropwizard/jetty/BiDiGzipHandler:::handle (106 samples, 7.43%)</title><rect x="795.3" y="1473" width="87.7" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="798.29" y="1483.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>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="712.5" y="1121" width="0.9" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="715.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>JavaCalls::call_virtual (163 samples, 11.43%)</title><rect x="1051.8" y="1761" width="134.9" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="1054.81" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaCalls::call_v..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.07%)</title><rect x="989.7" y="577" width="0.9" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="992.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>__netif_receive_skb_core (1 samples, 0.07%)</title><rect x="912.8" y="1409" width="0.8" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="915.79" 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>Ljavax/ws/rs/core/AbstractMultivaluedMap:::get (1 samples, 0.07%)</title><rect x="996.4" y="753" width="0.8" height="15.0" fill="rgb(103,213,213)" rx="2" ry="2" />
<text text-anchor="" x="999.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>Lorg/glassfish/jersey/message/internal/HttpHeaderReader:::nextSeparator (1 samples, 0.07%)</title><rect x="470.1" y="961" width="0.8" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="473.08" 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/jetty/RoutingHandler:::handle (190 samples, 13.32%)</title><rect x="564.4" y="1441" width="157.2" height="15.0" fill="rgb(93,204,204)" rx="2" ry="2" />
<text text-anchor="" x="567.42" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lio/dropwizard/jetty..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.14%)</title><rect x="547.0" y="1825" width="1.7" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="550.04" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/inject/Providers:::mergeAndSortRankedProviders (1 samples, 0.07%)</title><rect x="1106.4" y="897" width="0.9" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="1109.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/lang/String:::replace (1 samples, 0.07%)</title><rect x="852.4" y="561" width="0.8" height="15.0" fill="rgb(83,196,196)" rx="2" ry="2" />
<text text-anchor="" x="855.38" 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/uri/internal/UriParser:::parseComponentWithIP (1 samples, 0.07%)</title><rect x="384.0" y="1073" width="0.9" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="387.03" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (1 samples, 0.07%)</title><rect x="336.9" y="1665" width="0.8" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="339.86" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::valueOf (2 samples, 0.14%)</title><rect x="1084.9" y="1025" width="1.7" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1087.91" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>autoremove_wake_function (1 samples, 0.07%)</title><rect x="762.2" y="1281" width="0.8" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="765.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>Lorg/glassfish/jersey/server/ContainerFilteringStage:::apply (1 samples, 0.07%)</title><rect x="961.6" y="945" width="0.8" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text text-anchor="" x="964.61" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (1 samples, 0.07%)</title><rect x="422.9" y="481" width="0.8" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="425.92" 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>intel_pmu_enable_all (5 samples, 0.35%)</title><rect x="15.0" y="1569" width="4.1" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="17.96" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/codahale/metrics/Timer:::update (1 samples, 0.07%)</title><rect x="840.8" y="817" width="0.8" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="843.80" 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] (9 samples, 0.63%)</title><rect x="130.8" y="1857" width="7.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="133.81" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/uri/UriTemplate:::createURIWithStringValues (3 samples, 0.21%)</title><rect x="1019.5" y="1121" width="2.5" height="15.0" fill="rgb(68,182,182)" rx="2" ry="2" />
<text text-anchor="" x="1022.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/glassfish/jersey/server/internal/JsonWithPaddingInterceptor:::aroundWriteTo (3 samples, 0.21%)</title><rect x="410.5" y="865" width="2.5" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text text-anchor="" x="413.50" 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/HashMap:::hash (1 samples, 0.07%)</title><rect x="458.5" y="1025" width="0.8" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="461.50" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Locale:::getLanguage (1 samples, 0.07%)</title><rect x="254.1" y="1457" width="0.8" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="257.11" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/process/internal/Stages$LinkedStage:::apply (1 samples, 0.07%)</title><rect x="825.9" y="929" width="0.8" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="828.90" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap$KeyIterator:::next (1 samples, 0.07%)</title><rect x="696.8" y="1057" width="0.8" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="699.82" 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/process/internal/RequestScope:::findOrCreate (1 samples, 0.07%)</title><rect x="959.1" y="849" width="0.9" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text text-anchor="" x="962.13" 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/StringBuilder:::append (1 samples, 0.07%)</title><rect x="587.6" y="929" width="0.8" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="590.59" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_start (1 samples, 0.07%)</title><rect x="119.2" y="1841" width="0.9" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text text-anchor="" x="122.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>sock_sendmsg (2 samples, 0.14%)</title><rect x="646.3" y="705" width="1.7" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="649.34" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ClazzCreator:::resolve (1 samples, 0.07%)</title><rect x="896.2" y="1857" width="0.9" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text text-anchor="" x="899.24" 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>nf_iterate (1 samples, 0.07%)</title><rect x="422.9" y="353" width="0.8" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="425.92" 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/glassfish/jersey/servlet/WebComponent:::filterFormParameters (2 samples, 0.14%)</title><rect x="469.3" y="1105" width="1.6" height="15.0" fill="rgb(106,217,217)" rx="2" ry="2" />
<text text-anchor="" x="472.26" 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/StringBuilder:::append (1 samples, 0.07%)</title><rect x="487.5" y="1505" width="0.8" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="490.46" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/Errors$1:::call (114 samples, 7.99%)</title><rect x="601.7" y="1025" width="94.3" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="604.65" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/glassf..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Collections:::unmodifiableMap (1 samples, 0.07%)</title><rect x="1099.0" y="641" width="0.8" height="15.0" fill="rgb(102,212,212)" rx="2" ry="2" />
<text text-anchor="" x="1101.98" 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/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetDescriptor (2 samples, 0.14%)</title><rect x="386.5" y="849" width="1.7" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text text-anchor="" x="389.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>Ljava/util/LinkedList:::push (1 samples, 0.07%)</title><rect x="1100.6" y="833" width="0.9" height="15.0" fill="rgb(102,212,212)" rx="2" ry="2" />
<text text-anchor="" x="1103.63" 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/ServerRuntime$CompletionCallbackRunner:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="1168.5" y="1073" width="0.8" height="15.0" fill="rgb(78,190,190)" rx="2" ry="2" />
<text text-anchor="" x="1171.49" 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>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="202.8" y="1777" width="0.8" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="205.81" 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>__do_softirq (2 samples, 0.14%)</title><rect x="542.9" y="1489" width="1.7" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="545.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>entry_SYSCALL_64_fastpath (2 samples, 0.14%)</title><rect x="63.8" y="1793" width="1.6" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="66.79" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.07%)</title><rect x="753.9" y="1713" width="0.8" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" />
<text text-anchor="" x="756.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>Lorg/eclipse/jetty/util/thread/Locker$Lock:::close (1 samples, 0.07%)</title><rect x="644.7" y="689" width="0.8" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="647.68" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (1 samples, 0.07%)</title><rect x="550.4" y="1393" width="0.8" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="553.35" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.07%)</title><rect x="331.1" y="1729" width="0.8" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="334.07" 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>__GI___writev (6 samples, 0.42%)</title><rect x="509.8" y="1809" width="5.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text text-anchor="" x="512.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/eclipse/jetty/io/AbstractEndPoint:::write (3 samples, 0.21%)</title><rect x="829.2" y="673" width="2.5" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="832.21" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_start (172 samples, 12.06%)</title><rect x="350.9" y="1841" width="142.4" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text text-anchor="" x="353.93" y="1851.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>Lorg/hibernate/validator/internal/metadata/raw/ExecutableElement:::&lt;init&gt; (2 samples, 0.14%)</title><rect x="434.5" y="817" width="1.7" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text text-anchor="" x="437.50" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handleWrite (1 samples, 0.07%)</title><rect x="281.4" y="1457" width="0.8" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text text-anchor="" x="284.42" 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_local_deliver (1 samples, 0.07%)</title><rect x="882.2" y="913" width="0.8" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="885.17" 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/StringBuilder:::append (2 samples, 0.14%)</title><rect x="956.6" y="1041" width="1.7" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="959.65" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (2 samples, 0.14%)</title><rect x="82.0" y="1713" width="1.6" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="84.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>process_backlog (1 samples, 0.07%)</title><rect x="331.1" y="1457" width="0.8" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="334.07" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.07%)</title><rect x="761.4" y="1601" width="0.8" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="764.36" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.14%)</title><rect x="1034.4" y="1809" width="1.7" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="1037.43" 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/ResourceMethodInvoker:::apply (45 samples, 3.16%)</title><rect x="657.9" y="977" width="37.3" height="15.0" fill="rgb(68,182,182)" rx="2" ry="2" />
<text text-anchor="" x="660.92" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lor..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.07%)</title><rect x="422.9" y="369" width="0.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="425.92" 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>Ljava/lang/StringCoding:::encode (2 samples, 0.14%)</title><rect x="264.0" y="1553" width="1.7" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text text-anchor="" x="267.04" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/IllegalArgumentException:::&lt;init&gt; (10 samples, 0.70%)</title><rect x="1069.2" y="1057" width="8.3" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text text-anchor="" x="1072.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>__netif_receive_skb (1 samples, 0.07%)</title><rect x="336.0" y="1393" width="0.9" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="339.03" 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>__fget (1 samples, 0.07%)</title><rect x="909.5" y="1745" width="0.8" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="912.48" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/ReaderInterceptorExecutor:::proceed (9 samples, 0.63%)</title><rect x="849.1" y="753" width="7.4" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="852.07" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_start (5 samples, 0.35%)</title><rect x="120.1" y="1841" width="4.1" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text text-anchor="" x="123.06" 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/joran/spi/ConsoleTarget$1:::write (30 samples, 2.10%)</title><rect x="265.7" y="1601" width="24.8" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="268.69" 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>Ljavax/ws/rs/core/AbstractMultivaluedMap:::size (1 samples, 0.07%)</title><rect x="601.7" y="1009" width="0.8" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text text-anchor="" x="604.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/glassfish/jersey/server/internal/process/ServerProcessingBinder$ContainerRequestFactory:::provide (3 samples, 0.21%)</title><rect x="1150.3" y="689" width="2.5" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="1153.28" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_Throwable::fill_in_stack_trace (9 samples, 0.63%)</title><rect x="800.3" y="913" width="7.4" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="803.25" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljavax/ws/rs/core/AbstractMultivaluedMap:::add (2 samples, 0.14%)</title><rect x="1172.6" y="1073" width="1.7" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text text-anchor="" x="1175.62" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_helper (1 samples, 0.07%)</title><rect x="119.2" y="1745" width="0.9" height="15.0" fill="rgb(207,207,61)" rx="2" ry="2" />
<text text-anchor="" x="122.23" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_new_array_Java (1 samples, 0.07%)</title><rect x="251.6" y="1297" width="0.9" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text text-anchor="" x="254.63" 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/model/ResourceMethodInvoker:::apply (34 samples, 2.38%)</title><rect x="840.8" y="961" width="28.1" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="843.80" 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>vfs_writev (1 samples, 0.07%)</title><rect x="331.9" y="1745" width="0.8" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="334.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>entry_SYSCALL_64_fastpath (2 samples, 0.14%)</title><rect x="10.0" y="1777" width="1.7" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="13.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>JavaThread::thread_main_inner (220 samples, 15.43%)</title><rect x="551.2" y="1809" width="182.0" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" />
<text text-anchor="" x="554.18" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaThread::thread_main..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.14%)</title><rect x="146.5" y="1713" width="1.7" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="149.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>perf_pmu_enable.part.89 (7 samples, 0.49%)</title><rect x="28.2" y="1649" width="5.8" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="31.20" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/handler/gzip/GzipHandler:::handle (144 samples, 10.10%)</title><rect x="364.2" y="1457" width="119.1" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text text-anchor="" x="367.17" y="1467.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>__intel_pmu_enable_all (1 samples, 0.07%)</title><rect x="493.3" y="1617" width="0.8" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="496.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/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetService (4 samples, 0.28%)</title><rect x="681.1" y="625" width="3.3" height="15.0" fill="rgb(70,184,184)" rx="2" ry="2" />
<text text-anchor="" x="684.09" 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>entry_SYSCALL_64_fastpath (4 samples, 0.28%)</title><rect x="533.0" y="1809" width="3.3" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="535.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>native_write_msr_safe (2 samples, 0.14%)</title><rect x="747.3" y="1345" width="1.6" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="750.29" 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_queue_xmit (2 samples, 0.14%)</title><rect x="720.0" y="1025" width="1.6" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="722.99" 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/inject/EntityParamValueFactoryProvider$EntityValueFactory:::provide (40 samples, 2.81%)</title><rect x="662.1" y="849" width="33.1" height="15.0" fill="rgb(101,211,211)" rx="2" ry="2" />
<text text-anchor="" x="665.06" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::length (1 samples, 0.07%)</title><rect x="714.2" y="1041" width="0.8" height="15.0" fill="rgb(82,195,195)" rx="2" ry="2" />
<text text-anchor="" x="717.19" 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/TreeMap:::compare (1 samples, 0.07%)</title><rect x="928.5" y="1361" width="0.8" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="931.51" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ClazzCreator:::fieldMe (1 samples, 0.07%)</title><rect x="1010.4" y="945" width="0.9" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text text-anchor="" x="1013.43" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/util/thread/QueuedThreadPool:::idleJobPoll (1 samples, 0.07%)</title><rect x="920.2" y="1665" width="0.9" height="15.0" fill="rgb(54,169,169)" rx="2" ry="2" />
<text text-anchor="" x="923.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>native_sched_clock (1 samples, 0.07%)</title><rect x="211.9" y="1761" width="0.8" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="214.91" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (4 samples, 0.28%)</title><rect x="112.6" y="1777" width="3.3" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="115.61" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (8 samples, 0.56%)</title><rect x="317.0" y="1617" width="6.6" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="320.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>__wake_up_common (1 samples, 0.07%)</title><rect x="989.7" y="401" width="0.9" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="992.75" 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>Ljava/util/concurrent/locks/LockSupport:::unpark (3 samples, 0.21%)</title><rect x="557.0" y="1377" width="2.5" height="15.0" fill="rgb(88,199,199)" rx="2" ry="2" />
<text text-anchor="" x="559.97" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.14%)</title><rect x="146.5" y="1729" width="1.7" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="149.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>sock_write_iter (2 samples, 0.14%)</title><rect x="1049.3" y="1745" width="1.7" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="1052.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>sys_futex (1 samples, 0.07%)</title><rect x="776.3" y="1793" width="0.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="779.26" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/SystemDescriptor:::create (4 samples, 0.28%)</title><rect x="460.2" y="945" width="3.3" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text text-anchor="" x="463.15" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (4 samples, 0.28%)</title><rect x="205.3" y="1761" width="3.3" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="208.29" 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/ServiceHandleImpl:::getService (11 samples, 0.77%)</title><rect x="684.4" y="705" width="9.1" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="687.40" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/ServerRuntime$2:::run (81 samples, 5.68%)</title><rect x="386.5" y="993" width="67.0" height="15.0" fill="rgb(57,172,172)" rx="2" ry="2" />
<text text-anchor="" x="389.51" y="1003.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>[unknown] (4 samples, 0.28%)</title><rect x="77.9" y="1793" width="3.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="80.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>Lorg/eclipse/jetty/servlet/ServletHandler:::doScope (103 samples, 7.22%)</title><rect x="796.9" y="1361" width="85.3" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="799.94" 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>Ljava/util/concurrent/ConcurrentHashMap$TreeNode:::findTreeNode (1 samples, 0.07%)</title><rect x="706.7" y="785" width="0.9" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="709.75" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/process/internal/Stages$LinkedStage:::apply (4 samples, 0.28%)</title><rect x="958.3" y="961" width="3.3" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text text-anchor="" x="961.30" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="731.6" y="1473" width="0.8" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="734.57" 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>default_do_nmi (1 samples, 0.07%)</title><rect x="1034.4" y="1553" width="0.9" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="1037.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>[libc-2.23.so] (4 samples, 0.28%)</title><rect x="1034.4" y="1825" width="3.3" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="1037.43" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.14%)</title><rect x="1041.1" y="1809" width="1.6" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="1044.05" 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>itable stub (1 samples, 0.07%)</title><rect x="1008.8" y="1009" width="0.8" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text text-anchor="" x="1011.78" 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>__intel_pmu_enable_all (2 samples, 0.14%)</title><rect x="188.7" y="1537" width="1.7" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="191.74" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::oops_do (2 samples, 0.14%)</title><rect x="61.3" y="1745" width="1.7" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="64.30" 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>skb_copy_datagram_iter (1 samples, 0.07%)</title><rect x="336.9" y="1617" width="0.8" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="339.86" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/routing/RoutingStage:::_apply (6 samples, 0.42%)</title><rect x="1096.5" y="913" width="5.0" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="1099.49" 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_futex (2 samples, 0.14%)</title><rect x="82.0" y="1745" width="1.6" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="84.99" 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/hk2/utilities/general/Hk2ThreadLocal:::get (1 samples, 0.07%)</title><rect x="873.9" y="849" width="0.8" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text text-anchor="" x="876.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>Lsun/nio/ch/SelectorImpl:::select (1 samples, 0.07%)</title><rect x="921.1" y="1585" width="0.8" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text text-anchor="" x="924.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>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="1033.6" y="1745" width="0.8" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="1036.60" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (1 samples, 0.07%)</title><rect x="1175.1" y="1073" width="0.8" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="1178.11" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/io/BufferedOutputStream:::write (2 samples, 0.14%)</title><rect x="288.9" y="1553" width="1.6" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="291.86" 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>new_sync_read (1 samples, 0.07%)</title><rect x="896.2" y="1745" width="0.9" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="899.24" 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.07%)</title><rect x="1123.8" y="353" width="0.8" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="1126.80" 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/jvnet/hk2/internal/SystemDescriptor:::invokeInstanceListeners (1 samples, 0.07%)</title><rect x="816.8" y="817" width="0.8" height="15.0" fill="rgb(106,217,217)" rx="2" ry="2" />
<text text-anchor="" x="819.80" 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>perf_event_context_sched_in (1 samples, 0.07%)</title><rect x="95.2" y="1633" width="0.9" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="98.23" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/nio/Buffer:::checkBounds (1 samples, 0.07%)</title><rect x="638.1" y="593" width="0.8" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="641.06" 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>__netif_receive_skb_core (1 samples, 0.07%)</title><rect x="1050.2" y="1425" width="0.8" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="1053.15" 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/cache/internal/WeakCARCacheImpl:::compute (1 samples, 0.07%)</title><rect x="680.3" y="577" width="0.8" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text text-anchor="" x="683.27" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceHandleImpl:::getLastInjectee (1 samples, 0.07%)</title><rect x="1163.5" y="977" width="0.8" height="15.0" fill="rgb(89,200,200)" rx="2" ry="2" />
<text text-anchor="" x="1166.52" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/IterableProviderImpl:::justInTime (1 samples, 0.07%)</title><rect x="1092.4" y="897" width="0.8" height="15.0" fill="rgb(70,183,183)" rx="2" ry="2" />
<text text-anchor="" x="1095.36" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/routing/RoutingStage:::_apply (6 samples, 0.42%)</title><rect x="1096.5" y="929" width="5.0" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text text-anchor="" x="1099.49" 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_sendmsg (1 samples, 0.07%)</title><rect x="428.7" y="801" width="0.8" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="431.71" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/nio/ch/SelectorImpl:::select (2 samples, 0.14%)</title><rect x="1052.6" y="1585" width="1.7" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text text-anchor="" x="1055.64" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/AbstractCollection:::addAll (1 samples, 0.07%)</title><rect x="698.5" y="1025" width="0.8" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="701.47" 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/internal/util/PropertiesHelper:::getPropertyNameForRuntime (5 samples, 0.35%)</title><rect x="651.3" y="865" width="4.1" height="15.0" fill="rgb(94,206,206)" rx="2" ry="2" />
<text text-anchor="" x="654.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>Lorg/jvnet/hk2/internal/FactoryCreator:::dispose (5 samples, 0.35%)</title><rect x="459.3" y="1025" width="4.2" height="15.0" fill="rgb(77,189,189)" rx="2" ry="2" />
<text text-anchor="" x="462.33" 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:::getServiceHandleImpl (1 samples, 0.07%)</title><rect x="448.6" y="657" width="0.8" height="15.0" fill="rgb(102,212,212)" rx="2" ry="2" />
<text text-anchor="" x="451.57" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (7 samples, 0.49%)</title><rect x="28.2" y="1745" width="5.8" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="31.20" 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>Lch/qos/logback/access/spi/AccessEvent:::getRemoteUser (3 samples, 0.21%)</title><rect x="234.2" y="1617" width="2.5" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="237.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/eclipse/jetty/servlet/ServletHandler$CachedChain:::doFilter (136 samples, 9.54%)</title><rect x="367.5" y="1265" width="112.5" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="370.48" y="1275.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>inet_recvmsg (2 samples, 0.14%)</title><rect x="519.7" y="1713" width="1.7" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="522.73" 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_sendmsg (1 samples, 0.07%)</title><rect x="422.1" y="561" width="0.8" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="425.09" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/atomic/AtomicBoolean:::get (1 samples, 0.07%)</title><rect x="1114.7" y="753" width="0.8" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="1117.70" 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 (7 samples, 0.49%)</title><rect x="28.2" y="1713" width="5.8" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="31.20" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Throwable:::fillInStackTrace (11 samples, 0.77%)</title><rect x="799.4" y="993" width="9.1" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="802.42" 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>ip_local_deliver (1 samples, 0.07%)</title><rect x="1008.0" y="545" width="0.8" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="1010.95" 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/fasterxml/jackson/core/json/ByteSourceJsonBootstrapper:::detectEncoding (4 samples, 0.28%)</title><rect x="999.7" y="609" width="3.3" height="15.0" fill="rgb(53,167,167)" rx="2" ry="2" />
<text text-anchor="" x="1002.68" 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_task_sched_in (5 samples, 0.35%)</title><rect x="319.5" y="1537" width="4.1" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="322.48" 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/hibernate/validator/internal/util/ExecutableHelper:::getSignature (2 samples, 0.14%)</title><rect x="434.5" y="785" width="1.7" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="437.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>native_write_msr_safe (1 samples, 0.07%)</title><rect x="168.9" y="1585" width="0.8" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="171.88" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/handler/HandlerWrapper:::handle (142 samples, 9.96%)</title><rect x="1060.9" y="1521" width="117.5" height="15.0" fill="rgb(68,181,181)" rx="2" ry="2" />
<text text-anchor="" x="1063.91" y="1531.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_softirq_own_stack (1 samples, 0.07%)</title><rect x="331.1" y="1505" width="0.8" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="334.07" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.14%)</title><rect x="11.7" y="1777" width="1.6" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="14.65" 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/HttpConnection$SendCallback:::process (8 samples, 0.56%)</title><rect x="638.1" y="689" width="6.6" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text text-anchor="" x="641.06" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaThread::run (163 samples, 11.43%)</title><rect x="1051.8" y="1825" width="134.9" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text text-anchor="" x="1054.81" y="1835.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>Lsun/nio/ch/EPollArrayWrapper:::poll (5 samples, 0.35%)</title><rect x="351.8" y="1521" width="4.1" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text text-anchor="" x="354.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>Ljava/lang/String:::indexOf (1 samples, 0.07%)</title><rect x="812.7" y="1041" width="0.8" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="815.66" 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>Lio/dropwizard/jetty/NonblockingServletHolder:::handle (5 samples, 0.35%)</title><rect x="768.0" y="1825" width="4.1" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="770.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/hibernate/validator/internal/engine/ValidatorImpl:::getValidationContext (1 samples, 0.07%)</title><rect x="433.7" y="833" width="0.8" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text text-anchor="" x="436.67" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetDescriptor (1 samples, 0.07%)</title><rect x="399.7" y="785" width="0.9" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="402.75" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/io/ManagedSelector$SelectorProducer:::runActions (2 samples, 0.14%)</title><rect x="780.4" y="1601" width="1.6" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text text-anchor="" x="783.39" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/io/ManagedSelector$SelectorProducer:::produce (7 samples, 0.49%)</title><rect x="351.8" y="1617" width="5.7" height="15.0" fill="rgb(52,201,52)" rx="2" ry="2" />
<text text-anchor="" x="354.75" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>itable stub (1 samples, 0.07%)</title><rect x="1091.5" y="769" width="0.9" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text text-anchor="" x="1094.53" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lch/qos/logback/access/spi/AccessEvent:::prepareForDeferredProcessing (10 samples, 0.70%)</title><rect x="926.0" y="1425" width="8.3" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="929.03" 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>Interpreter (1 samples, 0.07%)</title><rect x="761.4" y="1553" width="0.8" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text text-anchor="" x="764.36" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (2 samples, 0.14%)</title><rect x="115.9" y="1585" width="1.7" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="118.92" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ThreadStateTransition::trans_from_native (3 samples, 0.21%)</title><rect x="301.3" y="1633" width="2.5" height="15.0" fill="rgb(196,196,57)" rx="2" ry="2" />
<text text-anchor="" x="304.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>finish_task_switch (2 samples, 0.14%)</title><rect x="1034.4" y="1697" width="1.7" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="1037.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>__perf_event_task_sched_in (2 samples, 0.14%)</title><rect x="332.7" y="1617" width="1.7" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="335.72" 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/uri/internal/UriParser:::parseComponent (2 samples, 0.14%)</title><rect x="1084.9" y="1089" width="1.7" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text text-anchor="" x="1087.91" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/Errors:::process (66 samples, 4.63%)</title><rect x="815.1" y="1041" width="54.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="818.15" y="1051.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>futex_wait (2 samples, 0.14%)</title><rect x="733.2" y="1777" width="1.7" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="736.23" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (2 samples, 0.14%)</title><rect x="747.3" y="1361" width="1.6" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="750.29" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>prepare_exit_to_usermode (1 samples, 0.07%)</title><rect x="496.6" y="1537" width="0.8" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="499.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>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:::transferForSignal (1 samples, 0.07%)</title><rect x="556.1" y="1377" width="0.9" height="15.0" fill="rgb(80,193,193)" rx="2" ry="2" />
<text text-anchor="" x="559.14" 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>__wake_up_sync_key (1 samples, 0.07%)</title><rect x="657.1" y="417" width="0.8" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="660.10" 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/Utilities:::createService (4 samples, 0.28%)</title><rect x="460.2" y="977" width="3.3" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text text-anchor="" x="463.15" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_readv_writev (8 samples, 0.56%)</title><rect x="539.6" y="1777" width="6.6" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="542.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>Lorg/glassfish/jersey/server/internal/routing/MethodSelectingRouter$4:::apply (2 samples, 0.14%)</title><rect x="962.4" y="865" width="1.7" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="965.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/eclipse/jetty/server/HttpChannel:::handle (150 samples, 10.52%)</title><rect x="1054.3" y="1553" width="124.1" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text text-anchor="" x="1057.29" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/je..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/core/json/UTF8JsonGenerator:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="1113.0" y="737" width="0.9" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="1116.04" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_do_nmi (1 samples, 0.07%)</title><rect x="188.7" y="1489" width="0.9" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="191.74" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jshort_disjoint_arraycopy (1 samples, 0.07%)</title><rect x="718.3" y="1057" width="0.9" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text text-anchor="" x="721.33" 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>vfs_writev (1 samples, 0.07%)</title><rect x="642.2" y="513" width="0.8" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="645.20" 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/http/HttpFields:::getFieldNamesCollection (1 samples, 0.07%)</title><rect x="1015.4" y="1057" width="0.8" height="15.0" fill="rgb(104,214,214)" rx="2" ry="2" />
<text text-anchor="" x="1018.40" 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>Lio/dropwizard/request/logging/async/AsyncAccessEventAppenderFactory$1:::preprocess (7 samples, 0.49%)</title><rect x="357.5" y="1457" width="5.8" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="360.55" 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/servlet/internal/ResponseWriter:::writeResponseStatusAndHeaders (2 samples, 0.14%)</title><rect x="1128.8" y="817" width="1.6" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="1131.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>sys_futex (2 samples, 0.14%)</title><rect x="10.0" y="1761" width="1.7" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/io/ArrayByteBufferPool:::release (1 samples, 0.07%)</title><rect x="1001.3" y="481" width="0.9" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1004.33" 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>__local_bh_enable_ip (1 samples, 0.07%)</title><rect x="657.1" y="641" width="0.8" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="660.10" 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>ciTypeFlow::StateVector::apply_one_bytecode (1 samples, 0.07%)</title><rect x="144.1" y="1025" width="0.8" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="147.05" 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:::indexOf (1 samples, 0.07%)</title><rect x="812.7" y="1025" width="0.8" height="15.0" fill="rgb(80,193,193)" rx="2" ry="2" />
<text text-anchor="" x="815.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>[unknown] (1 samples, 0.07%)</title><rect x="772.1" y="1825" width="0.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text text-anchor="" x="775.12" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpOutput:::write (10 samples, 0.70%)</title><rect x="1117.2" y="785" width="8.3" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="1120.18" 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/Utilities:::createService (2 samples, 0.14%)</title><rect x="1094.0" y="865" width="1.7" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text text-anchor="" x="1097.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>Ljava/net/URI$Parser:::charAt (1 samples, 0.07%)</title><rect x="471.7" y="1073" width="0.9" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="474.74" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/handler/StatisticsHandler:::handle (108 samples, 7.57%)</title><rect x="936.0" y="1505" width="89.3" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text text-anchor="" x="938.96" 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>__netif_receive_skb_core (1 samples, 0.07%)</title><rect x="336.0" y="1377" width="0.9" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="339.03" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (8 samples, 0.56%)</title><rect x="220.2" y="1809" width="6.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text text-anchor="" x="223.18" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (4 samples, 0.28%)</title><rect x="533.0" y="1777" width="3.3" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="535.97" 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/HeaderUtils$1:::apply (1 samples, 0.07%)</title><rect x="1128.8" y="769" width="0.8" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="1131.77" 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.14%)</title><rect x="969.1" y="641" width="1.6" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="972.06" 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_error (1 samples, 0.07%)</title><rect x="513.9" y="1457" width="0.9" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="516.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>Ljava/lang/Character:::toLowerCase (1 samples, 0.07%)</title><rect x="886.3" y="1457" width="0.8" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="889.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>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::keyComparatorHash (1 samples, 0.07%)</title><rect x="962.4" y="721" width="0.9" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="965.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>Lcom/fasterxml/jackson/databind/ObjectReader:::_prefetchRootDeserializer (1 samples, 0.07%)</title><rect x="667.0" y="657" width="0.9" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="670.03" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (2 samples, 0.14%)</title><rect x="768.0" y="1409" width="1.6" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="770.98" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 0.28%)</title><rect x="1042.7" y="1729" width="3.3" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="1045.71" 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>Compile::fill_buffer (8 samples, 0.56%)</title><rect x="154.0" y="1713" width="6.6" height="15.0" fill="rgb(224,224,68)" rx="2" ry="2" />
<text text-anchor="" x="156.98" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/OutboundMessageContext:::singleHeader (1 samples, 0.07%)</title><rect x="831.7" y="785" width="0.8" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="834.70" 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/text/SimpleDateFormat:::format (7 samples, 0.49%)</title><rect x="246.7" y="1473" width="5.8" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="249.66" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetService (1 samples, 0.07%)</title><rect x="1006.3" y="625" width="0.8" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="1009.30" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (1 samples, 0.07%)</title><rect x="901.2" y="1761" width="0.8" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="904.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>__do_softirq (1 samples, 0.07%)</title><rect x="882.2" y="1025" width="0.8" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="885.17" 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>enqueue_task_fair (1 samples, 0.07%)</title><rect x="206.9" y="1569" width="0.9" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="209.94" 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/ClazzCreator:::resolve (4 samples, 0.28%)</title><rect x="1153.6" y="593" width="3.3" height="15.0" fill="rgb(72,221,72)" rx="2" ry="2" />
<text text-anchor="" x="1156.59" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpChannel:::onContent (2 samples, 0.14%)</title><rect x="677.8" y="417" width="1.6" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="680.78" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (2 samples, 0.14%)</title><rect x="747.3" y="1521" width="1.6" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="750.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>schedule (4 samples, 0.28%)</title><rect x="533.0" y="1729" width="3.3" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="535.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>nf_hook_slow (1 samples, 0.07%)</title><rect x="1022.8" y="769" width="0.9" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="1025.85" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/routing/UriRoutingContext:::pushTemplates (1 samples, 0.07%)</title><rect x="1100.6" y="849" width="0.9" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="1103.63" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/uri/UriComponent:::contextualEncode (1 samples, 0.07%)</title><rect x="810.2" y="1041" width="0.8" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text text-anchor="" x="813.18" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.07%)</title><rect x="736.5" y="1825" width="0.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text text-anchor="" x="739.54" 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/util/thread/QueuedThreadPool:::execute (1 samples, 0.07%)</title><rect x="762.2" y="1857" width="0.8" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text text-anchor="" x="765.19" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/util/thread/Locker:::lock (1 samples, 0.07%)</title><rect x="980.6" y="689" width="0.9" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="983.65" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.07%)</title><rect x="779.6" y="1809" width="0.8" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="782.57" 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] (4 samples, 0.28%)</title><rect x="737.4" y="1809" width="3.3" height="15.0" fill="rgb(211,67,67)" rx="2" ry="2" />
<text text-anchor="" x="740.36" 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:::reset (1 samples, 0.07%)</title><rect x="955.0" y="977" width="0.8" height="15.0" fill="rgb(76,188,188)" rx="2" ry="2" />
<text text-anchor="" x="957.99" 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$Branch:::match (1 samples, 0.07%)</title><rect x="590.1" y="913" width="0.8" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text text-anchor="" x="593.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>java_lang_Throwable::fill_in_stack_trace (20 samples, 1.40%)</title><rect x="568.6" y="929" width="16.5" height="15.0" fill="rgb(204,204,60)" rx="2" ry="2" />
<text text-anchor="" x="571.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/text/SimpleDateFormat:::subFormat (7 samples, 0.49%)</title><rect x="246.7" y="1441" width="5.8" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text text-anchor="" x="249.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>Lorg/jvnet/hk2/internal/FactoryCreator:::create (2 samples, 0.14%)</title><rect x="1090.7" y="817" width="1.7" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="1093.70" 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/UriParser:::parseComponent (2 samples, 0.14%)</title><rect x="1086.6" y="1057" width="1.6" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text text-anchor="" x="1089.56" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (2 samples, 0.14%)</title><rect x="63.8" y="1585" width="1.6" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="66.79" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/core/json/ByteSourceJsonBootstrapper:::ensureLoaded (6 samples, 0.42%)</title><rect x="674.5" y="593" width="4.9" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text text-anchor="" x="677.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>Lorg/eclipse/jetty/util/thread/Locker:::concLock (1 samples, 0.07%)</title><rect x="365.0" y="1377" width="0.8" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="367.99" 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/HashMap:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="361.7" y="1313" width="0.8" height="15.0" fill="rgb(81,194,194)" rx="2" ry="2" />
<text text-anchor="" x="364.68" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (2 samples, 0.14%)</title><rect x="146.5" y="1681" width="1.7" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="149.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>Ljava/util/HashMap:::keySet (1 samples, 0.07%)</title><rect x="697.6" y="1057" width="0.9" height="15.0" fill="rgb(105,216,216)" rx="2" ry="2" />
<text text-anchor="" x="700.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/jvnet/hk2/internal/IterableProviderImpl:::get (2 samples, 0.14%)</title><rect x="816.0" y="913" width="1.6" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text text-anchor="" x="818.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>Lorg/eclipse/jetty/http/HttpGenerator:::generateHeaders (2 samples, 0.14%)</title><rect x="638.1" y="657" width="1.6" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text text-anchor="" x="641.06" 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>autoremove_wake_function (1 samples, 0.07%)</title><rect x="839.1" y="401" width="0.9" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="842.14" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (2 samples, 0.14%)</title><rect x="10.0" y="1697" width="1.7" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (7 samples, 0.49%)</title><rect x="28.2" y="1697" width="5.8" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="31.20" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (4 samples, 0.28%)</title><rect x="1042.7" y="1697" width="3.3" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="1045.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>sock_sendmsg (2 samples, 0.14%)</title><rect x="976.5" y="433" width="1.7" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="979.51" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lch/qos/logback/access/jetty/RequestLogImpl:::log (9 samples, 0.63%)</title><rect x="556.1" y="1521" width="7.5" height="15.0" fill="rgb(80,193,193)" rx="2" ry="2" />
<text text-anchor="" x="559.14" 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.07%)</title><rect x="479.2" y="1041" width="0.8" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="482.19" 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:::isUriInetAddress (17 samples, 1.19%)</title><rect x="368.3" y="1089" width="14.1" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="371.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>Lsun/nio/ch/EPollSelectorImpl:::putEventOps (1 samples, 0.07%)</title><rect x="780.4" y="1505" width="0.8" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text text-anchor="" x="783.39" 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_rcv_finish (1 samples, 0.07%)</title><rect x="916.9" y="1393" width="0.9" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="919.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/glassfish/jersey/server/model/internal/AbstractJavaResourceMethodDispatcher:::invoke (5 samples, 0.35%)</title><rect x="432.8" y="897" width="4.2" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="435.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>sys_futex (1 samples, 0.07%)</title><rect x="1033.6" y="1729" width="0.8" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="1036.60" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/inject/Injections:::getOrCreate (2 samples, 0.14%)</title><rect x="822.6" y="833" width="1.6" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="825.59" 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/ServiceHandleImpl:::getService (5 samples, 0.35%)</title><rect x="1152.8" y="689" width="4.1" height="15.0" fill="rgb(92,204,204)" rx="2" ry="2" />
<text text-anchor="" x="1155.76" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceHandleImpl:::getService (7 samples, 0.49%)</title><rect x="1162.7" y="993" width="5.8" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text text-anchor="" x="1165.69" 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>Lch/qos/logback/access/spi/AccessEvent:::getRequestParameterMap (4 samples, 0.28%)</title><rect x="931.0" y="1409" width="3.3" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="934.00" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/ReaderInterceptorExecutor:::proceed (11 samples, 0.77%)</title><rect x="438.6" y="785" width="9.1" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text text-anchor="" x="441.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>sk_reset_timer (1 samples, 0.07%)</title><rect x="543.7" y="1313" width="0.9" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="546.73" 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>JVM_FillInStackTrace (11 samples, 0.77%)</title><rect x="799.4" y="945" width="9.1" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text text-anchor="" x="802.42" 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_push (2 samples, 0.14%)</title><rect x="1156.9" y="849" width="1.7" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="1159.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>tcp_write_xmit (1 samples, 0.07%)</title><rect x="1031.9" y="1601" width="0.9" height="15.0" fill="rgb(219,119,0)" rx="2" ry="2" />
<text text-anchor="" x="1034.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/internal/util/collection/KeyComparatorLinkedHashMap:::get (2 samples, 0.14%)</title><rect x="405.5" y="801" width="1.7" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="408.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>ttwu_do_activate.constprop.90 (1 samples, 0.07%)</title><rect x="1008.0" y="401" width="0.8" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="1010.95" 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>__vfs_read (1 samples, 0.07%)</title><rect x="897.1" y="1729" width="0.8" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="900.07" 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>ParseGenerator::generate (1 samples, 0.07%)</title><rect x="164.7" y="1729" width="0.9" height="15.0" fill="rgb(188,188,54)" rx="2" ry="2" />
<text text-anchor="" x="167.74" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (1 samples, 0.07%)</title><rect x="422.9" y="385" width="0.8" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="425.92" 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>intel_pmu_handle_irq (1 samples, 0.07%)</title><rect x="188.7" y="1441" width="0.9" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="191.74" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (2 samples, 0.14%)</title><rect x="772.9" y="1521" width="1.7" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="775.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>rw_verify_area (1 samples, 0.07%)</title><rect x="339.3" y="1761" width="0.9" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="342.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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetInjecteeDescriptor (2 samples, 0.14%)</title><rect x="859.8" y="609" width="1.7" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text text-anchor="" x="862.83" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (1 samples, 0.07%)</title><rect x="778.7" y="1361" width="0.9" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="781.74" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/CacheKey:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="1005.5" y="737" width="0.8" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="1008.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>Ljavax/ws/rs/core/AbstractMultivaluedMap:::get (1 samples, 0.07%)</title><rect x="962.4" y="785" width="0.9" height="15.0" fill="rgb(94,206,206)" rx="2" ry="2" />
<text text-anchor="" x="965.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>Ljava/lang/AbstractStringBuilder:::ensureCapacityInternal (1 samples, 0.07%)</title><rect x="661.2" y="737" width="0.9" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="664.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>Ljava/util/concurrent/locks/ReentrantLock$NonfairSync:::lock (1 samples, 0.07%)</title><rect x="645.5" y="641" width="0.8" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="648.51" 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>Lsun/nio/ch/EPollSelectorImpl:::updateSelectedKeys (2 samples, 0.14%)</title><rect x="552.8" y="1521" width="1.7" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" />
<text text-anchor="" x="555.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>Ljava/util/concurrent/ConcurrentHashMap$KeySetView:::iterator (2 samples, 0.14%)</title><rect x="232.6" y="1537" width="1.6" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text text-anchor="" x="235.59" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.07%)</title><rect x="493.3" y="1713" width="0.8" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="496.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/uri/internal/JerseyUriBuilder:::host (18 samples, 1.26%)</title><rect x="940.9" y="1105" width="14.9" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="943.93" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (2 samples, 0.14%)</title><rect x="217.7" y="1761" width="1.7" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="220.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/util/Utf8StringBuilder:::toString (2 samples, 0.14%)</title><rect x="731.6" y="1505" width="1.6" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="734.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>intel_pmu_enable_all (2 samples, 0.14%)</title><rect x="768.0" y="1345" width="1.6" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="770.98" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/hibernate/validator/internal/metadata/descriptor/BeanDescriptorImpl:::isBeanConstrained (1 samples, 0.07%)</title><rect x="844.1" y="865" width="0.8" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="847.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>Ljava/util/regex/Pattern$GroupTail:::match (2 samples, 0.14%)</title><rect x="1081.6" y="849" width="1.7" height="15.0" fill="rgb(67,180,180)" rx="2" ry="2" />
<text text-anchor="" x="1084.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>default_do_nmi (1 samples, 0.07%)</title><rect x="754.7" y="1441" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="757.74" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (1 samples, 0.07%)</title><rect x="279.8" y="1233" width="0.8" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="282.76" 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/process/internal/RequestScope$Instance:::remove (8 samples, 0.56%)</title><rect x="1161.9" y="1057" width="6.6" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="1164.87" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/OutboundMessageContext:::close (16 samples, 1.12%)</title><rect x="1117.2" y="913" width="13.2" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="1120.18" 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/ServiceLocatorImpl:::internalGetDescriptor (2 samples, 0.14%)</title><rect x="612.4" y="849" width="1.7" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="615.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>Ljava/util/LinkedList$ListItr:::checkForComodification (1 samples, 0.07%)</title><rect x="1006.3" y="545" width="0.8" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="1009.30" 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.07%)</title><rect x="1022.8" y="1137" width="0.9" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="1025.85" 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:::toLowerCase (3 samples, 0.21%)</title><rect x="252.5" y="1473" width="2.4" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text text-anchor="" x="255.45" 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/inject/EntityParamValueFactoryProvider$EntityValueFactory:::provide (20 samples, 1.40%)</title><rect x="437.0" y="849" width="16.5" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="439.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>Lsun/nio/ch/FileDispatcherImpl:::writev0 (2 samples, 0.14%)</title><rect x="640.5" y="561" width="1.7" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text text-anchor="" x="643.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>Lsun/nio/ch/SelectorImpl:::select (2 samples, 0.14%)</title><rect x="782.0" y="1569" width="1.7" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="785.05" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/jaxrs/base/ProviderBase:::readFrom (7 samples, 0.49%)</title><rect x="998.0" y="689" width="5.8" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text text-anchor="" x="1001.02" 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/ServiceLocatorImpl:::internalGetDescriptor (1 samples, 0.07%)</title><rect x="1093.2" y="865" width="0.8" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="1096.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>ciEnv::get_method_from_handle (1 samples, 0.07%)</title><rect x="166.4" y="1761" width="0.8" height="15.0" fill="rgb(182,182,52)" rx="2" ry="2" />
<text text-anchor="" x="169.40" 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>Parse::do_one_bytecode (1 samples, 0.07%)</title><rect x="144.1" y="1377" width="0.8" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text text-anchor="" x="147.05" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>retint_user (1 samples, 0.07%)</title><rect x="496.6" y="1553" width="0.8" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="499.56" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:::acquire (1 samples, 0.07%)</title><rect x="292.2" y="1601" width="0.8" height="15.0" fill="rgb(69,183,183)" rx="2" ry="2" />
<text text-anchor="" x="295.17" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/io/ManagedSelector$SelectorProducer:::runChange (1 samples, 0.07%)</title><rect x="781.2" y="1585" width="0.8" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="784.22" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (1 samples, 0.07%)</title><rect x="98.5" y="1617" width="0.9" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="101.54" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::toLowerCase (1 samples, 0.07%)</title><rect x="664.5" y="625" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="667.54" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (1 samples, 0.07%)</title><rect x="763.0" y="1681" width="0.8" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="766.02" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="688.5" y="449" width="0.9" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="691.54" 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>nf_conntrack_in (1 samples, 0.07%)</title><rect x="509.0" y="1457" width="0.8" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="511.98" 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>sys_futex (6 samples, 0.42%)</title><rect x="220.2" y="1777" width="4.9" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="223.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>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.28%)</title><rect x="91.9" y="1745" width="3.3" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text text-anchor="" x="94.92" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_do_nmi (1 samples, 0.07%)</title><rect x="223.5" y="1537" width="0.8" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="226.49" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/util/thread/strategy/ExecuteProduceConsume:::produceConsume (163 samples, 11.43%)</title><rect x="1051.8" y="1649" width="134.9" height="15.0" fill="rgb(89,200,200)" rx="2" ry="2" />
<text text-anchor="" x="1054.81" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/jett..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake_op (1 samples, 0.07%)</title><rect x="1033.6" y="1697" width="0.8" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="1036.60" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseCCP::transform_once (1 samples, 0.07%)</title><rect x="142.4" y="1681" width="0.8" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="145.40" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmethod::find_pc_desc_internal (1 samples, 0.07%)</title><rect x="953.3" y="897" width="0.9" height="15.0" fill="rgb(192,192,56)" rx="2" ry="2" />
<text text-anchor="" x="956.34" 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>[libpthread-2.23.so] (2 samples, 0.14%)</title><rect x="327.8" y="1697" width="1.6" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text text-anchor="" x="330.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>do_readv_writev (1 samples, 0.07%)</title><rect x="657.1" y="881" width="0.8" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="660.10" 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_writev (1 samples, 0.07%)</title><rect x="837.5" y="913" width="0.8" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="840.49" 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>gettimeofday@plt (1 samples, 0.07%)</title><rect x="1024.5" y="1361" width="0.8" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text text-anchor="" x="1027.50" 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/fasterxml/jackson/core/json/UTF8JsonGenerator:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="968.2" y="737" width="0.9" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="971.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>release_sock (1 samples, 0.07%)</title><rect x="525.5" y="1665" width="0.9" height="15.0" fill="rgb(197,97,0)" rx="2" ry="2" />
<text text-anchor="" x="528.53" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.07%)</title><rect x="550.4" y="1505" width="0.8" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="553.35" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_writev (1 samples, 0.07%)</title><rect x="1031.9" y="1745" width="0.9" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="1034.95" 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/BitSet:::set (1 samples, 0.07%)</title><rect x="921.1" y="1505" width="0.8" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text text-anchor="" x="924.07" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetService (2 samples, 0.14%)</title><rect x="1006.3" y="785" width="1.7" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="1009.30" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/http/HttpParser:::parseNext (4 samples, 0.28%)</title><rect x="676.1" y="465" width="3.3" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text text-anchor="" x="679.13" 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>native_write_msr_safe (2 samples, 0.14%)</title><rect x="970.7" y="785" width="1.7" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="973.72" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (1 samples, 0.07%)</title><rect x="95.2" y="1585" width="0.9" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="98.23" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (1 samples, 0.07%)</title><rect x="737.4" y="1585" width="0.8" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="740.36" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lio/dropwizard/jersey/jackson/JacksonMessageBodyProvider:::readFrom (7 samples, 0.49%)</title><rect x="998.0" y="705" width="5.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1001.02" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_iter_readv_writev (3 samples, 0.21%)</title><rect x="340.2" y="1745" width="2.5" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="343.17" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (1 samples, 0.07%)</title><rect x="331.1" y="1217" width="0.8" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="334.07" 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>__GI___writev (2 samples, 0.14%)</title><rect x="976.5" y="545" width="1.7" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text text-anchor="" x="979.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>native_write_msr_safe (8 samples, 0.56%)</title><rect x="34.8" y="1809" width="6.6" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="37.82" 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/ArrayList$Itr:::next (1 samples, 0.07%)</title><rect x="1139.5" y="737" width="0.9" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="1142.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>Lcom/fasterxml/jackson/databind/deser/SettableBeanProperty:::deserialize (1 samples, 0.07%)</title><rect x="441.9" y="609" width="0.9" height="15.0" fill="rgb(63,176,176)" rx="2" ry="2" />
<text text-anchor="" x="444.95" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/hk2/utilities/reflection/ReflectionHelper:::getRawClass (1 samples, 0.07%)</title><rect x="1005.5" y="721" width="0.8" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="1008.47" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (1 samples, 0.07%)</title><rect x="920.2" y="1409" width="0.9" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="923.24" 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/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (3 samples, 0.21%)</title><rect x="466.8" y="993" width="2.5" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="469.77" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpConnection:::onFillable (164 samples, 11.50%)</title><rect x="357.5" y="1569" width="135.8" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text text-anchor="" x="360.55" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/jett..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/http/HttpParser:::parseHeaders (3 samples, 0.21%)</title><rect x="1027.0" y="1521" width="2.5" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text text-anchor="" x="1029.98" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::indexOf (1 samples, 0.07%)</title><rect x="985.6" y="817" width="0.8" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="988.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>Lsun/misc/Unsafe:::park (16 samples, 1.12%)</title><rect x="301.3" y="1649" width="13.2" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text text-anchor="" x="304.28" 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:::append (3 samples, 0.21%)</title><rect x="248.3" y="1393" width="2.5" height="15.0" fill="rgb(81,194,194)" rx="2" ry="2" />
<text text-anchor="" x="251.32" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (2 samples, 0.14%)</title><rect x="754.7" y="1601" width="1.7" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="757.74" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/codahale/metrics/Histogram:::update (1 samples, 0.07%)</title><rect x="564.4" y="1377" width="0.8" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="567.42" 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>finish_task_switch (1 samples, 0.07%)</title><rect x="892.9" y="1505" width="0.9" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="895.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/glassfish/jersey/message/internal/OutboundMessageContext:::getMediaType (1 samples, 0.07%)</title><rect x="1134.6" y="913" width="0.8" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="1137.56" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/MediaTypeProvider:::fromString (1 samples, 0.07%)</title><rect x="1018.7" y="993" width="0.8" height="15.0" fill="rgb(84,197,197)" rx="2" ry="2" />
<text text-anchor="" x="1021.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>__schedule (2 samples, 0.14%)</title><rect x="171.4" y="1729" width="1.6" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="174.36" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (4 samples, 0.28%)</title><rect x="915.3" y="1745" width="3.3" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="918.27" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/http/HttpParser:::parseNext (6 samples, 0.42%)</title><rect x="728.3" y="1537" width="4.9" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text text-anchor="" x="731.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>Lorg/eclipse/jetty/http/HttpFields:::contains (1 samples, 0.07%)</title><rect x="886.3" y="1489" width="0.8" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="889.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>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="546.2" y="1825" width="0.8" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="549.21" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_established_options (1 samples, 0.07%)</title><rect x="545.4" y="1617" width="0.8" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="548.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>JavaCalls::call_helper (163 samples, 11.43%)</title><rect x="1051.8" y="1745" width="134.9" height="15.0" fill="rgb(227,227,69)" rx="2" ry="2" />
<text text-anchor="" x="1054.81" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaCalls::call_h..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::Parse (1 samples, 0.07%)</title><rect x="144.1" y="1425" width="0.8" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="147.05" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (124 samples, 8.70%)</title><rect x="228.5" y="1761" width="102.6" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text text-anchor="" x="231.46" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaCalls::c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::replaceAll (1 samples, 0.07%)</title><rect x="423.7" y="833" width="0.9" height="15.0" fill="rgb(70,219,70)" rx="2" ry="2" />
<text text-anchor="" x="426.74" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.07%)</title><rect x="347.6" y="1793" width="0.8" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="350.62" 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:::getBytes (2 samples, 0.14%)</title><rect x="264.0" y="1585" width="1.7" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="267.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/lang/Character:::toUpperCase (2 samples, 0.14%)</title><rect x="926.9" y="1329" width="1.6" height="15.0" fill="rgb(88,200,200)" rx="2" ry="2" />
<text text-anchor="" x="929.86" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>os::javaTimeMillis (1 samples, 0.07%)</title><rect x="892.1" y="1553" width="0.8" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="895.10" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>call_stub (140 samples, 9.82%)</title><rect x="780.4" y="1729" width="115.8" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="783.39" y="1739.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>entry_SYSCALL_64_fastpath (4 samples, 0.28%)</title><rect x="915.3" y="1825" width="3.3" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="918.27" 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/hibernate/validator/internal/metadata/raw/ExecutableElement:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="661.2" y="801" width="0.9" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="664.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>__GI___writev (1 samples, 0.07%)</title><rect x="696.0" y="1041" width="0.8" height="15.0" fill="rgb(250,124,124)" rx="2" ry="2" />
<text text-anchor="" x="698.99" 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_epoll_wait (3 samples, 0.21%)</title><rect x="902.0" y="1777" width="2.5" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="905.03" 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/io/WriteFlusher:::flush (3 samples, 0.21%)</title><rect x="829.2" y="641" width="2.5" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="832.21" 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/HashSet:::contains (1 samples, 0.07%)</title><rect x="1024.5" y="1409" width="0.8" height="15.0" fill="rgb(75,187,187)" rx="2" ry="2" />
<text text-anchor="" x="1027.50" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_iterate (1 samples, 0.07%)</title><rect x="422.1" y="417" width="0.8" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="425.09" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/process/internal/Stages$LinkedStage:::apply (4 samples, 0.28%)</title><rect x="404.7" y="929" width="3.3" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="407.71" 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>Lcom/fasterxml/jackson/core/JsonFactory:::createGenerator (1 samples, 0.07%)</title><rect x="1113.0" y="769" width="0.9" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="1116.04" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (2 samples, 0.14%)</title><rect x="10.0" y="1649" width="1.7" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>G1RootProcessor::process_java_roots (2 samples, 0.14%)</title><rect x="76.2" y="1777" width="1.7" height="15.0" fill="rgb(228,228,69)" rx="2" ry="2" />
<text text-anchor="" x="79.20" 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.07%)</title><rect x="422.9" y="673" width="0.8" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="425.92" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/MessageBodyFactory$ModelLookupKey:::hashCode (1 samples, 0.07%)</title><rect x="664.5" y="673" width="0.9" height="15.0" fill="rgb(97,208,208)" rx="2" ry="2" />
<text text-anchor="" x="667.54" 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/servlet/ServletHandler:::doScope (189 samples, 13.25%)</title><rect x="565.2" y="1361" width="156.4" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text text-anchor="" x="568.25" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/jetty/s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (2 samples, 0.14%)</title><rect x="63.8" y="1665" width="1.6" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="66.79" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>JavaCalls::call_virtual (134 samples, 9.40%)</title><rect x="920.2" y="1777" width="110.9" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text text-anchor="" x="923.24" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaCalls::ca..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_start (1 samples, 0.07%)</title><rect x="761.4" y="1841" width="0.8" height="15.0" fill="rgb(211,67,67)" rx="2" ry="2" />
<text text-anchor="" x="764.36" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ClazzCreator:::resolveAllDependencies (3 samples, 0.21%)</title><rect x="873.9" y="913" width="2.5" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text text-anchor="" x="876.90" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (134 samples, 9.40%)</title><rect x="920.2" y="1857" width="110.9" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text text-anchor="" x="923.24" y="1867.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>ttwu_do_wakeup (1 samples, 0.07%)</title><rect x="773.8" y="1201" width="0.8" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="776.77" 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/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetDescriptor (1 samples, 0.07%)</title><rect x="391.5" y="849" width="0.8" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text text-anchor="" x="394.47" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (2 samples, 0.14%)</title><rect x="772.9" y="1409" width="1.7" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="775.95" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/LockSupport:::park (16 samples, 1.12%)</title><rect x="301.3" y="1665" width="13.2" height="15.0" fill="rgb(102,213,213)" rx="2" ry="2" />
<text text-anchor="" x="304.28" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/hibernate/validator/internal/metadata/raw/ExecutableElement:::&lt;init&gt; (2 samples, 0.14%)</title><rect x="842.5" y="817" width="1.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="845.45" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (3 samples, 0.21%)</title><rect x="200.3" y="1777" width="2.5" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="203.32" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$BranchConn:::match (2 samples, 0.14%)</title><rect x="1081.6" y="833" width="1.7" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="1084.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>Lsun/nio/ch/SelectionKeyImpl:::nioInterestOps (1 samples, 0.07%)</title><rect x="553.7" y="1505" width="0.8" height="15.0" fill="rgb(81,194,194)" rx="2" ry="2" />
<text text-anchor="" x="556.66" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1 samples, 0.07%)</title><rect x="149.8" y="1713" width="0.9" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="152.85" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/io/ChannelEndPoint:::fill (2 samples, 0.14%)</title><rect x="1178.4" y="1537" width="1.7" height="15.0" fill="rgb(94,206,206)" rx="2" ry="2" />
<text text-anchor="" x="1181.42" 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/process/internal/RequestScope$Instance:::release (8 samples, 0.56%)</title><rect x="457.7" y="1073" width="6.6" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text text-anchor="" x="460.67" 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>os::javaTimeMillis (1 samples, 0.07%)</title><rect x="726.6" y="1521" width="0.8" height="15.0" fill="rgb(223,223,67)" rx="2" ry="2" />
<text text-anchor="" x="729.61" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (1 samples, 0.07%)</title><rect x="1050.2" y="1569" width="0.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="1053.15" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/AbstractSequentialList:::iterator (1 samples, 0.07%)</title><rect x="702.6" y="897" width="0.8" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="705.61" 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/MappableExceptionWrapperInterceptor:::aroundReadFrom (7 samples, 0.49%)</title><rect x="998.0" y="769" width="5.8" height="15.0" fill="rgb(80,193,193)" rx="2" ry="2" />
<text text-anchor="" x="1001.02" 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.14%)</title><rect x="822.6" y="817" width="1.6" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="825.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>[unknown] (1 samples, 0.07%)</title><rect x="549.5" y="1841" width="0.9" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text text-anchor="" x="552.52" 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_sendmsg (1 samples, 0.07%)</title><rect x="1022.8" y="1073" width="0.9" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="1025.85" 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/WriterInterceptorExecutor:::proceed (3 samples, 0.21%)</title><rect x="410.5" y="913" width="2.5" height="15.0" fill="rgb(92,204,204)" rx="2" ry="2" />
<text text-anchor="" x="413.50" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (1 samples, 0.07%)</title><rect x="98.5" y="1681" width="0.9" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="101.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>Ljava/lang/String:::length (1 samples, 0.07%)</title><rect x="957.5" y="993" width="0.8" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="960.48" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::equalsIgnoreCase (1 samples, 0.07%)</title><rect x="622.3" y="769" width="0.9" height="15.0" fill="rgb(109,219,219)" rx="2" ry="2" />
<text text-anchor="" x="625.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>ip_local_out (2 samples, 0.14%)</title><rect x="772.9" y="1585" width="1.7" height="15.0" fill="rgb(247,147,0)" rx="2" ry="2" />
<text text-anchor="" x="775.95" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (2 samples, 0.14%)</title><rect x="758.1" y="1713" width="1.6" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="761.05" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="892.9" y="1617" width="0.9" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="895.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>jlong_disjoint_arraycopy (1 samples, 0.07%)</title><rect x="985.6" y="785" width="0.8" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text text-anchor="" x="988.61" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/StringBuilder:::toString (1 samples, 0.07%)</title><rect x="425.4" y="849" width="0.8" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="428.40" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/Request:::getParameterNames (2 samples, 0.14%)</title><rect x="1057.6" y="1377" width="1.7" height="15.0" fill="rgb(90,202,202)" rx="2" ry="2" />
<text text-anchor="" x="1060.60" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/ConcurrentHashMap$Node:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="447.7" y="673" width="0.9" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="450.74" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/core/json/ByteSourceJsonBootstrapper:::handleBOM (1 samples, 0.07%)</title><rect x="1002.2" y="593" width="0.8" height="15.0" fill="rgb(78,191,191)" rx="2" ry="2" />
<text text-anchor="" x="1005.16" 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 (2 samples, 0.14%)</title><rect x="203.6" y="1729" width="1.7" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="206.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>ip_local_deliver (1 samples, 0.07%)</title><rect x="839.1" y="497" width="0.9" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="842.14" 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>net_rx_action (7 samples, 0.49%)</title><rect x="527.2" y="1457" width="5.8" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="530.18" 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>Lcom/fasterxml/jackson/core/JsonFactory:::_createParser (5 samples, 0.35%)</title><rect x="998.8" y="641" width="4.2" height="15.0" fill="rgb(68,181,181)" rx="2" ry="2" />
<text text-anchor="" x="1001.85" 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>Lcom/fasterxml/jackson/core/json/ByteSourceJsonBootstrapper:::constructParser (3 samples, 0.21%)</title><rect x="854.0" y="625" width="2.5" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="857.04" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (4 samples, 0.28%)</title><rect x="911.1" y="1665" width="3.3" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="914.14" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_handle (1 samples, 0.07%)</title><rect x="969.1" y="529" width="0.8" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="972.06" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (3 samples, 0.21%)</title><rect x="192.0" y="1729" width="2.5" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="195.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>Lorg/hibernate/validator/internal/engine/ValidatorImpl:::validateParameters (1 samples, 0.07%)</title><rect x="1137.9" y="849" width="0.8" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="1140.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>Lorg/eclipse/jetty/util/IncludeExclude:::matches (1 samples, 0.07%)</title><rect x="1024.5" y="1441" width="0.8" height="15.0" fill="rgb(80,192,192)" rx="2" ry="2" />
<text text-anchor="" x="1027.50" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.07%)</title><rect x="130.8" y="1777" width="0.8" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="133.81" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/net/URI:::&lt;init&gt; (6 samples, 0.42%)</title><rect x="715.0" y="1121" width="5.0" height="15.0" fill="rgb(79,191,191)" rx="2" ry="2" />
<text text-anchor="" x="718.02" 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>nmethod::new_nmethod (1 samples, 0.07%)</title><rect x="179.6" y="1681" width="0.9" height="15.0" fill="rgb(197,197,58)" rx="2" ry="2" />
<text text-anchor="" x="182.64" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/InboundMessageContext:::getMediaType (3 samples, 0.21%)</title><rect x="1017.1" y="1089" width="2.4" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text text-anchor="" x="1020.05" 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>aa_sock_msg_perm (1 samples, 0.07%)</title><rect x="643.0" y="433" width="0.9" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="646.03" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lch/qos/logback/access/spi/AccessEvent:::buildRequestParameterMap (2 samples, 0.14%)</title><rect x="561.1" y="1393" width="1.7" height="15.0" fill="rgb(94,206,206)" rx="2" ry="2" />
<text text-anchor="" x="564.11" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (1 samples, 0.07%)</title><rect x="454.4" y="913" width="0.8" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="457.36" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (1 samples, 0.07%)</title><rect x="880.5" y="929" width="0.8" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="883.52" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/ConcurrentHashMap:::replaceNode (1 samples, 0.07%)</title><rect x="605.8" y="785" width="0.8" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
<text text-anchor="" x="608.79" 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_finish_output (7 samples, 0.49%)</title><rect x="527.2" y="1553" width="5.8" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="530.18" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (1 samples, 0.07%)</title><rect x="509.0" y="1569" width="0.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="511.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>__tcp_push_pending_frames (1 samples, 0.07%)</title><rect x="657.1" y="769" width="0.8" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="660.10" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_start (5 samples, 0.35%)</title><rect x="753.9" y="1841" width="4.2" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text text-anchor="" x="756.91" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljavax/ws/rs/core/AbstractMultivaluedMap:::getValues (1 samples, 0.07%)</title><rect x="1016.2" y="1057" width="0.9" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="1019.23" 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 (1 samples, 0.07%)</title><rect x="762.2" y="1841" width="0.8" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text text-anchor="" x="765.19" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/jaxrs/cfg/AnnotationBundleKey:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="1146.1" y="673" width="0.9" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" />
<text text-anchor="" x="1149.14" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/fasterxml/jackson/core/base/ParserBase:::_parseNumericValue (1 samples, 0.07%)</title><rect x="670.3" y="593" width="0.9" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="673.34" 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/process/internal/RequestScope:::current (1 samples, 0.07%)</title><rect x="1089.9" y="833" width="0.8" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="1092.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>do_readv_writev (1 samples, 0.07%)</title><rect x="908.7" y="1745" width="0.8" height="15.0" fill="rgb(241,141,0)" rx="2" ry="2" />
<text text-anchor="" x="911.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>vfs_writev (1 samples, 0.07%)</title><rect x="1032.8" y="1777" width="0.8" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="1035.78" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljavax/ws/rs/core/AbstractMultivaluedMap:::get (1 samples, 0.07%)</title><rect x="656.3" y="865" width="0.8" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="659.27" 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 (98 samples, 6.87%)</title><rect x="385.7" y="1121" width="81.1" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="388.68" y="1131.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>Lorg/eclipse/jetty/io/SelectChannelEndPoint:::updateKey (1 samples, 0.07%)</title><rect x="780.4" y="1553" width="0.8" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" />
<text text-anchor="" x="783.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/eclipse/jetty/io/SelectChannelEndPoint$2:::run (164 samples, 11.50%)</title><rect x="357.5" y="1617" width="135.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="360.55" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/jett..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_tail (1 samples, 0.07%)</title><rect x="1189.2" y="1809" width="0.8" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="1192.17" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all (2 samples, 0.14%)</title><rect x="57.2" y="1553" width="1.6" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="60.17" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/routing/RoutingStage:::apply (7 samples, 0.49%)</title><rect x="1096.5" y="945" width="5.8" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="1099.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>Ljava/util/concurrent/ConcurrentHashMap:::putVal (1 samples, 0.07%)</title><rect x="859.0" y="689" width="0.8" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="862.00" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (15 samples, 1.05%)</title><rect x="186.3" y="1857" width="12.4" height="15.0" fill="rgb(250,124,124)" rx="2" ry="2" />
<text text-anchor="" x="189.26" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_handle (1 samples, 0.07%)</title><rect x="103.5" y="1553" width="0.8" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="106.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/jetty/BiDiGzipHandler:::handle (107 samples, 7.50%)</title><rect x="936.8" y="1473" width="88.5" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="939.79" y="1483.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>Lsun/util/locale/provider/JRELocaleProviderAdapter:::getLocaleResources (1 samples, 0.07%)</title><rect x="585.9" y="929" width="0.9" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="588.93" 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>inet_sendmsg (2 samples, 0.14%)</title><rect x="869.8" y="913" width="1.6" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="872.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>native_write_msr_safe (2 samples, 0.14%)</title><rect x="132.5" y="1809" width="1.6" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="135.47" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/io/WriteFlusher:::flush (4 samples, 0.28%)</title><rect x="1121.3" y="641" width="3.3" height="15.0" fill="rgb(64,178,178)" rx="2" ry="2" />
<text text-anchor="" x="1124.32" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_rcv (1 samples, 0.07%)</title><rect x="657.1" y="449" width="0.8" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="660.10" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (1 samples, 0.07%)</title><rect x="754.7" y="1473" width="0.9" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="757.74" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Object:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="691.0" y="449" width="0.9" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="694.02" 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>[libpthread-2.23.so] (1 samples, 0.07%)</title><rect x="896.2" y="1825" width="0.9" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text text-anchor="" x="899.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>Lorg/eclipse/jetty/io/ChannelEndPoint:::flush (6 samples, 0.42%)</title><rect x="974.9" y="625" width="4.9" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="977.85" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpOutput:::write (11 samples, 0.77%)</title><rect x="413.8" y="801" width="9.1" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="416.81" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (2 samples, 0.14%)</title><rect x="987.3" y="785" width="1.6" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="990.27" 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/server/HttpChannel:::write (4 samples, 0.28%)</title><rect x="828.4" y="769" width="3.3" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="831.39" 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/JsonWithPaddingInterceptor:::aroundWriteTo (3 samples, 0.21%)</title><rect x="633.9" y="865" width="2.5" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text text-anchor="" x="636.93" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/ThreadLocal:::set (2 samples, 0.14%)</title><rect x="298.8" y="1665" width="1.6" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text text-anchor="" x="301.79" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/handler/ScopedHandler:::handle (138 samples, 9.68%)</title><rect x="365.8" y="1393" width="114.2" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="368.82" y="1403.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>Ljava/net/InetSocketAddress:::getHostString (1 samples, 0.07%)</title><rect x="1055.9" y="1377" width="0.9" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="1058.95" 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/eclipse/jetty/util/Utf8Appendable:::checkState (1 samples, 0.07%)</title><rect x="732.4" y="1489" width="0.8" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="735.40" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/AbstractStringBuilder:::ensureCapacityInternal (1 samples, 0.07%)</title><rect x="654.6" y="817" width="0.8" height="15.0" fill="rgb(66,179,179)" rx="2" ry="2" />
<text text-anchor="" x="657.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>default_do_nmi (1 samples, 0.07%)</title><rect x="321.1" y="1409" width="0.9" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="324.14" 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/ConcurrentArrayQueue:::offer (2 samples, 0.14%)</title><rect x="442.8" y="449" width="1.6" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="445.78" 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/eclipse/jetty/server/HttpInput:::nextContent (4 samples, 0.28%)</title><rect x="676.1" y="529" width="3.3" height="15.0" fill="rgb(68,182,182)" rx="2" ry="2" />
<text text-anchor="" x="679.13" 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/model/ResourceMethodInvoker:::invoke (26 samples, 1.82%)</title><rect x="1135.4" y="945" width="21.5" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="1138.39" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (1 samples, 0.07%)</title><rect x="989.7" y="721" width="0.9" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="992.75" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParseGenerator::generate (1 samples, 0.07%)</title><rect x="144.1" y="1537" width="0.8" height="15.0" fill="rgb(187,187,54)" rx="2" ry="2" />
<text text-anchor="" x="147.05" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/ContainerResponse:::close (18 samples, 1.26%)</title><rect x="636.4" y="929" width="14.9" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="639.41" 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_softirq_own_stack (7 samples, 0.49%)</title><rect x="527.2" y="1489" width="5.8" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="530.18" 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/regex/Pattern:::matcher (1 samples, 0.07%)</title><rect x="592.6" y="993" width="0.8" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="595.55" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/AbstractStringBuilder:::append (1 samples, 0.07%)</title><rect x="470.9" y="1057" width="0.8" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="473.91" 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_transmit_skb (1 samples, 0.07%)</title><rect x="1031.9" y="1585" width="0.9" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="1034.95" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/InboundMessageContext:::singleHeader (3 samples, 0.21%)</title><rect x="1017.1" y="1073" width="2.4" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="1020.05" 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/annotation/AnnotationInvocationHandler:::invoke (1 samples, 0.07%)</title><rect x="1113.9" y="737" width="0.8" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text text-anchor="" x="1116.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>perf_pmu_enable.part.89 (1 samples, 0.07%)</title><rect x="134.1" y="1665" width="0.9" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="137.12" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>thread_entry (134 samples, 9.40%)</title><rect x="920.2" y="1793" width="110.9" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text text-anchor="" x="923.24" y="1803.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>futex_wait_queue_me (1 samples, 0.07%)</title><rect x="215.2" y="1713" width="0.8" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="218.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>itable stub (1 samples, 0.07%)</title><rect x="960.0" y="865" width="0.8" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" />
<text text-anchor="" x="962.96" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lio/dropwizard/jackson/FuzzyEnumModule$PermissiveEnumDeserializer:::deserialize (1 samples, 0.07%)</title><rect x="852.4" y="593" width="0.8" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text text-anchor="" x="855.38" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (2 samples, 0.14%)</title><rect x="733.2" y="1793" width="1.7" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="736.23" 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_readv_writev (2 samples, 0.14%)</title><rect x="720.0" y="1185" width="1.6" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="722.99" 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>itable stub (1 samples, 0.07%)</title><rect x="610.8" y="801" width="0.8" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text text-anchor="" x="613.76" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/ReaderInterceptorExecutor:::proceed (11 samples, 0.77%)</title><rect x="438.6" y="753" width="9.1" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="441.64" 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/uri/internal/UriParser:::parseComponent (2 samples, 0.14%)</title><rect x="1084.9" y="1105" width="1.7" height="15.0" fill="rgb(80,193,193)" rx="2" ry="2" />
<text text-anchor="" x="1087.91" 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>__tcp_push_pending_frames (1 samples, 0.07%)</title><rect x="336.0" y="1617" width="0.9" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="339.03" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="821.8" y="577" width="0.8" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="824.77" 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/process/internal/RequestScope:::findOrCreate (3 samples, 0.21%)</title><rect x="1089.9" y="849" width="2.5" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text text-anchor="" x="1092.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>__schedule (2 samples, 0.14%)</title><rect x="115.9" y="1681" width="1.7" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="118.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>perf_event_context_sched_in (2 samples, 0.14%)</title><rect x="863.1" y="433" width="1.7" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="866.14" 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/message/internal/MessageBodyFactory$ModelLookupKey:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="1111.4" y="769" width="0.8" height="15.0" fill="rgb(58,173,173)" rx="2" ry="2" />
<text text-anchor="" x="1114.39" 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:::getService (1 samples, 0.07%)</title><rect x="1091.5" y="801" width="0.9" height="15.0" fill="rgb(107,218,218)" rx="2" ry="2" />
<text text-anchor="" x="1094.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>Lorg/glassfish/jersey/internal/inject/Providers:::mergeAndSortRankedProviders (1 samples, 0.07%)</title><rect x="826.7" y="897" width="0.9" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="829.73" 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/util/locale/provider/LocaleResources:::getDecimalFormatSymbolsData (1 samples, 0.07%)</title><rect x="378.2" y="929" width="0.9" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="381.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>JavaCalls::call_virtual (1 samples, 0.07%)</title><rect x="740.7" y="1777" width="0.8" height="15.0" fill="rgb(201,201,59)" rx="2" ry="2" />
<text text-anchor="" x="743.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>entry_SYSCALL_64_fastpath (2 samples, 0.14%)</title><rect x="352.6" y="1489" width="1.6" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="355.58" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/process/internal/RequestScope$Instance:::remove (4 samples, 0.28%)</title><rect x="768.0" y="1617" width="3.3" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="770.98" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lch/qos/logback/core/AsyncAppenderBase:::append (10 samples, 0.70%)</title><rect x="784.5" y="1473" width="8.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text text-anchor="" x="787.53" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_v4_rcv (1 samples, 0.07%)</title><rect x="331.1" y="1345" width="0.8" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="334.07" 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 (1 samples, 0.07%)</title><rect x="550.4" y="1457" width="0.8" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="553.35" 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>ttwu_do_activate.constprop.90 (1 samples, 0.07%)</title><rect x="206.9" y="1585" width="0.9" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="209.94" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.14%)</title><rect x="110.1" y="1553" width="1.7" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="113.13" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.07%)</title><rect x="48.9" y="1649" width="0.8" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="51.89" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpChannel:::handle (201 samples, 14.10%)</title><rect x="556.1" y="1553" width="166.4" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" />
<text text-anchor="" x="559.14" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/jetty/se..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lcom/codahale/metrics/Timer:::update (1 samples, 0.07%)</title><rect x="1065.9" y="1393" width="0.8" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="1068.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>ip_local_deliver_finish (2 samples, 0.14%)</title><rect x="542.9" y="1361" width="1.7" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="545.90" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.28%)</title><rect x="57.2" y="1793" width="3.3" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text text-anchor="" x="60.17" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Formatter:::format (8 samples, 0.56%)</title><rect x="1078.3" y="1025" width="6.6" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text text-anchor="" x="1081.29" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_readv_writev (1 samples, 0.07%)</title><rect x="839.1" y="897" width="0.9" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="842.14" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (2 samples, 0.14%)</title><rect x="103.5" y="1665" width="1.7" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="106.51" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (3 samples, 0.21%)</title><rect x="902.0" y="1681" width="2.5" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="905.03" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_nmi_handler (1 samples, 0.07%)</title><rect x="499.9" y="1265" width="0.8" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="502.87" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/nio/Buffer:::limit (1 samples, 0.07%)</title><rect x="485.8" y="1505" width="0.8" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="488.81" 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 (1 samples, 0.07%)</title><rect x="714.2" y="1057" width="0.8" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="717.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/eclipse/jetty/server/handler/ContextHandler:::doScope (106 samples, 7.43%)</title><rect x="936.8" y="1377" width="87.7" height="15.0" fill="rgb(58,208,58)" rx="2" ry="2" />
<text text-anchor="" x="939.79" 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>Lorg/glassfish/jersey/server/internal/inject/EntityParamValueFactoryProvider$EntityValueFactory:::provide (15 samples, 1.05%)</title><rect x="995.5" y="849" width="12.5" height="15.0" fill="rgb(54,169,169)" rx="2" ry="2" />
<text text-anchor="" x="998.54" 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/Character:::toUpperCase (2 samples, 0.14%)</title><rect x="926.9" y="1313" width="1.6" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="929.86" 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>Ljersey/repackaged/com/google/common/net/InetAddresses:::isUriInetAddress (19 samples, 1.33%)</title><rect x="1069.2" y="1089" width="15.7" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="1072.19" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.07%)</title><rect x="657.1" y="801" width="0.8" height="15.0" fill="rgb(208,108,0)" rx="2" ry="2" />
<text text-anchor="" x="660.10" 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 (1 samples, 0.07%)</title><rect x="892.9" y="1569" width="0.9" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="895.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>Ljava/lang/Throwable:::&lt;init&gt; (16 samples, 1.12%)</title><rect x="940.9" y="1009" width="13.3" height="15.0" fill="rgb(68,182,182)" rx="2" ry="2" />
<text text-anchor="" x="943.93" 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/uri/internal/UriParser:::parseAuthority (3 samples, 0.21%)</title><rect x="955.8" y="1089" width="2.5" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text text-anchor="" x="958.82" 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>schedule (3 samples, 0.21%)</title><rect x="154.0" y="1601" width="2.5" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="156.98" 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:::internalGetService (2 samples, 0.14%)</title><rect x="1151.1" y="625" width="1.7" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="1154.11" 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/regex/Pattern$Slice:::match (1 samples, 0.07%)</title><rect x="615.7" y="833" width="0.8" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="618.72" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/ArrayList$Itr:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="632.3" y="849" width="0.8" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="635.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>Parse::do_one_bytecode (1 samples, 0.07%)</title><rect x="144.1" y="1169" width="0.8" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text text-anchor="" x="147.05" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfprintf (1 samples, 0.07%)</title><rect x="101.9" y="1825" width="0.8" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text text-anchor="" x="104.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>tcp_transmit_skb (1 samples, 0.07%)</title><rect x="336.0" y="1585" width="0.9" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="339.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>Ljava/util/HashSet:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="993.9" y="769" width="0.8" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="996.88" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (1 samples, 0.07%)</title><rect x="82.0" y="1537" width="0.8" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="84.99" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_local_out (1 samples, 0.07%)</title><rect x="465.9" y="833" width="0.9" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="468.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/eclipse/jetty/http/MetaData:::getContentLength (1 samples, 0.07%)</title><rect x="561.1" y="1313" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="564.11" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/process/RequestProcessingContext:::triggerEvent (1 samples, 0.07%)</title><rect x="1135.4" y="929" width="0.8" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="1138.39" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (2 samples, 0.14%)</title><rect x="57.2" y="1697" width="1.6" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="60.17" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/util/thread/strategy/ExecuteProduceConsume:::run (133 samples, 9.33%)</title><rect x="921.1" y="1665" width="110.0" height="15.0" fill="rgb(87,233,87)" rx="2" ry="2" />
<text text-anchor="" x="924.07" 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>ip_finish_output2 (1 samples, 0.07%)</title><rect x="979.0" y="273" width="0.8" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="981.99" 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/uri/internal/JerseyUriBuilder:::uri (37 samples, 2.59%)</title><rect x="568.6" y="1153" width="30.6" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="571.56" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/ContainerRequest:::readEntity (10 samples, 0.70%)</title><rect x="1138.7" y="833" width="8.3" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text text-anchor="" x="1141.70" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Java_java_lang_Throwable_fillInStackTrace (16 samples, 1.12%)</title><rect x="940.9" y="961" width="13.3" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text text-anchor="" x="943.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>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::internalGetDescriptor (1 samples, 0.07%)</title><rect x="1151.9" y="593" width="0.9" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text text-anchor="" x="1154.94" 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/util/IteratingCallback:::iterate (11 samples, 0.77%)</title><rect x="637.2" y="721" width="9.1" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="640.24" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (4 samples, 0.28%)</title><rect x="347.6" y="1841" width="3.3" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text text-anchor="" x="350.62" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/http/HttpParser:::parseLine (3 samples, 0.21%)</title><rect x="888.0" y="1521" width="2.4" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text text-anchor="" x="890.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>Ljava/util/concurrent/ConcurrentHashMap:::put (1 samples, 0.07%)</title><rect x="447.7" y="705" width="0.9" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="450.74" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (1 samples, 0.07%)</title><rect x="744.8" y="1441" width="0.8" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="747.81" 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.07%)</title><rect x="642.2" y="353" width="0.8" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="645.20" 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>__perf_event_task_sched_out (2 samples, 0.14%)</title><rect x="221.0" y="1681" width="1.7" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="224.01" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (3 samples, 0.21%)</title><rect x="192.0" y="1793" width="2.5" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="195.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>ip_rcv (1 samples, 0.07%)</title><rect x="657.1" y="513" width="0.8" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="660.10" 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 (5 samples, 0.35%)</title><rect x="15.0" y="1633" width="4.1" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="17.96" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceHandleImpl:::getService (1 samples, 0.07%)</title><rect x="691.9" y="545" width="0.8" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text text-anchor="" x="694.85" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::keyComparatorHash (3 samples, 0.21%)</title><rect x="466.8" y="1009" width="2.5" height="15.0" fill="rgb(59,173,173)" rx="2" ry="2" />
<text text-anchor="" x="469.77" 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/servlet/ServletHandler$CachedChain:::doFilter (103 samples, 7.22%)</title><rect x="939.3" y="1313" width="85.2" height="15.0" fill="rgb(58,208,58)" rx="2" ry="2" />
<text text-anchor="" x="942.27" 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>sock_sendmsg (1 samples, 0.07%)</title><rect x="882.2" y="1265" width="0.8" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="885.17" 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/servlet/WebComponent:::initContainerRequest (5 samples, 0.35%)</title><rect x="466.8" y="1121" width="4.1" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="469.77" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/Errors:::process (62 samples, 4.35%)</title><rect x="958.3" y="1073" width="51.3" height="15.0" fill="rgb(92,204,204)" rx="2" ry="2" />
<text text-anchor="" x="961.30" y="1083.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>entry_SYSCALL_64_fastpath (3 samples, 0.21%)</title><rect x="209.4" y="1761" width="2.5" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="212.42" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="149.8" y="1601" width="0.9" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="152.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>__do_softirq (1 samples, 0.07%)</title><rect x="557.8" y="1265" width="0.8" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="560.80" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/SystemDescriptor:::create (1 samples, 0.07%)</title><rect x="392.3" y="833" width="0.8" height="15.0" fill="rgb(95,242,95)" rx="2" ry="2" />
<text text-anchor="" x="395.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>do_iter_readv_writev (1 samples, 0.07%)</title><rect x="1031.1" y="1761" width="0.8" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="1034.12" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (2 samples, 0.14%)</title><rect x="912.8" y="1521" width="1.6" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="915.79" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/servlet/internal/ResponseWriter$NonCloseableOutputStreamWrapper:::write (13 samples, 0.91%)</title><rect x="413.0" y="833" width="10.7" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="415.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>__netif_receive_skb (1 samples, 0.07%)</title><rect x="869.8" y="641" width="0.8" height="15.0" fill="rgb(214,114,0)" rx="2" ry="2" />
<text text-anchor="" x="872.76" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_iter_readv_writev (2 samples, 0.14%)</title><rect x="720.0" y="1169" width="1.6" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="722.99" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java-?/7612 (20 samples, 1.40%)</title><rect x="82.0" y="1873" width="16.5" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text text-anchor="" x="84.99" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/nio/ch/IOVecWrapper:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="419.6" y="561" width="0.8" height="15.0" fill="rgb(100,211,211)" rx="2" ry="2" />
<text text-anchor="" x="422.61" 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>Interpreter (15 samples, 1.05%)</title><rect x="496.6" y="1681" width="12.4" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text text-anchor="" x="499.56" 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/ContainerRequest:::getResponseFilters (1 samples, 0.07%)</title><rect x="827.6" y="897" width="0.8" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="830.56" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (1 samples, 0.07%)</title><rect x="336.0" y="1601" width="0.9" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="339.03" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="422.1" y="689" width="0.8" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="425.09" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (1 samples, 0.07%)</title><rect x="124.2" y="1777" width="0.8" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="127.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>G1ParTask::work (4 samples, 0.28%)</title><rect x="42.3" y="1809" width="3.3" height="15.0" fill="rgb(186,186,54)" rx="2" ry="2" />
<text text-anchor="" x="45.27" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (3 samples, 0.21%)</title><rect x="743.2" y="1553" width="2.4" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="746.16" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/CacheKey:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="815.1" y="833" width="0.9" height="15.0" fill="rgb(52,167,167)" rx="2" ry="2" />
<text text-anchor="" x="818.15" 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>Klass::is_klass (4 samples, 0.28%)</title><rect x="758.1" y="1841" width="3.3" height="15.0" fill="rgb(190,190,55)" rx="2" ry="2" />
<text text-anchor="" x="761.05" 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/message/internal/MessageBodyFactory:::_getMessageBodyReader (2 samples, 0.14%)</title><rect x="849.1" y="705" width="1.6" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="852.07" 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>sys_read (1 samples, 0.07%)</title><rect x="763.0" y="1761" width="0.8" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="766.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>__do_softirq (1 samples, 0.07%)</title><rect x="422.9" y="465" width="0.8" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="425.92" 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:::getRequestParameterMap (2 samples, 0.14%)</title><rect x="561.1" y="1409" width="1.7" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="564.11" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.07%)</title><rect x="216.9" y="1793" width="0.8" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="219.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>Ljava/util/HashMap:::removeNode (1 samples, 0.07%)</title><rect x="701.0" y="1025" width="0.8" height="15.0" fill="rgb(79,191,191)" rx="2" ry="2" />
<text text-anchor="" x="703.95" 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>frame::sender_for_compiled_frame (1 samples, 0.07%)</title><rect x="806.9" y="881" width="0.8" height="15.0" fill="rgb(177,177,50)" rx="2" ry="2" />
<text text-anchor="" x="809.87" 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>futex_wait (2 samples, 0.14%)</title><rect x="103.5" y="1777" width="1.7" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="106.51" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="139.1" y="1409" width="0.8" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="142.09" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/io/BufferedOutputStream:::flush (26 samples, 1.82%)</title><rect x="267.3" y="1553" width="21.6" height="15.0" fill="rgb(105,215,215)" rx="2" ry="2" />
<text text-anchor="" x="270.35" 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>JavaThread::run (134 samples, 9.40%)</title><rect x="920.2" y="1825" width="110.9" height="15.0" fill="rgb(211,211,63)" rx="2" ry="2" />
<text text-anchor="" x="923.24" y="1835.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>sock_recvmsg (1 samples, 0.07%)</title><rect x="896.2" y="1713" width="0.9" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="899.24" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::toLowerCase (1 samples, 0.07%)</title><rect x="849.1" y="641" width="0.8" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="852.07" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lio/dropwizard/jersey/validation/DropwizardConfiguredValidator:::validateResult (1 samples, 0.07%)</title><rect x="436.2" y="881" width="0.8" height="15.0" fill="rgb(51,166,166)" rx="2" ry="2" />
<text text-anchor="" x="439.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>Lorg/glassfish/jersey/internal/Errors:::process (116 samples, 8.13%)</title><rect x="600.8" y="1073" width="96.0" height="15.0" fill="rgb(80,193,193)" rx="2" ry="2" />
<text text-anchor="" x="603.83" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/glassf..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_writev (1 samples, 0.07%)</title><rect x="550.4" y="1809" width="0.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="553.35" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (1 samples, 0.07%)</title><rect x="484.2" y="1041" width="0.8" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="487.15" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>frame::sender_for_compiled_frame (2 samples, 0.14%)</title><rect x="1075.8" y="881" width="1.7" height="15.0" fill="rgb(226,226,68)" rx="2" ry="2" />
<text text-anchor="" x="1078.81" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/hk2/utilities/cache/Cache:::compute (1 samples, 0.07%)</title><rect x="692.7" y="577" width="0.8" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="695.68" 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>Runtime1::monitorenter (1 samples, 0.07%)</title><rect x="554.5" y="1505" width="0.8" height="15.0" fill="rgb(183,183,53)" rx="2" ry="2" />
<text text-anchor="" x="557.49" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/uri/internal/CharacterIterator:::next (1 samples, 0.07%)</title><rect x="384.0" y="1041" width="0.9" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="387.03" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (2 samples, 0.14%)</title><rect x="293.0" y="1585" width="1.7" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="296.00" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Node::Node (1 samples, 0.07%)</title><rect x="160.6" y="1553" width="0.8" height="15.0" fill="rgb(214,214,64)" rx="2" ry="2" />
<text text-anchor="" x="163.60" 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_writev (1 samples, 0.07%)</title><rect x="484.2" y="1473" width="0.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="487.15" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.07%)</title><rect x="496.6" y="1489" width="0.8" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="499.56" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse::do_all_blocks (1 samples, 0.07%)</title><rect x="144.1" y="1697" width="0.8" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="147.05" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/nio/HeapByteBuffer:::put (1 samples, 0.07%)</title><rect x="638.1" y="609" width="0.8" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="641.06" 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>all (1,426 samples, 100%)</title><rect x="10.0" y="1889" width="1180.0" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (4 samples, 0.28%)</title><rect x="511.5" y="1697" width="3.3" height="15.0" fill="rgb(201,101,0)" rx="2" ry="2" />
<text text-anchor="" x="514.46" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/ContainerFilteringStage$ResponseFilterStage:::apply (2 samples, 0.14%)</title><rect x="965.8" y="913" width="1.6" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="968.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>Lorg/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::getEntry (1 samples, 0.07%)</title><rect x="962.4" y="737" width="0.9" height="15.0" fill="rgb(105,216,216)" rx="2" ry="2" />
<text text-anchor="" x="965.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>perf_pmu_enable.part.89 (1 samples, 0.07%)</title><rect x="124.2" y="1681" width="0.8" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="127.19" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/io/AbstractConnection$ReadCallback:::succeeded (129 samples, 9.05%)</title><rect x="923.5" y="1585" width="106.8" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text text-anchor="" x="926.55" y="1595.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/Collections:::enumeration (1 samples, 0.07%)</title><rect x="1059.3" y="1345" width="0.8" height="15.0" fill="rgb(101,211,211)" rx="2" ry="2" />
<text text-anchor="" x="1062.26" 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>update_process_times (1 samples, 0.07%)</title><rect x="269.8" y="1345" width="0.9" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="272.83" 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>start_thread (140 samples, 9.82%)</title><rect x="780.4" y="1857" width="115.8" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text text-anchor="" x="783.39" y="1867.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>__schedule (1 samples, 0.07%)</title><rect x="95.2" y="1681" width="0.9" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="98.23" 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/ConcurrentHashMap$TreeNode:::findTreeNode (1 samples, 0.07%)</title><rect x="692.7" y="529" width="0.8" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" />
<text text-anchor="" x="695.68" 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>Ljersey/repackaged/com/google/common/collect/Iterators:::transform (1 samples, 0.07%)</title><rect x="393.1" y="913" width="0.9" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="396.13" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_writev (1 samples, 0.07%)</title><rect x="908.7" y="1761" width="0.8" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="911.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>sock_sendmsg (2 samples, 0.14%)</title><rect x="1049.3" y="1729" width="1.7" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
<text text-anchor="" x="1052.33" 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:::listIterator (1 samples, 0.07%)</title><rect x="816.8" y="769" width="0.8" height="15.0" fill="rgb(63,177,177)" rx="2" ry="2" />
<text text-anchor="" x="819.80" 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>intel_pmu_enable_all (2 samples, 0.14%)</title><rect x="352.6" y="1297" width="1.6" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="355.58" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/nio/ch/EPollArrayWrapper:::epollWait (1 samples, 0.07%)</title><rect x="1053.5" y="1505" width="0.8" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text text-anchor="" x="1056.46" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/ServerRuntime$Responder:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="1168.5" y="1089" width="0.8" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text text-anchor="" x="1171.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/glassfish/jersey/server/internal/monitoring/RequestEventImpl$Builder:::build (1 samples, 0.07%)</title><rect x="1107.3" y="881" width="0.8" height="15.0" fill="rgb(98,209,209)" rx="2" ry="2" />
<text text-anchor="" x="1110.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>do_iter_readv_writev (1 samples, 0.07%)</title><rect x="989.7" y="865" width="0.9" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="992.75" 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>nf_hook_slow (1 samples, 0.07%)</title><rect x="1050.2" y="1393" width="0.8" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="1053.15" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/servlet/async/AsyncContextDelegateProviderImpl$ExtensionImpl:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="878.0" y="1105" width="0.9" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text text-anchor="" x="881.04" 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/Request:::getHeaderNames (2 samples, 0.14%)</title><rect x="1171.0" y="1089" width="1.6" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="1173.97" 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>native_write_msr_safe (3 samples, 0.21%)</title><rect x="500.7" y="1329" width="2.5" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="503.70" 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/ContainerResponse:::close (13 samples, 0.91%)</title><rect x="413.0" y="929" width="10.7" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="415.99" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/concurrent/locks/AbstractQueuedSynchronizer:::setHead (1 samples, 0.07%)</title><rect x="300.4" y="1649" width="0.9" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="303.45" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="102.7" y="1825" width="0.8" height="15.0" fill="rgb(202,102,0)" rx="2" ry="2" />
<text text-anchor="" x="105.68" 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_output (1 samples, 0.07%)</title><rect x="989.7" y="689" width="0.9" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="992.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>sock_write_iter (3 samples, 0.21%)</title><rect x="777.1" y="1745" width="2.5" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="780.08" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getUnqualifiedService (3 samples, 0.21%)</title><rect x="1093.2" y="897" width="2.5" height="15.0" fill="rgb(80,193,193)" rx="2" ry="2" />
<text text-anchor="" x="1096.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>Lorg/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (1 samples, 0.07%)</title><rect x="964.9" y="737" width="0.9" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text text-anchor="" x="967.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>Lch/qos/logback/core/util/CachingDateFormatter:::format (9 samples, 0.63%)</title><rect x="245.0" y="1505" width="7.5" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text text-anchor="" x="248.01" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (3 samples, 0.21%)</title><rect x="902.0" y="1745" width="2.5" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="905.03" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lch/qos/logback/core/encoder/LayoutWrappingEncoder:::doEncode (63 samples, 4.42%)</title><rect x="238.4" y="1617" width="52.1" height="15.0" fill="rgb(60,174,174)" rx="2" ry="2" />
<text text-anchor="" x="241.39" y="1627.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>pthread_cond_wait@@GLIBC_2.3.2 (1 samples, 0.07%)</title><rect x="226.8" y="1841" width="0.8" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text text-anchor="" x="229.80" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseCFG::schedule_late (1 samples, 0.07%)</title><rect x="161.4" y="1681" width="0.9" height="15.0" fill="rgb(189,189,55)" rx="2" ry="2" />
<text text-anchor="" x="164.43" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>call_stub (220 samples, 15.43%)</title><rect x="551.2" y="1729" width="182.0" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text text-anchor="" x="554.18" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >call_stub</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/StringBuilder:::append (4 samples, 0.28%)</title><rect x="258.2" y="1537" width="3.4" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="261.25" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lio/dropwizard/jersey/validation/DropwizardConfiguredValidator:::validateResourceAndInputParams (4 samples, 0.28%)</title><rect x="841.6" y="881" width="3.3" height="15.0" fill="rgb(68,181,181)" rx="2" ry="2" />
<text text-anchor="" x="844.63" 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>Lsun/nio/ch/NativeThread:::current (1 samples, 0.07%)</title><rect x="486.6" y="1505" width="0.9" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text text-anchor="" x="489.63" 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>call_stub (5 samples, 0.35%)</title><rect x="753.9" y="1729" width="4.2" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text text-anchor="" x="756.91" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Locale:::equals (1 samples, 0.07%)</title><rect x="585.9" y="897" width="0.9" height="15.0" fill="rgb(54,169,169)" rx="2" ry="2" />
<text text-anchor="" x="588.93" 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/UriParser:::parseComponent (2 samples, 0.14%)</title><rect x="956.6" y="1057" width="1.7" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text text-anchor="" x="959.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>end_repeat_nmi (1 samples, 0.07%)</title><rect x="67.1" y="1601" width="0.8" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="70.10" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/http/HttpFields:::put (1 samples, 0.07%)</title><rect x="650.5" y="753" width="0.8" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="653.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>_new_array_Java (1 samples, 0.07%)</title><rect x="998.8" y="545" width="0.9" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text text-anchor="" x="1001.85" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (1 samples, 0.07%)</title><rect x="522.2" y="1697" width="0.8" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="525.22" 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/HttpConnection:::parseRequestBuffer (6 samples, 0.42%)</title><rect x="728.3" y="1553" width="4.9" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text text-anchor="" x="731.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>perf_event_context_sched_in (2 samples, 0.14%)</title><rect x="515.6" y="1681" width="1.7" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="518.60" 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 (2 samples, 0.14%)</title><rect x="1044.4" y="1585" width="1.6" height="15.0" fill="rgb(199,99,0)" rx="2" ry="2" />
<text text-anchor="" x="1047.36" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_do_nmi (1 samples, 0.07%)</title><rect x="897.9" y="1553" width="0.8" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="900.90" 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/ImmediateResults:::getTimelessResults (1 samples, 0.07%)</title><rect x="1148.6" y="721" width="0.9" height="15.0" fill="rgb(62,176,176)" rx="2" ry="2" />
<text text-anchor="" x="1151.63" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Character:::toLowerCase (1 samples, 0.07%)</title><rect x="252.5" y="1457" width="0.8" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="255.45" 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_push_pending_frames (7 samples, 0.49%)</title><rect x="527.2" y="1649" width="5.8" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="530.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>__GI___writev (3 samples, 0.21%)</title><rect x="777.1" y="1841" width="2.5" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="780.08" 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>__lll_unlock_wake (1 samples, 0.07%)</title><rect x="227.6" y="1857" width="0.9" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text text-anchor="" x="230.63" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (4 samples, 0.28%)</title><rect x="1042.7" y="1809" width="3.3" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="1045.71" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/routing/MethodSelectingRouter:::apply (2 samples, 0.14%)</title><rect x="820.9" y="881" width="1.7" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text text-anchor="" x="823.94" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/uri/internal/JerseyUriBuilder:::build (8 samples, 0.56%)</title><rect x="713.4" y="1169" width="6.6" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text text-anchor="" x="716.37" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PhaseChaitin::Register_Allocate (2 samples, 0.14%)</title><rect x="162.3" y="1713" width="1.6" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="165.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>Lcom/aitusoftware/workshop/usvc/common/Request$Creator4JacksonDeserializer2e54f9ac:::createUsingDefault (1 samples, 0.07%)</title><rect x="667.9" y="641" width="0.8" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text text-anchor="" x="670.85" 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/net/URI$Parser:::at (1 samples, 0.07%)</title><rect x="471.7" y="1089" width="0.9" height="15.0" fill="rgb(65,178,178)" rx="2" ry="2" />
<text text-anchor="" x="474.74" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>LinkResolver::lookup_method_in_klasses (1 samples, 0.07%)</title><rect x="153.2" y="1489" width="0.8" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="156.16" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_writev (2 samples, 0.14%)</title><rect x="1156.9" y="961" width="1.7" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="1159.90" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/HttpConnection$Content:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="446.1" y="401" width="0.8" height="15.0" fill="rgb(65,179,179)" rx="2" ry="2" />
<text text-anchor="" x="449.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>vfs_writev (1 samples, 0.07%)</title><rect x="509.0" y="1729" width="0.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="511.98" 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/jersey/validation/DropwizardConfiguredValidator:::getGroup (1 samples, 0.07%)</title><rect x="658.8" y="865" width="0.8" height="15.0" fill="rgb(76,189,189)" rx="2" ry="2" />
<text text-anchor="" x="661.75" 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>end_repeat_nmi (1 samples, 0.07%)</title><rect x="902.0" y="1569" width="0.9" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="905.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>sys_writev (1 samples, 0.07%)</title><rect x="331.9" y="1761" width="0.8" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="334.89" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/CacheKey:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="612.4" y="833" width="0.8" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="615.41" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq.part.19 (1 samples, 0.07%)</title><rect x="882.2" y="1057" width="0.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="885.17" 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>jlong_disjoint_arraycopy (1 samples, 0.07%)</title><rect x="1029.5" y="1521" width="0.8" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" />
<text text-anchor="" x="1032.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>Ljava/lang/Character:::toString (1 samples, 0.07%)</title><rect x="594.2" y="1009" width="0.8" height="15.0" fill="rgb(69,182,182)" rx="2" ry="2" />
<text text-anchor="" x="597.21" 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/hk2/utilities/reflection/ReflectionHelper:::getRawClass (1 samples, 0.07%)</title><rect x="691.9" y="529" width="0.8" height="15.0" fill="rgb(85,197,197)" rx="2" ry="2" />
<text text-anchor="" x="694.85" 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>Lcom/codahale/metrics/Timer:::update (1 samples, 0.07%)</title><rect x="564.4" y="1393" width="0.8" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="567.42" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (2 samples, 0.14%)</title><rect x="103.5" y="1649" width="1.7" height="15.0" fill="rgb(211,111,0)" rx="2" ry="2" />
<text text-anchor="" x="106.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>Lsun/nio/ch/Util$3:::clear (1 samples, 0.07%)</title><rect x="555.3" y="1585" width="0.8" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="558.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>Ljava/net/URI$Parser:::substring (1 samples, 0.07%)</title><rect x="478.4" y="1089" width="0.8" height="15.0" fill="rgb(94,205,205)" rx="2" ry="2" />
<text text-anchor="" x="481.36" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="696.0" y="1025" width="0.8" height="15.0" fill="rgb(237,137,0)" rx="2" ry="2" />
<text text-anchor="" x="698.99" 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_pmu_enable.part.89 (2 samples, 0.14%)</title><rect x="768.0" y="1377" width="1.6" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="770.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>Ljava/util/regex/Pattern$Start:::match (2 samples, 0.14%)</title><rect x="589.2" y="961" width="1.7" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="592.24" 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 (6 samples, 0.42%)</title><rect x="76.2" y="1809" width="5.0" height="15.0" fill="rgb(209,209,62)" rx="2" ry="2" />
<text text-anchor="" x="79.20" 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/FactoryCreator:::dispose (7 samples, 0.49%)</title><rect x="1162.7" y="1025" width="5.8" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="1165.69" 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>dequeue_entity (2 samples, 0.14%)</title><rect x="217.7" y="1665" width="1.7" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text text-anchor="" x="220.70" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lsun/nio/ch/EPollSelectorImpl:::doSelect (1 samples, 0.07%)</title><rect x="782.0" y="1537" width="0.9" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text text-anchor="" x="785.05" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/Utilities:::createService (2 samples, 0.14%)</title><rect x="1006.3" y="769" width="1.7" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text text-anchor="" x="1009.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>__wake_up_common (1 samples, 0.07%)</title><rect x="293.0" y="1505" width="0.8" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="296.00" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CompressedReadStream::read_int_mb (1 samples, 0.07%)</title><rect x="799.4" y="913" width="0.9" height="15.0" fill="rgb(199,199,58)" rx="2" ry="2" />
<text text-anchor="" x="802.42" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/String:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="253.3" y="1457" width="0.8" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="256.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>entry_SYSCALL_64_fastpath (2 samples, 0.14%)</title><rect x="188.7" y="1745" width="1.7" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="191.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/server/internal/routing/MethodSelectingRouter:::access$000 (4 samples, 0.28%)</title><rect x="1096.5" y="849" width="3.3" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="1099.49" 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/hk2/utilities/AbstractActiveDescriptor:::isReified (1 samples, 0.07%)</title><rect x="1156.1" y="513" width="0.8" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="1159.07" 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>ip_local_deliver (1 samples, 0.07%)</title><rect x="1032.8" y="1361" width="0.8" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="1035.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>pthread_cond_signal@@GLIBC_2.3.2 (1 samples, 0.07%)</title><rect x="914.4" y="1825" width="0.9" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text text-anchor="" x="917.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/glassfish/jersey/internal/util/collection/KeyComparatorHashMap:::getEntry (1 samples, 0.07%)</title><rect x="618.2" y="737" width="0.8" height="15.0" fill="rgb(92,203,203)" rx="2" ry="2" />
<text text-anchor="" x="621.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>Lorg/glassfish/jersey/internal/util/collection/Values$LazyValueImpl:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="1013.7" y="1057" width="0.9" height="15.0" fill="rgb(104,215,215)" rx="2" ry="2" />
<text text-anchor="" x="1016.74" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/uri/internal/UriParser:::parseComponent (1 samples, 0.07%)</title><rect x="384.0" y="1057" width="0.9" height="15.0" fill="rgb(106,252,106)" rx="2" ry="2" />
<text text-anchor="" x="387.03" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.07%)</title><rect x="312.0" y="1489" width="0.9" height="15.0" fill="rgb(203,103,0)" rx="2" ry="2" />
<text text-anchor="" x="315.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/eclipse/jetty/servlet/ServletHandler$CachedChain:::doFilter (133 samples, 9.33%)</title><rect x="1067.5" y="1313" width="110.1" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text text-anchor="" x="1070.53" y="1323.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_write_xmit (1 samples, 0.07%)</title><rect x="882.2" y="1185" width="0.8" height="15.0" fill="rgb(228,128,0)" rx="2" ry="2" />
<text text-anchor="" x="885.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>ipv4_conntrack_local (2 samples, 0.14%)</title><rect x="341.0" y="1521" width="1.7" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="344.00" 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>Ljavax/ws/rs/core/UriBuilder:::fromUri (21 samples, 1.47%)</title><rect x="940.9" y="1169" width="17.4" height="15.0" fill="rgb(67,181,181)" rx="2" ry="2" />
<text text-anchor="" x="943.93" 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 (5 samples, 0.35%)</title><rect x="108.5" y="1729" width="4.1" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="111.47" 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>jni_fast_GetIntField (1 samples, 0.07%)</title><rect x="269.8" y="1473" width="0.9" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text text-anchor="" x="272.83" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>RegMask::Size (1 samples, 0.07%)</title><rect x="163.1" y="1681" width="0.8" height="15.0" fill="rgb(179,179,51)" rx="2" ry="2" />
<text text-anchor="" x="166.09" 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/ThreeThirtyResolver:::resolve (1 samples, 0.07%)</title><rect x="1011.3" y="881" width="0.8" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="1014.26" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Pattern$BmpCharProperty:::match (2 samples, 0.14%)</title><rect x="589.2" y="945" width="1.7" height="15.0" fill="rgb(52,201,52)" rx="2" ry="2" />
<text text-anchor="" x="592.24" 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>GangWorker::loop (17 samples, 1.19%)</title><rect x="14.1" y="1825" width="14.1" height="15.0" fill="rgb(210,210,62)" rx="2" ry="2" />
<text text-anchor="" x="17.14" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/routing/RoutingStage:::_apply (15 samples, 1.05%)</title><rect x="615.7" y="913" width="12.4" height="15.0" fill="rgb(87,198,198)" rx="2" ry="2" />
<text text-anchor="" x="618.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/glassfish/jersey/server/internal/routing/UriRoutingContext:::pushMatchedResource (1 samples, 0.07%)</title><rect x="624.0" y="849" width="0.8" height="15.0" fill="rgb(56,171,171)" rx="2" ry="2" />
<text text-anchor="" x="627.00" 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/hibernate/validator/internal/engine/ValidatorImpl:::validateParameters (2 samples, 0.14%)</title><rect x="659.6" y="865" width="1.6" height="15.0" fill="rgb(103,214,214)" rx="2" ry="2" />
<text text-anchor="" x="662.58" 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_rcv (1 samples, 0.07%)</title><rect x="773.8" y="1393" width="0.8" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="776.77" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (1 samples, 0.07%)</title><rect x="154.0" y="1441" width="0.8" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="156.98" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/MediaTypeProvider:::fromString (1 samples, 0.07%)</title><rect x="821.8" y="721" width="0.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text text-anchor="" x="824.77" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (1 samples, 0.07%)</title><rect x="778.7" y="1601" width="0.9" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="781.74" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (2 samples, 0.14%)</title><rect x="63.8" y="1777" width="1.6" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="66.79" 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>sock_sendmsg (1 samples, 0.07%)</title><rect x="1123.0" y="433" width="0.8" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="1125.97" 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>__GI___writev (4 samples, 0.28%)</title><rect x="915.3" y="1841" width="3.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text text-anchor="" x="918.27" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/collection/StringIgnoreCaseKeyComparator:::hash (2 samples, 0.14%)</title><rect x="405.5" y="753" width="1.7" height="15.0" fill="rgb(90,201,201)" rx="2" ry="2" />
<text text-anchor="" x="408.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>tcp_sendmsg (5 samples, 0.35%)</title><rect x="910.3" y="1681" width="4.1" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="913.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>entry_SYSCALL_64_fastpath (2 samples, 0.14%)</title><rect x="45.6" y="1745" width="1.6" height="15.0" fill="rgb(252,152,0)" rx="2" ry="2" />
<text text-anchor="" x="48.58" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/InboundMessageContext:::getMediaType (2 samples, 0.14%)</title><rect x="398.1" y="801" width="1.6" height="15.0" fill="rgb(69,218,69)" rx="2" ry="2" />
<text text-anchor="" x="401.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>TruncatedSeq::add (4 samples, 0.28%)</title><rect x="85.3" y="1841" width="3.3" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="88.30" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Unsafe_Unpark (1 samples, 0.07%)</title><rect x="1055.1" y="1345" width="0.8" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text text-anchor="" x="1058.12" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_writev (2 samples, 0.14%)</title><rect x="427.9" y="913" width="1.6" height="15.0" fill="rgb(192,92,0)" rx="2" ry="2" />
<text text-anchor="" x="430.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>Lorg/glassfish/jersey/server/internal/routing/RoutingStage:::apply (9 samples, 0.63%)</title><rect x="818.5" y="945" width="7.4" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="821.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/ServiceLocatorImpl:::narrow (1 samples, 0.07%)</title><rect x="1148.6" y="737" width="0.9" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text text-anchor="" x="1151.63" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.07%)</title><rect x="493.3" y="1745" width="0.8" height="15.0" fill="rgb(218,118,0)" rx="2" ry="2" />
<text text-anchor="" x="496.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>__do_softirq (1 samples, 0.07%)</title><rect x="336.0" y="1441" width="0.9" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="339.03" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (1 samples, 0.07%)</title><rect x="546.2" y="1665" width="0.8" height="15.0" fill="rgb(245,145,0)" rx="2" ry="2" />
<text text-anchor="" x="549.21" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_write (1 samples, 0.07%)</title><rect x="199.5" y="1649" width="0.8" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="202.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>Lorg/eclipse/jetty/server/HttpChannel:::write (10 samples, 0.70%)</title><rect x="973.2" y="769" width="8.3" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="976.20" 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 (2 samples, 0.14%)</title><rect x="63.8" y="1649" width="1.6" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="66.79" 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>process_backlog (1 samples, 0.07%)</title><rect x="422.9" y="433" width="0.8" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="425.92" 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>vfs_read (1 samples, 0.07%)</title><rect x="771.3" y="1649" width="0.8" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="774.29" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>HandleMarkCleaner::~HandleMarkCleaner (1 samples, 0.07%)</title><rect x="304.6" y="1617" width="0.8" height="15.0" fill="rgb(206,206,61)" rx="2" ry="2" />
<text text-anchor="" x="307.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>Ljavax/ws/rs/core/AbstractMultivaluedMap:::get (1 samples, 0.07%)</title><rect x="962.4" y="769" width="0.9" height="15.0" fill="rgb(78,190,190)" rx="2" ry="2" />
<text text-anchor="" x="965.44" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (2 samples, 0.14%)</title><rect x="748.9" y="1569" width="1.7" height="15.0" fill="rgb(233,133,0)" rx="2" ry="2" />
<text text-anchor="" x="751.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/hk2/utilities/general/internal/WeakHashClockImpl:::get (1 samples, 0.07%)</title><rect x="1093.2" y="801" width="0.8" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="1096.18" 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>vfs_writev (8 samples, 0.56%)</title><rect x="539.6" y="1793" width="6.6" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="542.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>Lorg/jvnet/hk2/internal/ConstantActiveDescriptor:::&lt;init&gt; (2 samples, 0.14%)</title><rect x="864.8" y="529" width="1.7" height="15.0" fill="rgb(99,210,210)" rx="2" ry="2" />
<text text-anchor="" x="867.80" 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 (124 samples, 8.70%)</title><rect x="228.5" y="1809" width="102.6" height="15.0" fill="rgb(221,221,66)" rx="2" ry="2" />
<text text-anchor="" x="231.46" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaThread::..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (1 samples, 0.07%)</title><rect x="762.2" y="1745" width="0.8" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="765.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>do_iter_readv_writev (1 samples, 0.07%)</title><rect x="1123.8" y="529" width="0.8" height="15.0" fill="rgb(198,98,0)" rx="2" ry="2" />
<text text-anchor="" x="1126.80" 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/http/HttpFields:::getFieldNames (2 samples, 0.14%)</title><rect x="1171.0" y="1073" width="1.6" height="15.0" fill="rgb(50,165,165)" rx="2" ry="2" />
<text text-anchor="" x="1173.97" 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>__nf_conntrack_find_get (1 samples, 0.07%)</title><rect x="1031.9" y="1457" width="0.9" height="15.0" fill="rgb(253,153,0)" rx="2" ry="2" />
<text text-anchor="" x="1034.95" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.07%)</title><rect x="509.0" y="1665" width="0.8" height="15.0" fill="rgb(215,115,0)" rx="2" ry="2" />
<text text-anchor="" x="511.98" 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/Collections$3:::nextElement (1 samples, 0.07%)</title><rect x="357.5" y="1393" width="0.9" height="15.0" fill="rgb(95,206,206)" rx="2" ry="2" />
<text text-anchor="" x="360.55" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (1 samples, 0.07%)</title><rect x="154.0" y="1457" width="0.8" height="15.0" fill="rgb(238,138,0)" rx="2" ry="2" />
<text text-anchor="" x="156.98" 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:::appendPath (1 samples, 0.07%)</title><rect x="810.2" y="1073" width="0.8" height="15.0" fill="rgb(74,187,187)" rx="2" ry="2" />
<text text-anchor="" x="813.18" 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/HttpGenerator:::generateResponse (1 samples, 0.07%)</title><rect x="828.4" y="673" width="0.8" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text text-anchor="" x="831.39" 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_push_pending_frames (1 samples, 0.07%)</title><rect x="989.7" y="769" width="0.9" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="992.75" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>process_backlog (1 samples, 0.07%)</title><rect x="336.0" y="1409" width="0.9" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="339.03" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (2 samples, 0.14%)</title><rect x="342.7" y="1665" width="1.6" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="345.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>Ljava/util/ArrayList$Itr:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="965.8" y="865" width="0.8" height="15.0" fill="rgb(66,180,180)" rx="2" ry="2" />
<text text-anchor="" x="968.75" 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:::internalGetDescriptor (1 samples, 0.07%)</title><rect x="857.3" y="753" width="0.9" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text text-anchor="" x="860.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>Lorg/glassfish/jersey/message/internal/OutboundMessageContext:::getLocation (1 samples, 0.07%)</title><rect x="403.9" y="897" width="0.8" height="15.0" fill="rgb(81,193,193)" rx="2" ry="2" />
<text text-anchor="" x="406.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>__wake_up_sync_key (1 samples, 0.07%)</title><rect x="839.1" y="433" width="0.9" height="15.0" fill="rgb(234,134,0)" rx="2" ry="2" />
<text text-anchor="" x="842.14" 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>sys_write (1 samples, 0.07%)</title><rect x="199.5" y="1713" width="0.8" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="202.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>account_entity_enqueue (1 samples, 0.07%)</title><rect x="331.1" y="1185" width="0.8" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="334.07" 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/message/internal/MessageBodyFactory$ModelLookupKey:::hashCode (1 samples, 0.07%)</title><rect x="1110.6" y="769" width="0.8" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1113.56" 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/LinkedList:::addFirst (1 samples, 0.07%)</title><rect x="1099.8" y="849" width="0.8" height="15.0" fill="rgb(106,217,217)" rx="2" ry="2" />
<text text-anchor="" x="1102.80" 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/ReaderInterceptorExecutor$UnCloseableInputStream:::read (2 samples, 0.14%)</title><rect x="854.0" y="577" width="1.7" height="15.0" fill="rgb(101,212,212)" rx="2" ry="2" />
<text text-anchor="" x="857.04" 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>default_do_nmi (1 samples, 0.07%)</title><rect x="969.1" y="545" width="0.8" height="15.0" fill="rgb(236,136,0)" rx="2" ry="2" />
<text text-anchor="" x="972.06" 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>futex_wait_queue_me (1 samples, 0.07%)</title><rect x="737.4" y="1713" width="0.8" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="740.36" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/util/thread/strategy/ExecuteProduceConsume:::run (163 samples, 11.43%)</title><rect x="1051.8" y="1665" width="134.9" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text text-anchor="" x="1054.81" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/eclipse/jett..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq.part.19 (1 samples, 0.07%)</title><rect x="839.1" y="641" width="0.9" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="842.14" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/ReaderInterceptorExecutor$TerminalReaderInterceptor:::aroundReadFrom (8 samples, 0.56%)</title><rect x="1140.4" y="737" width="6.6" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text text-anchor="" x="1143.35" 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::find_method_index (1 samples, 0.07%)</title><rect x="153.2" y="1457" width="0.8" height="15.0" fill="rgb(194,194,56)" rx="2" ry="2" />
<text text-anchor="" x="156.16" 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>Ljavax/ws/rs/core/Response:::status (1 samples, 0.07%)</title><rect x="432.0" y="881" width="0.8" height="15.0" fill="rgb(93,204,204)" rx="2" ry="2" />
<text text-anchor="" x="435.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/server/model/ResourceMethodInvoker:::apply (45 samples, 3.16%)</title><rect x="657.9" y="961" width="37.3" height="15.0" fill="rgb(108,218,218)" rx="2" ry="2" />
<text text-anchor="" x="660.92" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lor..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/OutboundMessageContext:::close (14 samples, 0.98%)</title><rect x="973.2" y="913" width="11.6" height="15.0" fill="rgb(89,200,200)" rx="2" ry="2" />
<text text-anchor="" x="976.20" 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>Lch/qos/logback/access/spi/AccessEvent:::buildRequestParameterMap (4 samples, 0.28%)</title><rect x="931.0" y="1393" width="3.3" height="15.0" fill="rgb(86,198,198)" rx="2" ry="2" />
<text text-anchor="" x="934.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>vfs_writev (1 samples, 0.07%)</title><rect x="465.9" y="1041" width="0.9" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="468.95" 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>Parse::do_one_bytecode (1 samples, 0.07%)</title><rect x="144.1" y="1569" width="0.8" height="15.0" fill="rgb(184,184,53)" rx="2" ry="2" />
<text text-anchor="" x="147.05" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (2 samples, 0.14%)</title><rect x="293.0" y="1601" width="1.7" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="296.00" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (1 samples, 0.07%)</title><rect x="768.0" y="1313" width="0.8" height="15.0" fill="rgb(226,126,0)" rx="2" ry="2" />
<text text-anchor="" x="770.98" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljavax/ws/rs/core/Response$ResponseBuilder:::newInstance (1 samples, 0.07%)</title><rect x="432.0" y="849" width="0.8" height="15.0" fill="rgb(71,184,184)" rx="2" ry="2" />
<text text-anchor="" x="435.02" 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 (86 samples, 6.03%)</title><rect x="385.7" y="1041" width="71.1" height="15.0" fill="rgb(101,246,101)" rx="2" ry="2" />
<text text-anchor="" x="388.68" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lorg/gla..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake_op (1 samples, 0.07%)</title><rect x="772.1" y="1745" width="0.8" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="775.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>Lio/dropwizard/request/logging/async/AsyncAccessEventAppenderFactory$1:::preprocess (5 samples, 0.35%)</title><rect x="559.5" y="1457" width="4.1" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="562.45" 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/http/HttpParser:::parseContent (3 samples, 0.21%)</title><rect x="444.4" y="449" width="2.5" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text text-anchor="" x="447.43" 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>try_to_wake_up (1 samples, 0.07%)</title><rect x="779.6" y="1745" width="0.8" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="782.57" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (2 samples, 0.14%)</title><rect x="1034.4" y="1681" width="1.7" height="15.0" fill="rgb(232,132,0)" rx="2" ry="2" />
<text text-anchor="" x="1037.43" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/HttpHeaderReaderImpl:::next (1 samples, 0.07%)</title><rect x="847.4" y="641" width="0.8" height="15.0" fill="rgb(104,215,215)" rx="2" ry="2" />
<text text-anchor="" x="850.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>schedule (2 samples, 0.14%)</title><rect x="1034.4" y="1729" width="1.7" height="15.0" fill="rgb(235,135,0)" rx="2" ry="2" />
<text text-anchor="" x="1037.43" 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 (6 samples, 0.42%)</title><rect x="871.4" y="993" width="5.0" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="874.42" 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>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="1175.1" y="1153" width="0.8" height="15.0" fill="rgb(242,142,0)" rx="2" ry="2" />
<text text-anchor="" x="1178.11" 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>Parse::do_field_access (1 samples, 0.07%)</title><rect x="164.7" y="1649" width="0.9" height="15.0" fill="rgb(185,185,53)" rx="2" ry="2" />
<text text-anchor="" x="167.74" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="95.2" y="1553" width="0.9" height="15.0" fill="rgb(196,96,0)" rx="2" ry="2" />
<text text-anchor="" x="98.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>tcp_event_new_data_sent (1 samples, 0.07%)</title><rect x="777.9" y="1649" width="0.8" height="15.0" fill="rgb(222,122,0)" rx="2" ry="2" />
<text text-anchor="" x="780.91" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (2 samples, 0.14%)</title><rect x="205.3" y="1729" width="1.6" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="208.29" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_enable_asynccancel (1 samples, 0.07%)</title><rect x="830.0" y="545" width="0.9" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" />
<text text-anchor="" x="833.04" 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>JavaThread::run (1 samples, 0.07%)</title><rect x="740.7" y="1825" width="0.8" height="15.0" fill="rgb(229,229,69)" rx="2" ry="2" />
<text text-anchor="" x="743.67" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Long:::valueOf (1 samples, 0.07%)</title><rect x="561.1" y="1265" width="0.8" height="15.0" fill="rgb(92,204,204)" rx="2" ry="2" />
<text text-anchor="" x="564.11" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Object:::notify (1 samples, 0.07%)</title><rect x="897.1" y="1841" width="0.8" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text text-anchor="" x="900.07" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/Response:::setContentType (3 samples, 0.21%)</title><rect x="648.0" y="785" width="2.5" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text text-anchor="" x="650.99" 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>Lcom/fasterxml/jackson/jaxrs/base/ProviderBase:::_createGenerator (1 samples, 0.07%)</title><rect x="968.2" y="785" width="0.9" height="15.0" fill="rgb(72,185,185)" rx="2" ry="2" />
<text text-anchor="" x="971.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>Lorg/glassfish/jersey/server/model/ResourceMethodInvoker:::invoke (45 samples, 3.16%)</title><rect x="657.9" y="945" width="37.3" height="15.0" fill="rgb(55,170,170)" rx="2" ry="2" />
<text text-anchor="" x="660.92" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Lor..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (1 samples, 0.07%)</title><rect x="215.2" y="1665" width="0.8" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="218.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/glassfish/jersey/server/internal/process/ServerProcessingBinder$ContainerRequestFactory:::provide (3 samples, 0.21%)</title><rect x="1150.3" y="705" width="2.5" height="15.0" fill="rgb(87,199,199)" rx="2" ry="2" />
<text text-anchor="" x="1153.28" 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_write_iter (1 samples, 0.07%)</title><rect x="979.0" y="465" width="0.8" height="15.0" fill="rgb(190,90,0)" rx="2" ry="2" />
<text text-anchor="" x="981.99" 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:::&lt;init&gt; (20 samples, 1.40%)</title><rect x="568.6" y="1009" width="16.5" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="571.56" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (1 samples, 0.07%)</title><rect x="1022.8" y="1009" width="0.9" height="15.0" fill="rgb(221,121,0)" rx="2" ry="2" />
<text text-anchor="" x="1025.85" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/routing/RoutingStage:::_apply (4 samples, 0.28%)</title><rect x="623.2" y="881" width="3.3" height="15.0" fill="rgb(59,174,174)" rx="2" ry="2" />
<text text-anchor="" x="626.17" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_readv_writev (1 samples, 0.07%)</title><rect x="484.2" y="1441" width="0.8" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="487.15" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/internal/routing/PathMatchingRouter:::apply (1 samples, 0.07%)</title><rect x="395.6" y="897" width="0.8" height="15.0" fill="rgb(88,234,88)" rx="2" ry="2" />
<text text-anchor="" x="398.61" 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>G1ParEvacuateFollowersClosure::do_void (1 samples, 0.07%)</title><rect x="56.3" y="1793" width="0.9" height="15.0" fill="rgb(220,220,66)" rx="2" ry="2" />
<text text-anchor="" x="59.34" 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>inet_sendmsg (1 samples, 0.07%)</title><rect x="696.0" y="913" width="0.8" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="698.99" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_cpu_backtrace (1 samples, 0.07%)</title><rect x="101.0" y="1809" width="0.9" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="104.02" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/model/Invocable:::getDefinitionMethod (1 samples, 0.07%)</title><rect x="1135.4" y="865" width="0.8" height="15.0" fill="rgb(57,171,171)" rx="2" ry="2" />
<text text-anchor="" x="1138.39" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (3 samples, 0.21%)</title><rect x="528.8" y="1249" width="2.5" height="15.0" fill="rgb(239,139,0)" rx="2" ry="2" />
<text text-anchor="" x="531.84" 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>__intel_pmu_enable_all (2 samples, 0.14%)</title><rect x="82.0" y="1569" width="1.6" height="15.0" fill="rgb(225,125,0)" rx="2" ry="2" />
<text text-anchor="" x="84.99" 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/http/HttpFields$Itr:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="1171.8" y="1025" width="0.8" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="1174.80" 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_queue_xmit (1 samples, 0.07%)</title><rect x="1032.8" y="1601" width="0.8" height="15.0" fill="rgb(210,110,0)" rx="2" ry="2" />
<text text-anchor="" x="1035.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>Ljava/lang/AbstractStringBuilder:::append (1 samples, 0.07%)</title><rect x="243.4" y="1521" width="0.8" height="15.0" fill="rgb(89,201,201)" rx="2" ry="2" />
<text text-anchor="" x="246.35" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/net/URI$Parser:::parse (2 samples, 0.14%)</title><rect x="878.9" y="1105" width="1.6" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="881.86" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java_lang_Throwable::fill_in_stack_trace (16 samples, 1.12%)</title><rect x="940.9" y="929" width="13.3" height="15.0" fill="rgb(216,216,65)" rx="2" ry="2" />
<text text-anchor="" x="943.93" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.07%)</title><rect x="53.0" y="1585" width="0.9" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="56.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>Ljava/util/AbstractList:::listIterator (1 samples, 0.07%)</title><rect x="816.8" y="785" width="0.8" height="15.0" fill="rgb(58,172,172)" rx="2" ry="2" />
<text text-anchor="" x="819.80" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (1 samples, 0.07%)</title><rect x="550.4" y="1217" width="0.8" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="553.35" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/lang/Thread:::setName (1 samples, 0.07%)</title><rect x="797.8" y="1233" width="0.8" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="800.77" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (1 samples, 0.07%)</title><rect x="647.2" y="513" width="0.8" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="650.17" 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>ip_finish_output2 (1 samples, 0.07%)</title><rect x="550.4" y="1569" width="0.8" height="15.0" fill="rgb(224,124,0)" rx="2" ry="2" />
<text text-anchor="" x="553.35" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (4 samples, 0.28%)</title><rect x="311.2" y="1553" width="3.3" height="15.0" fill="rgb(254,154,0)" rx="2" ry="2" />
<text text-anchor="" x="314.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/glassfish/jersey/message/internal/OutboundMessageContext:::getMediaType (1 samples, 0.07%)</title><rect x="427.1" y="913" width="0.8" height="15.0" fill="rgb(106,216,216)" rx="2" ry="2" />
<text text-anchor="" x="430.05" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_queue_xmit (1 samples, 0.07%)</title><rect x="882.2" y="1153" width="0.8" height="15.0" fill="rgb(191,91,0)" rx="2" ry="2" />
<text text-anchor="" x="885.17" 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 (21 samples, 1.47%)</title><rect x="940.9" y="1137" width="17.4" height="15.0" fill="rgb(73,186,186)" rx="2" ry="2" />
<text text-anchor="" x="943.93" 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>__GI___writev (8 samples, 0.56%)</title><rect x="539.6" y="1841" width="6.6" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text text-anchor="" x="542.59" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.07%)</title><rect x="130.8" y="1809" width="0.8" height="15.0" fill="rgb(194,94,0)" rx="2" ry="2" />
<text text-anchor="" x="133.81" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap:::getNode (1 samples, 0.07%)</title><rect x="679.4" y="657" width="0.9" height="15.0" fill="rgb(68,181,181)" rx="2" ry="2" />
<text text-anchor="" x="682.44" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/util/PropertiesHelper:::getPropertyNameForRuntime (5 samples, 0.35%)</title><rect x="833.4" y="865" width="4.1" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="836.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>Lorg/jvnet/hk2/internal/Utilities:::createService (12 samples, 0.84%)</title><rect x="859.0" y="769" width="9.9" height="15.0" fill="rgb(102,247,102)" rx="2" ry="2" />
<text text-anchor="" x="862.00" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (1 samples, 0.07%)</title><rect x="550.4" y="1601" width="0.8" height="15.0" fill="rgb(246,146,0)" rx="2" ry="2" />
<text text-anchor="" x="553.35" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/ContainerRequest:::getResponseFilters (1 samples, 0.07%)</title><rect x="966.6" y="897" width="0.8" height="15.0" fill="rgb(54,168,168)" rx="2" ry="2" />
<text text-anchor="" x="969.58" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/internal/inject/Injections:::getOrCreate (2 samples, 0.14%)</title><rect x="399.7" y="833" width="1.7" height="15.0" fill="rgb(92,204,204)" rx="2" ry="2" />
<text text-anchor="" x="402.75" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/Arrays:::copyOf (1 samples, 0.07%)</title><rect x="251.6" y="1313" width="0.9" height="15.0" fill="rgb(56,170,170)" rx="2" ry="2" />
<text text-anchor="" x="254.63" 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>default_do_nmi (1 samples, 0.07%)</title><rect x="332.7" y="1489" width="0.8" height="15.0" fill="rgb(212,112,0)" rx="2" ry="2" />
<text text-anchor="" x="335.72" 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>default_do_nmi (1 samples, 0.07%)</title><rect x="192.0" y="1553" width="0.9" height="15.0" fill="rgb(231,131,0)" rx="2" ry="2" />
<text text-anchor="" x="195.05" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/server/ContainerRequest:::&lt;init&gt; (1 samples, 0.07%)</title><rect x="708.4" y="1121" width="0.8" height="15.0" fill="rgb(53,168,168)" rx="2" ry="2" />
<text text-anchor="" x="711.40" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.14%)</title><rect x="125.0" y="1841" width="1.7" height="15.0" fill="rgb(230,130,0)" rx="2" ry="2" />
<text text-anchor="" x="128.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>do_iter_readv_writev (1 samples, 0.07%)</title><rect x="839.1" y="881" width="0.9" height="15.0" fill="rgb(250,150,0)" rx="2" ry="2" />
<text text-anchor="" x="842.14" 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>Lsun/nio/ch/SocketDispatcher:::writev (4 samples, 0.28%)</title><rect x="976.5" y="577" width="3.3" height="15.0" fill="rgb(82,194,194)" rx="2" ry="2" />
<text text-anchor="" x="979.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>Lorg/glassfish/hk2/utilities/cache/internal/WeakCARCacheImpl:::getValueFromT (1 samples, 0.07%)</title><rect x="680.3" y="561" width="0.8" height="15.0" fill="rgb(105,216,216)" rx="2" ry="2" />
<text text-anchor="" x="683.27" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/Request:::getAttribute (1 samples, 0.07%)</title><rect x="791.2" y="1425" width="0.8" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text text-anchor="" x="794.15" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (1 samples, 0.07%)</title><rect x="1123.0" y="81" width="0.8" height="15.0" fill="rgb(223,123,0)" rx="2" ry="2" />
<text text-anchor="" x="1125.97" 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>Lorg/eclipse/jetty/servlet/ServletHandler$CachedChain:::doFilter (133 samples, 9.33%)</title><rect x="1067.5" y="1265" width="110.1" height="15.0" fill="rgb(84,196,196)" rx="2" ry="2" />
<text text-anchor="" x="1070.53" y="1275.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_local_out (1 samples, 0.07%)</title><rect x="839.1" y="721" width="0.9" height="15.0" fill="rgb(244,144,0)" rx="2" ry="2" />
<text text-anchor="" x="842.14" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (1 samples, 0.07%)</title><rect x="522.2" y="1553" width="0.8" height="15.0" fill="rgb(200,100,0)" rx="2" ry="2" />
<text text-anchor="" x="525.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>__netif_receive_skb (1 samples, 0.07%)</title><rect x="720.8" y="849" width="0.8" height="15.0" fill="rgb(227,127,0)" rx="2" ry="2" />
<text text-anchor="" x="723.81" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (2 samples, 0.14%)</title><rect x="768.0" y="1489" width="1.6" height="15.0" fill="rgb(249,149,0)" rx="2" ry="2" />
<text text-anchor="" x="770.98" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_write_xmit (1 samples, 0.07%)</title><rect x="696.0" y="849" width="0.8" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="698.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>Lorg/eclipse/jetty/server/HttpChannelState:::isInitial (1 samples, 0.07%)</title><rect x="1061.7" y="1489" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text text-anchor="" x="1064.74" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.07%)</title><rect x="712.5" y="993" width="0.9" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="715.54" 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>entry_SYSCALL_64_fastpath (2 samples, 0.14%)</title><rect x="1037.7" y="1793" width="1.7" height="15.0" fill="rgb(205,105,0)" rx="2" ry="2" />
<text text-anchor="" x="1040.74" 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.07%)</title><rect x="124.2" y="1729" width="0.8" height="15.0" fill="rgb(204,104,0)" rx="2" ry="2" />
<text text-anchor="" x="127.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>Lorg/eclipse/jetty/util/thread/QueuedThreadPool:::runJob (140 samples, 9.82%)</title><rect x="780.4" y="1681" width="115.8" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text text-anchor="" x="783.39" y="1691.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>Lsun/nio/ch/SocketDispatcher:::writev (2 samples, 0.14%)</title><rect x="420.4" y="577" width="1.7" height="15.0" fill="rgb(83,195,195)" rx="2" ry="2" />
<text text-anchor="" x="423.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>schedule (2 samples, 0.14%)</title><rect x="863.1" y="497" width="1.7" height="15.0" fill="rgb(217,117,0)" rx="2" ry="2" />
<text text-anchor="" x="866.14" 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>sys_writev (8 samples, 0.56%)</title><rect x="539.6" y="1809" width="6.6" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="542.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>tcp_sendmsg (7 samples, 0.49%)</title><rect x="540.4" y="1697" width="5.8" height="15.0" fill="rgb(206,106,0)" rx="2" ry="2" />
<text text-anchor="" x="543.42" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/handler/StatisticsHandler:::handle (106 samples, 7.43%)</title><rect x="795.3" y="1505" width="87.7" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text text-anchor="" x="798.29" 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>Interpreter (134 samples, 9.40%)</title><rect x="920.2" y="1697" width="110.9" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text text-anchor="" x="923.24" 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>do_futex (3 samples, 0.21%)</title><rect x="209.4" y="1729" width="2.5" height="15.0" fill="rgb(220,120,0)" rx="2" ry="2" />
<text text-anchor="" x="212.42" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Interpreter (1 samples, 0.07%)</title><rect x="761.4" y="1537" width="0.8" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="764.36" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable.part.89 (2 samples, 0.14%)</title><rect x="863.1" y="417" width="1.7" height="15.0" fill="rgb(195,95,0)" rx="2" ry="2" />
<text text-anchor="" x="866.14" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (1 samples, 0.07%)</title><rect x="779.6" y="1841" width="0.8" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text text-anchor="" x="782.57" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/glassfish/jersey/message/internal/CommittingOutputStream:::commitStream (1 samples, 0.07%)</title><rect x="403.9" y="945" width="0.8" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text text-anchor="" x="406.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>sock_sendmsg (1 samples, 0.07%)</title><rect x="837.5" y="833" width="0.8" height="15.0" fill="rgb(243,143,0)" rx="2" ry="2" />
<text text-anchor="" x="840.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/eclipse/jetty/util/IteratingCallback:::iterate (9 samples, 0.63%)</title><rect x="974.0" y="721" width="7.5" height="15.0" fill="rgb(91,202,202)" rx="2" ry="2" />
<text text-anchor="" x="977.03" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_recvmsg (1 samples, 0.07%)</title><rect x="338.5" y="1681" width="0.8" height="15.0" fill="rgb(209,109,0)" rx="2" ry="2" />
<text text-anchor="" x="341.51" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>java-?/7633 (20 samples, 1.40%)</title><rect x="182.1" y="1873" width="16.6" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text text-anchor="" x="185.12" 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>__schedule (2 samples, 0.14%)</title><rect x="168.1" y="1713" width="1.6" height="15.0" fill="rgb(248,148,0)" rx="2" ry="2" />
<text text-anchor="" x="171.05" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/util/thread/Locker:::concLock (1 samples, 0.07%)</title><rect x="980.6" y="673" width="0.9" height="15.0" fill="rgb(77,190,190)" rx="2" ry="2" />
<text text-anchor="" x="983.65" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/regex/Matcher:::find (1 samples, 0.07%)</title><rect x="1131.2" y="817" width="0.9" height="15.0" fill="rgb(91,203,203)" rx="2" ry="2" />
<text text-anchor="" x="1134.25" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceLocatorImpl:::getInjecteeDescriptor (2 samples, 0.14%)</title><rect x="1004.6" y="785" width="1.7" height="15.0" fill="rgb(75,188,188)" rx="2" ry="2" />
<text text-anchor="" x="1007.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>sock_write_iter (1 samples, 0.07%)</title><rect x="1031.9" y="1697" width="0.9" height="15.0" fill="rgb(240,140,0)" rx="2" ry="2" />
<text text-anchor="" x="1034.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>Ljava/net/URI$Parser:::parseHierarchical (1 samples, 0.07%)</title><rect x="879.7" y="1089" width="0.8" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text text-anchor="" x="882.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>MachNode::MachNode (1 samples, 0.07%)</title><rect x="160.6" y="1569" width="0.8" height="15.0" fill="rgb(198,198,58)" rx="2" ry="2" />
<text text-anchor="" x="163.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>Lorg/jvnet/hk2/internal/ClazzCreator:::createMe (1 samples, 0.07%)</title><rect x="702.6" y="913" width="0.8" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text text-anchor="" x="705.61" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljavax/ws/rs/core/AbstractMultivaluedMap:::getValues (1 samples, 0.07%)</title><rect x="631.4" y="833" width="0.9" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text text-anchor="" x="634.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>Ljersey/repackaged/com/google/common/net/InetAddresses:::forUriString (17 samples, 1.19%)</title><rect x="368.3" y="1073" width="14.1" height="15.0" fill="rgb(95,207,207)" rx="2" ry="2" />
<text text-anchor="" x="371.30" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lch/qos/logback/access/pattern/ElapsedTimeConverter:::convert (1 samples, 0.07%)</title><rect x="199.5" y="1793" width="0.8" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text text-anchor="" x="202.50" 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>apic_timer_interrupt (1 samples, 0.07%)</title><rect x="557.8" y="1313" width="0.8" height="15.0" fill="rgb(193,93,0)" rx="2" ry="2" />
<text text-anchor="" x="560.80" 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>DirtyCardQueueSet::apply_closure_to_completed_buffer (1 samples, 0.07%)</title><rect x="63.0" y="1745" width="0.8" height="15.0" fill="rgb(200,200,59)" rx="2" ry="2" />
<text text-anchor="" x="65.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>finish_task_switch (5 samples, 0.35%)</title><rect x="499.0" y="1441" width="4.2" height="15.0" fill="rgb(207,107,0)" rx="2" ry="2" />
<text text-anchor="" x="502.05" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_readv_writev (1 samples, 0.07%)</title><rect x="1041.9" y="1761" width="0.8" height="15.0" fill="rgb(251,151,0)" rx="2" ry="2" />
<text text-anchor="" x="1044.88" 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>Lch/qos/logback/access/spi/AccessEvent:::buildRequestHeaderMap (1 samples, 0.07%)</title><rect x="360.0" y="1393" width="0.9" height="15.0" fill="rgb(90,236,90)" rx="2" ry="2" />
<text text-anchor="" x="363.03" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/eclipse/jetty/server/Request:::getContentLength (1 samples, 0.07%)</title><rect x="561.1" y="1329" width="0.8" height="15.0" fill="rgb(107,217,217)" rx="2" ry="2" />
<text text-anchor="" x="564.11" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Ljava/util/HashMap$KeyIterator:::next (1 samples, 0.07%)</title><rect x="1056.8" y="1361" width="0.8" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="1059.77" 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/internal/routing/MethodSelectingRouter:::access$000 (2 samples, 0.14%)</title><rect x="820.9" y="849" width="1.7" height="15.0" fill="rgb(96,207,207)" rx="2" ry="2" />
<text text-anchor="" x="823.94" 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/ArrayTrie:::getBest (2 samples, 0.14%)</title><rect x="1181.7" y="1489" width="1.7" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text text-anchor="" x="1184.73" 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>CodeCache::find_blob (1 samples, 0.07%)</title><rect x="806.0" y="881" width="0.9" height="15.0" fill="rgb(195,195,57)" rx="2" ry="2" />
<text text-anchor="" x="809.04" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Lorg/jvnet/hk2/internal/ServiceHandleImpl:::getService (11 samples, 0.77%)</title><rect x="684.4" y="689" width="9.1" height="15.0" fill="rgb(61,175,175)" rx="2" ry="2" />
<text text-anchor="" x="687.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>Ljava/util/concurrent/locks/ReentrantReadWriteLock$ReadLock:::lock (1 samples, 0.07%)</title><rect x="1065.9" y="1297" width="0.8" height="15.0" fill="rgb(107,218,218)" rx="2" ry="2" />
<text text-anchor="" x="1068.88" 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/internal/util/collection/KeyComparatorHashMap:::keyComparatorHash (2 samples, 0.14%)</title><rect x="405.5" y="769" width="1.7" height="15.0" fill="rgb(69,182,182)" rx="2"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment