cgspace-notes/docs/2020/02/flamegraph-java-cli-dspace58.svg

4201 lines
201 KiB
XML

<?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="886" onload="init(evt)" viewBox="0 0 1200 886" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES: -->
<defs>
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); }
#search, #ignorecase { opacity:0.1; cursor:pointer; }
#search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#title { text-anchor:middle; font-size:17px}
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style>
<script type="text/ecmascript">
<![CDATA[
"use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
ignorecaseBtn = document.getElementById("ignorecase");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
currentSearchTerm = null;
}
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom();
zoom(target);
}
else if (e.target.id == "unzoom") unzoom();
else if (e.target.id == "search") search_prompt();
else if (e.target.id == "ignorecase") toggle_ignorecase();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = "Function: " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
}, false)
// ctrl-I to toggle case-sensitive search
window.addEventListener("keydown",function (e) {
if (e.ctrlKey && e.keyCode === 73) {
e.preventDefault();
toggle_ignorecase();
}
}, false)
// functions
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
return;
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_" + attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
// Smaller than this size won't fit anything
if (w < 2 * 12 * 0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x = txt.length - 2; x > 0; x--) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
if (e.tagName == "text")
e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x - 10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = 10;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2);
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr.width.value);
var xmin = parseFloat(attr.x.value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr.y.value);
var ratio = (svg.width.baseVal.value - 2 * 10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
unzoombtn.classList.remove("hide");
var el = document.getElementById("frames").children;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a.x.value);
var ew = parseFloat(a.width.value);
var upstack;
// Is it an ancestor
if (0 == 0) {
upstack = parseFloat(a.y.value) > ymin;
} else {
upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
update_text(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, ratio);
update_text(e);
}
}
}
search();
}
function unzoom() {
unzoombtn.classList.add("hide");
var el = document.getElementById("frames").children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
update_text(el[i]);
}
search();
}
// search
function toggle_ignorecase() {
ignorecase = !ignorecase;
if (ignorecase) {
ignorecaseBtn.classList.add("show");
} else {
ignorecaseBtn.classList.remove("show");
}
reset_search();
search();
}
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)"
+ (ignorecase ? ", ignoring case" : "")
+ "\nPress Ctrl-i to toggle case sensitivity", "");
if (term != null) {
currentSearchTerm = term;
search();
}
} else {
reset_search();
searching = 0;
currentSearchTerm = null;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
if (currentSearchTerm === null) return;
var term = currentSearchTerm;
var re = new RegExp(term, ignorecase ? 'i' : '');
var el = document.getElementById("frames").children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes.width.value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes.x.value);
orig_save(rect, "fill");
rect.attributes.fill.value = "rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="886.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="869" > </text>
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
<text id="search" x="1090.00" y="24" >Search</text>
<text id="ignorecase" x="1174.00" y="24" >ic</text>
<text id="matched" x="1090.00" y="869" > </text>
<g id="frames">
<g >
<title>do_sys_poll (1 samples, 0.23%)</title><rect x="1101.5" y="245" width="2.7" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="1104.50" y="255.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match (2 samples, 0.45%)</title><rect x="978.1" y="117" width="5.4" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="981.14" y="127.5" ></text>
</g>
<g >
<title>call_stub (189 samples, 42.95%)</title><rect x="667.0" y="549" width="506.9" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="670.05" y="559.5" >call_stub</text>
</g>
<g >
<title>org/dspace/app/util/DailyFileAppender:::subAppend (3 samples, 0.68%)</title><rect x="1152.5" y="437" width="8.0" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="1155.45" y="447.5" ></text>
</g>
<g >
<title>__x64_sys_futex (48 samples, 10.91%)</title><rect x="353.3" y="741" width="128.7" height="15.0" fill="rgb(217,74,74)" rx="2" ry="2" />
<text x="356.27" y="751.5" >__x64_sys_futex</text>
</g>
<g >
<title>nf_ct_get_tuple (1 samples, 0.23%)</title><rect x="578.5" y="565" width="2.7" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text x="581.55" y="575.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.23%)</title><rect x="830.6" y="373" width="2.7" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text x="833.64" y="383.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (19 samples, 4.32%)</title><rect x="10.0" y="789" width="51.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="13.00" y="799.5" >pthre..</text>
</g>
<g >
<title>sun/net/spi/DefaultProxySelector$3:::run (1 samples, 0.23%)</title><rect x="1123.0" y="309" width="2.6" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text x="1125.95" y="319.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractBeanFactory:::isTypeMatch (10 samples, 2.27%)</title><rect x="1015.7" y="389" width="26.8" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="1018.68" y="399.5" >o..</text>
</g>
<g >
<title>dequeue_task_fair (1 samples, 0.23%)</title><rect x="490.0" y="613" width="2.7" height="15.0" fill="rgb(204,55,55)" rx="2" ry="2" />
<text x="493.05" y="623.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method:::invoke (189 samples, 42.95%)</title><rect x="667.0" y="677" width="506.9" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text x="670.05" y="687.5" >java/lang/reflect/Method:::invoke</text>
</g>
<g >
<title>sun/nio/cs/UTF_8$Encoder:::encode (3 samples, 0.68%)</title><rect x="747.5" y="373" width="8.0" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text x="750.50" y="383.5" ></text>
</g>
<g >
<title>do_syscall_64 (8 samples, 1.82%)</title><rect x="219.2" y="757" width="21.4" height="15.0" fill="rgb(248,119,119)" rx="2" ry="2" />
<text x="222.18" y="767.5" >d..</text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::findByUnique (1 samples, 0.23%)</title><rect x="964.7" y="421" width="2.7" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text x="967.73" y="431.5" ></text>
</g>
<g >
<title>[libjvm.so] (189 samples, 42.95%)</title><rect x="667.0" y="741" width="506.9" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="670.05" y="751.5" >[libjvm.so]</text>
</g>
<g >
<title>[libjvm.so] (19 samples, 4.32%)</title><rect x="141.4" y="773" width="51.0" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="144.41" y="783.5" >[libj..</text>
</g>
<g >
<title>JVM_DoPrivileged (1 samples, 0.23%)</title><rect x="1123.0" y="373" width="2.6" height="15.0" fill="rgb(226,87,87)" rx="2" ry="2" />
<text x="1125.95" y="383.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (25 samples, 5.68%)</title><rect x="63.6" y="773" width="67.1" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text x="66.64" y="783.5" >entry_S..</text>
</g>
<g >
<title>__wake_up_sync_key (2 samples, 0.45%)</title><rect x="610.7" y="357" width="5.4" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="613.73" y="367.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeWithFlags (1 samples, 0.23%)</title><rect x="956.7" y="341" width="2.7" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="959.68" y="351.5" ></text>
</g>
<g >
<title>do_syscall_64 (1 samples, 0.23%)</title><rect x="192.4" y="757" width="2.6" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="195.36" y="767.5" ></text>
</g>
<g >
<title>tcp_ack (1 samples, 0.23%)</title><rect x="1128.3" y="53" width="2.7" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="1131.32" y="63.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern:::atom (1 samples, 0.23%)</title><rect x="986.2" y="261" width="2.7" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="989.18" y="271.5" ></text>
</g>
<g >
<title>tcp_ack (3 samples, 0.68%)</title><rect x="616.1" y="373" width="8.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="619.09" y="383.5" ></text>
</g>
<g >
<title>java/lang/StringBuilder:::append (1 samples, 0.23%)</title><rect x="704.6" y="341" width="2.7" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="707.59" y="351.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="905.7" y="341" width="2.7" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="908.73" y="351.5" ></text>
</g>
<g >
<title>__x64_sys_futex (4 samples, 0.91%)</title><rect x="130.7" y="741" width="10.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="133.68" y="751.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRowIterator:::hasNext (1 samples, 0.23%)</title><rect x="1061.3" y="437" width="2.7" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="1064.27" y="447.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (48 samples, 10.91%)</title><rect x="353.3" y="629" width="128.7" height="15.0" fill="rgb(248,121,121)" rx="2" ry="2" />
<text x="356.27" y="639.5" >__intel_pmu_enab..</text>
</g>
<g >
<title>org/apache/solr/client/solrj/request/RequestWriter$LazyContentStream:::getStream (3 samples, 0.68%)</title><rect x="747.5" y="405" width="8.0" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="750.50" y="415.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (16 samples, 3.64%)</title><rect x="15.4" y="645" width="42.9" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="18.36" y="655.5" >__pe..</text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendSync (1 samples, 0.23%)</title><rect x="1055.9" y="325" width="2.7" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text x="1058.91" y="335.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="216.5" y="693" width="2.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="219.50" y="703.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.91%)</title><rect x="299.6" y="757" width="10.8" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text x="302.64" y="767.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.45%)</title><rect x="170.9" y="469" width="5.4" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="173.91" y="479.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractBeanFactory:::doGetBean (8 samples, 1.82%)</title><rect x="972.8" y="405" width="21.4" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text x="975.77" y="415.5" >o..</text>
</g>
<g >
<title>__x64_sys_futex (4 samples, 0.91%)</title><rect x="299.6" y="741" width="10.8" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text x="302.64" y="751.5" ></text>
</g>
<g >
<title>update_blocked_averages (1 samples, 0.23%)</title><rect x="128.0" y="597" width="2.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="131.00" y="607.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::execute (11 samples, 2.50%)</title><rect x="1120.3" y="405" width="29.5" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text x="1123.27" y="415.5" >or..</text>
</g>
<g >
<title>nft_do_chain (1 samples, 0.23%)</title><rect x="583.9" y="565" width="2.7" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text x="586.91" y="575.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::execute (1 samples, 0.23%)</title><rect x="1055.9" y="341" width="2.7" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="1058.91" y="351.5" ></text>
</g>
<g >
<title>org/springframework/beans/support/ResourceEditorRegistrar:::registerCustomEditors (1 samples, 0.23%)</title><rect x="975.5" y="357" width="2.6" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="978.45" y="367.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (2 samples, 0.45%)</title><rect x="1098.8" y="357" width="5.4" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text x="1101.82" y="367.5" ></text>
</g>
<g >
<title>java/lang/String:::split (1 samples, 0.23%)</title><rect x="801.1" y="437" width="2.7" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="804.14" y="447.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (1 samples, 0.23%)</title><rect x="1069.3" y="325" width="2.7" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text x="1072.32" y="335.5" ></text>
</g>
<g >
<title>com/atmire/dspace/discovery/AtmireSolrService:::buildDocument (155 samples, 35.23%)</title><rect x="667.0" y="469" width="415.7" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text x="670.05" y="479.5" >com/atmire/dspace/discovery/AtmireSolrService:::buildDoc..</text>
</g>
<g >
<title>try_to_wake_up (2 samples, 0.45%)</title><rect x="610.7" y="309" width="5.4" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="613.73" y="319.5" ></text>
</g>
<g >
<title>psi_task_change (1 samples, 0.23%)</title><rect x="58.3" y="661" width="2.7" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="61.27" y="671.5" ></text>
</g>
<g >
<title>com/atmire/dspace/discovery/AtmireSolrService:::indexContent (181 samples, 41.14%)</title><rect x="667.0" y="485" width="485.5" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text x="670.05" y="495.5" >com/atmire/dspace/discovery/AtmireSolrService:::indexContent</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="1090.8" y="341" width="2.7" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="1093.77" y="351.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::process (1 samples, 0.23%)</title><rect x="1165.9" y="453" width="2.6" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="1168.86" y="463.5" ></text>
</g>
<g >
<title>JVM_GetStackTraceElement (1 samples, 0.23%)</title><rect x="683.1" y="277" width="2.7" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="686.14" y="287.5" ></text>
</g>
<g >
<title>[libjvm.so] (18 samples, 4.09%)</title><rect x="144.1" y="709" width="48.3" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="147.09" y="719.5" >[lib..</text>
</g>
<g >
<title>Finalizer (10 samples, 2.27%)</title><rect x="192.4" y="821" width="26.8" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="195.36" y="831.5" >F..</text>
</g>
<g >
<title>inet6_recvmsg (21 samples, 4.77%)</title><rect x="484.7" y="725" width="56.3" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="487.68" y="735.5" >inet6..</text>
</g>
<g >
<title>Java_java_net_SocketInputStream_socketRead0 (1 samples, 0.23%)</title><rect x="948.6" y="277" width="2.7" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="951.64" y="287.5" ></text>
</g>
<g >
<title>__memset_avx2_erms (1 samples, 0.23%)</title><rect x="189.7" y="661" width="2.7" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text x="192.68" y="671.5" ></text>
</g>
<g >
<title>org/dspace/content/Item:::getCollections (4 samples, 0.91%)</title><rect x="943.3" y="453" width="10.7" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text x="946.27" y="463.5" ></text>
</g>
<g >
<title>Interpreter (1 samples, 0.23%)</title><rect x="1128.3" y="293" width="2.7" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="1131.32" y="303.5" ></text>
</g>
<g >
<title>java/security/AccessController:::doPrivileged (5 samples, 1.14%)</title><rect x="836.0" y="357" width="13.4" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="839.00" y="367.5" ></text>
</g>
<g >
<title>do_syscall_64 (1 samples, 0.23%)</title><rect x="61.0" y="645" width="2.6" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="63.95" y="655.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.23%)</title><rect x="798.5" y="373" width="2.6" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="801.45" y="383.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/request/RequestWriter$LazyContentStream:::getDelegate (19 samples, 4.32%)</title><rect x="696.5" y="389" width="51.0" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text x="699.55" y="399.5" >org/a..</text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRow:::setColumn (4 samples, 0.91%)</title><rect x="921.8" y="405" width="10.7" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text x="924.82" y="415.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (13 samples, 2.95%)</title><rect x="310.4" y="773" width="34.8" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="313.36" y="783.5" >en..</text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.23%)</title><rect x="755.5" y="357" width="2.7" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" />
<text x="758.55" y="367.5" ></text>
</g>
<g >
<title>enqueue_entity (1 samples, 0.23%)</title><rect x="610.7" y="277" width="2.7" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="613.73" y="287.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="61.0" y="709" width="2.6" height="15.0" fill="rgb(206,60,60)" rx="2" ry="2" />
<text x="63.95" y="719.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (19 samples, 4.32%)</title><rect x="10.0" y="709" width="51.0" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="13.00" y="719.5" >futex..</text>
</g>
<g >
<title>Interpreter (189 samples, 42.95%)</title><rect x="667.0" y="693" width="506.9" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="670.05" y="703.5" >Interpreter</text>
</g>
<g >
<title>do_syscall_64 (1 samples, 0.23%)</title><rect x="785.0" y="277" width="2.7" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text x="788.05" y="287.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (1 samples, 0.23%)</title><rect x="964.7" y="405" width="2.7" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="967.73" y="415.5" ></text>
</g>
<g >
<title>bbr_cwnd_event (1 samples, 0.23%)</title><rect x="645.6" y="629" width="2.7" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="648.59" y="639.5" ></text>
</g>
<g >
<title>[unknown] (9 samples, 2.05%)</title><rect x="192.4" y="805" width="24.1" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
<text x="195.36" y="815.5" >[..</text>
</g>
<g >
<title>org/dspace/content/Bundle:::getBitstreamsInternal (2 samples, 0.45%)</title><rect x="932.5" y="421" width="5.4" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="935.55" y="431.5" ></text>
</g>
<g >
<title>java/net/SocketTimeoutException:::&lt;init&gt; (1 samples, 0.23%)</title><rect x="1144.4" y="213" width="2.7" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text x="1147.41" y="223.5" ></text>
</g>
<g >
<title>org/apache/http/impl/conn/ManagedClientConnectionImpl:::getSSLSession (1 samples, 0.23%)</title><rect x="1136.4" y="373" width="2.6" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text x="1139.36" y="383.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="216.5" y="725" width="2.7" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text x="219.50" y="735.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::tryExecute (2 samples, 0.45%)</title><rect x="1093.5" y="373" width="5.3" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="1096.45" y="383.5" ></text>
</g>
<g >
<title>org/apache/http/impl/DefaultConnectionReuseStrategy:::keepAlive (1 samples, 0.23%)</title><rect x="1114.9" y="405" width="2.7" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text x="1117.91" y="415.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRow:::setColumn (1 samples, 0.23%)</title><rect x="962.0" y="421" width="2.7" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" />
<text x="965.05" y="431.5" ></text>
</g>
<g >
<title>JVM_DoPrivileged (5 samples, 1.14%)</title><rect x="860.1" y="325" width="13.4" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text x="863.14" y="335.5" ></text>
</g>
<g >
<title>schedule (18 samples, 4.09%)</title><rect x="12.7" y="693" width="48.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="15.68" y="703.5" >sche..</text>
</g>
<g >
<title>nft_do_chain_inet (4 samples, 0.91%)</title><rect x="632.2" y="437" width="10.7" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="635.18" y="447.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.45%)</title><rect x="170.9" y="405" width="5.4" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text x="173.91" y="415.5" ></text>
</g>
<g >
<title>vtable stub (1 samples, 0.23%)</title><rect x="1053.2" y="421" width="2.7" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="1056.23" y="431.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="683.1" y="245" width="2.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="686.14" y="255.5" ></text>
</g>
<g >
<title>java/security/AccessController:::doPrivileged (5 samples, 1.14%)</title><rect x="860.1" y="341" width="13.4" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text x="863.14" y="351.5" ></text>
</g>
<g >
<title>org/apache/http/client/protocol/RequestAddCookies:::process (1 samples, 0.23%)</title><rect x="793.1" y="357" width="2.7" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text x="796.09" y="367.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.23%)</title><rect x="964.7" y="373" width="2.7" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text x="967.73" y="383.5" ></text>
</g>
<g >
<title>Java_java_lang_Throwable_fillInStackTrace (1 samples, 0.23%)</title><rect x="1144.4" y="181" width="2.7" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text x="1147.41" y="191.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::execute (2 samples, 0.45%)</title><rect x="1168.5" y="389" width="5.4" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="1171.55" y="399.5" ></text>
</g>
<g >
<title>Interpreter (189 samples, 42.95%)</title><rect x="667.0" y="533" width="506.9" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text x="670.05" y="543.5" >Interpreter</text>
</g>
<g >
<title>tick_sched_timer (1 samples, 0.23%)</title><rect x="755.5" y="309" width="2.7" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="758.55" y="319.5" ></text>
</g>
<g >
<title>jlong_disjoint_arraycopy (1 samples, 0.23%)</title><rect x="696.5" y="373" width="2.7" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="699.55" y="383.5" ></text>
</g>
<g >
<title>do_syscall_64 (18 samples, 4.09%)</title><rect x="246.0" y="757" width="48.3" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text x="249.00" y="767.5" >do_s..</text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.45%)</title><rect x="170.9" y="501" width="5.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="173.91" y="511.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (2 samples, 0.45%)</title><rect x="782.4" y="357" width="5.3" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text x="785.36" y="367.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (1 samples, 0.23%)</title><rect x="798.5" y="293" width="2.6" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="801.45" y="303.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeWithFlags (3 samples, 0.68%)</title><rect x="1066.6" y="373" width="8.1" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="1069.64" y="383.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::tryExecute (4 samples, 0.91%)</title><rect x="769.0" y="373" width="10.7" height="15.0" fill="rgb(58,208,58)" rx="2" ry="2" />
<text x="771.95" y="383.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="61.0" y="773" width="2.6" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="63.95" y="783.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="173.6" y="357" width="2.7" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="176.59" y="367.5" ></text>
</g>
<g >
<title>__x64_sys_recvfrom (21 samples, 4.77%)</title><rect x="484.7" y="757" width="56.3" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="487.68" y="767.5" >__x64..</text>
</g>
<g >
<title>org/apache/solr/common/SolrDocument:::setField (1 samples, 0.23%)</title><rect x="1106.9" y="293" width="2.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1109.86" y="303.5" ></text>
</g>
<g >
<title>ip_output (22 samples, 5.00%)</title><rect x="586.6" y="613" width="59.0" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="589.59" y="623.5" >ip_out..</text>
</g>
<g >
<title>org/apache/http/impl/client/AbstractHttpClient:::doExecute (13 samples, 2.95%)</title><rect x="1114.9" y="421" width="34.9" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text x="1117.91" y="431.5" >or..</text>
</g>
<g >
<title>java/lang/ThreadLocal:::getMap (1 samples, 0.23%)</title><rect x="972.8" y="389" width="2.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="975.77" y="399.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (25 samples, 5.68%)</title><rect x="63.6" y="709" width="67.1" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="66.64" y="719.5" >futex_w..</text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::execute (2 samples, 0.45%)</title><rect x="948.6" y="341" width="5.4" height="15.0" fill="rgb(83,231,83)" rx="2" ry="2" />
<text x="951.64" y="351.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (16 samples, 3.64%)</title><rect x="600.0" y="485" width="42.9" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="603.00" y="495.5" >__ne..</text>
</g>
<g >
<title>org/dspace/content/Community:::getParentCommunity (3 samples, 0.68%)</title><rect x="908.4" y="437" width="8.1" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="911.41" y="447.5" ></text>
</g>
<g >
<title>org/dspace/text/filter/LowerCaseAndTrim:::filter (1 samples, 0.23%)</title><rect x="903.0" y="421" width="2.7" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text x="906.05" y="431.5" ></text>
</g>
<g >
<title>nft_meta_get_eval (1 samples, 0.23%)</title><rect x="583.9" y="549" width="2.7" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text x="586.91" y="559.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::find (1 samples, 0.23%)</title><rect x="943.3" y="405" width="2.7" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="946.27" y="415.5" ></text>
</g>
<g >
<title>__pthread_getspecific (1 samples, 0.23%)</title><rect x="173.6" y="165" width="2.7" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" />
<text x="176.59" y="175.5" ></text>
</g>
<g >
<title>__x64_sys_futex (17 samples, 3.86%)</title><rect x="246.0" y="741" width="45.6" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="249.00" y="751.5" >__x6..</text>
</g>
<g >
<title>Java_java_io_FileOutputStream_writeBytes (1 samples, 0.23%)</title><rect x="1155.1" y="373" width="2.7" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="1158.14" y="383.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="683.1" y="261" width="2.7" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text x="686.14" y="271.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$CharProperty:::match (2 samples, 0.45%)</title><rect x="978.1" y="85" width="5.4" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text x="981.14" y="95.5" ></text>
</g>
<g >
<title>org/apache/commons/logging/impl/WeakHashtable$Referenced:::&lt;init&gt; (1 samples, 0.23%)</title><rect x="873.5" y="341" width="2.7" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="876.55" y="351.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.45%)</title><rect x="170.9" y="421" width="5.4" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="173.91" y="431.5" ></text>
</g>
<g >
<title>[libjvm.so] (17 samples, 3.86%)</title><rect x="146.8" y="693" width="45.6" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text x="149.77" y="703.5" >[lib..</text>
</g>
<g >
<title>finish_task_switch (48 samples, 10.91%)</title><rect x="353.3" y="661" width="128.7" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="356.27" y="671.5" >finish_task_switch</text>
</g>
<g >
<title>futex_wait (19 samples, 4.32%)</title><rect x="10.0" y="725" width="51.0" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="13.00" y="735.5" >futex..</text>
</g>
<g >
<title>find_busiest_group (1 samples, 0.23%)</title><rect x="128.0" y="613" width="2.7" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="131.00" y="623.5" ></text>
</g>
<g >
<title>sk_wait_data (19 samples, 4.32%)</title><rect x="487.4" y="693" width="50.9" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="490.36" y="703.5" >sk_wa..</text>
</g>
<g >
<title>all (440 samples, 100%)</title><rect x="10.0" y="837" width="1180.0" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="13.00" y="847.5" ></text>
</g>
<g >
<title>[libjvm.so] (16 samples, 3.64%)</title><rect x="146.8" y="661" width="42.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="149.77" y="671.5" >[lib..</text>
</g>
<g >
<title>do_mprotect_pkey (1 samples, 0.23%)</title><rect x="350.6" y="661" width="2.7" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="353.59" y="671.5" ></text>
</g>
<g >
<title>java/lang/reflect/Proxy:::newProxyInstance (1 samples, 0.23%)</title><rect x="758.2" y="389" width="2.7" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="761.23" y="399.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.23%)</title><rect x="484.7" y="693" width="2.7" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="487.68" y="703.5" ></text>
</g>
<g >
<title>ctx_sched_out (1 samples, 0.23%)</title><rect x="487.4" y="597" width="2.6" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="490.36" y="607.5" ></text>
</g>
<g >
<title>irqtime_account_irq (1 samples, 0.23%)</title><rect x="597.3" y="517" width="2.7" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="600.32" y="527.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (4 samples, 0.91%)</title><rect x="176.3" y="597" width="10.7" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="179.27" y="607.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="1144.4" y="149" width="2.7" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="1147.41" y="159.5" ></text>
</g>
<g >
<title>schedule (8 samples, 1.82%)</title><rect x="219.2" y="693" width="21.4" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text x="222.18" y="703.5" >s..</text>
</g>
<g >
<title>sk_stream_alloc_skb (1 samples, 0.23%)</title><rect x="659.0" y="677" width="2.7" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="662.00" y="687.5" ></text>
</g>
<g >
<title>Interpreter (189 samples, 42.95%)</title><rect x="667.0" y="517" width="506.9" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="670.05" y="527.5" >Interpreter</text>
</g>
<g >
<title>sun/util/calendar/Gregorian:::getCalendarDate (1 samples, 0.23%)</title><rect x="667.0" y="405" width="2.7" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="670.05" y="415.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="216.5" y="709" width="2.7" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="219.50" y="719.5" ></text>
</g>
<g >
<title>JVM_InvokeMethod (189 samples, 42.95%)</title><rect x="667.0" y="613" width="506.9" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="670.05" y="623.5" >JVM_InvokeMethod</text>
</g>
<g >
<title>[libnet.so] (1 samples, 0.23%)</title><rect x="951.3" y="277" width="2.7" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="954.32" y="287.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (48 samples, 10.91%)</title><rect x="353.3" y="773" width="128.7" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="356.27" y="783.5" >entry_SYSCALL_64</text>
</g>
<g >
<title>org/springframework/core/convert/support/GenericConversionService:::addConverter (2 samples, 0.45%)</title><rect x="852.1" y="373" width="5.4" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text x="855.09" y="383.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="61.0" y="725" width="2.6" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="63.95" y="735.5" ></text>
</g>
<g >
<title>update_process_times (1 samples, 0.23%)</title><rect x="755.5" y="293" width="2.7" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text x="758.55" y="303.5" ></text>
</g>
<g >
<title>org/apache/http/message/AbstractHttpMessage:::headerIterator (1 samples, 0.23%)</title><rect x="1125.6" y="373" width="2.7" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text x="1128.64" y="383.5" ></text>
</g>
<g >
<title>futex_wait (1 samples, 0.23%)</title><rect x="192.4" y="725" width="2.6" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="195.36" y="735.5" ></text>
</g>
<g >
<title>org/dspace/content/Bundle:::getName (1 samples, 0.23%)</title><rect x="905.7" y="453" width="2.7" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text x="908.73" y="463.5" ></text>
</g>
<g >
<title>org/apache/http/impl/io/AbstractSessionOutputBuffer:::write (2 samples, 0.45%)</title><rect x="774.3" y="293" width="5.4" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="777.32" y="303.5" ></text>
</g>
<g >
<title>org/dspace/servicemanager/DSpaceServiceManager:::getServiceByName (1 samples, 0.23%)</title><rect x="967.4" y="453" width="2.7" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text x="970.41" y="463.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/PoolablePreparedStatement:::close (1 samples, 0.23%)</title><rect x="1061.3" y="421" width="2.7" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="1064.27" y="431.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.23%)</title><rect x="798.5" y="389" width="2.6" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text x="801.45" y="399.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl:::invoke (189 samples, 42.95%)</title><rect x="667.0" y="661" width="506.9" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="670.05" y="671.5" >sun/reflect/DelegatingMethodAccessorImpl:::invoke</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="173.6" y="181" width="2.7" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text x="176.59" y="191.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (1 samples, 0.23%)</title><rect x="1101.5" y="229" width="2.7" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text x="1104.50" y="239.5" ></text>
</g>
<g >
<title>nf_hook_slow (2 samples, 0.45%)</title><rect x="624.1" y="437" width="5.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="627.14" y="447.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (1 samples, 0.23%)</title><rect x="948.6" y="293" width="2.7" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text x="951.64" y="303.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (4 samples, 0.91%)</title><rect x="176.3" y="485" width="10.7" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text x="179.27" y="495.5" ></text>
</g>
<g >
<title>__GI___libc_write (1 samples, 0.23%)</title><rect x="1155.1" y="341" width="2.7" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="1158.14" y="351.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/PoolingDataSource$PoolGuardConnectionWrapper:::prepareStatement (2 samples, 0.45%)</title><rect x="911.1" y="405" width="5.4" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text x="914.09" y="415.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.68%)</title><rect x="345.2" y="757" width="8.1" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="348.23" y="767.5" ></text>
</g>
<g >
<title>pollwake (2 samples, 0.45%)</title><rect x="610.7" y="325" width="5.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="613.73" y="335.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.23%)</title><rect x="935.2" y="373" width="2.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="938.23" y="383.5" ></text>
</g>
<g >
<title>org/apache/commons/lang/time/FastDateFormat:::getInstance (1 samples, 0.23%)</title><rect x="817.2" y="453" width="2.7" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text x="820.23" y="463.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="216.5" y="773" width="2.7" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="219.50" y="783.5" ></text>
</g>
<g >
<title>_complete_monitor_locking_Java (1 samples, 0.23%)</title><rect x="243.3" y="629" width="2.7" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="246.32" y="639.5" ></text>
</g>
<g >
<title>__ip_local_out (5 samples, 1.14%)</title><rect x="573.2" y="613" width="13.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="576.18" y="623.5" ></text>
</g>
<g >
<title>org/apache/http/impl/conn/ManagedClientConnectionImpl:::receiveResponseEntity (1 samples, 0.23%)</title><rect x="1096.1" y="341" width="2.7" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text x="1099.14" y="351.5" ></text>
</g>
<g >
<title>tcp_rack_update_reo_wnd (1 samples, 0.23%)</title><rect x="621.5" y="357" width="2.6" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="624.45" y="367.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::tryExecute (2 samples, 0.45%)</title><rect x="688.5" y="389" width="5.4" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text x="691.50" y="399.5" ></text>
</g>
<g >
<title>org/apache/commons/logging/LogFactory:::getFactory (5 samples, 1.14%)</title><rect x="836.0" y="373" width="13.4" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="839.00" y="383.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="782.4" y="261" width="2.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="785.36" y="271.5" ></text>
</g>
<g >
<title>ip_local_deliver (10 samples, 2.27%)</title><rect x="602.7" y="453" width="26.8" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="605.68" y="463.5" >i..</text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRowIterator:::close (1 samples, 0.23%)</title><rect x="943.3" y="373" width="2.7" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text x="946.27" y="383.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.23%)</title><rect x="811.9" y="437" width="2.6" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="814.86" y="447.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::createMethod (22 samples, 5.00%)</title><rect x="696.5" y="421" width="59.0" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text x="699.55" y="431.5" >org/ap..</text>
</g>
<g >
<title>dev_hard_start_xmit (2 samples, 0.45%)</title><rect x="586.6" y="565" width="5.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="589.59" y="575.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 1.82%)</title><rect x="219.2" y="805" width="21.4" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="222.18" y="815.5" >[..</text>
</g>
<g >
<title>schedule (1 samples, 0.23%)</title><rect x="1101.5" y="213" width="2.7" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="1104.50" y="223.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (1 samples, 0.23%)</title><rect x="1128.3" y="85" width="2.7" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="1131.32" y="95.5" ></text>
</g>
<g >
<title>[libjli.so] (189 samples, 42.95%)</title><rect x="667.0" y="789" width="506.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="670.05" y="799.5" >[libjli.so]</text>
</g>
<g >
<title>java/net/AbstractPlainSocketImpl:::setOption (1 samples, 0.23%)</title><rect x="779.7" y="357" width="2.7" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text x="782.68" y="367.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.45%)</title><rect x="294.3" y="757" width="5.3" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="297.27" y="767.5" ></text>
</g>
<g >
<title>Interpreter (1 samples, 0.23%)</title><rect x="1128.3" y="277" width="2.7" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text x="1131.32" y="287.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendSync (1 samples, 0.23%)</title><rect x="951.3" y="325" width="2.7" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="954.32" y="335.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (1 samples, 0.23%)</title><rect x="905.7" y="325" width="2.7" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="908.73" y="335.5" ></text>
</g>
<g >
<title>[libnet.so] (1 samples, 0.23%)</title><rect x="779.7" y="309" width="2.7" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="782.68" y="319.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::findByUnique (1 samples, 0.23%)</title><rect x="932.5" y="389" width="2.7" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="935.55" y="399.5" ></text>
</g>
<g >
<title>__schedule (4 samples, 0.91%)</title><rect x="130.7" y="677" width="10.7" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="133.68" y="687.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="1144.4" y="101" width="2.7" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="1147.41" y="111.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (2 samples, 0.45%)</title><rect x="937.9" y="437" width="5.4" height="15.0" fill="rgb(102,247,102)" rx="2" ry="2" />
<text x="940.91" y="447.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match (2 samples, 0.45%)</title><rect x="978.1" y="197" width="5.4" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text x="981.14" y="207.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/AbstractMultipartForm:::encode (1 samples, 0.23%)</title><rect x="688.5" y="309" width="2.7" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text x="691.50" y="319.5" ></text>
</g>
<g >
<title>native_write_msr (48 samples, 10.91%)</title><rect x="353.3" y="613" width="128.7" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="356.27" y="623.5" >native_write_msr</text>
</g>
<g >
<title>org/springframework/beans/factory/support/DefaultSingletonBeanRegistry:::getSingletonNames (1 samples, 0.23%)</title><rect x="1042.5" y="389" width="2.7" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="1045.50" y="399.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.23%)</title><rect x="755.5" y="373" width="2.7" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="758.55" y="383.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="173.6" y="229" width="2.7" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="176.59" y="239.5" ></text>
</g>
<g >
<title>nvme_irq (1 samples, 0.23%)</title><rect x="484.7" y="613" width="2.7" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
<text x="487.68" y="623.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendOneQuery (1 samples, 0.23%)</title><rect x="937.9" y="325" width="2.7" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="940.91" y="335.5" ></text>
</g>
<g >
<title>java/io/FileOutputStream:::write (1 samples, 0.23%)</title><rect x="1152.5" y="421" width="2.6" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="1155.45" y="431.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::clearParameters (1 samples, 0.23%)</title><rect x="943.3" y="325" width="2.7" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="946.27" y="335.5" ></text>
</g>
<g >
<title>org/apache/log4j/WriterAppender:::subAppend (2 samples, 0.45%)</title><rect x="1155.1" y="421" width="5.4" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text x="1158.14" y="431.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/ClientParamsStack:::getParameter (1 samples, 0.23%)</title><rect x="766.3" y="357" width="2.7" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text x="769.27" y="367.5" ></text>
</g>
<g >
<title>org/apache/http/message/AbstractHttpMessage:::setParams (1 samples, 0.23%)</title><rect x="693.9" y="389" width="2.6" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="696.86" y="399.5" ></text>
</g>
<g >
<title>handle_edge_irq (1 samples, 0.23%)</title><rect x="484.7" y="661" width="2.7" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="487.68" y="671.5" ></text>
</g>
<g >
<title>call_stub (1 samples, 0.23%)</title><rect x="1144.4" y="229" width="2.7" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text x="1147.41" y="239.5" ></text>
</g>
<g >
<title>sun/misc/FloatingDecimal$BinaryToASCIIBuffer:::getChars (1 samples, 0.23%)</title><rect x="704.6" y="309" width="2.7" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="707.59" y="319.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="779.7" y="293" width="2.7" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text x="782.68" y="303.5" ></text>
</g>
<g >
<title>VM_Periodic_Tas (20 samples, 4.55%)</title><rect x="246.0" y="821" width="53.6" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="249.00" y="831.5" >VM_Pe..</text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (16 samples, 3.64%)</title><rect x="248.7" y="629" width="42.9" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="251.68" y="639.5" >__in..</text>
</g>
<g >
<title>resolve_opt_virtual_call (1 samples, 0.23%)</title><rect x="1171.2" y="341" width="2.7" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="1174.23" y="351.5" ></text>
</g>
<g >
<title>org/apache/log4j/Category:::info (3 samples, 0.68%)</title><rect x="1152.5" y="485" width="8.0" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="1155.45" y="495.5" ></text>
</g>
<g >
<title>sock_sendmsg (39 samples, 8.86%)</title><rect x="559.8" y="725" width="104.6" height="15.0" fill="rgb(217,74,74)" rx="2" ry="2" />
<text x="562.77" y="735.5" >sock_sendmsg</text>
</g>
<g >
<title>do_syscall_64 (1 samples, 0.23%)</title><rect x="1101.5" y="277" width="2.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="1104.50" y="287.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="1141.7" y="229" width="2.7" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="1144.73" y="239.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="667.0" y="389" width="2.7" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="670.05" y="399.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (2 samples, 0.45%)</title><rect x="948.6" y="405" width="5.4" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="951.64" y="415.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (1 samples, 0.23%)</title><rect x="350.6" y="613" width="2.7" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="353.59" y="623.5" ></text>
</g>
<g >
<title>java/lang/StringCoding:::decode (1 samples, 0.23%)</title><rect x="919.1" y="405" width="2.7" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text x="922.14" y="415.5" ></text>
</g>
<g >
<title>[libjvm.so] (19 samples, 4.32%)</title><rect x="141.4" y="725" width="51.0" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="144.41" y="735.5" >[libj..</text>
</g>
<g >
<title>native_write_msr (12 samples, 2.73%)</title><rect x="310.4" y="613" width="32.1" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="313.36" y="623.5" >na..</text>
</g>
<g >
<title>change_protection (1 samples, 0.23%)</title><rect x="350.6" y="629" width="2.7" height="15.0" fill="rgb(211,67,67)" rx="2" ry="2" />
<text x="353.59" y="639.5" ></text>
</g>
<g >
<title>VM_Thread (20 samples, 4.55%)</title><rect x="299.6" y="821" width="53.7" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" />
<text x="302.64" y="831.5" >VM_Th..</text>
</g>
<g >
<title>start_thread (2 samples, 0.45%)</title><rect x="294.3" y="805" width="5.3" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="297.27" y="815.5" ></text>
</g>
<g >
<title>handle_irq_event (1 samples, 0.23%)</title><rect x="484.7" y="645" width="2.7" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="487.68" y="655.5" ></text>
</g>
<g >
<title>sock_def_readable (3 samples, 0.68%)</title><rect x="608.0" y="373" width="8.1" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" />
<text x="611.05" y="383.5" ></text>
</g>
<g >
<title>tick_sched_timer (1 samples, 0.23%)</title><rect x="701.9" y="277" width="2.7" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text x="704.91" y="287.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.91%)</title><rect x="130.7" y="757" width="10.7" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="133.68" y="767.5" ></text>
</g>
<g >
<title>__handle_irq_event_percpu (1 samples, 0.23%)</title><rect x="484.7" y="629" width="2.7" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="487.68" y="639.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="1171.2" y="229" width="2.7" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text x="1174.23" y="239.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match (2 samples, 0.45%)</title><rect x="978.1" y="277" width="5.4" height="15.0" fill="rgb(70,219,70)" rx="2" ry="2" />
<text x="981.14" y="287.5" ></text>
</g>
<g >
<title>__sys_connect (1 samples, 0.23%)</title><rect x="1128.3" y="149" width="2.7" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text x="1131.32" y="159.5" ></text>
</g>
<g >
<title>release_sock (1 samples, 0.23%)</title><rect x="1128.3" y="117" width="2.7" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="1131.32" y="127.5" ></text>
</g>
<g >
<title>org/apache/http/impl/io/AbstractSessionOutputBuffer:::write (1 samples, 0.23%)</title><rect x="1093.5" y="341" width="2.6" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="1096.45" y="351.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/AbstractHttpClient:::doExecute (9 samples, 2.05%)</title><rect x="1082.7" y="405" width="24.2" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text x="1085.73" y="415.5" >o..</text>
</g>
<g >
<title>java/util/LinkedHashMap:::removeEldestEntry (1 samples, 0.23%)</title><rect x="833.3" y="357" width="2.7" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text x="836.32" y="367.5" ></text>
</g>
<g >
<title>nft_do_chain_inet (1 samples, 0.23%)</title><rect x="626.8" y="421" width="2.7" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="629.82" y="431.5" ></text>
</g>
<g >
<title>schedule_timeout (19 samples, 4.32%)</title><rect x="487.4" y="661" width="50.9" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="490.36" y="671.5" >sched..</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="216.5" y="629" width="2.7" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text x="219.50" y="639.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (1 samples, 0.23%)</title><rect x="1168.5" y="357" width="2.7" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="1171.55" y="367.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="1144.4" y="85" width="2.7" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text x="1147.41" y="95.5" ></text>
</g>
<g >
<title>tcp_recvmsg (21 samples, 4.77%)</title><rect x="484.7" y="709" width="56.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="487.68" y="719.5" >tcp_r..</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="61.0" y="693" width="2.6" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text x="63.95" y="703.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.23%)</title><rect x="964.7" y="389" width="2.7" height="15.0" fill="rgb(102,247,102)" rx="2" ry="2" />
<text x="967.73" y="399.5" ></text>
</g>
<g >
<title>Interpreter (189 samples, 42.95%)</title><rect x="667.0" y="709" width="506.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="670.05" y="719.5" >Interpreter</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="782.4" y="293" width="2.6" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text x="785.36" y="303.5" ></text>
</g>
<g >
<title>nf_nat_inet_fn (1 samples, 0.23%)</title><rect x="642.9" y="565" width="2.7" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="645.91" y="575.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="1160.5" y="405" width="2.7" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text x="1163.50" y="415.5" ></text>
</g>
<g >
<title>java/net/PlainSocketImpl:::socketSetOption0 (1 samples, 0.23%)</title><rect x="779.7" y="341" width="2.7" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text x="782.68" y="351.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$BmpCharProperty:::match (2 samples, 0.45%)</title><rect x="889.6" y="325" width="5.4" height="15.0" fill="rgb(59,209,59)" rx="2" ry="2" />
<text x="892.64" y="335.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/request/UpdateRequest:::writeXML (18 samples, 4.09%)</title><rect x="699.2" y="373" width="48.3" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="702.23" y="383.5" >org/..</text>
</g>
<g >
<title>__x64_sys_futex (25 samples, 5.68%)</title><rect x="63.6" y="741" width="67.1" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="66.64" y="751.5" >__x64_s..</text>
</g>
<g >
<title>__x64_sys_futex (8 samples, 1.82%)</title><rect x="219.2" y="741" width="21.4" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="222.18" y="751.5" >_..</text>
</g>
<g >
<title>com/atmire/dspace/discovery/ItemCollectionPlugin:::additionalIndex (1 samples, 0.23%)</title><rect x="798.5" y="453" width="2.6" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="801.45" y="463.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::findByUnique (5 samples, 1.14%)</title><rect x="1050.5" y="453" width="13.5" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="1053.55" y="463.5" ></text>
</g>
<g >
<title>load_balance (1 samples, 0.23%)</title><rect x="128.0" y="629" width="2.7" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" />
<text x="131.00" y="639.5" ></text>
</g>
<g >
<title>org/dspace/browse/SolrBrowseCreateDAO:::additionalIndex (32 samples, 7.27%)</title><rect x="819.9" y="453" width="85.8" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="822.91" y="463.5" >org/dspace..</text>
</g>
<g >
<title>do_syscall_64 (19 samples, 4.32%)</title><rect x="10.0" y="757" width="51.0" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="13.00" y="767.5" >do_sy..</text>
</g>
<g >
<title>entry_SYSCALL_64 (4 samples, 0.91%)</title><rect x="130.7" y="773" width="10.7" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="133.68" y="783.5" ></text>
</g>
<g >
<title>__x64_sys_futex (19 samples, 4.32%)</title><rect x="10.0" y="741" width="51.0" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text x="13.00" y="751.5" >__x64..</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="173.6" y="325" width="2.7" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="176.59" y="335.5" ></text>
</g>
<g >
<title>Interpreter (189 samples, 42.95%)</title><rect x="667.0" y="629" width="506.9" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="670.05" y="639.5" >Interpreter</text>
</g>
<g >
<title>sun/net/spi/DefaultProxySelector$3:::run (1 samples, 0.23%)</title><rect x="1090.8" y="293" width="2.7" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="1093.77" y="303.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.68%)</title><rect x="345.2" y="789" width="8.1" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text x="348.23" y="799.5" ></text>
</g>
<g >
<title>pthread_cond_wait@@GLIBC_2.3.2 (8 samples, 1.82%)</title><rect x="195.0" y="789" width="21.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="198.05" y="799.5" >p..</text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::executeMethod (10 samples, 2.27%)</title><rect x="1082.7" y="421" width="26.8" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="1085.73" y="431.5" >o..</text>
</g>
<g >
<title>entry_SYSCALL_64 (1 samples, 0.23%)</title><rect x="1128.3" y="197" width="2.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1131.32" y="207.5" ></text>
</g>
<g >
<title>org/dspace/sort/OrderFormat:::makeSortString (4 samples, 0.91%)</title><rect x="895.0" y="437" width="10.7" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text x="898.00" y="447.5" ></text>
</g>
<g >
<title>_register_finalizer_Java (1 samples, 0.23%)</title><rect x="908.4" y="405" width="2.7" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="911.41" y="415.5" ></text>
</g>
<g >
<title>org/springframework/core/convert/support/DefaultConversionService:::addFallbackConverters (1 samples, 0.23%)</title><rect x="825.3" y="389" width="2.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="828.27" y="399.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/HttpRequestExecutor:::doReceiveResponse (1 samples, 0.23%)</title><rect x="1096.1" y="357" width="2.7" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="1099.14" y="367.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.68%)</title><rect x="168.2" y="549" width="8.1" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text x="171.23" y="559.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (1 samples, 0.23%)</title><rect x="350.6" y="597" width="2.7" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="353.59" y="607.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.23%)</title><rect x="669.7" y="405" width="2.7" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="672.73" y="415.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/util/ClientUtils:::writeXML (18 samples, 4.09%)</title><rect x="699.2" y="357" width="48.3" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="702.23" y="367.5" >org/..</text>
</g>
<g >
<title>finish_task_switch (4 samples, 0.91%)</title><rect x="176.3" y="517" width="10.7" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="179.27" y="527.5" ></text>
</g>
<g >
<title>sun/nio/cs/UTF_8$Decoder:::decode (1 samples, 0.23%)</title><rect x="919.1" y="389" width="2.7" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="922.14" y="399.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="1055.9" y="293" width="2.7" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text x="1058.91" y="303.5" ></text>
</g>
<g >
<title>finish_task_switch (24 samples, 5.45%)</title><rect x="63.6" y="661" width="64.4" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
<text x="66.64" y="671.5" >finish_..</text>
</g>
<g >
<title>org/apache/http/impl/io/ChunkedOutputStream:::flushCacheWithAppend (2 samples, 0.45%)</title><rect x="774.3" y="309" width="5.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="777.32" y="319.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/HttpRequestExecutor:::preProcess (2 samples, 0.45%)</title><rect x="790.4" y="373" width="5.4" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" />
<text x="793.41" y="383.5" ></text>
</g>
<g >
<title>Ljava/lang/ref/Reference:::tryHandlePending (2 samples, 0.45%)</title><rect x="240.6" y="645" width="5.4" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text x="243.64" y="655.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (4 samples, 0.91%)</title><rect x="176.3" y="565" width="10.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="179.27" y="575.5" ></text>
</g>
<g >
<title>org/apache/log4j/Category:::callAppenders (3 samples, 0.68%)</title><rect x="1152.5" y="469" width="8.0" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" />
<text x="1155.45" y="479.5" ></text>
</g>
<g >
<title>futex_wait (4 samples, 0.91%)</title><rect x="130.7" y="725" width="10.7" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
<text x="133.68" y="735.5" ></text>
</g>
<g >
<title>java (312 samples, 70.91%)</title><rect x="353.3" y="821" width="836.7" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text x="356.27" y="831.5" >java</text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (2 samples, 0.45%)</title><rect x="948.6" y="421" width="5.4" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" />
<text x="951.64" y="431.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$5:::isSatisfiedBy (2 samples, 0.45%)</title><rect x="978.1" y="53" width="5.4" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="981.14" y="63.5" ></text>
</g>
<g >
<title>java/nio/charset/CharsetEncoder:::encode (1 samples, 0.23%)</title><rect x="688.5" y="293" width="2.7" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="691.50" y="303.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Ctype:::isSatisfiedBy (1 samples, 0.23%)</title><rect x="978.1" y="37" width="2.7" height="15.0" fill="rgb(60,210,60)" rx="2" ry="2" />
<text x="981.14" y="47.5" ></text>
</g>
<g >
<title>nft_do_chain_inet (1 samples, 0.23%)</title><rect x="583.9" y="581" width="2.7" height="15.0" fill="rgb(226,87,87)" rx="2" ry="2" />
<text x="586.91" y="591.5" ></text>
</g>
<g >
<title>call_stub (2 samples, 0.45%)</title><rect x="240.6" y="677" width="5.4" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text x="243.64" y="687.5" ></text>
</g>
<g >
<title>java/lang/Throwable:::printStackTrace (2 samples, 0.45%)</title><rect x="680.5" y="309" width="5.3" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="683.45" y="319.5" ></text>
</g>
<g >
<title>org/apache/log4j/DefaultThrowableRenderer:::render (2 samples, 0.45%)</title><rect x="680.5" y="325" width="5.3" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="683.45" y="335.5" ></text>
</g>
<g >
<title>sun/net/spi/DefaultProxySelector$3:::run (1 samples, 0.23%)</title><rect x="1123.0" y="325" width="2.6" height="15.0" fill="rgb(102,247,102)" rx="2" ry="2" />
<text x="1125.95" y="335.5" ></text>
</g>
<g >
<title>finish_task_switch (4 samples, 0.91%)</title><rect x="130.7" y="661" width="10.7" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text x="133.68" y="671.5" ></text>
</g>
<g >
<title>java/lang/StringBuilder:::append (3 samples, 0.68%)</title><rect x="806.5" y="453" width="8.0" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text x="809.50" y="463.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="1171.2" y="325" width="2.7" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="1174.23" y="335.5" ></text>
</g>
<g >
<title>_register_finalizer_Java (1 samples, 0.23%)</title><rect x="1160.5" y="421" width="2.7" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="1163.50" y="431.5" ></text>
</g>
<g >
<title>strncpy (1 samples, 0.23%)</title><rect x="583.9" y="533" width="2.7" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text x="586.91" y="543.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match0 (1 samples, 0.23%)</title><rect x="1080.0" y="421" width="2.7" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text x="1083.05" y="431.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.45%)</title><rect x="170.9" y="437" width="5.4" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="173.91" y="447.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (2 samples, 0.45%)</title><rect x="937.9" y="389" width="5.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="940.91" y="399.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.45%)</title><rect x="240.6" y="693" width="5.4" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text x="243.64" y="703.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (8 samples, 1.82%)</title><rect x="219.2" y="629" width="21.4" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="222.18" y="639.5" >_..</text>
</g>
<g >
<title>org/apache/http/impl/conn/ManagedClientConnectionImpl:::sendRequestEntity (2 samples, 0.45%)</title><rect x="688.5" y="373" width="5.4" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text x="691.50" y="383.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/request/AbstractUpdateRequest:::process (15 samples, 3.41%)</title><rect x="1109.5" y="453" width="40.3" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text x="1112.55" y="463.5" >org..</text>
</g>
<g >
<title>JVM_DoPrivileged (4 samples, 0.91%)</title><rect x="836.0" y="341" width="10.7" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text x="839.00" y="351.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (1 samples, 0.23%)</title><rect x="1066.6" y="325" width="2.7" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="1069.64" y="335.5" ></text>
</g>
<g >
<title>nf_nat_ipv4_fn (1 samples, 0.23%)</title><rect x="624.1" y="421" width="2.7" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="627.14" y="431.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (19 samples, 4.32%)</title><rect x="592.0" y="581" width="50.9" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="594.95" y="591.5" >__loc..</text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.23%)</title><rect x="1055.9" y="405" width="2.7" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text x="1058.91" y="415.5" ></text>
</g>
<g >
<title>__rcu_read_lock (1 samples, 0.23%)</title><rect x="600.0" y="453" width="2.7" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="603.00" y="463.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::execute (2 samples, 0.45%)</title><rect x="937.9" y="341" width="5.4" height="15.0" fill="rgb(78,225,78)" rx="2" ry="2" />
<text x="940.91" y="351.5" ></text>
</g>
<g >
<title>org/dspace/content/DSpaceObject:::getMetadata (6 samples, 1.36%)</title><rect x="916.5" y="453" width="16.0" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="919.45" y="463.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (3 samples, 0.68%)</title><rect x="1066.6" y="405" width="8.1" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text x="1069.64" y="415.5" ></text>
</g>
<g >
<title>org/dspace/servicemanager/spring/SpringServiceManager:::getServicesByType (28 samples, 6.36%)</title><rect x="970.1" y="437" width="75.1" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text x="973.09" y="447.5" >org/dspa..</text>
</g>
<g >
<title>native_write_msr (4 samples, 0.91%)</title><rect x="299.6" y="613" width="10.8" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="302.64" y="623.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (3 samples, 0.68%)</title><rect x="1141.7" y="373" width="8.1" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text x="1144.73" y="383.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.45%)</title><rect x="240.6" y="725" width="5.4" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text x="243.64" y="735.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRow:::canonicalizeAndCheck (1 samples, 0.23%)</title><rect x="1163.2" y="437" width="2.7" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="1166.18" y="447.5" ></text>
</g>
<g >
<title>__alloc_skb (1 samples, 0.23%)</title><rect x="659.0" y="661" width="2.7" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="662.00" y="671.5" ></text>
</g>
<g >
<title>__schedule (4 samples, 0.91%)</title><rect x="299.6" y="677" width="10.8" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="302.64" y="687.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/PoolingDataSource$PoolGuardConnectionWrapper:::prepareStatement (1 samples, 0.23%)</title><rect x="1058.6" y="421" width="2.7" height="15.0" fill="rgb(105,251,105)" rx="2" ry="2" />
<text x="1061.59" y="431.5" ></text>
</g>
<g >
<title>java/lang/String:::trim (1 samples, 0.23%)</title><rect x="803.8" y="453" width="2.7" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="806.82" y="463.5" ></text>
</g>
<g >
<title>java/lang/Class:::getMethod (2 samples, 0.45%)</title><rect x="841.4" y="277" width="5.3" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="844.36" y="287.5" ></text>
</g>
<g >
<title>Java_java_net_SocketInputStream_socketRead0 (2 samples, 0.45%)</title><rect x="782.4" y="325" width="5.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="785.36" y="335.5" ></text>
</g>
<g >
<title>VerifyClassname (1 samples, 0.23%)</title><rect x="897.7" y="373" width="2.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="900.68" y="383.5" ></text>
</g>
<g >
<title>call_stub (2 samples, 0.45%)</title><rect x="841.4" y="309" width="5.3" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="844.36" y="319.5" ></text>
</g>
<g >
<title>java/io/FileOutputStream:::writeBytes (1 samples, 0.23%)</title><rect x="1155.1" y="389" width="2.7" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="1158.14" y="399.5" ></text>
</g>
<g >
<title>org/apache/commons/pool/impl/GenericObjectPool:::borrowObject (2 samples, 0.45%)</title><rect x="1168.5" y="437" width="5.4" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="1171.55" y="447.5" ></text>
</g>
<g >
<title>org/apache/commons/logging/impl/SLF4JLocationAwareLog:::isDebugEnabled (1 samples, 0.23%)</title><rect x="763.6" y="373" width="2.7" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text x="766.59" y="383.5" ></text>
</g>
<g >
<title>simple_copy_to_iter (1 samples, 0.23%)</title><rect x="538.3" y="677" width="2.7" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" />
<text x="541.32" y="687.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.23%)</title><rect x="956.7" y="373" width="2.7" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text x="959.68" y="383.5" ></text>
</g>
<g >
<title>org/apache/http/impl/io/SocketInputBuffer:::isDataAvailable (4 samples, 0.91%)</title><rect x="1139.0" y="389" width="10.8" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="1142.05" y="399.5" ></text>
</g>
<g >
<title>do_syscall_64 (21 samples, 4.77%)</title><rect x="484.7" y="773" width="56.3" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text x="487.68" y="783.5" >do_sy..</text>
</g>
<g >
<title>tcp_v4_rcv (7 samples, 1.59%)</title><rect x="605.4" y="421" width="18.7" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="608.36" y="431.5" ></text>
</g>
<g >
<title>org/apache/log4j/Category:::callAppenders (2 samples, 0.45%)</title><rect x="680.5" y="389" width="5.3" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text x="683.45" y="399.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (1 samples, 0.23%)</title><rect x="347.9" y="693" width="2.7" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="350.91" y="703.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="1144.4" y="133" width="2.7" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="1147.41" y="143.5" ></text>
</g>
<g >
<title>Java_java_net_SocketInputStream_socketRead0 (1 samples, 0.23%)</title><rect x="1168.5" y="325" width="2.7" height="15.0" fill="rgb(219,77,77)" rx="2" ry="2" />
<text x="1171.55" y="335.5" ></text>
</g>
<g >
<title>nf_hook_slow (4 samples, 0.91%)</title><rect x="575.9" y="597" width="10.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="578.86" y="607.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::process (1 samples, 0.23%)</title><rect x="1074.7" y="437" width="2.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1077.68" y="447.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="173.6" y="373" width="2.7" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="176.59" y="383.5" ></text>
</g>
<g >
<title>futex_wait (8 samples, 1.82%)</title><rect x="219.2" y="725" width="21.4" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="222.18" y="735.5" >f..</text>
</g>
<g >
<title>start_thread (2 samples, 0.45%)</title><rect x="240.6" y="805" width="5.4" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="243.64" y="815.5" ></text>
</g>
<g >
<title>__libc_recv (22 samples, 5.00%)</title><rect x="482.0" y="805" width="59.0" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="485.00" y="815.5" >__libc..</text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::process (1 samples, 0.23%)</title><rect x="932.5" y="373" width="2.7" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text x="935.55" y="383.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.45%)</title><rect x="1141.7" y="325" width="5.4" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text x="1144.73" y="335.5" ></text>
</g>
<g >
<title>org/dspace/content/ItemIdIterator:::next (1 samples, 0.23%)</title><rect x="1165.9" y="485" width="2.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1168.86" y="495.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (1 samples, 0.23%)</title><rect x="785.0" y="293" width="2.7" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text x="788.05" y="303.5" ></text>
</g>
<g >
<title>[libjvm.so] (189 samples, 42.95%)</title><rect x="667.0" y="757" width="506.9" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="670.05" y="767.5" >[libjvm.so]</text>
</g>
<g >
<title>java/net/SocketInputStream:::read (1 samples, 0.23%)</title><rect x="948.6" y="309" width="2.7" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="951.64" y="319.5" ></text>
</g>
<g >
<title>pthread_cond_wait@@GLIBC_2.3.2 (48 samples, 10.91%)</title><rect x="353.3" y="789" width="128.7" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="356.27" y="799.5" >pthread_cond_wai..</text>
</g>
<g >
<title>finish_task_switch (8 samples, 1.82%)</title><rect x="219.2" y="661" width="21.4" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="222.18" y="671.5" >f..</text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRow:::setColumn (1 samples, 0.23%)</title><rect x="1074.7" y="421" width="2.7" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text x="1077.68" y="431.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.45%)</title><rect x="294.3" y="789" width="5.3" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text x="297.27" y="799.5" ></text>
</g>
<g >
<title>[libjvm.so] (4 samples, 0.91%)</title><rect x="1179.3" y="725" width="10.7" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="1182.27" y="735.5" ></text>
</g>
<g >
<title>__schedule (16 samples, 3.64%)</title><rect x="248.7" y="677" width="42.9" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="251.68" y="687.5" >__sc..</text>
</g>
<g >
<title>org/dspace/eperson/Group:::find (1 samples, 0.23%)</title><rect x="964.7" y="453" width="2.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="967.73" y="463.5" ></text>
</g>
<g >
<title>ip_finish_output2 (21 samples, 4.77%)</title><rect x="586.6" y="597" width="56.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="589.59" y="607.5" >ip_fi..</text>
</g>
<g >
<title>[unknown] (18 samples, 4.09%)</title><rect x="246.0" y="805" width="48.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="249.00" y="815.5" >[unk..</text>
</g>
<g >
<title>futex_wait_queue_me (8 samples, 1.82%)</title><rect x="219.2" y="709" width="21.4" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="222.18" y="719.5" >f..</text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRow:::resetChanged (1 samples, 0.23%)</title><rect x="1165.9" y="437" width="2.6" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="1168.86" y="447.5" ></text>
</g>
<g >
<title>java/lang/Class:::forName0 (1 samples, 0.23%)</title><rect x="897.7" y="389" width="2.7" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" />
<text x="900.68" y="399.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (4 samples, 0.91%)</title><rect x="130.7" y="629" width="10.7" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="133.68" y="639.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::execute (1 samples, 0.23%)</title><rect x="935.2" y="309" width="2.7" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="938.23" y="319.5" ></text>
</g>
<g >
<title>__poll (1 samples, 0.23%)</title><rect x="1147.1" y="325" width="2.7" height="15.0" fill="rgb(248,119,119)" rx="2" ry="2" />
<text x="1150.09" y="335.5" ></text>
</g>
<g >
<title>[libjvm.so] (6 samples, 1.36%)</title><rect x="1173.9" y="773" width="16.1" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text x="1176.91" y="783.5" ></text>
</g>
<g >
<title>java/lang/StringCoding:::encode (3 samples, 0.68%)</title><rect x="747.5" y="389" width="8.0" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="750.50" y="399.5" ></text>
</g>
<g >
<title>Ljava/lang/ref/Reference$ReferenceHandler:::run (2 samples, 0.45%)</title><rect x="240.6" y="661" width="5.4" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text x="243.64" y="671.5" ></text>
</g>
<g >
<title>Interpreter (1 samples, 0.23%)</title><rect x="1128.3" y="261" width="2.7" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="1131.32" y="271.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.45%)</title><rect x="240.6" y="709" width="5.4" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="243.64" y="719.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.23%)</title><rect x="956.7" y="389" width="2.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="959.68" y="399.5" ></text>
</g>
<g >
<title>java/net/SocketOutputStream:::socketWrite0 (1 samples, 0.23%)</title><rect x="1055.9" y="309" width="2.7" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text x="1058.91" y="319.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Begin:::match (1 samples, 0.23%)</title><rect x="1053.2" y="437" width="2.7" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="1056.23" y="447.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractAutowireCapableBeanFactory:::predictBeanType (4 samples, 0.91%)</title><rect x="1005.0" y="389" width="10.7" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text x="1007.95" y="399.5" ></text>
</g>
<g >
<title>[unknown] (29 samples, 6.59%)</title><rect x="63.6" y="805" width="77.8" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="66.64" y="815.5" >[unknown]</text>
</g>
<g >
<title>schedule (4 samples, 0.91%)</title><rect x="130.7" y="693" width="10.7" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="133.68" y="703.5" ></text>
</g>
<g >
<title>Java_java_net_SocketInputStream_socketRead0 (3 samples, 0.68%)</title><rect x="1141.7" y="341" width="8.1" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text x="1144.73" y="351.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (1 samples, 0.23%)</title><rect x="1155.1" y="325" width="2.7" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="1158.14" y="335.5" ></text>
</g>
<g >
<title>java/security/AccessController:::doPrivileged (1 samples, 0.23%)</title><rect x="1123.0" y="389" width="2.6" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text x="1125.95" y="399.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="1144.4" y="117" width="2.7" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="1147.41" y="127.5" ></text>
</g>
<g >
<title>Interpreter (1 samples, 0.23%)</title><rect x="1128.3" y="341" width="2.7" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="1131.32" y="351.5" ></text>
</g>
<g >
<title>bbr_min_tso_segs (1 samples, 0.23%)</title><rect x="648.3" y="645" width="2.7" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="651.27" y="655.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.23%)</title><rect x="905.7" y="357" width="2.7" height="15.0" fill="rgb(52,201,52)" rx="2" ry="2" />
<text x="908.73" y="367.5" ></text>
</g>
<g >
<title>futex_wait (4 samples, 0.91%)</title><rect x="299.6" y="725" width="10.8" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="302.64" y="735.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/HttpRequestExecutor:::postProcess (1 samples, 0.23%)</title><rect x="787.7" y="373" width="2.7" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="790.73" y="383.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (48 samples, 10.91%)</title><rect x="353.3" y="645" width="128.7" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="356.27" y="655.5" >__perf_event_tas..</text>
</g>
<g >
<title>__x64_sys_futex (1 samples, 0.23%)</title><rect x="192.4" y="741" width="2.6" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="195.36" y="751.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupTail:::match (2 samples, 0.45%)</title><rect x="978.1" y="165" width="5.4" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text x="981.14" y="175.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="948.6" y="261" width="2.7" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="951.64" y="271.5" ></text>
</g>
<g >
<title>__schedule (8 samples, 1.82%)</title><rect x="219.2" y="677" width="21.4" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="222.18" y="687.5" >_..</text>
</g>
<g >
<title>JNU_ThrowByName (1 samples, 0.23%)</title><rect x="1098.8" y="309" width="2.7" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="1101.82" y="319.5" ></text>
</g>
<g >
<title>java/util/HashSet:::iterator (1 samples, 0.23%)</title><rect x="1042.5" y="357" width="2.7" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text x="1045.50" y="367.5" ></text>
</g>
<g >
<title>nf_hook_slow (1 samples, 0.23%)</title><rect x="642.9" y="597" width="2.7" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text x="645.91" y="607.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="297.0" y="741" width="2.6" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="299.95" y="751.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeQuery (1 samples, 0.23%)</title><rect x="1055.9" y="373" width="2.7" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text x="1058.91" y="383.5" ></text>
</g>
<g >
<title>org/postgresql/core/PGStream:::ReceiveTupleV3 (1 samples, 0.23%)</title><rect x="935.2" y="277" width="2.7" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="938.23" y="287.5" ></text>
</g>
<g >
<title>org/apache/http/message/HeaderGroup:::getHeaders (1 samples, 0.23%)</title><rect x="1133.7" y="341" width="2.7" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="1136.68" y="351.5" ></text>
</g>
<g >
<title>native_write_msr (8 samples, 1.82%)</title><rect x="219.2" y="613" width="21.4" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="222.18" y="623.5" >n..</text>
</g>
<g >
<title>java/lang/Class:::forName (2 samples, 0.45%)</title><rect x="895.0" y="405" width="5.4" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="898.00" y="415.5" ></text>
</g>
<g >
<title>__x86_indirect_thunk_rax (1 samples, 0.23%)</title><rect x="629.5" y="437" width="2.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="632.50" y="447.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.45%)</title><rect x="1184.6" y="709" width="5.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="1187.64" y="719.5" ></text>
</g>
<g >
<title>Interpreter (1 samples, 0.23%)</title><rect x="1128.3" y="245" width="2.7" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text x="1131.32" y="255.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/request/RequestWriter$LazyContentStream:::getName (19 samples, 4.32%)</title><rect x="696.5" y="405" width="51.0" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text x="699.55" y="415.5" >org/a..</text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.45%)</title><rect x="240.6" y="773" width="5.4" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="243.64" y="783.5" ></text>
</g>
<g >
<title>java/util/AbstractCollection:::addAll (1 samples, 0.23%)</title><rect x="833.3" y="373" width="2.7" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="836.32" y="383.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeWithFlags (1 samples, 0.23%)</title><rect x="798.5" y="341" width="2.6" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="801.45" y="351.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="908.4" y="389" width="2.7" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="911.41" y="399.5" ></text>
</g>
<g >
<title>dequeue_task_fair (1 samples, 0.23%)</title><rect x="12.7" y="661" width="2.7" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="15.68" y="671.5" ></text>
</g>
<g >
<title>perf_event_task_tick (1 samples, 0.23%)</title><rect x="755.5" y="261" width="2.7" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" />
<text x="758.55" y="271.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.23%)</title><rect x="1055.9" y="389" width="2.7" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text x="1058.91" y="399.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (8 samples, 1.82%)</title><rect x="195.0" y="629" width="21.5" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text x="198.05" y="639.5" >_..</text>
</g>
<g >
<title>preempt_count_sub (1 samples, 0.23%)</title><rect x="605.4" y="389" width="2.6" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="608.36" y="399.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultUserTokenHandler:::getUserToken (1 samples, 0.23%)</title><rect x="1136.4" y="389" width="2.6" height="15.0" fill="rgb(65,213,65)" rx="2" ry="2" />
<text x="1139.36" y="399.5" ></text>
</g>
<g >
<title>sun/misc/FloatingDecimal$BinaryToASCIIBuffer:::appendTo (1 samples, 0.23%)</title><rect x="704.6" y="325" width="2.7" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="707.59" y="335.5" ></text>
</g>
<g >
<title>netif_rx_internal (1 samples, 0.23%)</title><rect x="589.3" y="517" width="2.7" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="592.27" y="527.5" ></text>
</g>
<g >
<title>__schedule (8 samples, 1.82%)</title><rect x="195.0" y="677" width="21.5" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text x="198.05" y="687.5" >_..</text>
</g>
<g >
<title>org/dspace/servicemanager/config/DSpaceConfigurationService:::getProperty (1 samples, 0.23%)</title><rect x="1045.2" y="453" width="2.7" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text x="1048.18" y="463.5" ></text>
</g>
<g >
<title>__poll (1 samples, 0.23%)</title><rect x="1101.5" y="309" width="2.7" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="1104.50" y="319.5" ></text>
</g>
<g >
<title>tcp_rbtree_insert (1 samples, 0.23%)</title><rect x="651.0" y="645" width="2.6" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="653.95" y="655.5" ></text>
</g>
<g >
<title>java/lang/String:::hashCode (1 samples, 0.23%)</title><rect x="900.4" y="389" width="2.6" height="15.0" fill="rgb(90,236,90)" rx="2" ry="2" />
<text x="903.36" y="399.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::processResults (1 samples, 0.23%)</title><rect x="798.5" y="309" width="2.6" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="801.45" y="319.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.23%)</title><rect x="905.7" y="373" width="2.7" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="908.73" y="383.5" ></text>
</g>
<g >
<title>preempt_count_sub.constprop.0 (1 samples, 0.23%)</title><rect x="342.5" y="677" width="2.7" height="15.0" fill="rgb(226,87,87)" rx="2" ry="2" />
<text x="345.55" y="687.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/PoolingDataSource:::getConnection (2 samples, 0.45%)</title><rect x="1168.5" y="453" width="5.4" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="1171.55" y="463.5" ></text>
</g>
<g >
<title>org/dspace/content/Bundle:::&lt;init&gt; (2 samples, 0.45%)</title><rect x="932.5" y="437" width="5.4" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="935.55" y="447.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$5:::isSatisfiedBy (2 samples, 0.45%)</title><rect x="978.1" y="69" width="5.4" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="981.14" y="79.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::find (1 samples, 0.23%)</title><rect x="932.5" y="405" width="2.7" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="935.55" y="415.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (4 samples, 0.91%)</title><rect x="1064.0" y="453" width="10.7" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text x="1066.95" y="463.5" ></text>
</g>
<g >
<title>org/apache/commons/logging/LogFactory:::getFactory (6 samples, 1.36%)</title><rect x="860.1" y="357" width="16.1" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text x="863.14" y="367.5" ></text>
</g>
<g >
<title>org/dspace/core/Context:::cache (1 samples, 0.23%)</title><rect x="954.0" y="453" width="2.7" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="957.00" y="463.5" ></text>
</g>
<g >
<title>org/apache/http/impl/io/SocketInputBuffer:::isDataAvailable (3 samples, 0.68%)</title><rect x="779.7" y="373" width="8.0" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="782.68" y="383.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.23%)</title><rect x="905.7" y="389" width="2.7" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text x="908.73" y="399.5" ></text>
</g>
<g >
<title>update_process_times (1 samples, 0.23%)</title><rect x="701.9" y="261" width="2.7" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="704.91" y="271.5" ></text>
</g>
<g >
<title>org/dspace/browse/SolrBrowseCreateDAO:::&lt;init&gt; (6 samples, 1.36%)</title><rect x="978.1" y="341" width="16.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text x="981.14" y="351.5" ></text>
</g>
<g >
<title>nft_do_chain (4 samples, 0.91%)</title><rect x="632.2" y="421" width="10.7" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="635.18" y="431.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/EntityEnclosingRequestWrapper$EntityWrapper:::writeTo (4 samples, 0.91%)</title><rect x="769.0" y="341" width="10.7" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text x="771.95" y="351.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match0 (2 samples, 0.45%)</title><rect x="978.1" y="101" width="5.4" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text x="981.14" y="111.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingStatement:::close (1 samples, 0.23%)</title><rect x="943.3" y="357" width="2.7" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text x="946.27" y="367.5" ></text>
</g>
<g >
<title>schedule (4 samples, 0.91%)</title><rect x="176.3" y="549" width="10.7" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="179.27" y="559.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.68%)</title><rect x="345.2" y="741" width="8.1" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="348.23" y="751.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (4 samples, 0.91%)</title><rect x="130.7" y="709" width="10.7" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="133.68" y="719.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.45%)</title><rect x="170.9" y="453" width="5.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="173.91" y="463.5" ></text>
</g>
<g >
<title>Interpreter (1 samples, 0.23%)</title><rect x="1128.3" y="309" width="2.7" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="1131.32" y="319.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (1 samples, 0.23%)</title><rect x="798.5" y="277" width="2.6" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="801.45" y="287.5" ></text>
</g>
<g >
<title>start_thread (195 samples, 44.32%)</title><rect x="667.0" y="805" width="523.0" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="670.05" y="815.5" >start_thread</text>
</g>
<g >
<title>loopback_xmit (2 samples, 0.45%)</title><rect x="586.6" y="549" width="5.4" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="589.59" y="559.5" ></text>
</g>
<g >
<title>[libjvm.so] (4 samples, 0.91%)</title><rect x="836.0" y="325" width="10.7" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="839.00" y="335.5" ></text>
</g>
<g >
<title>org/apache/solr/common/util/JavaBinCodec:::readVal (1 samples, 0.23%)</title><rect x="1106.9" y="325" width="2.6" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text x="1109.86" y="335.5" ></text>
</g>
<g >
<title>futex_wait (25 samples, 5.68%)</title><rect x="63.6" y="725" width="67.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="66.64" y="735.5" >futex_w..</text>
</g>
<g >
<title>sun/reflect/GeneratedConstructorAccessor22:::newInstance (6 samples, 1.36%)</title><rect x="978.1" y="357" width="16.1" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text x="981.14" y="367.5" ></text>
</g>
<g >
<title>__sys_sendto (39 samples, 8.86%)</title><rect x="559.8" y="741" width="104.6" height="15.0" fill="rgb(226,87,87)" rx="2" ry="2" />
<text x="562.77" y="751.5" >__sys_sendto</text>
</g>
<g >
<title>enqueue_hrtimer (1 samples, 0.23%)</title><rect x="10.0" y="677" width="2.7" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="13.00" y="687.5" ></text>
</g>
<g >
<title>schedule (8 samples, 1.82%)</title><rect x="195.0" y="693" width="21.5" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="198.05" y="703.5" >s..</text>
</g>
<g >
<title>dequeue_entity (1 samples, 0.23%)</title><rect x="490.0" y="597" width="2.7" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text x="493.05" y="607.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (46 samples, 10.45%)</title><rect x="541.0" y="789" width="123.4" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text x="544.00" y="799.5" >entry_SYSCALL_64</text>
</g>
<g >
<title>nft_do_chain (1 samples, 0.23%)</title><rect x="626.8" y="405" width="2.7" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
<text x="629.82" y="415.5" ></text>
</g>
<g >
<title>org/apache/http/entity/InputStreamEntity:::writeTo (4 samples, 0.91%)</title><rect x="769.0" y="325" width="10.7" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text x="771.95" y="335.5" ></text>
</g>
<g >
<title>[[vdso]] (1 samples, 0.23%)</title><rect x="905.7" y="309" width="2.7" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="908.73" y="319.5" ></text>
</g>
<g >
<title>__schedule (4 samples, 0.91%)</title><rect x="176.3" y="533" width="10.7" height="15.0" fill="rgb(252,125,125)" rx="2" ry="2" />
<text x="179.27" y="543.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (1 samples, 0.23%)</title><rect x="562.5" y="693" width="2.6" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="565.45" y="703.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeWithFlags (1 samples, 0.23%)</title><rect x="935.2" y="325" width="2.7" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text x="938.23" y="335.5" ></text>
</g>
<g >
<title>_complete_monitor_locking_Java (1 samples, 0.23%)</title><rect x="216.5" y="645" width="2.7" height="15.0" fill="rgb(215,73,73)" rx="2" ry="2" />
<text x="219.50" y="655.5" ></text>
</g>
<g >
<title>copyin (1 samples, 0.23%)</title><rect x="653.6" y="661" width="2.7" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="656.64" y="671.5" ></text>
</g>
<g >
<title>Java_java_net_SocketOutputStream_socketWrite0 (1 samples, 0.23%)</title><rect x="951.3" y="293" width="2.7" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="954.32" y="303.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern:::clazz (1 samples, 0.23%)</title><rect x="991.5" y="229" width="2.7" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="994.55" y="239.5" ></text>
</g>
<g >
<title>org/postgresql/core/PGStream:::ReceiveTupleV3 (1 samples, 0.23%)</title><rect x="1072.0" y="325" width="2.7" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text x="1075.00" y="335.5" ></text>
</g>
<g >
<title>org/apache/log4j/Category:::error (2 samples, 0.45%)</title><rect x="680.5" y="405" width="5.3" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text x="683.45" y="415.5" ></text>
</g>
<g >
<title>wait_woken (19 samples, 4.32%)</title><rect x="487.4" y="677" width="50.9" height="15.0" fill="rgb(235,100,100)" rx="2" ry="2" />
<text x="490.36" y="687.5" >wait_..</text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::&lt;init&gt; (1 samples, 0.23%)</title><rect x="1117.6" y="405" width="2.7" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="1120.59" y="415.5" ></text>
</g>
<g >
<title>blk_mq_complete_request (1 samples, 0.23%)</title><rect x="484.7" y="597" width="2.7" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text x="487.68" y="607.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="782.4" y="277" width="2.6" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="785.36" y="287.5" ></text>
</g>
<g >
<title>iptable_security_hook (1 samples, 0.23%)</title><rect x="575.9" y="581" width="2.6" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="578.86" y="591.5" ></text>
</g>
<g >
<title>do_syscall_64 (8 samples, 1.82%)</title><rect x="195.0" y="757" width="21.5" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="198.05" y="767.5" >d..</text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::processResults (2 samples, 0.45%)</title><rect x="1168.5" y="373" width="5.4" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="1171.55" y="383.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (2 samples, 0.45%)</title><rect x="1098.8" y="341" width="5.4" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="1101.82" y="351.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/content/StringBody:::&lt;init&gt; (3 samples, 0.68%)</title><rect x="672.4" y="421" width="8.1" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="675.41" y="431.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::processResults (1 samples, 0.23%)</title><rect x="948.6" y="325" width="2.7" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text x="951.64" y="335.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/content/StringBody:::writeTo (1 samples, 0.23%)</title><rect x="691.2" y="325" width="2.7" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text x="694.18" y="335.5" ></text>
</g>
<g >
<title>[libjvm.so] (6 samples, 1.36%)</title><rect x="1173.9" y="741" width="16.1" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="1176.91" y="751.5" ></text>
</g>
<g >
<title>__schedule (19 samples, 4.32%)</title><rect x="487.4" y="629" width="50.9" height="15.0" fill="rgb(228,92,92)" rx="2" ry="2" />
<text x="490.36" y="639.5" >__sch..</text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (2 samples, 0.45%)</title><rect x="769.0" y="309" width="5.3" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="771.95" y="319.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (1 samples, 0.23%)</title><rect x="192.4" y="789" width="2.6" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="195.36" y="799.5" ></text>
</g>
<g >
<title>org/apache/log4j/helpers/AppenderAttachableImpl:::appendLoopOnAppenders (2 samples, 0.45%)</title><rect x="680.5" y="373" width="5.3" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text x="683.45" y="383.5" ></text>
</g>
<g >
<title>[libjvm.so] (189 samples, 42.95%)</title><rect x="667.0" y="581" width="506.9" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="670.05" y="591.5" >[libjvm.so]</text>
</g>
<g >
<title>__schedule (48 samples, 10.91%)</title><rect x="353.3" y="677" width="128.7" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="356.27" y="687.5" >__schedule</text>
</g>
<g >
<title>queue_work_on (1 samples, 0.23%)</title><rect x="484.7" y="549" width="2.7" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="487.68" y="559.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.45%)</title><rect x="868.2" y="293" width="5.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="871.18" y="303.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::processResults (1 samples, 0.23%)</title><rect x="956.7" y="309" width="2.7" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text x="959.68" y="319.5" ></text>
</g>
<g >
<title>org/apache/solr/common/util/JavaBinCodec:::readArray (1 samples, 0.23%)</title><rect x="1106.9" y="341" width="2.6" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text x="1109.86" y="351.5" ></text>
</g>
<g >
<title>start_thread (1 samples, 0.23%)</title><rect x="61.0" y="805" width="2.6" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="63.95" y="815.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.68%)</title><rect x="168.2" y="565" width="8.1" height="15.0" fill="rgb(215,73,73)" rx="2" ry="2" />
<text x="171.23" y="575.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::processResults (1 samples, 0.23%)</title><rect x="935.2" y="293" width="2.7" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text x="938.23" y="303.5" ></text>
</g>
<g >
<title>Interpreter (1 samples, 0.23%)</title><rect x="1128.3" y="357" width="2.7" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="1131.32" y="367.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractAutowireCapableBeanFactory:::instantiateBean (7 samples, 1.59%)</title><rect x="975.5" y="373" width="18.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="978.45" y="383.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (6 samples, 1.36%)</title><rect x="608.0" y="405" width="16.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="611.05" y="415.5" ></text>
</g>
<g >
<title>JNU_ThrowByName (1 samples, 0.23%)</title><rect x="782.4" y="309" width="2.6" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="785.36" y="319.5" ></text>
</g>
<g >
<title>[libjvm.so] (8 samples, 1.82%)</title><rect x="165.5" y="613" width="21.5" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="168.55" y="623.5" >[..</text>
</g>
<g >
<title>[libjvm.so] (17 samples, 3.86%)</title><rect x="146.8" y="677" width="45.6" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="149.77" y="687.5" >[lib..</text>
</g>
<g >
<title>java/util/Arrays:::copyOf (1 samples, 0.23%)</title><rect x="887.0" y="325" width="2.6" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text x="889.95" y="335.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (1 samples, 0.23%)</title><rect x="701.9" y="293" width="2.7" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="704.91" y="303.5" ></text>
</g>
<g >
<title>start_thread (19 samples, 4.32%)</title><rect x="141.4" y="805" width="51.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="144.41" y="815.5" >start..</text>
</g>
<g >
<title>task_tick_fair (1 samples, 0.23%)</title><rect x="701.9" y="229" width="2.7" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="704.91" y="239.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::find (2 samples, 0.45%)</title><rect x="1160.5" y="469" width="5.4" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text x="1163.50" y="479.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.68%)</title><rect x="168.2" y="581" width="8.1" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text x="171.23" y="591.5" ></text>
</g>
<g >
<title>schedule (4 samples, 0.91%)</title><rect x="299.6" y="693" width="10.8" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="302.64" y="703.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (24 samples, 5.45%)</title><rect x="63.6" y="629" width="64.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="66.64" y="639.5" >__intel..</text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (18 samples, 4.09%)</title><rect x="246.0" y="789" width="48.3" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="249.00" y="799.5" >pthr..</text>
</g>
<g >
<title>call_stub (1 samples, 0.23%)</title><rect x="216.5" y="677" width="2.7" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="219.50" y="687.5" ></text>
</g>
<g >
<title>finish_task_switch (17 samples, 3.86%)</title><rect x="492.7" y="613" width="45.6" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="495.73" y="623.5" >fini..</text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.45%)</title><rect x="294.3" y="773" width="5.3" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="297.27" y="783.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1 samples, 0.23%)</title><rect x="755.5" y="341" width="2.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="758.55" y="351.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (18 samples, 4.09%)</title><rect x="594.6" y="533" width="48.3" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text x="597.64" y="543.5" >__so..</text>
</g>
<g >
<title>futex_wait_queue_me (4 samples, 0.91%)</title><rect x="299.6" y="709" width="10.8" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text x="302.64" y="719.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (17 samples, 3.86%)</title><rect x="492.7" y="597" width="45.6" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="495.73" y="607.5" >__pe..</text>
</g>
<g >
<title>do_mprotect_pkey (1 samples, 0.23%)</title><rect x="347.9" y="645" width="2.7" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="350.91" y="655.5" ></text>
</g>
<g >
<title>[libjvm.so] (189 samples, 42.95%)</title><rect x="667.0" y="565" width="506.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="670.05" y="575.5" >[libjvm.so]</text>
</g>
<g >
<title>[unknown] (48 samples, 10.91%)</title><rect x="353.3" y="805" width="128.7" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text x="356.27" y="815.5" >[unknown]</text>
</g>
<g >
<title>do_IRQ (1 samples, 0.23%)</title><rect x="484.7" y="677" width="2.7" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text x="487.68" y="687.5" ></text>
</g>
<g >
<title>tcp_sendmsg (38 samples, 8.64%)</title><rect x="562.5" y="709" width="101.9" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text x="565.45" y="719.5" >tcp_sendmsg</text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (12 samples, 2.73%)</title><rect x="310.4" y="629" width="32.1" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="313.36" y="639.5" >__..</text>
</g>
<g >
<title>java/util/Date:::normalize (1 samples, 0.23%)</title><rect x="667.0" y="421" width="2.7" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="670.05" y="431.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (18 samples, 4.09%)</title><rect x="594.6" y="549" width="48.3" height="15.0" fill="rgb(217,74,74)" rx="2" ry="2" />
<text x="597.64" y="559.5" >do_s..</text>
</g>
<g >
<title>futex_wait_queue_me (13 samples, 2.95%)</title><rect x="310.4" y="709" width="34.8" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text x="313.36" y="719.5" >fu..</text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.45%)</title><rect x="240.6" y="741" width="5.4" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="243.64" y="751.5" ></text>
</g>
<g >
<title>ip_rcv (16 samples, 3.64%)</title><rect x="600.0" y="469" width="42.9" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="603.00" y="479.5" >ip_rcv</text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.23%)</title><rect x="956.7" y="405" width="2.7" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text x="959.68" y="415.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.23%)</title><rect x="913.8" y="357" width="2.7" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="916.77" y="367.5" ></text>
</g>
<g >
<title>__schedule (25 samples, 5.68%)</title><rect x="63.6" y="677" width="67.1" height="15.0" fill="rgb(206,58,58)" rx="2" ry="2" />
<text x="66.64" y="687.5" >__sched..</text>
</g>
<g >
<title>hrtimer_interrupt (1 samples, 0.23%)</title><rect x="701.9" y="309" width="2.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="704.91" y="319.5" ></text>
</g>
<g >
<title>__mprotect (1 samples, 0.23%)</title><rect x="350.6" y="725" width="2.7" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text x="353.59" y="735.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (1 samples, 0.23%)</title><rect x="956.7" y="293" width="2.7" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="959.68" y="303.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.23%)</title><rect x="701.9" y="341" width="2.7" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="704.91" y="351.5" ></text>
</g>
<g >
<title>Java_java_net_SocketInputStream_socketRead0 (2 samples, 0.45%)</title><rect x="1098.8" y="325" width="5.4" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="1101.82" y="335.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (4 samples, 0.91%)</title><rect x="299.6" y="773" width="10.8" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="302.64" y="783.5" ></text>
</g>
<g >
<title>tcp_newly_delivered (1 samples, 0.23%)</title><rect x="1128.3" y="37" width="2.7" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text x="1131.32" y="47.5" ></text>
</g>
<g >
<title>mprotect_fixup (1 samples, 0.23%)</title><rect x="350.6" y="645" width="2.7" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text x="353.59" y="655.5" ></text>
</g>
<g >
<title>org/apache/solr/common/util/JavaBinCodec:::readSolrDocumentList (1 samples, 0.23%)</title><rect x="1106.9" y="373" width="2.6" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text x="1109.86" y="383.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.45%)</title><rect x="1141.7" y="293" width="5.4" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="1144.73" y="303.5" ></text>
</g>
<g >
<title>__x64_sys_connect (1 samples, 0.23%)</title><rect x="1128.3" y="165" width="2.7" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="1131.32" y="175.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (2 samples, 0.45%)</title><rect x="948.6" y="389" width="5.4" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="951.64" y="399.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::createMethod (6 samples, 1.36%)</title><rect x="669.7" y="437" width="16.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="672.73" y="447.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.23%)</title><rect x="742.1" y="309" width="2.7" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="745.14" y="319.5" ></text>
</g>
<g >
<title>org/apache/solr/common/util/XML:::escape (12 samples, 2.73%)</title><rect x="712.6" y="325" width="32.2" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="715.64" y="335.5" >or..</text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (16 samples, 3.64%)</title><rect x="15.4" y="629" width="42.9" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="18.36" y="639.5" >__in..</text>
</g>
<g >
<title>java/lang/StringCoding:::encode (3 samples, 0.68%)</title><rect x="672.4" y="405" width="8.1" height="15.0" fill="rgb(54,203,54)" rx="2" ry="2" />
<text x="675.41" y="415.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.68%)</title><rect x="345.2" y="773" width="8.1" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="348.23" y="783.5" ></text>
</g>
<g >
<title>org/apache/http/impl/conn/ManagedClientConnectionImpl:::sendRequestEntity (4 samples, 0.91%)</title><rect x="769.0" y="357" width="10.7" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="771.95" y="367.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (3 samples, 0.68%)</title><rect x="1066.6" y="421" width="8.1" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="1069.64" y="431.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingStatement:::executeQuery (2 samples, 0.45%)</title><rect x="1168.5" y="405" width="5.4" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="1171.55" y="415.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/request/QueryRequest:::process (10 samples, 2.27%)</title><rect x="1082.7" y="453" width="26.8" height="15.0" fill="rgb(71,220,71)" rx="2" ry="2" />
<text x="1085.73" y="463.5" >o..</text>
</g>
<g >
<title>java/util/regex/Pattern$Branch:::match (1 samples, 0.23%)</title><rect x="892.3" y="309" width="2.7" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text x="895.32" y="319.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.23%)</title><rect x="798.5" y="405" width="2.6" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="801.45" y="415.5" ></text>
</g>
<g >
<title>org/dspace/util/MultiFormatDateParser:::parse (2 samples, 0.45%)</title><rect x="1077.4" y="453" width="5.3" height="15.0" fill="rgb(106,252,106)" rx="2" ry="2" />
<text x="1080.36" y="463.5" ></text>
</g>
<g >
<title>org/springframework/beans/TypeConverterDelegate:::convertIfNecessary (27 samples, 6.14%)</title><rect x="822.6" y="421" width="72.4" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="825.59" y="431.5" >org/spri..</text>
</g>
<g >
<title>_copy_from_iter_full (1 samples, 0.23%)</title><rect x="653.6" y="677" width="2.7" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="656.64" y="687.5" ></text>
</g>
<g >
<title>org/dspace/content/Item:::getCollections (1 samples, 0.23%)</title><rect x="798.5" y="437" width="2.6" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="801.45" y="447.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractAutowireCapableBeanFactory:::doCreateBean (7 samples, 1.59%)</title><rect x="975.5" y="389" width="18.7" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" />
<text x="978.45" y="399.5" ></text>
</g>
<g >
<title>__kmalloc_node_track_caller (1 samples, 0.23%)</title><rect x="659.0" y="645" width="2.7" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="662.00" y="655.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="216.5" y="757" width="2.7" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="219.50" y="767.5" ></text>
</g>
<g >
<title>enqueue_task_fair (1 samples, 0.23%)</title><rect x="610.7" y="293" width="2.7" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="613.73" y="303.5" ></text>
</g>
<g >
<title>com/atmire/dspace/discovery/AtmireSolrService:::writeDocument (49 samples, 11.14%)</title><rect x="667.0" y="453" width="131.5" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text x="670.05" y="463.5" >com/atmire/dspac..</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="173.6" y="293" width="2.7" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="176.59" y="303.5" ></text>
</g>
<g >
<title>JVM_DoPrivileged (1 samples, 0.23%)</title><rect x="1090.8" y="357" width="2.7" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="1093.77" y="367.5" ></text>
</g>
<g >
<title>java/lang/AbstractStringBuilder:::append (1 samples, 0.23%)</title><rect x="1085.4" y="373" width="2.7" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text x="1088.41" y="383.5" ></text>
</g>
<g >
<title>sk_page_frag_refill (1 samples, 0.23%)</title><rect x="656.3" y="677" width="2.7" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="659.32" y="687.5" ></text>
</g>
<g >
<title>schedule (16 samples, 3.64%)</title><rect x="248.7" y="693" width="42.9" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="251.68" y="703.5" >sche..</text>
</g>
<g >
<title>update_cfs_group (1 samples, 0.23%)</title><rect x="701.9" y="213" width="2.7" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="704.91" y="223.5" ></text>
</g>
<g >
<title>[libjvm.so] (14 samples, 3.18%)</title><rect x="152.1" y="645" width="37.6" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="155.14" y="655.5" >[li..</text>
</g>
<g >
<title>__mprotect (1 samples, 0.23%)</title><rect x="347.9" y="709" width="2.7" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="350.91" y="719.5" ></text>
</g>
<g >
<title>do_syscall_64 (1 samples, 0.23%)</title><rect x="347.9" y="677" width="2.7" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="350.91" y="687.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/BasicHttpContext:::setAttribute (1 samples, 0.23%)</title><rect x="1104.2" y="373" width="2.7" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="1107.18" y="383.5" ></text>
</g>
<g >
<title>org/apache/solr/common/util/JavaBinCodec:::readVal (1 samples, 0.23%)</title><rect x="1106.9" y="357" width="2.6" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="1109.86" y="367.5" ></text>
</g>
<g >
<title>native_write_msr (16 samples, 3.64%)</title><rect x="492.7" y="565" width="42.9" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="495.73" y="575.5" >nati..</text>
</g>
<g >
<title>java/net/URI:::&lt;init&gt; (1 samples, 0.23%)</title><rect x="1088.1" y="373" width="2.7" height="15.0" fill="rgb(70,219,70)" rx="2" ry="2" />
<text x="1091.09" y="383.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (1 samples, 0.23%)</title><rect x="935.2" y="405" width="2.7" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text x="938.23" y="415.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match (1 samples, 0.23%)</title><rect x="892.3" y="293" width="2.7" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="895.32" y="303.5" ></text>
</g>
<g >
<title>schedule (19 samples, 4.32%)</title><rect x="487.4" y="645" width="50.9" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="490.36" y="655.5" >sched..</text>
</g>
<g >
<title>scheduler_tick (1 samples, 0.23%)</title><rect x="755.5" y="277" width="2.7" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="758.55" y="287.5" ></text>
</g>
<g >
<title>__virt_addr_valid (1 samples, 0.23%)</title><rect x="538.3" y="645" width="2.7" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="541.32" y="655.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (1 samples, 0.23%)</title><rect x="61.0" y="677" width="2.6" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="63.95" y="687.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/DefaultListableBeanFactory:::getBeanNamesForType (19 samples, 4.32%)</title><rect x="994.2" y="405" width="51.0" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="997.23" y="415.5" >org/s..</text>
</g>
<g >
<title>__perf_event_task_sched_in (4 samples, 0.91%)</title><rect x="299.6" y="645" width="10.8" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="302.64" y="655.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="1171.2" y="293" width="2.7" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="1174.23" y="303.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::execute (13 samples, 2.95%)</title><rect x="760.9" y="389" width="34.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="763.91" y="399.5" >or..</text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::executeMethod (14 samples, 3.18%)</title><rect x="1112.2" y="437" width="37.6" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="1115.23" y="447.5" >org..</text>
</g>
<g >
<title>futex_wait_queue_me (8 samples, 1.82%)</title><rect x="195.0" y="709" width="21.5" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="198.05" y="719.5" >f..</text>
</g>
<g >
<title>entry_SYSCALL_64 (19 samples, 4.32%)</title><rect x="10.0" y="773" width="51.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="13.00" y="783.5" >entry..</text>
</g>
<g >
<title>__queue_work (1 samples, 0.23%)</title><rect x="484.7" y="533" width="2.7" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text x="487.68" y="543.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="908.4" y="357" width="2.7" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text x="911.41" y="367.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern:::escape (1 samples, 0.23%)</title><rect x="991.5" y="213" width="2.7" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text x="994.55" y="223.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (8 samples, 1.82%)</title><rect x="602.7" y="437" width="21.4" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text x="605.68" y="447.5" >i..</text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.45%)</title><rect x="170.9" y="485" width="5.4" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="173.91" y="495.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (8 samples, 1.82%)</title><rect x="195.0" y="645" width="21.5" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text x="198.05" y="655.5" >_..</text>
</g>
<g >
<title>finish_task_switch (8 samples, 1.82%)</title><rect x="195.0" y="661" width="21.5" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text x="198.05" y="671.5" >f..</text>
</g>
<g >
<title>syscall_return_via_sysret (1 samples, 0.23%)</title><rect x="664.4" y="789" width="2.6" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="667.36" y="799.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="1171.2" y="277" width="2.7" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text x="1174.23" y="287.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="61.0" y="757" width="2.6" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="63.95" y="767.5" ></text>
</g>
<g >
<title>java/util/LinkedHashMap:::removeEldestEntry (1 samples, 0.23%)</title><rect x="1106.9" y="261" width="2.6" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text x="1109.86" y="271.5" ></text>
</g>
<g >
<title>enqueue_to_backlog (1 samples, 0.23%)</title><rect x="589.3" y="501" width="2.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="592.27" y="511.5" ></text>
</g>
<g >
<title>copy_user_enhanced_fast_string (1 samples, 0.23%)</title><rect x="653.6" y="645" width="2.7" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text x="656.64" y="655.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="1123.0" y="357" width="2.6" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="1125.95" y="367.5" ></text>
</g>
<g >
<title>org/springframework/core/GenericTypeResolver:::doResolveTypeArguments (1 samples, 0.23%)</title><rect x="857.5" y="357" width="2.6" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="860.45" y="367.5" ></text>
</g>
<g >
<title>org/dspace/content/Community:::getAllParents (3 samples, 0.68%)</title><rect x="908.4" y="453" width="8.1" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text x="911.41" y="463.5" ></text>
</g>
<g >
<title>Java_java_net_SocketInputStream_socketRead0 (1 samples, 0.23%)</title><rect x="798.5" y="261" width="2.6" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="801.45" y="271.5" ></text>
</g>
<g >
<title>pick_next_task_fair (1 samples, 0.23%)</title><rect x="128.0" y="661" width="2.7" height="15.0" fill="rgb(202,52,52)" rx="2" ry="2" />
<text x="131.00" y="671.5" ></text>
</g>
<g >
<title>finish_task_switch (4 samples, 0.91%)</title><rect x="299.6" y="661" width="10.8" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="302.64" y="671.5" ></text>
</g>
<g >
<title>org/apache/solr/common/SolrInputDocument:::getFieldValues (1 samples, 0.23%)</title><rect x="795.8" y="437" width="2.7" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text x="798.77" y="447.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::tryExecute (2 samples, 0.45%)</title><rect x="1131.0" y="389" width="5.4" height="15.0" fill="rgb(82,230,82)" rx="2" ry="2" />
<text x="1134.00" y="399.5" ></text>
</g>
<g >
<title>_raw_spin_lock (1 samples, 0.23%)</title><rect x="589.3" y="485" width="2.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="592.27" y="495.5" ></text>
</g>
<g >
<title>org/apache/commons/logging/impl/SLF4JLocationAwareLog:::isDebugEnabled (1 samples, 0.23%)</title><rect x="685.8" y="389" width="2.7" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
<text x="688.82" y="399.5" ></text>
</g>
<g >
<title>org/dspace/servicemanager/config/DSpaceConfigurationService:::getPropertyAsType (27 samples, 6.14%)</title><rect x="822.6" y="437" width="72.4" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text x="825.59" y="447.5" >org/dspa..</text>
</g>
<g >
<title>tlb_is_not_lazy (1 samples, 0.23%)</title><rect x="350.6" y="581" width="2.7" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="353.59" y="591.5" ></text>
</g>
<g >
<title>org/springframework/core/env/MutablePropertySources:::addLast (7 samples, 1.59%)</title><rect x="876.2" y="357" width="18.8" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="879.23" y="367.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::findByUnique (1 samples, 0.23%)</title><rect x="1047.9" y="437" width="2.6" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="1050.86" y="447.5" ></text>
</g>
<g >
<title>java/util/Formatter:::format (7 samples, 1.59%)</title><rect x="876.2" y="341" width="18.8" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text x="879.23" y="351.5" ></text>
</g>
<g >
<title>org/dspace/content/Item:::getCollections (3 samples, 0.68%)</title><rect x="956.7" y="437" width="8.0" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="959.68" y="447.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="798.5" y="245" width="2.6" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text x="801.45" y="255.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (4 samples, 0.91%)</title><rect x="176.3" y="581" width="10.7" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="179.27" y="591.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/PoolableConnectionFactory:::validateConnection (2 samples, 0.45%)</title><rect x="1168.5" y="421" width="5.4" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="1171.55" y="431.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$BmpCharProperty:::match (2 samples, 0.45%)</title><rect x="978.1" y="229" width="5.4" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text x="981.14" y="239.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::tryConnect (1 samples, 0.23%)</title><rect x="1128.3" y="389" width="2.7" height="15.0" fill="rgb(90,236,90)" rx="2" ry="2" />
<text x="1131.32" y="399.5" ></text>
</g>
<g >
<title>pthread_cond_wait@@GLIBC_2.3.2 (8 samples, 1.82%)</title><rect x="219.2" y="789" width="21.4" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="222.18" y="799.5" >p..</text>
</g>
<g >
<title>__hrtimer_run_queues (1 samples, 0.23%)</title><rect x="755.5" y="325" width="2.7" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text x="758.55" y="335.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.23%)</title><rect x="935.2" y="357" width="2.7" height="15.0" fill="rgb(106,252,106)" rx="2" ry="2" />
<text x="938.23" y="367.5" ></text>
</g>
<g >
<title>Java_java_net_PlainSocketImpl_socketSetOption0 (1 samples, 0.23%)</title><rect x="779.7" y="325" width="2.7" height="15.0" fill="rgb(202,54,54)" rx="2" ry="2" />
<text x="782.68" y="335.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::executeMethod (4 samples, 0.91%)</title><rect x="685.8" y="437" width="10.7" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" />
<text x="688.82" y="447.5" ></text>
</g>
<g >
<title>java/util/concurrent/ConcurrentHashMap:::transfer (1 samples, 0.23%)</title><rect x="1104.2" y="341" width="2.7" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text x="1107.18" y="351.5" ></text>
</g>
<g >
<title>futex_wait (48 samples, 10.91%)</title><rect x="353.3" y="725" width="128.7" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="356.27" y="735.5" >futex_wait</text>
</g>
<g >
<title>java/io/FileOutputStream:::write (1 samples, 0.23%)</title><rect x="1155.1" y="405" width="2.7" height="15.0" fill="rgb(52,201,52)" rx="2" ry="2" />
<text x="1158.14" y="415.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::find (1 samples, 0.23%)</title><rect x="1047.9" y="453" width="2.6" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="1050.86" y="463.5" ></text>
</g>
<g >
<title>org/apache/solr/common/util/JavaBinCodec:::readVal (1 samples, 0.23%)</title><rect x="1106.9" y="389" width="2.6" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="1109.86" y="399.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (3 samples, 0.68%)</title><rect x="1066.6" y="437" width="8.1" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" />
<text x="1069.64" y="447.5" ></text>
</g>
<g >
<title>C2_CompilerThre (48 samples, 10.91%)</title><rect x="63.6" y="821" width="128.8" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="66.64" y="831.5" >C2_CompilerThre</text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::execute (9 samples, 2.05%)</title><rect x="1082.7" y="389" width="24.2" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text x="1085.73" y="399.5" >o..</text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::findByUnique (1 samples, 0.23%)</title><rect x="943.3" y="389" width="2.7" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="946.27" y="399.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="173.6" y="277" width="2.7" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="176.59" y="287.5" ></text>
</g>
<g >
<title>schedule (48 samples, 10.91%)</title><rect x="353.3" y="693" width="128.7" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="356.27" y="703.5" >schedule</text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.23%)</title><rect x="1055.9" y="421" width="2.7" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="1058.91" y="431.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeWithFlags (1 samples, 0.23%)</title><rect x="1055.9" y="357" width="2.7" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text x="1058.91" y="367.5" ></text>
</g>
<g >
<title>__x64_sys_poll (1 samples, 0.23%)</title><rect x="1101.5" y="261" width="2.7" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="1104.50" y="271.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeQuery (1 samples, 0.23%)</title><rect x="956.7" y="357" width="2.7" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="959.68" y="367.5" ></text>
</g>
<g >
<title>org/dspace/core/PluginManager:::getNamedPlugin (3 samples, 0.68%)</title><rect x="895.0" y="421" width="8.0" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="898.00" y="431.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractBeanFactory:::doGetBean (1 samples, 0.23%)</title><rect x="967.4" y="437" width="2.7" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text x="970.41" y="447.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (2 samples, 0.45%)</title><rect x="586.6" y="581" width="5.4" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" />
<text x="589.59" y="591.5" ></text>
</g>
<g >
<title>native_write_msr (24 samples, 5.45%)</title><rect x="63.6" y="613" width="64.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="66.64" y="623.5" >native_..</text>
</g>
<g >
<title>skb_copy_datagram_iter (1 samples, 0.23%)</title><rect x="538.3" y="693" width="2.7" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="541.32" y="703.5" ></text>
</g>
<g >
<title>java/util/HashMap:::get (1 samples, 0.23%)</title><rect x="900.4" y="405" width="2.6" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="903.36" y="415.5" ></text>
</g>
<g >
<title>[unknown] (17 samples, 3.86%)</title><rect x="299.6" y="805" width="45.6" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text x="302.64" y="815.5" >[unk..</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="1098.8" y="261" width="2.7" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text x="1101.82" y="271.5" ></text>
</g>
<g >
<title>__pthread_getspecific (1 samples, 0.23%)</title><rect x="187.0" y="629" width="2.7" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="190.00" y="639.5" ></text>
</g>
<g >
<title>java/lang/Throwable:::getStackTraceElement (1 samples, 0.23%)</title><rect x="683.1" y="293" width="2.7" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text x="686.14" y="303.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match0 (2 samples, 0.45%)</title><rect x="978.1" y="261" width="5.4" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text x="981.14" y="271.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match0 (2 samples, 0.45%)</title><rect x="978.1" y="181" width="5.4" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text x="981.14" y="191.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (2 samples, 0.45%)</title><rect x="937.9" y="405" width="5.4" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text x="940.91" y="415.5" ></text>
</g>
<g >
<title>org/dspace/core/Context:::&lt;init&gt; (2 samples, 0.45%)</title><rect x="1168.5" y="485" width="5.4" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="1171.55" y="495.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (18 samples, 4.09%)</title><rect x="246.0" y="773" width="48.3" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" />
<text x="249.00" y="783.5" >entr..</text>
</g>
<g >
<title>org/springframework/core/convert/support/DefaultConversionService:::addFallbackConverters (1 samples, 0.23%)</title><rect x="849.4" y="373" width="2.7" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text x="852.41" y="383.5" ></text>
</g>
<g >
<title>do_syscall_64 (45 samples, 10.23%)</title><rect x="543.7" y="773" width="120.7" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text x="546.68" y="783.5" >do_syscall_64</text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.45%)</title><rect x="1141.7" y="277" width="5.4" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="1144.73" y="287.5" ></text>
</g>
<g >
<title>newidle_balance (1 samples, 0.23%)</title><rect x="128.0" y="645" width="2.7" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text x="131.00" y="655.5" ></text>
</g>
<g >
<title>java/lang/String:::split (1 samples, 0.23%)</title><rect x="801.1" y="453" width="2.7" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="804.14" y="463.5" ></text>
</g>
<g >
<title>org/dspace/discovery/SearchUtils:::getAllDiscoveryConfigurations (3 samples, 0.68%)</title><rect x="956.7" y="453" width="8.0" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="959.68" y="463.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::execute (1 samples, 0.23%)</title><rect x="798.5" y="325" width="2.6" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text x="801.45" y="335.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRowIterator:::next (1 samples, 0.23%)</title><rect x="1165.9" y="469" width="2.6" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="1168.86" y="479.5" ></text>
</g>
<g >
<title>[libjvm.so] (6 samples, 1.36%)</title><rect x="1173.9" y="789" width="16.1" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="1176.91" y="799.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="297.0" y="725" width="2.6" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="299.95" y="735.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="1171.2" y="213" width="2.7" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text x="1174.23" y="223.5" ></text>
</g>
<g >
<title>process_backlog (16 samples, 3.64%)</title><rect x="600.0" y="501" width="42.9" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="603.00" y="511.5" >proc..</text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match (2 samples, 0.45%)</title><rect x="1077.4" y="437" width="5.3" height="15.0" fill="rgb(54,203,54)" rx="2" ry="2" />
<text x="1080.36" y="447.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::findByUnique (2 samples, 0.45%)</title><rect x="1160.5" y="453" width="5.4" height="15.0" fill="rgb(90,236,90)" rx="2" ry="2" />
<text x="1163.50" y="463.5" ></text>
</g>
<g >
<title>timerqueue_add (1 samples, 0.23%)</title><rect x="10.0" y="661" width="2.7" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="13.00" y="671.5" ></text>
</g>
<g >
<title>sun/reflect/Reflection:::getCallerClass (1 samples, 0.23%)</title><rect x="844.0" y="261" width="2.7" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text x="847.05" y="271.5" ></text>
</g>
<g >
<title>blk_update_request (1 samples, 0.23%)</title><rect x="484.7" y="565" width="2.7" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="487.68" y="575.5" ></text>
</g>
<g >
<title>futex_wait (8 samples, 1.82%)</title><rect x="195.0" y="725" width="21.5" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text x="198.05" y="735.5" >f..</text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::executeMethod (15 samples, 3.41%)</title><rect x="755.5" y="421" width="40.3" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text x="758.55" y="431.5" >org..</text>
</g>
<g >
<title>java/util/concurrent/ConcurrentHashMap:::putVal (1 samples, 0.23%)</title><rect x="1104.2" y="357" width="2.7" height="15.0" fill="rgb(90,236,90)" rx="2" ry="2" />
<text x="1107.18" y="367.5" ></text>
</g>
<g >
<title>org/apache/http/impl/io/AbstractSessionOutputBuffer:::flushBuffer (1 samples, 0.23%)</title><rect x="777.0" y="277" width="2.7" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="780.00" y="287.5" ></text>
</g>
<g >
<title>update_load_avg.constprop.0 (1 samples, 0.23%)</title><rect x="490.0" y="581" width="2.7" height="15.0" fill="rgb(219,77,77)" rx="2" ry="2" />
<text x="493.05" y="591.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::process (1 samples, 0.23%)</title><rect x="1047.9" y="421" width="2.6" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="1050.86" y="431.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/AbstractHttpClient:::doExecute (4 samples, 0.91%)</title><rect x="685.8" y="421" width="10.7" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="688.82" y="431.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="243.3" y="581" width="2.7" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="246.32" y="591.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (2 samples, 0.45%)</title><rect x="782.4" y="341" width="5.3" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="785.36" y="351.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (1 samples, 0.23%)</title><rect x="535.6" y="581" width="2.7" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="538.64" y="591.5" ></text>
</g>
<g >
<title>nf_hook_slow (5 samples, 1.14%)</title><rect x="629.5" y="453" width="13.4" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="632.50" y="463.5" ></text>
</g>
<g >
<title>update_cfs_group (1 samples, 0.23%)</title><rect x="610.7" y="261" width="2.7" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="613.73" y="271.5" ></text>
</g>
<g >
<title>org/apache/http/impl/DefaultConnectionReuseStrategy:::keepAlive (1 samples, 0.23%)</title><rect x="1125.6" y="389" width="2.7" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="1128.64" y="399.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="838.7" y="309" width="2.7" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" />
<text x="841.68" y="319.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (3 samples, 0.68%)</title><rect x="1141.7" y="357" width="8.1" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="1144.73" y="367.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::process (6 samples, 1.36%)</title><rect x="916.5" y="421" width="16.0" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="919.45" y="431.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="1098.8" y="245" width="2.7" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text x="1101.82" y="255.5" ></text>
</g>
<g >
<title>java/net/SocketOutputStream:::socketWrite0 (1 samples, 0.23%)</title><rect x="951.3" y="309" width="2.7" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text x="954.32" y="319.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::receiveFields (1 samples, 0.23%)</title><rect x="1171.2" y="357" width="2.7" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="1174.23" y="367.5" ></text>
</g>
<g >
<title>dequeue_entity (1 samples, 0.23%)</title><rect x="12.7" y="645" width="2.7" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="15.68" y="655.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeWithFlags (2 samples, 0.45%)</title><rect x="948.6" y="357" width="5.4" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="951.64" y="367.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/HttpStrictMultipart:::formatMultipartHeader (1 samples, 0.23%)</title><rect x="688.5" y="325" width="2.7" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="691.50" y="335.5" ></text>
</g>
<g >
<title>tcp_push (1 samples, 0.23%)</title><rect x="661.7" y="677" width="2.7" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="664.68" y="687.5" ></text>
</g>
<g >
<title>__update_load_avg_se (1 samples, 0.23%)</title><rect x="12.7" y="613" width="2.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="15.68" y="623.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (28 samples, 6.36%)</title><rect x="573.2" y="645" width="75.1" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text x="576.18" y="655.5" >__tcp_tr..</text>
</g>
<g >
<title>netif_rx (1 samples, 0.23%)</title><rect x="589.3" y="533" width="2.7" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="592.27" y="543.5" ></text>
</g>
<g >
<title>[libjvm.so] (19 samples, 4.32%)</title><rect x="141.4" y="757" width="51.0" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text x="144.41" y="767.5" >[libj..</text>
</g>
<g >
<title>org/apache/solr/common/util/XML:::escape (1 samples, 0.23%)</title><rect x="744.8" y="341" width="2.7" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="747.82" y="351.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.45%)</title><rect x="240.6" y="789" width="5.4" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="243.64" y="799.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::handleResponse (1 samples, 0.23%)</title><rect x="766.3" y="373" width="2.7" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text x="769.27" y="383.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendBind (1 samples, 0.23%)</title><rect x="937.9" y="309" width="2.7" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="940.91" y="319.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="173.6" y="213" width="2.7" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text x="176.59" y="223.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="838.7" y="293" width="2.7" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="841.68" y="303.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (1 samples, 0.23%)</title><rect x="905.7" y="405" width="2.7" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" />
<text x="908.73" y="415.5" ></text>
</g>
<g >
<title>java/net/AbstractPlainSocketImpl:::setOption (1 samples, 0.23%)</title><rect x="1139.0" y="373" width="2.7" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="1142.05" y="383.5" ></text>
</g>
<g >
<title>org/dspace/content/DSpaceObject$MetadataCache:::get (6 samples, 1.36%)</title><rect x="916.5" y="437" width="16.0" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text x="919.45" y="447.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (1 samples, 0.23%)</title><rect x="1168.5" y="341" width="2.7" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="1171.55" y="351.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/HttpRequestExecutor:::doReceiveResponse (2 samples, 0.45%)</title><rect x="1131.0" y="373" width="5.4" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="1134.00" y="383.5" ></text>
</g>
<g >
<title>org/dspace/eperson/Group:::find (1 samples, 0.23%)</title><rect x="943.3" y="421" width="2.7" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text x="946.27" y="431.5" ></text>
</g>
<g >
<title>__lll_lock_wait (4 samples, 0.91%)</title><rect x="299.6" y="789" width="10.8" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text x="302.64" y="799.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRow:::getIntColumn (1 samples, 0.23%)</title><rect x="959.4" y="421" width="2.6" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text x="962.36" y="431.5" ></text>
</g>
<g >
<title>Interpreter (189 samples, 42.95%)</title><rect x="667.0" y="501" width="506.9" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="670.05" y="511.5" >Interpreter</text>
</g>
<g >
<title>__perf_event_task_sched_in (24 samples, 5.45%)</title><rect x="63.6" y="645" width="64.4" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="66.64" y="655.5" >__perf_..</text>
</g>
<g >
<title>call_stub (189 samples, 42.95%)</title><rect x="667.0" y="725" width="506.9" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="670.05" y="735.5" >call_stub</text>
</g>
<g >
<title>Interpreter (1 samples, 0.23%)</title><rect x="1128.3" y="373" width="2.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="1131.32" y="383.5" ></text>
</g>
<g >
<title>tcp_sendmsg_locked (37 samples, 8.41%)</title><rect x="565.1" y="693" width="99.3" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="568.14" y="703.5" >tcp_sendmsg_..</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="844.0" y="245" width="2.7" height="15.0" fill="rgb(246,116,116)" rx="2" ry="2" />
<text x="847.05" y="255.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (2 samples, 0.45%)</title><rect x="937.9" y="421" width="5.4" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text x="940.91" y="431.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (2 samples, 0.45%)</title><rect x="948.6" y="437" width="5.4" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text x="951.64" y="447.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::processResults (3 samples, 0.68%)</title><rect x="1066.6" y="341" width="8.1" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="1069.64" y="351.5" ></text>
</g>
<g >
<title>org/apache/log4j/helpers/AppenderAttachableImpl:::appendLoopOnAppenders (3 samples, 0.68%)</title><rect x="1152.5" y="453" width="8.0" height="15.0" fill="rgb(108,254,108)" rx="2" ry="2" />
<text x="1155.45" y="463.5" ></text>
</g>
<g >
<title>org/dspace/discovery/SolrServiceImpl:::requiresIndexing (10 samples, 2.27%)</title><rect x="1082.7" y="469" width="26.8" height="15.0" fill="rgb(102,247,102)" rx="2" ry="2" />
<text x="1085.73" y="479.5" >o..</text>
</g>
<g >
<title>sun/nio/cs/UTF_8$Encoder:::encode (3 samples, 0.68%)</title><rect x="672.4" y="389" width="8.1" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="675.41" y="399.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/request/AbstractUpdateRequest:::process (37 samples, 8.41%)</title><rect x="696.5" y="437" width="99.3" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text x="699.55" y="447.5" >org/apache/s..</text>
</g>
<g >
<title>__perf_event_task_sched_out (1 samples, 0.23%)</title><rect x="487.4" y="613" width="2.6" height="15.0" fill="rgb(248,119,119)" rx="2" ry="2" />
<text x="490.36" y="623.5" ></text>
</g>
<g >
<title>[unknown] (19 samples, 4.32%)</title><rect x="10.0" y="805" width="51.0" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="13.00" y="815.5" >[unkn..</text>
</g>
<g >
<title>__perf_event_task_sched_in (12 samples, 2.73%)</title><rect x="310.4" y="645" width="32.1" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="313.36" y="655.5" >__..</text>
</g>
<g >
<title>__futex_wait_setup (1 samples, 0.23%)</title><rect x="192.4" y="709" width="2.6" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text x="195.36" y="719.5" ></text>
</g>
<g >
<title>__x64_sys_futex (13 samples, 2.95%)</title><rect x="310.4" y="741" width="34.8" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="313.36" y="751.5" >__..</text>
</g>
<g >
<title>mprotect_fixup (1 samples, 0.23%)</title><rect x="347.9" y="629" width="2.7" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text x="350.91" y="639.5" ></text>
</g>
<g >
<title>JVM_DoPrivileged (1 samples, 0.23%)</title><rect x="1120.3" y="389" width="2.7" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="1123.27" y="399.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeWithFlags (2 samples, 0.45%)</title><rect x="937.9" y="357" width="5.4" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="940.91" y="367.5" ></text>
</g>
<g >
<title>java/net/PlainSocketImpl:::socketSetOption0 (1 samples, 0.23%)</title><rect x="1139.0" y="357" width="2.7" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="1142.05" y="367.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (16 samples, 3.64%)</title><rect x="492.7" y="581" width="42.9" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="495.73" y="591.5" >__in..</text>
</g>
<g >
<title>org/apache/log4j/WriterAppender:::subAppend (2 samples, 0.45%)</title><rect x="680.5" y="341" width="5.3" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="683.45" y="351.5" ></text>
</g>
<g >
<title>call_stub (1 samples, 0.23%)</title><rect x="1090.8" y="325" width="2.7" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="1093.77" y="335.5" ></text>
</g>
<g >
<title>start_thread (1 samples, 0.23%)</title><rect x="216.5" y="805" width="2.7" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="219.50" y="815.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRowIterator:::next (1 samples, 0.23%)</title><rect x="1074.7" y="453" width="2.7" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text x="1077.68" y="463.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (27 samples, 6.14%)</title><rect x="573.2" y="629" width="72.4" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text x="576.18" y="639.5" >__ip_que..</text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::execute (3 samples, 0.68%)</title><rect x="1066.6" y="357" width="8.1" height="15.0" fill="rgb(65,213,65)" rx="2" ry="2" />
<text x="1069.64" y="367.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.45%)</title><rect x="170.9" y="533" width="5.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="173.91" y="543.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/PoolablePreparedStatement:::close (1 samples, 0.23%)</title><rect x="943.3" y="341" width="2.7" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text x="946.27" y="351.5" ></text>
</g>
<g >
<title>try_to_wake_up (1 samples, 0.23%)</title><rect x="484.7" y="517" width="2.7" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="487.68" y="527.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::find (1 samples, 0.23%)</title><rect x="964.7" y="437" width="2.7" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="967.73" y="447.5" ></text>
</g>
<g >
<title>C1_CompilerThre (20 samples, 4.55%)</title><rect x="10.0" y="821" width="53.6" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="13.00" y="831.5" >C1_Co..</text>
</g>
<g >
<title>jlong_disjoint_arraycopy (1 samples, 0.23%)</title><rect x="857.5" y="341" width="2.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="860.45" y="351.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="216.5" y="741" width="2.7" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text x="219.50" y="751.5" ></text>
</g>
<g >
<title>org/apache/solr/common/util/JavaBinCodec:::readSolrDocument (1 samples, 0.23%)</title><rect x="1106.9" y="309" width="2.6" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text x="1109.86" y="319.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="61.0" y="789" width="2.6" height="15.0" fill="rgb(219,77,77)" rx="2" ry="2" />
<text x="63.95" y="799.5" ></text>
</g>
<g >
<title>native_write_msr (16 samples, 3.64%)</title><rect x="248.7" y="613" width="42.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="251.68" y="623.5" >nati..</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="173.6" y="197" width="2.7" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="176.59" y="207.5" ></text>
</g>
<g >
<title>tcp_write_xmit (33 samples, 7.50%)</title><rect x="565.1" y="661" width="88.5" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="568.14" y="671.5" >tcp_write_..</text>
</g>
<g >
<title>__wake_up_common (2 samples, 0.45%)</title><rect x="610.7" y="341" width="5.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="613.73" y="351.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (2 samples, 0.45%)</title><rect x="1055.9" y="437" width="5.4" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="1058.91" y="447.5" ></text>
</g>
<g >
<title>tcp_rcv_state_process (1 samples, 0.23%)</title><rect x="1128.3" y="69" width="2.7" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text x="1131.32" y="79.5" ></text>
</g>
<g >
<title>jbyte_arraycopy (1 samples, 0.23%)</title><rect x="1072.0" y="309" width="2.7" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="1075.00" y="319.5" ></text>
</g>
<g >
<title>__x64_sys_mprotect (1 samples, 0.23%)</title><rect x="347.9" y="661" width="2.7" height="15.0" fill="rgb(219,77,77)" rx="2" ry="2" />
<text x="350.91" y="671.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (25 samples, 5.68%)</title><rect x="63.6" y="789" width="67.1" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="66.64" y="799.5" >pthread..</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="683.1" y="229" width="2.7" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="686.14" y="239.5" ></text>
</g>
<g >
<title>__x64_sys_futex (8 samples, 1.82%)</title><rect x="195.0" y="741" width="21.5" height="15.0" fill="rgb(200,51,51)" rx="2" ry="2" />
<text x="198.05" y="751.5" >_..</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="173.6" y="389" width="2.7" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="176.59" y="399.5" ></text>
</g>
<g >
<title>[libjvm.so] (189 samples, 42.95%)</title><rect x="667.0" y="597" width="506.9" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="670.05" y="607.5" >[libjvm.so]</text>
</g>
<g >
<title>org/dspace/servicemanager/DSpaceServiceManager:::getServicesByType (28 samples, 6.36%)</title><rect x="970.1" y="453" width="75.1" height="15.0" fill="rgb(82,230,82)" rx="2" ry="2" />
<text x="973.09" y="463.5" >org/dspa..</text>
</g>
<g >
<title>org/apache/commons/logging/LogFactory$1:::run (2 samples, 0.45%)</title><rect x="841.4" y="293" width="5.3" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="844.36" y="303.5" ></text>
</g>
<g >
<title>org/apache/solr/common/util/JavaBinCodec:::readVal (1 samples, 0.23%)</title><rect x="1106.9" y="405" width="2.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1109.86" y="415.5" ></text>
</g>
<g >
<title>start_thread (3 samples, 0.68%)</title><rect x="345.2" y="805" width="8.1" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="348.23" y="815.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (4 samples, 0.91%)</title><rect x="130.7" y="645" width="10.7" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="133.68" y="655.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (1 samples, 0.23%)</title><rect x="1160.5" y="437" width="2.7" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text x="1163.50" y="447.5" ></text>
</g>
<g >
<title>[libjvm.so] (19 samples, 4.32%)</title><rect x="141.4" y="789" width="51.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="144.41" y="799.5" >[libj..</text>
</g>
<g >
<title>org/springframework/core/convert/support/GenericConversionService:::getSourceConverterMap (1 samples, 0.23%)</title><rect x="849.4" y="357" width="2.7" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text x="852.41" y="367.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (4 samples, 0.91%)</title><rect x="299.6" y="629" width="10.8" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text x="302.64" y="639.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.45%)</title><rect x="240.6" y="757" width="5.4" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="243.64" y="767.5" ></text>
</g>
<g >
<title>native_write_msr (16 samples, 3.64%)</title><rect x="15.4" y="613" width="42.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="18.36" y="623.5" >nati..</text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendSync (1 samples, 0.23%)</title><rect x="940.6" y="325" width="2.7" height="15.0" fill="rgb(54,203,54)" rx="2" ry="2" />
<text x="943.59" y="335.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeQuery (3 samples, 0.68%)</title><rect x="1066.6" y="389" width="8.1" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="1069.64" y="399.5" ></text>
</g>
<g >
<title>call_stub (1 samples, 0.23%)</title><rect x="1123.0" y="341" width="2.6" height="15.0" fill="rgb(237,103,103)" rx="2" ry="2" />
<text x="1125.95" y="351.5" ></text>
</g>
<g >
<title>native_write_msr (4 samples, 0.91%)</title><rect x="176.3" y="469" width="10.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="179.27" y="479.5" ></text>
</g>
<g >
<title>Ljava/lang/ref/Finalizer$FinalizerThread:::run (1 samples, 0.23%)</title><rect x="216.5" y="661" width="2.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="219.50" y="671.5" ></text>
</g>
<g >
<title>__x64_sys_sendto (40 samples, 9.09%)</title><rect x="557.1" y="757" width="107.3" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="560.09" y="767.5" >__x64_sys_sen..</text>
</g>
<g >
<title>org/springframework/beans/PropertyEditorRegistrySupport:::createDefaultEditors (26 samples, 5.91%)</title><rect x="825.3" y="405" width="69.7" height="15.0" fill="rgb(63,211,63)" rx="2" ry="2" />
<text x="828.27" y="415.5" >org/spr..</text>
</g>
<g >
<title>finish_task_switch (12 samples, 2.73%)</title><rect x="310.4" y="661" width="32.1" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="313.36" y="671.5" >fi..</text>
</g>
<g >
<title>org/dspace/content/Collection:::groupFromColumn (1 samples, 0.23%)</title><rect x="943.3" y="437" width="2.7" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="946.27" y="447.5" ></text>
</g>
<g >
<title>net_rx_action (16 samples, 3.64%)</title><rect x="600.0" y="517" width="42.9" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="603.00" y="527.5" >net_..</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="243.3" y="613" width="2.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="246.32" y="623.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (8 samples, 1.82%)</title><rect x="219.2" y="773" width="21.4" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="222.18" y="783.5" >e..</text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::createMethod (1 samples, 0.23%)</title><rect x="1109.5" y="437" width="2.7" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text x="1112.55" y="447.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/DefaultSingletonBeanRegistry:::getSingleton (2 samples, 0.45%)</title><rect x="1037.1" y="373" width="5.4" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="1040.14" y="383.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (1 samples, 0.23%)</title><rect x="350.6" y="709" width="2.7" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="353.59" y="719.5" ></text>
</g>
<g >
<title>inet_stream_connect (1 samples, 0.23%)</title><rect x="1128.3" y="133" width="2.7" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text x="1131.32" y="143.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (4 samples, 0.91%)</title><rect x="176.3" y="501" width="10.7" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="179.27" y="511.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (8 samples, 1.82%)</title><rect x="195.0" y="773" width="21.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="198.05" y="783.5" >e..</text>
</g>
<g >
<title>org/dspace/discovery/BitstreamContentStream:::getStream (2 samples, 0.45%)</title><rect x="680.5" y="421" width="5.3" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="683.45" y="431.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/FormBodyPart:::&lt;init&gt; (1 samples, 0.23%)</title><rect x="669.7" y="421" width="2.7" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text x="672.73" y="431.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeQuery (2 samples, 0.45%)</title><rect x="937.9" y="373" width="5.4" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="940.91" y="383.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupHead:::match (2 samples, 0.45%)</title><rect x="978.1" y="293" width="5.4" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="981.14" y="303.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (8 samples, 1.82%)</title><rect x="219.2" y="645" width="21.4" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text x="222.18" y="655.5" >_..</text>
</g>
<g >
<title>org/dspace/discovery/SolrServiceImpl:::unIndexContent (15 samples, 3.41%)</title><rect x="1109.5" y="469" width="40.3" height="15.0" fill="rgb(60,210,60)" rx="2" ry="2" />
<text x="1112.55" y="479.5" >org..</text>
</g>
<g >
<title>org/apache/http/impl/client/EntityEnclosingRequestWrapper$EntityWrapper:::writeTo (2 samples, 0.45%)</title><rect x="688.5" y="357" width="5.4" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text x="691.50" y="367.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.68%)</title><rect x="168.2" y="597" width="8.1" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="171.23" y="607.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (1 samples, 0.23%)</title><rect x="10.0" y="693" width="2.7" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="13.00" y="703.5" ></text>
</g>
<g >
<title>rb_insert_color (1 samples, 0.23%)</title><rect x="10.0" y="645" width="2.7" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="13.00" y="655.5" ></text>
</g>
<g >
<title>do_softirq.part.0 (19 samples, 4.32%)</title><rect x="592.0" y="565" width="50.9" height="15.0" fill="rgb(215,71,71)" rx="2" ry="2" />
<text x="594.95" y="575.5" >do_so..</text>
</g>
<g >
<title>org/apache/http/impl/client/AbstractHttpClient:::doExecute (15 samples, 3.41%)</title><rect x="755.5" y="405" width="40.3" height="15.0" fill="rgb(106,252,106)" rx="2" ry="2" />
<text x="758.55" y="415.5" >org..</text>
</g>
<g >
<title>[libjvm.so] (6 samples, 1.36%)</title><rect x="1173.9" y="757" width="16.1" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="1176.91" y="767.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern:::sequence (3 samples, 0.68%)</title><rect x="986.2" y="277" width="8.0" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text x="989.18" y="287.5" ></text>
</g>
<g >
<title>[libjava.so] (1 samples, 0.23%)</title><rect x="1155.1" y="357" width="2.7" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text x="1158.14" y="367.5" ></text>
</g>
<g >
<title>do_syscall_64 (1 samples, 0.23%)</title><rect x="1155.1" y="309" width="2.7" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="1158.14" y="319.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::process (1 samples, 0.23%)</title><rect x="946.0" y="437" width="2.6" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text x="948.95" y="447.5" ></text>
</g>
<g >
<title>org/springframework/core/env/AbstractEnvironment:::&lt;init&gt; (25 samples, 5.68%)</title><rect x="828.0" y="389" width="67.0" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="830.95" y="399.5" >org/spr..</text>
</g>
<g >
<title>do_syscall_64 (13 samples, 2.95%)</title><rect x="310.4" y="757" width="34.8" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text x="313.36" y="767.5" >do..</text>
</g>
<g >
<title>java/util/Collections$SynchronizedCollection:::add (1 samples, 0.23%)</title><rect x="970.1" y="405" width="2.7" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text x="973.09" y="415.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="1098.8" y="293" width="2.7" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text x="1101.82" y="303.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.23%)</title><rect x="935.2" y="389" width="2.7" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text x="938.23" y="399.5" ></text>
</g>
<g >
<title>nf_nat_ipv4_out (1 samples, 0.23%)</title><rect x="642.9" y="581" width="2.7" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="645.91" y="591.5" ></text>
</g>
<g >
<title>java/util/concurrent/ConcurrentHashMap:::putVal (1 samples, 0.23%)</title><rect x="790.4" y="357" width="2.7" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text x="793.41" y="367.5" ></text>
</g>
<g >
<title>Interpreter (1 samples, 0.23%)</title><rect x="1128.3" y="325" width="2.7" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="1131.32" y="335.5" ></text>
</g>
<g >
<title>org/dspace/browse/BrowseIndex:::getTableName (1 samples, 0.23%)</title><rect x="819.9" y="437" width="2.7" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="822.91" y="447.5" ></text>
</g>
<g >
<title>java/security/AccessController:::doPrivileged (1 samples, 0.23%)</title><rect x="1090.8" y="373" width="2.7" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="1093.77" y="383.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/AbstractMultipartForm:::doWriteTo (2 samples, 0.45%)</title><rect x="688.5" y="341" width="5.4" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="691.50" y="351.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/util/ClientUtils:::writeVal (14 samples, 3.18%)</title><rect x="707.3" y="341" width="37.5" height="15.0" fill="rgb(52,201,52)" rx="2" ry="2" />
<text x="710.27" y="351.5" >org..</text>
</g>
<g >
<title>JVM_FillInStackTrace (1 samples, 0.23%)</title><rect x="1144.4" y="165" width="2.7" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text x="1147.41" y="175.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.23%)</title><rect x="814.5" y="453" width="2.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="817.55" y="463.5" ></text>
</g>
<g >
<title>native_write_msr (8 samples, 1.82%)</title><rect x="195.0" y="613" width="21.5" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text x="198.05" y="623.5" >n..</text>
</g>
<g >
<title>org/dspace/content/DSpaceObject$MetadataCache:::get (1 samples, 0.23%)</title><rect x="905.7" y="421" width="2.7" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text x="908.73" y="431.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="908.4" y="373" width="2.7" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="911.41" y="383.5" ></text>
</g>
<g >
<title>nft_immediate_eval (1 samples, 0.23%)</title><rect x="640.2" y="405" width="2.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="643.23" y="415.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (1 samples, 0.23%)</title><rect x="1101.5" y="293" width="2.7" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="1104.50" y="303.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupHead:::match (2 samples, 0.45%)</title><rect x="978.1" y="213" width="5.4" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="981.14" y="223.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="1098.8" y="277" width="2.7" height="15.0" fill="rgb(204,55,55)" rx="2" ry="2" />
<text x="1101.82" y="287.5" ></text>
</g>
<g >
<title>org/springframework/core/env/StandardEnvironment:::customizePropertySources (13 samples, 2.95%)</title><rect x="860.1" y="373" width="34.9" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="863.14" y="383.5" >or..</text>
</g>
<g >
<title>do_syscall_64 (1 samples, 0.23%)</title><rect x="350.6" y="693" width="2.7" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="353.59" y="703.5" ></text>
</g>
<g >
<title>futex_wait (13 samples, 2.95%)</title><rect x="310.4" y="725" width="34.8" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text x="313.36" y="735.5" >fu..</text>
</g>
<g >
<title>__poll (1 samples, 0.23%)</title><rect x="785.0" y="309" width="2.7" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text x="788.05" y="319.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="846.7" y="341" width="2.7" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="849.73" y="351.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeQuery (2 samples, 0.45%)</title><rect x="948.6" y="373" width="5.4" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text x="951.64" y="383.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (13 samples, 2.95%)</title><rect x="310.4" y="789" width="34.8" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="313.36" y="799.5" >pt..</text>
</g>
<g >
<title>org/apache/http/impl/conn/ManagedClientConnectionImpl:::receiveResponseEntity (1 samples, 0.23%)</title><rect x="1133.7" y="357" width="2.7" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text x="1136.68" y="367.5" ></text>
</g>
<g >
<title>org/dspace/content/DSpaceObject:::getMetadata (1 samples, 0.23%)</title><rect x="905.7" y="437" width="2.7" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text x="908.73" y="447.5" ></text>
</g>
<g >
<title>__x64_sys_mprotect (1 samples, 0.23%)</title><rect x="350.6" y="677" width="2.7" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="353.59" y="687.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.45%)</title><rect x="1141.7" y="261" width="5.4" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" />
<text x="1144.73" y="271.5" ></text>
</g>
<g >
<title>[libjvm.so] (19 samples, 4.32%)</title><rect x="141.4" y="741" width="51.0" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="144.41" y="751.5" >[libj..</text>
</g>
<g >
<title>org/dspace/content/Item:::find (2 samples, 0.45%)</title><rect x="1160.5" y="485" width="5.4" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text x="1163.50" y="495.5" ></text>
</g>
<g >
<title>__libc_connect (1 samples, 0.23%)</title><rect x="1128.3" y="213" width="2.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="1131.32" y="223.5" ></text>
</g>
<g >
<title>__vsnprintf_internal (1 samples, 0.23%)</title><rect x="1141.7" y="213" width="2.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="1144.73" y="223.5" ></text>
</g>
<g >
<title>__tcp_push_pending_frames (33 samples, 7.50%)</title><rect x="565.1" y="677" width="88.5" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="568.14" y="687.5" >__tcp_push..</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="1171.2" y="309" width="2.7" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="1174.23" y="319.5" ></text>
</g>
<g >
<title>finish_task_switch (16 samples, 3.64%)</title><rect x="248.7" y="661" width="42.9" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="251.68" y="671.5" >fini..</text>
</g>
<g >
<title>[libjvm.so] (189 samples, 42.95%)</title><rect x="667.0" y="773" width="506.9" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="670.05" y="783.5" >[libjvm.so]</text>
</g>
<g >
<title>java/util/concurrent/ConcurrentHashMap:::putVal (1 samples, 0.23%)</title><rect x="787.7" y="357" width="2.7" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text x="790.73" y="367.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::execute (1 samples, 0.23%)</title><rect x="956.7" y="325" width="2.7" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text x="959.68" y="335.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (1 samples, 0.23%)</title><rect x="605.4" y="405" width="2.6" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="608.36" y="415.5" ></text>
</g>
<g >
<title>java/lang/String:::equals (2 samples, 0.45%)</title><rect x="927.2" y="389" width="5.3" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text x="930.18" y="399.5" ></text>
</g>
<g >
<title>org/dspace/discovery/configuration/DiscoverySearchFilter:::getIndexFieldName (1 samples, 0.23%)</title><rect x="1149.8" y="469" width="2.7" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="1152.77" y="479.5" ></text>
</g>
<g >
<title>org/dspace/app/util/DailyFileAppender:::subAppend (2 samples, 0.45%)</title><rect x="680.5" y="357" width="5.3" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text x="683.45" y="367.5" ></text>
</g>
<g >
<title>__sys_recvfrom (21 samples, 4.77%)</title><rect x="484.7" y="741" width="56.3" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="487.68" y="751.5" >__sys..</text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.45%)</title><rect x="1141.7" y="245" width="5.4" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="1144.73" y="255.5" ></text>
</g>
<g >
<title>__this_cpu_preempt_check (1 samples, 0.23%)</title><rect x="594.6" y="517" width="2.7" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="597.64" y="527.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeQuery (1 samples, 0.23%)</title><rect x="798.5" y="357" width="2.6" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="801.45" y="367.5" ></text>
</g>
<g >
<title>finish_task_switch (16 samples, 3.64%)</title><rect x="15.4" y="661" width="42.9" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="18.36" y="671.5" >fini..</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="243.3" y="597" width="2.7" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="246.32" y="607.5" ></text>
</g>
<g >
<title>Java_java_net_PlainSocketImpl_socketConnect (1 samples, 0.23%)</title><rect x="1128.3" y="229" width="2.7" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="1131.32" y="239.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.23%)</title><rect x="701.9" y="325" width="2.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="704.91" y="335.5" ></text>
</g>
<g >
<title>org/apache/log4j/helpers/PatternParser$NamedPatternConverter:::convert (1 samples, 0.23%)</title><rect x="1157.8" y="405" width="2.7" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text x="1160.82" y="415.5" ></text>
</g>
<g >
<title>preempt_count_sub (1 samples, 0.23%)</title><rect x="562.5" y="677" width="2.6" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="565.45" y="687.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/PoolingConnection$PStmtKey:::hashCode (1 samples, 0.23%)</title><rect x="913.8" y="373" width="2.7" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text x="916.77" y="383.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (22 samples, 5.00%)</title><rect x="482.0" y="789" width="59.0" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text x="485.00" y="799.5" >entry_..</text>
</g>
<g >
<title>java/util/AbstractCollection:::toArray (1 samples, 0.23%)</title><rect x="1042.5" y="373" width="2.7" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text x="1045.50" y="383.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::execute (4 samples, 0.91%)</title><rect x="685.8" y="405" width="10.7" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" />
<text x="688.82" y="415.5" ></text>
</g>
<g >
<title>__release_sock (1 samples, 0.23%)</title><rect x="1128.3" y="101" width="2.7" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="1131.32" y="111.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Node:::match (1 samples, 0.23%)</title><rect x="1080.0" y="405" width="2.7" height="15.0" fill="rgb(65,213,65)" rx="2" ry="2" />
<text x="1083.05" y="415.5" ></text>
</g>
<g >
<title>arrayof_jint_fill (1 samples, 0.23%)</title><rect x="943.3" y="309" width="2.7" height="15.0" fill="rgb(219,77,77)" rx="2" ry="2" />
<text x="946.27" y="319.5" ></text>
</g>
<g >
<title>update_rq_clock (1 samples, 0.23%)</title><rect x="613.4" y="293" width="2.7" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="616.41" y="303.5" ></text>
</g>
<g >
<title>Reference_Handl (10 samples, 2.27%)</title><rect x="219.2" y="821" width="26.8" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="222.18" y="831.5" >R..</text>
</g>
<g >
<title>Interpreter (189 samples, 42.95%)</title><rect x="667.0" y="645" width="506.9" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="670.05" y="655.5" >Interpreter</text>
</g>
<g >
<title>itable stub (1 samples, 0.23%)</title><rect x="1064.0" y="437" width="2.6" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="1066.95" y="447.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="173.6" y="309" width="2.7" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="176.59" y="319.5" ></text>
</g>
<g >
<title>switch_fpu_return (1 samples, 0.23%)</title><rect x="291.6" y="741" width="2.7" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="294.59" y="751.5" ></text>
</g>
<g >
<title>__schedule (18 samples, 4.09%)</title><rect x="12.7" y="677" width="48.3" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" />
<text x="15.68" y="687.5" >__sc..</text>
</g>
<g >
<title>java/util/regex/Pattern$BmpCharProperty:::match (2 samples, 0.45%)</title><rect x="978.1" y="149" width="5.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="981.14" y="159.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (1 samples, 0.23%)</title><rect x="956.7" y="421" width="2.7" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="959.68" y="431.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (1 samples, 0.23%)</title><rect x="798.5" y="421" width="2.6" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text x="801.45" y="431.5" ></text>
</g>
<g >
<title>java/lang/String:::toLowerCase (1 samples, 0.23%)</title><rect x="903.0" y="405" width="2.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="906.05" y="415.5" ></text>
</g>
<g >
<title>blk_mq_end_request (1 samples, 0.23%)</title><rect x="484.7" y="581" width="2.7" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="487.68" y="591.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (16 samples, 3.64%)</title><rect x="248.7" y="645" width="42.9" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text x="251.68" y="655.5" >__pe..</text>
</g>
<g >
<title>java/lang/Throwable:::fillInStackTrace (1 samples, 0.23%)</title><rect x="1144.4" y="197" width="2.7" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="1147.41" y="207.5" ></text>
</g>
<g >
<title>update_load_avg.constprop.0 (1 samples, 0.23%)</title><rect x="12.7" y="629" width="2.7" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text x="15.68" y="639.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.45%)</title><rect x="345.2" y="725" width="5.4" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="348.23" y="735.5" ></text>
</g>
<g >
<title>do_syscall_64 (1 samples, 0.23%)</title><rect x="1128.3" y="181" width="2.7" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text x="1131.32" y="191.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupHead:::match (2 samples, 0.45%)</title><rect x="978.1" y="133" width="5.4" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="981.14" y="143.5" ></text>
</g>
<g >
<title>java/lang/StackTraceElement:::toString (1 samples, 0.23%)</title><rect x="680.5" y="293" width="2.6" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="683.45" y="303.5" ></text>
</g>
<g >
<title>org/springframework/core/GenericTypeResolver:::doResolveTypeArguments (1 samples, 0.23%)</title><rect x="854.8" y="357" width="2.7" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="857.77" y="367.5" ></text>
</g>
<g >
<title>update_curr (1 samples, 0.23%)</title><rect x="701.9" y="197" width="2.7" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
<text x="704.91" y="207.5" ></text>
</g>
<g >
<title>nf_nat_ipv4_local_fn (1 samples, 0.23%)</title><rect x="581.2" y="581" width="2.7" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text x="584.23" y="591.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::request (10 samples, 2.27%)</title><rect x="1082.7" y="437" width="26.8" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text x="1085.73" y="447.5" >o..</text>
</g>
<g >
<title>java/util/Properties:::getProperty (1 samples, 0.23%)</title><rect x="1090.8" y="277" width="2.7" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text x="1093.77" y="287.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="173.6" y="245" width="2.7" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text x="176.59" y="255.5" ></text>
</g>
<g >
<title>java/lang/reflect/Proxy$Key1:::equals (1 samples, 0.23%)</title><rect x="755.5" y="389" width="2.7" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="758.55" y="399.5" ></text>
</g>
<g >
<title>__send (47 samples, 10.68%)</title><rect x="541.0" y="805" width="126.0" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="544.00" y="815.5" >__send</text>
</g>
<g >
<title>org/springframework/beans/factory/support/DefaultListableBeanFactory:::getBeansOfType (28 samples, 6.36%)</title><rect x="970.1" y="421" width="75.1" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="973.09" y="431.5" >org/spri..</text>
</g>
<g >
<title>sun/net/spi/DefaultProxySelector$3:::run (1 samples, 0.23%)</title><rect x="1090.8" y="309" width="2.7" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="1093.77" y="319.5" ></text>
</g>
<g >
<title>schedule (13 samples, 2.95%)</title><rect x="310.4" y="693" width="34.8" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="313.36" y="703.5" >sc..</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="1171.2" y="261" width="2.7" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="1174.23" y="271.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern:::group0 (2 samples, 0.45%)</title><rect x="988.9" y="261" width="5.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="991.86" y="271.5" ></text>
</g>
<g >
<title>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.91%)</title><rect x="130.7" y="789" width="10.7" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="133.68" y="799.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern:::sequence (1 samples, 0.23%)</title><rect x="991.5" y="245" width="2.7" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text x="994.55" y="255.5" ></text>
</g>
<g >
<title>org/apache/http/impl/io/AbstractMessageWriter:::write (1 samples, 0.23%)</title><rect x="1093.5" y="357" width="2.6" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text x="1096.45" y="367.5" ></text>
</g>
<g >
<title>org/dspace/browse/BrowseIndex:::getBrowseIndices (6 samples, 1.36%)</title><rect x="978.1" y="325" width="16.1" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" />
<text x="981.14" y="335.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (1 samples, 0.23%)</title><rect x="1106.9" y="277" width="2.6" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="1109.86" y="287.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.45%)</title><rect x="1141.7" y="309" width="5.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="1144.73" y="319.5" ></text>
</g>
<g >
<title>org/springframework/core/convert/support/GenericConversionService:::addConverterFactory (1 samples, 0.23%)</title><rect x="857.5" y="373" width="2.6" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text x="860.45" y="383.5" ></text>
</g>
<g >
<title>java/util/Date:::toString (1 samples, 0.23%)</title><rect x="667.0" y="437" width="2.7" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="670.05" y="447.5" ></text>
</g>
<g >
<title>__check_object_size (1 samples, 0.23%)</title><rect x="538.3" y="661" width="2.7" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text x="541.32" y="671.5" ></text>
</g>
<g >
<title>org/dspace/core/Context:::init (2 samples, 0.45%)</title><rect x="1168.5" y="469" width="5.4" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="1171.55" y="479.5" ></text>
</g>
<g >
<title>__schedule (12 samples, 2.73%)</title><rect x="310.4" y="677" width="32.1" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="313.36" y="687.5" >__..</text>
</g>
<g >
<title>org/dspace/browse/BrowseIndex:::&lt;init&gt; (6 samples, 1.36%)</title><rect x="978.1" y="309" width="16.1" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="981.14" y="319.5" ></text>
</g>
<g >
<title>do_syscall_64 (25 samples, 5.68%)</title><rect x="63.6" y="757" width="67.1" height="15.0" fill="rgb(219,77,77)" rx="2" ry="2" />
<text x="66.64" y="767.5" >do_sysc..</text>
</g>
<g >
<title>entry_SYSCALL_64 (1 samples, 0.23%)</title><rect x="61.0" y="661" width="2.6" height="15.0" fill="rgb(206,58,58)" rx="2" ry="2" />
<text x="63.95" y="671.5" ></text>
</g>
<g >
<title>change_protection (1 samples, 0.23%)</title><rect x="347.9" y="613" width="2.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="350.91" y="623.5" ></text>
</g>
<g >
<title>futex_wait (17 samples, 3.86%)</title><rect x="246.0" y="725" width="45.6" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="249.00" y="735.5" >fute..</text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractAutowireCapableBeanFactory:::predictBeanType (3 samples, 0.68%)</title><rect x="1029.1" y="373" width="8.0" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
<text x="1032.09" y="383.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupTail:::match (2 samples, 0.45%)</title><rect x="978.1" y="245" width="5.4" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="981.14" y="255.5" ></text>
</g>
<g >
<title>__schedule (1 samples, 0.23%)</title><rect x="1101.5" y="197" width="2.7" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="1104.50" y="207.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (3 samples, 0.68%)</title><rect x="908.4" y="421" width="8.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="911.41" y="431.5" ></text>
</g>
<g >
<title>[libjvm.so] (5 samples, 1.14%)</title><rect x="860.1" y="309" width="13.4" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="863.14" y="319.5" ></text>
</g>
<g >
<title>org/dspace/content/Item:::getBundles (4 samples, 0.91%)</title><rect x="932.5" y="453" width="10.8" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text x="935.55" y="463.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="1171.2" y="245" width="2.7" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text x="1174.23" y="255.5" ></text>
</g>
<g >
<title>org/apache/commons/pool/impl/GenericKeyedObjectPool:::borrowObject (1 samples, 0.23%)</title><rect x="913.8" y="389" width="2.7" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="916.77" y="399.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="216.5" y="789" width="2.7" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text x="219.50" y="799.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="61.0" y="741" width="2.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="63.95" y="751.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="173.6" y="261" width="2.7" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="176.59" y="271.5" ></text>
</g>
<g >
<title>tcp_rcv_established (6 samples, 1.36%)</title><rect x="608.0" y="389" width="16.1" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="611.05" y="399.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern:::compile (4 samples, 0.91%)</title><rect x="983.5" y="293" width="10.7" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text x="986.50" y="303.5" ></text>
</g>
<g >
<title>nf_nat_inet_fn (1 samples, 0.23%)</title><rect x="581.2" y="565" width="2.7" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="584.23" y="575.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (1 samples, 0.23%)</title><rect x="192.4" y="773" width="2.6" height="15.0" fill="rgb(211,67,67)" rx="2" ry="2" />
<text x="195.36" y="783.5" ></text>
</g>
<g >
<title>nf_conntrack_in (1 samples, 0.23%)</title><rect x="578.5" y="581" width="2.7" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="581.55" y="591.5" ></text>
</g>
<g >
<title>org/apache/http/impl/io/SocketInputBuffer:::isDataAvailable (2 samples, 0.45%)</title><rect x="1098.8" y="373" width="5.4" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="1101.82" y="383.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.23%)</title><rect x="173.6" y="341" width="2.7" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="176.59" y="351.5" ></text>
</g>
<g >
<title>native_write_msr (4 samples, 0.91%)</title><rect x="130.7" y="613" width="10.7" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="133.68" y="623.5" ></text>
</g>
<g >
<title>scheduler_tick (1 samples, 0.23%)</title><rect x="701.9" y="245" width="2.7" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text x="704.91" y="255.5" ></text>
</g>
<g >
<title>[libjvm.so] (11 samples, 2.50%)</title><rect x="157.5" y="629" width="29.5" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="160.50" y="639.5" >[l..</text>
</g>
<g >
<title>futex_wait_queue_me (48 samples, 10.91%)</title><rect x="353.3" y="709" width="128.7" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="356.27" y="719.5" >futex_wait_queue..</text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.45%)</title><rect x="170.9" y="517" width="5.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="173.91" y="527.5" ></text>
</g>
<g >
<title>vtable stub (1 samples, 0.23%)</title><rect x="980.8" y="37" width="2.7" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="983.82" y="47.5" ></text>
</g>
<g >
<title>schedule (25 samples, 5.68%)</title><rect x="63.6" y="693" width="67.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="66.64" y="703.5" >schedule</text>
</g>
<g >
<title>futex_wait_queue_me (16 samples, 3.64%)</title><rect x="248.7" y="709" width="42.9" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text x="251.68" y="719.5" >fute..</text>
</g>
<g >
<title>do_syscall_64 (48 samples, 10.91%)</title><rect x="353.3" y="757" width="128.7" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="356.27" y="767.5" >do_syscall_64</text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeQuery (1 samples, 0.23%)</title><rect x="935.2" y="341" width="2.7" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="938.23" y="351.5" ></text>
</g>
</g>
</svg>