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

4541 lines
225 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="998" onload="init(evt)" viewBox="0 0 1200 998" 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="998.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="981" > </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="981" > </text>
<g id="frames">
<g >
<title>[libjvm.so] (77 samples, 11.39%)</title><rect x="109.5" y="789" width="134.4" height="15.0" fill="rgb(206,58,58)" rx="2" ry="2" />
<text x="112.50" y="799.5" >[libjvm.so]</text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.44%)</title><rect x="359.1" y="853" width="5.2" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="362.11" y="863.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match (1 samples, 0.15%)</title><rect x="1158.6" y="549" width="1.7" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text x="1161.58" y="559.5" ></text>
</g>
<g >
<title>java/util/ArrayList:::iterator (1 samples, 0.15%)</title><rect x="565.1" y="437" width="1.7" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text x="568.09" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::dirtyCheck (1 samples, 0.15%)</title><rect x="1139.4" y="421" width="1.7" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="1142.38" y="431.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (6 samples, 0.89%)</title><rect x="511.0" y="661" width="10.4" height="15.0" fill="rgb(215,73,73)" rx="2" ry="2" />
<text x="513.98" y="671.5" ></text>
</g>
<g >
<title>__poll (4 samples, 0.59%)</title><rect x="1169.1" y="357" width="6.9" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="1172.05" y="367.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/request/UpdateRequest:::writeXML (2 samples, 0.30%)</title><rect x="961.3" y="469" width="3.5" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="964.33" y="479.5" ></text>
</g>
<g >
<title>Reference_Handl (11 samples, 1.63%)</title><rect x="271.8" y="933" width="19.2" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="274.83" y="943.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::withTemporarySessionIfNeeded (7 samples, 1.04%)</title><rect x="919.4" y="549" width="12.3" height="15.0" fill="rgb(87,233,87)" rx="2" ry="2" />
<text x="922.44" y="559.5" ></text>
</g>
<g >
<title>__GI___libc_write (1 samples, 0.15%)</title><rect x="917.7" y="389" width="1.7" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="920.69" y="399.5" ></text>
</g>
<g >
<title>org/apache/log4j/helpers/AppenderAttachableImpl:::appendLoopOnAppenders (3 samples, 0.44%)</title><rect x="945.6" y="405" width="5.3" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text x="948.62" y="415.5" ></text>
</g>
<g >
<title>ctx_sched_in (1 samples, 0.15%)</title><rect x="322.5" y="741" width="1.7" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text x="325.46" y="751.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="238.7" y="229" width="1.7" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="241.67" y="239.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/Cascade:::cascade (4 samples, 0.59%)</title><rect x="566.8" y="437" width="7.0" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="569.83" y="447.5" ></text>
</g>
<g >
<title>vtable stub (1 samples, 0.15%)</title><rect x="1158.6" y="533" width="1.7" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="1161.58" y="543.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::prepareCollectionFlushes (1 samples, 0.15%)</title><rect x="1114.9" y="469" width="1.8" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="1117.94" y="479.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (1 samples, 0.15%)</title><rect x="472.6" y="709" width="1.7" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text x="475.57" y="719.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/tree/DefaultExpressionEngine:::findNodesForKey (1 samples, 0.15%)</title><rect x="1156.8" y="517" width="1.8" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text x="1159.83" y="527.5" ></text>
</g>
<g >
<title>do_syscall_64 (59 samples, 8.73%)</title><rect x="367.8" y="869" width="103.0" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="370.84" y="879.5" >do_syscall_64</text>
</g>
<g >
<title>java/net/SocketTimeoutException:::&lt;init&gt; (1 samples, 0.15%)</title><rect x="1167.3" y="245" width="1.8" height="15.0" fill="rgb(58,208,58)" rx="2" ry="2" />
<text x="1170.31" y="255.5" ></text>
</g>
<g >
<title>do_syscall_64 (15 samples, 2.22%)</title><rect x="502.2" y="885" width="26.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="505.25" y="895.5" >d..</text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::processResults (1 samples, 0.15%)</title><rect x="912.5" y="341" width="1.7" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="915.46" y="351.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy40:::isDirty (17 samples, 2.51%)</title><rect x="544.1" y="549" width="29.7" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="547.14" y="559.5" >co..</text>
</g>
<g >
<title>sock_def_readable (2 samples, 0.30%)</title><rect x="512.7" y="485" width="3.5" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="515.72" y="495.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.59%)</title><rect x="1169.1" y="325" width="6.9" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text x="1172.05" y="335.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/AbstractHttpClient:::doExecute (3 samples, 0.44%)</title><rect x="964.8" y="501" width="5.3" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text x="967.82" y="511.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/FlushVisitor:::processCollection (5 samples, 0.74%)</title><rect x="874.1" y="469" width="8.7" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" />
<text x="877.05" y="479.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp2/DelegatingPreparedStatement:::executeQuery (1 samples, 0.15%)</title><rect x="912.5" y="373" width="1.7" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text x="915.46" y="383.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::initializeEntitiesAndCollections (1 samples, 0.15%)</title><rect x="703.0" y="501" width="1.7" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="705.99" y="511.5" ></text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::tryNaturalIdLoadAccess (1 samples, 0.15%)</title><rect x="1048.6" y="517" width="1.8" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="1051.61" y="527.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (2 samples, 0.30%)</title><rect x="360.9" y="805" width="3.4" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text x="363.86" y="815.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (1 samples, 0.15%)</title><rect x="671.6" y="421" width="1.7" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="674.57" y="431.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/tree/DefaultConfigurationKey$KeyIterator:::nextDelimiterPos (1 samples, 0.15%)</title><rect x="1156.8" y="485" width="1.8" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text x="1159.83" y="495.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (1 samples, 0.15%)</title><rect x="287.5" y="901" width="1.8" height="15.0" fill="rgb(248,121,121)" rx="2" ry="2" />
<text x="290.54" y="911.5" ></text>
</g>
<g >
<title>native_write_msr (4 samples, 0.59%)</title><rect x="1169.1" y="181" width="6.9" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="1172.05" y="191.5" ></text>
</g>
<g >
<title>org/dspace/content/comparator/NameAscendingComparator:::compare (1 samples, 0.15%)</title><rect x="933.4" y="421" width="1.7" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text x="936.40" y="431.5" ></text>
</g>
<g >
<title>tcp_sendmsg (11 samples, 1.63%)</title><rect x="509.2" y="821" width="19.2" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="512.23" y="831.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1 samples, 0.15%)</title><rect x="102.5" y="709" width="1.8" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="105.51" y="719.5" ></text>
</g>
<g >
<title>__sys_recvfrom (16 samples, 2.37%)</title><rect x="470.8" y="853" width="28.0" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="473.83" y="863.5" >_..</text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultSaveOrUpdateEventListener:::onSaveOrUpdate (3 samples, 0.44%)</title><rect x="675.1" y="437" width="5.2" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text x="678.06" y="447.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/HttpRequestExecutor:::preProcess (2 samples, 0.30%)</title><rect x="1160.3" y="485" width="3.5" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" />
<text x="1163.33" y="495.5" ></text>
</g>
<g >
<title>nf_hook_slow (3 samples, 0.44%)</title><rect x="516.2" y="565" width="5.2" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="519.21" y="575.5" ></text>
</g>
<g >
<title>do_syscall_64 (1 samples, 0.15%)</title><rect x="327.7" y="789" width="1.7" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="330.69" y="799.5" ></text>
</g>
<g >
<title>sun/reflect/UnsafeObjectFieldAccessorImpl:::get (1 samples, 0.15%)</title><rect x="792.0" y="469" width="1.8" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text x="795.01" y="479.5" ></text>
</g>
<g >
<title>__x64_sys_poll (1 samples, 0.15%)</title><rect x="968.3" y="293" width="1.8" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
<text x="971.31" y="303.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::executeMethod (3 samples, 0.44%)</title><rect x="952.6" y="549" width="5.2" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text x="955.60" y="559.5" ></text>
</g>
<g >
<title>start_thread (3 samples, 0.44%)</title><rect x="324.2" y="917" width="5.2" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="327.20" y="927.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/CombinedConfiguration:::fetchNodeList (5 samples, 0.74%)</title><rect x="971.8" y="533" width="8.7" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="974.80" y="543.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/HttpRequestExecutor:::execute (3 samples, 0.44%)</title><rect x="952.6" y="485" width="5.2" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="955.60" y="495.5" ></text>
</g>
<g >
<title>start_thread (379 samples, 56.07%)</title><rect x="528.4" y="917" width="661.6" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="531.43" y="927.5" >start_thread</text>
</g>
<g >
<title>org/hibernate/collection/internal/PersistentBag:::beforeInitialize (1 samples, 0.15%)</title><rect x="933.4" y="309" width="1.7" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="936.40" y="319.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp2/DelegatingConnection:::prepareStatement (1 samples, 0.15%)</title><rect x="1050.4" y="453" width="1.7" height="15.0" fill="rgb(65,213,65)" rx="2" ry="2" />
<text x="1053.36" y="463.5" ></text>
</g>
<g >
<title>itable stub (4 samples, 0.59%)</title><rect x="708.2" y="469" width="7.0" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text x="711.22" y="479.5" ></text>
</g>
<g >
<title>pthread_cond_wait@@GLIBC_2.3.2 (13 samples, 1.92%)</title><rect x="243.9" y="901" width="22.7" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="246.91" y="911.5" >p..</text>
</g>
<g >
<title>org/hibernate/persister/entity/AbstractEntityPersister:::selectFragment (1 samples, 0.15%)</title><rect x="1053.8" y="437" width="1.8" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" />
<text x="1056.85" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::isCollectionType (1 samples, 0.15%)</title><rect x="840.9" y="453" width="1.7" height="15.0" fill="rgb(65,213,65)" rx="2" ry="2" />
<text x="843.89" y="463.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (1 samples, 0.15%)</title><rect x="472.6" y="789" width="1.7" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="475.57" y="799.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (17 samples, 2.51%)</title><rect x="294.5" y="757" width="29.7" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="297.53" y="767.5" >__..</text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::prepareEntityFlushes (1 samples, 0.15%)</title><rect x="1146.4" y="453" width="1.7" height="15.0" fill="rgb(102,247,102)" rx="2" ry="2" />
<text x="1149.36" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/type/AbstractStandardBasicType:::isDirty (1 samples, 0.15%)</title><rect x="1022.4" y="437" width="1.8" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text x="1025.43" y="447.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (1 samples, 0.15%)</title><rect x="514.5" y="469" width="1.7" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="517.47" y="479.5" ></text>
</g>
<g >
<title>org/dspace/eperson/Group_$$_jvst722_1e:::getHibernateLazyInitializer (1 samples, 0.15%)</title><rect x="1097.5" y="421" width="1.7" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text x="1100.49" y="431.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (1 samples, 0.15%)</title><rect x="1039.9" y="421" width="1.7" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
<text x="1042.88" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::prepareEntityFlushes (4 samples, 0.59%)</title><rect x="842.6" y="469" width="7.0" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text x="845.63" y="479.5" ></text>
</g>
<g >
<title>[unknown] (17 samples, 2.51%)</title><rect x="329.4" y="917" width="29.7" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="332.44" y="927.5" >[u..</text>
</g>
<g >
<title>org/hibernate/type/EntityType:::isEntityType (1 samples, 0.15%)</title><rect x="839.1" y="437" width="1.8" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text x="842.14" y="447.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (1 samples, 0.15%)</title><rect x="327.7" y="805" width="1.7" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="330.69" y="815.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="966.6" y="325" width="1.7" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="969.57" y="335.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (5 samples, 0.74%)</title><rect x="1167.3" y="389" width="8.7" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text x="1170.31" y="399.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.44%)</title><rect x="266.6" y="821" width="5.2" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" />
<text x="269.60" y="831.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/FlushVisitor:::processCollection (2 samples, 0.30%)</title><rect x="559.9" y="421" width="3.4" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text x="562.85" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::prepareEntityFlushes (1 samples, 0.15%)</title><rect x="701.2" y="453" width="1.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="704.24" y="463.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="289.3" y="725" width="1.7" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="292.29" y="735.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::request (7 samples, 1.04%)</title><rect x="957.8" y="533" width="12.3" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text x="960.84" y="543.5" ></text>
</g>
<g >
<title>org/apache/log4j/helpers/AppenderAttachableImpl:::appendLoopOnAppenders (1 samples, 0.15%)</title><rect x="950.9" y="421" width="1.7" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text x="953.86" y="431.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="238.7" y="213" width="1.7" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="241.67" y="223.5" ></text>
</g>
<g >
<title>org/apache/http/cookie/CookieSpecRegistry:::getCookieSpec (1 samples, 0.15%)</title><rect x="1160.3" y="421" width="1.8" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text x="1163.33" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/persister/collection/AbstractCollectionPersister:::getElementPersister (1 samples, 0.15%)</title><rect x="589.5" y="405" width="1.8" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text x="592.53" y="415.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupHead:::match (1 samples, 0.15%)</title><rect x="980.5" y="469" width="1.8" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="983.53" y="479.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/Cascade:::cascade (5 samples, 0.74%)</title><rect x="1069.6" y="421" width="8.7" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="1072.56" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/type/AbstractStandardBasicType:::isComponentType (1 samples, 0.15%)</title><rect x="882.8" y="485" width="1.7" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="885.78" y="495.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$BmpCharProperty:::match (1 samples, 0.15%)</title><rect x="980.5" y="485" width="1.8" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="983.53" y="495.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultSaveOrUpdateEventListener:::onSaveOrUpdate (1 samples, 0.15%)</title><rect x="814.7" y="453" width="1.7" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="817.70" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultLoadEventListener:::onLoad (2 samples, 0.30%)</title><rect x="912.5" y="517" width="3.4" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="915.46" y="527.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::loadCollection (7 samples, 1.04%)</title><rect x="919.4" y="533" width="12.3" height="15.0" fill="rgb(91,237,91)" rx="2" ry="2" />
<text x="922.44" y="543.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/FlushVisitor:::processCollection (2 samples, 0.30%)</title><rect x="835.7" y="437" width="3.4" height="15.0" fill="rgb(100,245,100)" rx="2" ry="2" />
<text x="838.65" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::fireEvict (1 samples, 0.15%)</title><rect x="528.4" y="501" width="1.8" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text x="531.43" y="511.5" ></text>
</g>
<g >
<title>org/apache/log4j/Category:::forcedLog (1 samples, 0.15%)</title><rect x="950.9" y="453" width="1.7" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="953.86" y="463.5" ></text>
</g>
<g >
<title>org/dspace/discovery/configuration/DiscoverySearchFilter:::getIndexFieldName (1 samples, 0.15%)</title><rect x="1176.0" y="581" width="1.8" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="1179.04" y="591.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match (1 samples, 0.15%)</title><rect x="980.5" y="453" width="1.8" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text x="983.53" y="463.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.30%)</title><rect x="238.7" y="389" width="3.5" height="15.0" fill="rgb(252,125,125)" rx="2" ry="2" />
<text x="241.67" y="399.5" ></text>
</g>
<g >
<title>[libjvm.so] (372 samples, 55.03%)</title><rect x="528.4" y="853" width="649.4" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="531.43" y="863.5" >[libjvm.so]</text>
</g>
<g >
<title>org/apache/http/impl/io/AbstractSessionInputBuffer:::fillBuffer (5 samples, 0.74%)</title><rect x="1167.3" y="437" width="8.7" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="1170.31" y="447.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::execute (3 samples, 0.44%)</title><rect x="964.8" y="485" width="5.3" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="967.82" y="495.5" ></text>
</g>
<g >
<title>org/dspace/app/util/DailyFileAppender:::subAppend (1 samples, 0.15%)</title><rect x="917.7" y="485" width="1.7" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="920.69" y="495.5" ></text>
</g>
<g >
<title>org/hibernate/loader/criteria/CriteriaLoader:::&lt;init&gt; (2 samples, 0.30%)</title><rect x="1052.1" y="517" width="3.5" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text x="1055.10" y="527.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/HttpRequestExecutor:::doSendRequest (2 samples, 0.30%)</title><rect x="954.3" y="469" width="3.5" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text x="957.35" y="479.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (5 samples, 0.74%)</title><rect x="1167.3" y="405" width="8.7" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text x="1170.31" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::isDirty (1 samples, 0.15%)</title><rect x="655.9" y="453" width="1.7" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text x="658.86" y="463.5" ></text>
</g>
<g >
<title>__schedule (4 samples, 0.59%)</title><rect x="352.1" y="789" width="7.0" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="355.13" y="799.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/HierarchicalConfiguration:::containsKey (5 samples, 0.74%)</title><rect x="971.8" y="549" width="8.7" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="974.80" y="559.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/DefaultListableBeanFactory:::getBeansOfType (2 samples, 0.30%)</title><rect x="1148.1" y="533" width="3.5" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text x="1151.11" y="543.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$BmpCharProperty:::match (1 samples, 0.15%)</title><rect x="980.5" y="421" width="1.8" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="983.53" y="431.5" ></text>
</g>
<g >
<title>java/util/Arrays:::sort (1 samples, 0.15%)</title><rect x="933.4" y="469" width="1.7" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text x="936.40" y="479.5" ></text>
</g>
<g >
<title>__schedule (12 samples, 1.78%)</title><rect x="329.4" y="789" width="21.0" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="332.44" y="799.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::getRowFromResultSet (1 samples, 0.15%)</title><rect x="936.9" y="453" width="1.7" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="939.89" y="463.5" ></text>
</g>
<g >
<title>finish_task_switch (18 samples, 2.66%)</title><rect x="292.8" y="773" width="31.4" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text x="295.78" y="783.5" >fi..</text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractAutowireCapableBeanFactory:::initializeBean (2 samples, 0.30%)</title><rect x="1148.1" y="485" width="3.5" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text x="1151.11" y="495.5" ></text>
</g>
<g >
<title>org/hibernate/type/AbstractStandardBasicType:::isDirty (1 samples, 0.15%)</title><rect x="554.6" y="405" width="1.8" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="557.62" y="415.5" ></text>
</g>
<g >
<title>org/apache/http/impl/conn/ManagedClientConnectionImpl:::isStale (5 samples, 0.74%)</title><rect x="1167.3" y="485" width="8.7" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text x="1170.31" y="495.5" ></text>
</g>
<g >
<title>set_task_cpu (1 samples, 0.15%)</title><rect x="242.2" y="597" width="1.7" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text x="245.16" y="607.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (2 samples, 0.30%)</title><rect x="512.7" y="533" width="3.5" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="515.72" y="543.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="966.6" y="293" width="1.7" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="969.57" y="303.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupTail:::match (1 samples, 0.15%)</title><rect x="980.5" y="501" width="1.8" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="983.53" y="511.5" ></text>
</g>
<g >
<title>VM_Periodic_Tas (22 samples, 3.25%)</title><rect x="291.0" y="933" width="38.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="294.04" y="943.5" >VM_..</text>
</g>
<g >
<title>org/apache/log4j/helpers/PatternConverter:::format (1 samples, 0.15%)</title><rect x="949.1" y="325" width="1.8" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text x="952.11" y="335.5" ></text>
</g>
<g >
<title>native_write_msr (16 samples, 2.37%)</title><rect x="294.5" y="725" width="28.0" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text x="297.53" y="735.5" >n..</text>
</g>
<g >
<title>ext4_file_write_iter (1 samples, 0.15%)</title><rect x="945.6" y="165" width="1.8" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="948.62" y="175.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::dirtyCheck (2 samples, 0.30%)</title><rect x="870.6" y="469" width="3.5" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="873.56" y="479.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.15%)</title><rect x="732.7" y="453" width="1.7" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" />
<text x="735.66" y="463.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (20 samples, 2.96%)</title><rect x="10.0" y="901" width="34.9" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="13.00" y="911.5" >pt..</text>
</g>
<g >
<title>org/dspace/content/Item_$$_jvst722_4:::getHandle (2 samples, 0.30%)</title><rect x="912.5" y="581" width="3.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="915.46" y="591.5" ></text>
</g>
<g >
<title>usb_giveback_urb_bh (1 samples, 0.15%)</title><rect x="1113.2" y="357" width="1.7" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text x="1116.20" y="367.5" ></text>
</g>
<g >
<title>[libjvm.so] (78 samples, 11.54%)</title><rect x="107.8" y="821" width="136.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="110.75" y="831.5" >[libjvm.so]</text>
</g>
<g >
<title>java/util/ArrayList:::iterator (1 samples, 0.15%)</title><rect x="668.1" y="437" width="1.7" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text x="671.08" y="447.5" ></text>
</g>
<g >
<title>org/dspace/discovery/SolrServiceImpl:::unIndexContent (7 samples, 1.04%)</title><rect x="1163.8" y="581" width="12.2" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="1166.82" y="591.5" ></text>
</g>
<g >
<title>__x64_sys_futex (12 samples, 1.78%)</title><rect x="329.4" y="853" width="21.0" height="15.0" fill="rgb(202,52,52)" rx="2" ry="2" />
<text x="332.44" y="863.5" ></text>
</g>
<g >
<title>[unknown] (61 samples, 9.02%)</title><rect x="364.3" y="917" width="106.5" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text x="367.35" y="927.5" >[unknown]</text>
</g>
<g >
<title>org/hibernate/collection/internal/PersistentSet:::toArray (1 samples, 0.15%)</title><rect x="935.1" y="469" width="1.8" height="15.0" fill="rgb(101,247,101)" rx="2" ry="2" />
<text x="938.15" y="479.5" ></text>
</g>
<g >
<title>org/dspace/content/comparator/NameAscendingComparator:::compare (1 samples, 0.15%)</title><rect x="933.4" y="437" width="1.7" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="936.40" y="447.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.30%)</title><rect x="238.7" y="373" width="3.5" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="241.67" y="383.5" ></text>
</g>
<g >
<title>itable stub (4 samples, 0.59%)</title><rect x="1081.8" y="453" width="7.0" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="1084.78" y="463.5" ></text>
</g>
<g >
<title>nf_ct_deliver_cached_events (1 samples, 0.15%)</title><rect x="521.4" y="677" width="1.8" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="524.45" y="687.5" ></text>
</g>
<g >
<title>Interpreter (1 samples, 0.15%)</title><rect x="289.3" y="773" width="1.7" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="292.29" y="783.5" ></text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::evict (1 samples, 0.15%)</title><rect x="528.4" y="517" width="1.8" height="15.0" fill="rgb(95,242,95)" rx="2" ry="2" />
<text x="531.43" y="527.5" ></text>
</g>
<g >
<title>switch_fpu_return (1 samples, 0.15%)</title><rect x="285.8" y="853" width="1.7" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="288.80" y="863.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (34 samples, 5.03%)</title><rect x="44.9" y="885" width="59.4" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text x="47.91" y="895.5" >entry_..</text>
</g>
<g >
<title>ktime_get_ts64 (1 samples, 0.15%)</title><rect x="968.3" y="277" width="1.8" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="971.31" y="287.5" ></text>
</g>
<g >
<title>org/hibernate/engine/spi/CascadingAction:::requiresNoCascadeChecking (1 samples, 0.15%)</title><rect x="847.9" y="453" width="1.7" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="850.87" y="463.5" ></text>
</g>
<g >
<title>psi_task_change (1 samples, 0.15%)</title><rect x="41.4" y="773" width="1.8" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" />
<text x="44.42" y="783.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (34 samples, 5.03%)</title><rect x="44.9" y="901" width="59.4" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="47.91" y="911.5" >pthrea..</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="289.3" y="885" width="1.7" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="292.29" y="895.5" ></text>
</g>
<g >
<title>org/hibernate/type/descriptor/java/AbstractTypeDescriptor:::areEqual (1 samples, 0.15%)</title><rect x="554.6" y="389" width="1.8" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text x="557.62" y="399.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/PersistentList:::readFrom (1 samples, 0.15%)</title><rect x="936.9" y="437" width="1.7" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text x="939.89" y="447.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/MultipartEntity:::writeTo (2 samples, 0.30%)</title><rect x="954.3" y="389" width="3.5" height="15.0" fill="rgb(69,218,69)" rx="2" ry="2" />
<text x="957.35" y="399.5" ></text>
</g>
<g >
<title>org/apache/http/impl/entity/EntityDeserializer:::doDeserialize (1 samples, 0.15%)</title><rect x="952.6" y="421" width="1.7" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text x="955.60" y="431.5" ></text>
</g>
<g >
<title>org/dspace/discovery/FullTextContentStreams:::getStream (4 samples, 0.59%)</title><rect x="945.6" y="533" width="7.0" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="948.62" y="543.5" ></text>
</g>
<g >
<title>org/hibernate/type/ManyToOneType:::isDirty (1 samples, 0.15%)</title><rect x="774.6" y="453" width="1.7" height="15.0" fill="rgb(82,230,82)" rx="2" ry="2" />
<text x="777.56" y="463.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.15%)</title><rect x="704.7" y="485" width="1.8" height="15.0" fill="rgb(213,68,68)" rx="2" ry="2" />
<text x="707.73" y="495.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.15%)</title><rect x="970.1" y="533" width="1.7" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="973.06" y="543.5" ></text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::listeners (1 samples, 0.15%)</title><rect x="572.1" y="421" width="1.7" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text x="575.07" y="431.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/MapConfiguration:::getProperty (1 samples, 0.15%)</title><rect x="1149.9" y="357" width="1.7" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="1152.85" y="367.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (6 samples, 0.89%)</title><rect x="511.0" y="597" width="10.4" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="513.98" y="607.5" ></text>
</g>
<g >
<title>org/apache/log4j/AppenderSkeleton:::doAppend (3 samples, 0.44%)</title><rect x="945.6" y="389" width="5.3" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="948.62" y="399.5" ></text>
</g>
<g >
<title>_complete_monitor_locking_Java (1 samples, 0.15%)</title><rect x="270.1" y="741" width="1.7" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text x="273.09" y="751.5" ></text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::isDirty (83 samples, 12.28%)</title><rect x="704.7" y="517" width="144.9" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="707.73" y="527.5" >org/hibernate/inte..</text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::prepareCollectionFlushes (2 samples, 0.30%)</title><rect x="1027.7" y="469" width="3.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text x="1030.66" y="479.5" ></text>
</g>
<g >
<title>org/hibernate/engine/jdbc/internal/ResultSetReturnImpl:::extract (1 samples, 0.15%)</title><rect x="912.5" y="389" width="1.7" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="915.46" y="399.5" ></text>
</g>
<g >
<title>__tcp_push_pending_frames (9 samples, 1.33%)</title><rect x="509.2" y="789" width="15.7" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="512.23" y="799.5" ></text>
</g>
<g >
<title>java/util/AbstractMap:::get (3 samples, 0.44%)</title><rect x="1151.6" y="501" width="5.2" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text x="1154.60" y="511.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (32 samples, 4.73%)</title><rect x="46.7" y="741" width="55.8" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="49.66" y="751.5" >__int..</text>
</g>
<g >
<title>__schedule (18 samples, 2.66%)</title><rect x="11.7" y="789" width="31.5" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="14.75" y="799.5" >__..</text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::request (2 samples, 0.30%)</title><rect x="1160.3" y="549" width="3.5" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" />
<text x="1163.33" y="559.5" ></text>
</g>
<g >
<title>native_write_msr (16 samples, 2.37%)</title><rect x="13.5" y="725" width="27.9" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text x="16.49" y="735.5" >n..</text>
</g>
<g >
<title>finish_task_switch (4 samples, 0.59%)</title><rect x="1169.1" y="229" width="6.9" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="1172.05" y="239.5" ></text>
</g>
<g >
<title>tasklet_action_common.isra.0 (1 samples, 0.15%)</title><rect x="1113.2" y="373" width="1.7" height="15.0" fill="rgb(219,79,79)" rx="2" ry="2" />
<text x="1116.20" y="383.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/Cascade:::cascade (15 samples, 2.22%)</title><rect x="797.2" y="469" width="26.2" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text x="800.25" y="479.5" >o..</text>
</g>
<g >
<title>futex_wait_queue_me (18 samples, 2.66%)</title><rect x="292.8" y="821" width="31.4" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="295.78" y="831.5" >fu..</text>
</g>
<g >
<title>org/apache/log4j/WriterAppender:::subAppend (3 samples, 0.44%)</title><rect x="945.6" y="341" width="5.3" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="948.62" y="351.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1 samples, 0.15%)</title><rect x="240.4" y="309" width="1.8" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="243.41" y="319.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (8 samples, 1.18%)</title><rect x="509.2" y="741" width="14.0" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="512.23" y="751.5" ></text>
</g>
<g >
<title>timerqueue_add (1 samples, 0.15%)</title><rect x="10.0" y="773" width="1.7" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="13.00" y="783.5" ></text>
</g>
<g >
<title>Java_java_lang_Throwable_fillInStackTrace (1 samples, 0.15%)</title><rect x="1167.3" y="181" width="1.8" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text x="1170.31" y="191.5" ></text>
</g>
<g >
<title>__x64_sys_futex (4 samples, 0.59%)</title><rect x="352.1" y="853" width="7.0" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text x="355.13" y="863.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::prepareQueryStatement (1 samples, 0.15%)</title><rect x="1050.4" y="469" width="1.7" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text x="1053.36" y="479.5" ></text>
</g>
<g >
<title>__schedule (55 samples, 8.14%)</title><rect x="367.8" y="789" width="96.0" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="370.84" y="799.5" >__schedule</text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.44%)</title><rect x="266.6" y="853" width="5.2" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text x="269.60" y="863.5" ></text>
</g>
<g >
<title>[libjvm.so] (7 samples, 1.04%)</title><rect x="1177.8" y="853" width="12.2" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" />
<text x="1180.78" y="863.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::prepareCollectionFlushes (1 samples, 0.15%)</title><rect x="685.5" y="485" width="1.8" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text x="688.53" y="495.5" ></text>
</g>
<g >
<title>java/lang/Throwable:::fillInStackTrace (1 samples, 0.15%)</title><rect x="1167.3" y="197" width="1.8" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="1170.31" y="207.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1 samples, 0.15%)</title><rect x="359.1" y="725" width="1.8" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="362.11" y="735.5" ></text>
</g>
<g >
<title>sock_sendmsg (12 samples, 1.78%)</title><rect x="507.5" y="837" width="20.9" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" />
<text x="510.49" y="847.5" ></text>
</g>
<g >
<title>org/hibernate/type/descriptor/java/AbstractTypeDescriptor:::areEqual (1 samples, 0.15%)</title><rect x="833.9" y="421" width="1.8" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text x="836.91" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/StatefulPersistenceContext:::reassociateIfUninitializedProxy (2 samples, 0.30%)</title><rect x="736.2" y="453" width="3.4" height="15.0" fill="rgb(64,212,64)" rx="2" ry="2" />
<text x="739.15" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/context/internal/ThreadLocalSessionContext$TransactionProtectionWrapper:::invoke (40 samples, 5.92%)</title><rect x="1078.3" y="533" width="69.8" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text x="1081.28" y="543.5" >org/hib..</text>
</g>
<g >
<title>syscall_slow_exit_work (1 samples, 0.15%)</title><rect x="264.9" y="853" width="1.7" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="267.85" y="863.5" ></text>
</g>
<g >
<title>JVM_IHashCode (2 samples, 0.30%)</title><rect x="1151.6" y="469" width="3.5" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="1154.60" y="479.5" ></text>
</g>
<g >
<title>[libjvm.so] (76 samples, 11.24%)</title><rect x="111.2" y="773" width="132.7" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text x="114.24" y="783.5" >[libjvm.so]</text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEntities (6 samples, 0.89%)</title><rect x="690.8" y="453" width="10.4" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text x="693.77" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/type/descriptor/java/AbstractTypeDescriptor:::areEqual (1 samples, 0.15%)</title><rect x="757.1" y="437" width="1.7" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="760.10" y="447.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/request/QueryRequest:::process (2 samples, 0.30%)</title><rect x="1160.3" y="565" width="3.5" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="1163.33" y="575.5" ></text>
</g>
<g >
<title>itable stub (2 samples, 0.30%)</title><rect x="687.3" y="453" width="3.5" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text x="690.28" y="463.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="289.3" y="741" width="1.7" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="292.29" y="751.5" ></text>
</g>
<g >
<title>try_to_wake_up (1 samples, 0.15%)</title><rect x="242.2" y="613" width="1.7" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="245.16" y="623.5" ></text>
</g>
<g >
<title>start_thread (79 samples, 11.69%)</title><rect x="106.0" y="917" width="137.9" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="109.01" y="927.5" >start_thread</text>
</g>
<g >
<title>org/hibernate/type/descriptor/java/AbstractTypeDescriptor:::areEqual (1 samples, 0.15%)</title><rect x="790.3" y="469" width="1.7" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text x="793.27" y="479.5" ></text>
</g>
<g >
<title>java/lang/Throwable$WrappedPrintWriter:::println (1 samples, 0.15%)</title><rect x="950.9" y="277" width="1.7" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text x="953.86" y="287.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushCollections (1 samples, 0.15%)</title><rect x="1055.6" y="437" width="1.7" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text x="1058.59" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEverythingToExecutions (54 samples, 7.99%)</title><rect x="591.3" y="485" width="94.2" height="15.0" fill="rgb(54,203,54)" rx="2" ry="2" />
<text x="594.27" y="495.5" >org/hiberna..</text>
</g>
<g >
<title>sun/reflect/UnsafeObjectFieldAccessorImpl:::get (1 samples, 0.15%)</title><rect x="1024.2" y="437" width="1.7" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text x="1027.17" y="447.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (60 samples, 8.88%)</title><rect x="366.1" y="885" width="104.7" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text x="369.09" y="895.5" >entry_SYSCAL..</text>
</g>
<g >
<title>__tcp_transmit_skb (8 samples, 1.18%)</title><rect x="509.2" y="757" width="14.0" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text x="512.23" y="767.5" ></text>
</g>
<g >
<title>nf_hook_slow (1 samples, 0.15%)</title><rect x="521.4" y="709" width="1.8" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="524.45" y="719.5" ></text>
</g>
<g >
<title>Ljava/lang/ref/Reference:::tryHandlePending (1 samples, 0.15%)</title><rect x="289.3" y="757" width="1.7" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="292.29" y="767.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="238.7" y="181" width="1.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="241.67" y="191.5" ></text>
</g>
<g >
<title>org/dspace/util/MultiFormatDateParser:::parse (1 samples, 0.15%)</title><rect x="1158.6" y="565" width="1.7" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="1161.58" y="575.5" ></text>
</g>
<g >
<title>__fdget_pos (1 samples, 0.15%)</title><rect x="917.7" y="325" width="1.7" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="920.69" y="335.5" ></text>
</g>
<g >
<title>org/dspace/content/Item_$$_jvst722_4:::getCollections (2 samples, 0.30%)</title><rect x="933.4" y="549" width="3.5" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text x="936.40" y="559.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (4 samples, 0.59%)</title><rect x="352.1" y="885" width="7.0" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="355.13" y="895.5" ></text>
</g>
<g >
<title>ext4_buffered_write_iter (1 samples, 0.15%)</title><rect x="945.6" y="149" width="1.8" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="948.62" y="159.5" ></text>
</g>
<g >
<title>futex_wait (12 samples, 1.78%)</title><rect x="243.9" y="837" width="21.0" height="15.0" fill="rgb(220,80,80)" rx="2" ry="2" />
<text x="246.91" y="847.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::createMethod (1 samples, 0.15%)</title><rect x="1163.8" y="533" width="1.8" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text x="1166.82" y="543.5" ></text>
</g>
<g >
<title>sun/reflect/UnsafeObjectFieldAccessorImpl:::get (1 samples, 0.15%)</title><rect x="846.1" y="437" width="1.8" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text x="849.12" y="447.5" ></text>
</g>
<g >
<title>__pthread_mutex_cond_lock (1 samples, 0.15%)</title><rect x="364.3" y="901" width="1.8" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text x="367.35" y="911.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="966.6" y="309" width="1.7" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="969.57" y="319.5" ></text>
</g>
<g >
<title>__x2apic_send_IPI_dest (1 samples, 0.15%)</title><rect x="359.1" y="661" width="1.8" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="362.11" y="671.5" ></text>
</g>
<g >
<title>org/hibernate/proxy/pojo/javassist/JavassistLazyInitializer:::invoke (2 samples, 0.30%)</title><rect x="933.4" y="533" width="3.5" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="936.40" y="543.5" ></text>
</g>
<g >
<title>org/hibernate/context/internal/ThreadLocalSessionContext$TransactionProtectionWrapper:::invoke (1 samples, 0.15%)</title><rect x="528.4" y="549" width="1.8" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="531.43" y="559.5" ></text>
</g>
<g >
<title>org/apache/http/impl/conn/ManagedClientConnectionImpl:::receiveResponseEntity (1 samples, 0.15%)</title><rect x="952.6" y="453" width="1.7" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text x="955.60" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushCollections (1 samples, 0.15%)</title><rect x="893.3" y="485" width="1.7" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text x="896.25" y="495.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::onFlushEntity (6 samples, 0.89%)</title><rect x="531.9" y="453" width="10.5" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text x="534.92" y="463.5" ></text>
</g>
<g >
<title>__mprotect (2 samples, 0.30%)</title><rect x="360.9" y="821" width="3.4" height="15.0" fill="rgb(211,67,67)" rx="2" ry="2" />
<text x="363.86" y="831.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEntities (50 samples, 7.40%)</title><rect x="706.5" y="485" width="87.3" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="709.48" y="495.5" >org/hibern..</text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::isDirty (2 samples, 0.30%)</title><rect x="556.4" y="405" width="3.5" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text x="559.36" y="415.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.59%)</title><rect x="352.1" y="869" width="7.0" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="355.13" y="879.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (52 samples, 7.69%)</title><rect x="369.6" y="741" width="90.8" height="15.0" fill="rgb(248,121,121)" rx="2" ry="2" />
<text x="372.59" y="751.5" >__intel_pm..</text>
</g>
<g >
<title>perf_event_update_userpage (1 samples, 0.15%)</title><rect x="322.5" y="677" width="1.7" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="325.46" y="687.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::prepareEntityFlushes (10 samples, 1.48%)</title><rect x="1031.2" y="469" width="17.4" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="1034.15" y="479.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/AbstractHttpClient:::doExecute (2 samples, 0.30%)</title><rect x="1160.3" y="517" width="3.5" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text x="1163.33" y="527.5" ></text>
</g>
<g >
<title>Interpreter (4 samples, 0.59%)</title><rect x="945.6" y="469" width="7.0" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="948.62" y="479.5" ></text>
</g>
<g >
<title>org/dspace/discovery/SolrServiceImpl:::buildDocument (140 samples, 20.71%)</title><rect x="915.9" y="581" width="244.4" height="15.0" fill="rgb(90,236,90)" rx="2" ry="2" />
<text x="918.95" y="591.5" >org/dspace/discovery/SolrService..</text>
</g>
<g >
<title>org/hibernate/loader/Loader:::getRowFromResultSet (1 samples, 0.15%)</title><rect x="914.2" y="389" width="1.7" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text x="917.20" y="399.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (18 samples, 2.66%)</title><rect x="292.8" y="885" width="31.4" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="295.78" y="895.5" >en..</text>
</g>
<g >
<title>[libjvm.so] (79 samples, 11.69%)</title><rect x="106.0" y="853" width="137.9" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="109.01" y="863.5" >[libjvm.so]</text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::isDirty (40 samples, 5.92%)</title><rect x="1078.3" y="501" width="69.8" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text x="1081.28" y="511.5" >org/hib..</text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::onFlushEntity (23 samples, 3.40%)</title><rect x="607.0" y="453" width="40.1" height="15.0" fill="rgb(82,230,82)" rx="2" ry="2" />
<text x="609.98" y="463.5" >org..</text>
</g>
<g >
<title>org/apache/commons/configuration/AbstractFileConfiguration:::getProperty (1 samples, 0.15%)</title><rect x="984.0" y="501" width="1.8" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text x="987.02" y="511.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (12 samples, 1.78%)</title><rect x="243.9" y="741" width="21.0" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="246.91" y="751.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/util/ClientUtils:::writeVal (2 samples, 0.30%)</title><rect x="961.3" y="437" width="3.5" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="964.33" y="447.5" ></text>
</g>
<g >
<title>schedule_timeout (14 samples, 2.07%)</title><rect x="474.3" y="773" width="24.5" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="477.32" y="783.5" >s..</text>
</g>
<g >
<title>org/dspace/content/Bitstream:::getName (1 samples, 0.15%)</title><rect x="942.1" y="549" width="1.8" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text x="945.13" y="559.5" ></text>
</g>
<g >
<title>java/util/AbstractMap:::get (1 samples, 0.15%)</title><rect x="1149.9" y="341" width="1.7" height="15.0" fill="rgb(65,213,65)" rx="2" ry="2" />
<text x="1152.85" y="351.5" ></text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::autoFlushIfRequired (33 samples, 4.88%)</title><rect x="991.0" y="517" width="57.6" height="15.0" fill="rgb(65,213,65)" rx="2" ry="2" />
<text x="994.01" y="527.5" >org/hi..</text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::executeMethod (2 samples, 0.30%)</title><rect x="1160.3" y="533" width="3.5" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="1163.33" y="543.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.15%)</title><rect x="858.3" y="485" width="1.8" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="861.34" y="495.5" ></text>
</g>
<g >
<title>org/dspace/content/ItemServiceImpl:::getCommunities (2 samples, 0.30%)</title><rect x="933.4" y="565" width="3.5" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text x="936.40" y="575.5" ></text>
</g>
<g >
<title>event_sched_in.isra.0.part.0 (1 samples, 0.15%)</title><rect x="460.4" y="709" width="1.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="463.36" y="719.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::getOrphans (1 samples, 0.15%)</title><rect x="566.8" y="421" width="1.8" height="15.0" fill="rgb(108,254,108)" rx="2" ry="2" />
<text x="569.83" y="431.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/HierarchicalConfiguration:::containsKey (1 samples, 0.15%)</title><rect x="1149.9" y="389" width="1.7" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text x="1152.85" y="399.5" ></text>
</g>
<g >
<title>org/dspace/eperson/Group_$$_jvst722_1e:::getHibernateLazyInitializer (1 samples, 0.15%)</title><rect x="1062.6" y="389" width="1.7" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="1065.57" y="399.5" ></text>
</g>
<g >
<title>Java_java_io_FileOutputStream_writeBytes (1 samples, 0.15%)</title><rect x="917.7" y="421" width="1.7" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="920.69" y="431.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (2 samples, 0.30%)</title><rect x="966.6" y="389" width="3.5" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text x="969.57" y="399.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.15%)</title><rect x="242.2" y="677" width="1.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="245.16" y="687.5" ></text>
</g>
<g >
<title>switch_fpu_return (1 samples, 0.15%)</title><rect x="43.2" y="853" width="1.7" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="46.17" y="863.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::doQueryAndInitializeNonLazyCollections (2 samples, 0.30%)</title><rect x="912.5" y="405" width="3.4" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="915.46" y="415.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy40:::isDirty (13 samples, 1.92%)</title><rect x="1055.6" y="533" width="22.7" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text x="1058.59" y="543.5" >c..</text>
</g>
<g >
<title>generic_update_time (1 samples, 0.15%)</title><rect x="945.6" y="117" width="1.8" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="948.62" y="127.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEntities (31 samples, 4.59%)</title><rect x="596.5" y="469" width="54.1" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="599.51" y="479.5" >org/h..</text>
</g>
<g >
<title>__GI___libc_write (1 samples, 0.15%)</title><rect x="945.6" y="261" width="1.8" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" />
<text x="948.62" y="271.5" ></text>
</g>
<g >
<title>sun/reflect/UnsafeObjectFieldAccessorImpl:::set (1 samples, 0.15%)</title><rect x="926.4" y="485" width="1.8" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text x="929.42" y="495.5" ></text>
</g>
<g >
<title>finish_task_switch (12 samples, 1.78%)</title><rect x="329.4" y="773" width="21.0" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="332.44" y="783.5" ></text>
</g>
<g >
<title>org/hibernate/type/AbstractStandardBasicType:::isCollectionType (1 samples, 0.15%)</title><rect x="540.7" y="437" width="1.7" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" />
<text x="543.65" y="447.5" ></text>
</g>
<g >
<title>do_syscall_64 (13 samples, 1.92%)</title><rect x="243.9" y="869" width="22.7" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="246.91" y="879.5" >d..</text>
</g>
<g >
<title>futex_wait_queue_me (4 samples, 0.59%)</title><rect x="352.1" y="821" width="7.0" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="355.13" y="831.5" ></text>
</g>
<g >
<title>java/lang/Object:::hashCode (1 samples, 0.15%)</title><rect x="919.4" y="469" width="1.8" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text x="922.44" y="479.5" ></text>
</g>
<g >
<title>org/apache/log4j/AppenderSkeleton:::doAppend (1 samples, 0.15%)</title><rect x="917.7" y="517" width="1.7" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="920.69" y="527.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (1 samples, 0.15%)</title><rect x="287.5" y="917" width="1.8" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text x="290.54" y="927.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::getRowFromResultSet (1 samples, 0.15%)</title><rect x="942.1" y="453" width="1.8" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="945.13" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/type/ManyToOneType:::isDirty (1 samples, 0.15%)</title><rect x="645.4" y="437" width="1.7" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="648.38" y="447.5" ></text>
</g>
<g >
<title>__schedule (4 samples, 0.59%)</title><rect x="1169.1" y="245" width="6.9" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="1172.05" y="255.5" ></text>
</g>
<g >
<title>[libjvm.so] (79 samples, 11.69%)</title><rect x="106.0" y="837" width="137.9" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="109.01" y="847.5" >[libjvm.so]</text>
</g>
<g >
<title>org/apache/log4j/Category:::callAppenders (1 samples, 0.15%)</title><rect x="950.9" y="437" width="1.7" height="15.0" fill="rgb(99,244,99)" rx="2" ry="2" />
<text x="953.86" y="447.5" ></text>
</g>
<g >
<title>org/dspace/discovery/SolrServiceMetadataBrowseIndexingPlugin:::additionalIndex (10 samples, 1.48%)</title><rect x="970.1" y="565" width="17.4" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text x="973.06" y="575.5" ></text>
</g>
<g >
<title>Interpreter (3 samples, 0.44%)</title><rect x="945.6" y="453" width="5.3" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text x="948.62" y="463.5" ></text>
</g>
<g >
<title>java/io/FileOutputStream:::writeBytes (1 samples, 0.15%)</title><rect x="945.6" y="309" width="1.8" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="948.62" y="319.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.15%)</title><rect x="102.5" y="725" width="1.8" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="105.51" y="735.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (1 samples, 0.15%)</title><rect x="919.4" y="485" width="1.8" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text x="922.44" y="495.5" ></text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::isDirty (4 samples, 0.59%)</title><rect x="750.1" y="437" width="7.0" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="753.12" y="447.5" ></text>
</g>
<g >
<title>__poll (1 samples, 0.15%)</title><rect x="968.3" y="341" width="1.8" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="971.31" y="351.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.44%)</title><rect x="359.1" y="869" width="5.2" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="362.11" y="879.5" ></text>
</g>
<g >
<title>org/hibernate/loader/DefaultEntityAliases:::&lt;init&gt; (1 samples, 0.15%)</title><rect x="1052.1" y="485" width="1.7" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="1055.10" y="495.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::withTemporarySessionIfNeeded (2 samples, 0.30%)</title><rect x="938.6" y="517" width="3.5" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="941.64" y="527.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEntities (11 samples, 1.63%)</title><rect x="545.9" y="453" width="19.2" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="548.89" y="463.5" ></text>
</g>
<g >
<title>java/util/HashMap:::resize (1 samples, 0.15%)</title><rect x="1155.1" y="485" width="1.7" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text x="1158.09" y="495.5" ></text>
</g>
<g >
<title>org/hibernate/context/internal/ThreadLocalSessionContext$TransactionProtectionWrapper:::invoke (8 samples, 1.18%)</title><rect x="530.2" y="549" width="13.9" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text x="533.18" y="559.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.30%)</title><rect x="238.7" y="453" width="3.5" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="241.67" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultDirtyCheckEventListener:::onDirtyCheck (8 samples, 1.18%)</title><rect x="530.2" y="501" width="13.9" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text x="533.18" y="511.5" ></text>
</g>
<g >
<title>Java_java_net_SocketInputStream_socketRead0 (5 samples, 0.74%)</title><rect x="1167.3" y="373" width="8.7" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="1170.31" y="383.5" ></text>
</g>
<g >
<title>org/hibernate/type/ManyToOneType:::isDirty (1 samples, 0.15%)</title><rect x="905.5" y="453" width="1.7" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="908.47" y="463.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.44%)</title><rect x="359.1" y="901" width="5.2" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="362.11" y="911.5" ></text>
</g>
<g >
<title>org/hibernate/type/AbstractStandardBasicType:::isComponentType (1 samples, 0.15%)</title><rect x="785.0" y="469" width="1.8" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text x="788.03" y="479.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="238.7" y="325" width="1.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="241.67" y="335.5" ></text>
</g>
<g >
<title>org/dspace/content/Collection:::getName (1 samples, 0.15%)</title><rect x="933.4" y="405" width="1.7" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="936.40" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultDirtyCheckEventListener:::onDirtyCheck (13 samples, 1.92%)</title><rect x="1055.6" y="469" width="22.7" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="1058.59" y="479.5" >o..</text>
</g>
<g >
<title>__local_bh_enable_ip (6 samples, 0.89%)</title><rect x="511.0" y="693" width="10.4" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="513.98" y="703.5" ></text>
</g>
<g >
<title>hid_irq_in (1 samples, 0.15%)</title><rect x="1113.2" y="325" width="1.7" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="1116.20" y="335.5" ></text>
</g>
<g >
<title>org/hibernate/internal/util/collections/IdentityMap:::entryArray (1 samples, 0.15%)</title><rect x="795.5" y="469" width="1.7" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text x="798.50" y="479.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (1 samples, 0.15%)</title><rect x="44.9" y="773" width="1.8" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text x="47.91" y="783.5" ></text>
</g>
<g >
<title>org/apache/log4j/WriterAppender:::subAppend (1 samples, 0.15%)</title><rect x="917.7" y="469" width="1.7" height="15.0" fill="rgb(95,242,95)" rx="2" ry="2" />
<text x="920.69" y="479.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::prepareEntityFlushes (3 samples, 0.44%)</title><rect x="907.2" y="485" width="5.3" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text x="910.22" y="495.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1 samples, 0.15%)</title><rect x="514.5" y="405" width="1.7" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="517.47" y="415.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.44%)</title><rect x="324.2" y="885" width="5.2" height="15.0" fill="rgb(209,64,64)" rx="2" ry="2" />
<text x="327.20" y="895.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="929.9" y="437" width="1.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="932.91" y="447.5" ></text>
</g>
<g >
<title>group_sched_in (2 samples, 0.30%)</title><rect x="495.3" y="677" width="3.5" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="498.27" y="687.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/ImmutableHttpProcessor:::process (2 samples, 0.30%)</title><rect x="1160.3" y="469" width="3.5" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text x="1163.33" y="479.5" ></text>
</g>
<g >
<title>org/apache/http/client/protocol/RequestClientConnControl:::process (1 samples, 0.15%)</title><rect x="1162.1" y="453" width="1.7" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text x="1165.07" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/engine/spi/CascadeStyle$11:::hasOrphanDelete (1 samples, 0.15%)</title><rect x="1134.1" y="453" width="1.8" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="1137.14" y="463.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.44%)</title><rect x="266.6" y="805" width="5.2" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="269.60" y="815.5" ></text>
</g>
<g >
<title>futex_wait (56 samples, 8.28%)</title><rect x="367.8" y="837" width="97.8" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text x="370.84" y="847.5" >futex_wait</text>
</g>
<g >
<title>org/dspace/servicemanager/config/DSpaceConfigurationService:::getProperty (4 samples, 0.59%)</title><rect x="1151.6" y="565" width="7.0" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="1154.60" y="575.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEverythingToExecutions (33 samples, 4.88%)</title><rect x="991.0" y="485" width="57.6" height="15.0" fill="rgb(105,250,105)" rx="2" ry="2" />
<text x="994.01" y="495.5" >org/hi..</text>
</g>
<g >
<title>org/apache/solr/client/solrj/request/UpdateRequest:::getXML (2 samples, 0.30%)</title><rect x="961.3" y="485" width="3.5" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text x="964.33" y="495.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/content/StringBody:::writeTo (1 samples, 0.15%)</title><rect x="956.1" y="357" width="1.7" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="959.09" y="367.5" ></text>
</g>
<g >
<title>Interpreter (3 samples, 0.44%)</title><rect x="266.6" y="773" width="5.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="269.60" y="783.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="1167.3" y="309" width="1.8" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="1170.31" y="319.5" ></text>
</g>
<g >
<title>[unknown] (13 samples, 1.92%)</title><rect x="243.9" y="917" width="22.7" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="246.91" y="927.5" >[..</text>
</g>
<g >
<title>org/dspace/discovery/SolrServiceContentInOriginalBundleFilterPlugin:::additionalIndex (3 samples, 0.44%)</title><rect x="936.9" y="565" width="5.2" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text x="939.89" y="575.5" ></text>
</g>
<g >
<title>__schedule (14 samples, 2.07%)</title><rect x="474.3" y="741" width="24.5" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="477.32" y="751.5" >_..</text>
</g>
<g >
<title>org/hibernate/event/internal/FlushVisitor:::processCollection (2 samples, 0.30%)</title><rect x="537.2" y="437" width="3.5" height="15.0" fill="rgb(58,208,58)" rx="2" ry="2" />
<text x="540.16" y="447.5" ></text>
</g>
<g >
<title>kmem_cache_free (1 samples, 0.15%)</title><rect x="362.6" y="677" width="1.7" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text x="365.60" y="687.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::doList (1 samples, 0.15%)</title><rect x="1050.4" y="501" width="1.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="1053.36" y="511.5" ></text>
</g>
<g >
<title>__kmalloc (1 samples, 0.15%)</title><rect x="1113.2" y="277" width="1.7" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text x="1116.20" y="287.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.30%)</title><rect x="360.9" y="789" width="3.4" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="363.86" y="799.5" ></text>
</g>
<g >
<title>[libjvm.so] (7 samples, 1.04%)</title><rect x="229.9" y="677" width="12.3" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text x="232.94" y="687.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (56 samples, 8.28%)</title><rect x="367.8" y="821" width="97.8" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="370.84" y="831.5" >futex_wait_..</text>
</g>
<g >
<title>tcp_schedule_loss_probe (1 samples, 0.15%)</title><rect x="523.2" y="757" width="1.7" height="15.0" fill="rgb(254,128,128)" rx="2" ry="2" />
<text x="526.20" y="767.5" ></text>
</g>
<g >
<title>tcp_tx_timestamp (1 samples, 0.15%)</title><rect x="526.7" y="789" width="1.7" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text x="529.69" y="799.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/HierarchicalConfiguration$DefinedKeysVisitor:::&lt;init&gt; (1 samples, 0.15%)</title><rect x="1148.1" y="389" width="1.8" height="15.0" fill="rgb(78,225,78)" rx="2" ry="2" />
<text x="1151.11" y="399.5" ></text>
</g>
<g >
<title>inet6_recvmsg (15 samples, 2.22%)</title><rect x="472.6" y="837" width="26.2" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="475.57" y="847.5" >i..</text>
</g>
<g >
<title>java/lang/String:::toLowerCase (1 samples, 0.15%)</title><rect x="915.9" y="549" width="1.8" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="918.95" y="559.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (1 samples, 0.15%)</title><rect x="917.7" y="373" width="1.7" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="920.69" y="383.5" ></text>
</g>
<g >
<title>native_write_msr (12 samples, 1.78%)</title><rect x="329.4" y="725" width="21.0" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text x="332.44" y="735.5" ></text>
</g>
<g >
<title>futex_wait (8 samples, 1.18%)</title><rect x="271.8" y="837" width="14.0" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="274.83" y="847.5" ></text>
</g>
<g >
<title>sched_clock_cpu (1 samples, 0.15%)</title><rect x="44.9" y="741" width="1.8" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text x="47.91" y="751.5" ></text>
</g>
<g >
<title>do_syscall_64 (9 samples, 1.33%)</title><rect x="271.8" y="869" width="15.7" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="274.83" y="879.5" ></text>
</g>
<g >
<title>org/dspace/content/DSpaceObjectServiceImpl:::getMetadataByMetadataString (1 samples, 0.15%)</title><rect x="931.7" y="565" width="1.7" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text x="934.66" y="575.5" ></text>
</g>
<g >
<title>__x64_sys_write (1 samples, 0.15%)</title><rect x="945.6" y="213" width="1.8" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="948.62" y="223.5" ></text>
</g>
<g >
<title>do_sys_poll (4 samples, 0.59%)</title><rect x="1169.1" y="293" width="6.9" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="1172.05" y="303.5" ></text>
</g>
<g >
<title>[libjvm.so] (372 samples, 55.03%)</title><rect x="528.4" y="869" width="649.4" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="531.43" y="879.5" >[libjvm.so]</text>
</g>
<g >
<title>tcp_write_xmit (9 samples, 1.33%)</title><rect x="509.2" y="773" width="15.7" height="15.0" fill="rgb(228,90,90)" rx="2" ry="2" />
<text x="512.23" y="783.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl:::invoke (2 samples, 0.30%)</title><rect x="933.4" y="517" width="3.5" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text x="936.40" y="527.5" ></text>
</g>
<g >
<title>org/apache/http/impl/io/AbstractSessionInputBuffer:::fillBuffer (2 samples, 0.30%)</title><rect x="966.6" y="421" width="3.5" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="969.57" y="431.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/HttpRequestExecutor:::doReceiveResponse (1 samples, 0.15%)</title><rect x="952.6" y="469" width="1.7" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text x="955.60" y="479.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.44%)</title><rect x="266.6" y="837" width="5.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="269.60" y="847.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (53 samples, 7.84%)</title><rect x="369.6" y="757" width="92.5" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="372.59" y="767.5" >__perf_even..</text>
</g>
<g >
<title>[libjava.so] (1 samples, 0.15%)</title><rect x="945.6" y="277" width="1.8" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="948.62" y="287.5" ></text>
</g>
<g >
<title>[libjvm.so] (6 samples, 0.89%)</title><rect x="1179.5" y="837" width="10.5" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="1182.53" y="847.5" ></text>
</g>
<g >
<title>org/apache/http/impl/cookie/DefaultCookieSpec:::&lt;init&gt; (1 samples, 0.15%)</title><rect x="1160.3" y="389" width="1.8" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text x="1163.33" y="399.5" ></text>
</g>
<g >
<title>org/apache/http/impl/conn/ManagedClientConnectionImpl:::sendRequestEntity (2 samples, 0.30%)</title><rect x="954.3" y="453" width="3.5" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="957.35" y="463.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="238.7" y="293" width="1.7" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="241.67" y="303.5" ></text>
</g>
<g >
<title>itable stub (3 samples, 0.44%)</title><rect x="573.8" y="421" width="5.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="576.82" y="431.5" ></text>
</g>
<g >
<title>_register_finalizer_Java (1 samples, 0.15%)</title><rect x="1050.4" y="437" width="1.7" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="1053.36" y="447.5" ></text>
</g>
<g >
<title>Interpreter (372 samples, 55.03%)</title><rect x="528.4" y="629" width="649.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="531.43" y="639.5" >Interpreter</text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEverythingToExecutions (8 samples, 1.18%)</title><rect x="530.2" y="485" width="13.9" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="533.18" y="495.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::prepareQueryStatement (1 samples, 0.15%)</title><rect x="940.4" y="485" width="1.7" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="943.38" y="495.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/MapConfiguration:::getProperty (3 samples, 0.44%)</title><rect x="1151.6" y="517" width="5.2" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="1154.60" y="527.5" ></text>
</g>
<g >
<title>sun/reflect/UnsafeObjectFieldAccessorImpl:::get (1 samples, 0.15%)</title><rect x="1046.9" y="437" width="1.7" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text x="1049.86" y="447.5" ></text>
</g>
<g >
<title>org/apache/http/impl/io/SocketInputBuffer:::isDataAvailable (5 samples, 0.74%)</title><rect x="1167.3" y="453" width="8.7" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="1170.31" y="463.5" ></text>
</g>
<g >
<title>[libjvm.so] (4 samples, 0.59%)</title><rect x="235.2" y="645" width="7.0" height="15.0" fill="rgb(204,55,55)" rx="2" ry="2" />
<text x="238.18" y="655.5" ></text>
</g>
<g >
<title>__fdget (1 samples, 0.15%)</title><rect x="505.7" y="837" width="1.8" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="508.74" y="847.5" ></text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::isDirty (1 samples, 0.15%)</title><rect x="1111.4" y="437" width="1.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="1114.45" y="447.5" ></text>
</g>
<g >
<title>java/util/LinkedList:::addAll (1 samples, 0.15%)</title><rect x="936.9" y="517" width="1.7" height="15.0" fill="rgb(88,234,88)" rx="2" ry="2" />
<text x="939.89" y="527.5" ></text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::list (39 samples, 5.77%)</title><rect x="987.5" y="533" width="68.1" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="990.51" y="543.5" >org/hib..</text>
</g>
<g >
<title>org/hibernate/event/internal/FlushVisitor:::processCollection (1 samples, 0.15%)</title><rect x="902.0" y="453" width="1.7" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="904.98" y="463.5" ></text>
</g>
<g >
<title>native_write_msr (12 samples, 1.78%)</title><rect x="243.9" y="725" width="21.0" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
<text x="246.91" y="735.5" ></text>
</g>
<g >
<title>finish_task_switch (14 samples, 2.07%)</title><rect x="474.3" y="725" width="24.5" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="477.32" y="735.5" >f..</text>
</g>
<g >
<title>pthread_cond_wait@@GLIBC_2.3.2 (9 samples, 1.33%)</title><rect x="271.8" y="901" width="15.7" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="274.83" y="911.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::onFlushEntity (15 samples, 2.22%)</title><rect x="1088.8" y="453" width="26.1" height="15.0" fill="rgb(106,252,106)" rx="2" ry="2" />
<text x="1091.76" y="463.5" >o..</text>
</g>
<g >
<title>org/apache/solr/client/solrj/request/AbstractUpdateRequest:::process (7 samples, 1.04%)</title><rect x="1163.8" y="565" width="12.2" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text x="1166.82" y="575.5" ></text>
</g>
<g >
<title>java/util/HashMap:::resize (1 samples, 0.15%)</title><rect x="985.8" y="469" width="1.7" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text x="988.77" y="479.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::tryExecute (3 samples, 0.44%)</title><rect x="952.6" y="501" width="5.2" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text x="955.60" y="511.5" ></text>
</g>
<g >
<title>org/hibernate/context/internal/ThreadLocalSessionContext$TransactionProtectionWrapper:::invoke (17 samples, 2.51%)</title><rect x="544.1" y="533" width="29.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="547.14" y="543.5" >or..</text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::dirtyCheck (1 samples, 0.15%)</title><rect x="1013.7" y="437" width="1.7" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="1016.70" y="447.5" ></text>
</g>
<g >
<title>ctx_sched_out (1 samples, 0.15%)</title><rect x="44.9" y="757" width="1.8" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text x="47.91" y="767.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEverythingToExecutions (9 samples, 1.33%)</title><rect x="687.3" y="469" width="15.7" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="690.28" y="479.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.15%)</title><rect x="242.2" y="693" width="1.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="245.16" y="703.5" ></text>
</g>
<g >
<title>sun/reflect/UnsafeObjectFieldAccessorImpl:::get (5 samples, 0.74%)</title><rect x="776.3" y="453" width="8.7" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="779.30" y="463.5" ></text>
</g>
<g >
<title>[libjvm.so] (78 samples, 11.54%)</title><rect x="107.8" y="805" width="136.1" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="110.75" y="815.5" >[libjvm.so]</text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::execute (3 samples, 0.44%)</title><rect x="952.6" y="517" width="5.2" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" />
<text x="955.60" y="527.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (20 samples, 2.96%)</title><rect x="10.0" y="885" width="34.9" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="13.00" y="895.5" >en..</text>
</g>
<g >
<title>schedule (12 samples, 1.78%)</title><rect x="243.9" y="805" width="21.0" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="246.91" y="815.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy40:::isDirty (8 samples, 1.18%)</title><rect x="530.2" y="565" width="13.9" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text x="533.18" y="575.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor16:::invoke (17 samples, 2.51%)</title><rect x="544.1" y="517" width="29.7" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="547.14" y="527.5" >su..</text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::isDirty (8 samples, 1.18%)</title><rect x="530.2" y="517" width="13.9" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text x="533.18" y="527.5" ></text>
</g>
<g >
<title>__audit_syscall_entry (1 samples, 0.15%)</title><rect x="327.7" y="757" width="1.7" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="330.69" y="767.5" ></text>
</g>
<g >
<title>ext4_mark_inode_dirty (1 samples, 0.15%)</title><rect x="945.6" y="69" width="1.8" height="15.0" fill="rgb(252,125,125)" rx="2" ry="2" />
<text x="948.62" y="79.5" ></text>
</g>
<g >
<title>do_syscall_64 (13 samples, 1.92%)</title><rect x="329.4" y="869" width="22.7" height="15.0" fill="rgb(213,68,68)" rx="2" ry="2" />
<text x="332.44" y="879.5" >d..</text>
</g>
<g >
<title>itable stub (1 samples, 0.15%)</title><rect x="1010.2" y="437" width="1.8" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text x="1013.21" y="447.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.44%)</title><rect x="236.9" y="581" width="5.3" height="15.0" fill="rgb(219,77,77)" rx="2" ry="2" />
<text x="239.92" y="591.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (12 samples, 1.78%)</title><rect x="474.3" y="693" width="21.0" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text x="477.32" y="703.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEntities (7 samples, 1.04%)</title><rect x="530.2" y="469" width="12.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text x="533.18" y="479.5" ></text>
</g>
<g >
<title>org/hibernate/engine/spi/CascadeStyle$11:::hasOrphanDelete (1 samples, 0.15%)</title><rect x="1041.6" y="437" width="1.8" height="15.0" fill="rgb(76,223,76)" rx="2" ry="2" />
<text x="1044.63" y="447.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.30%)</title><rect x="1151.6" y="453" width="3.5" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="1154.60" y="463.5" ></text>
</g>
<g >
<title>[libjava.so] (1 samples, 0.15%)</title><rect x="917.7" y="405" width="1.7" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="920.69" y="415.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor23:::invoke (2 samples, 0.30%)</title><rect x="933.4" y="501" width="3.5" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text x="936.40" y="511.5" ></text>
</g>
<g >
<title>msort_with_tmp.part.0 (1 samples, 0.15%)</title><rect x="104.3" y="917" width="1.7" height="15.0" fill="rgb(208,63,63)" rx="2" ry="2" />
<text x="107.26" y="927.5" ></text>
</g>
<g >
<title>org/apache/http/impl/io/AbstractSessionOutputBuffer:::write (1 samples, 0.15%)</title><rect x="956.1" y="341" width="1.7" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="959.09" y="351.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEntities (6 samples, 0.89%)</title><rect x="573.8" y="437" width="10.5" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text x="576.82" y="447.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.15%)</title><rect x="551.1" y="421" width="1.8" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="554.12" y="431.5" ></text>
</g>
<g >
<title>hid_input_report (1 samples, 0.15%)</title><rect x="1113.2" y="309" width="1.7" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="1116.20" y="319.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/AbstractMultipartForm:::encode (1 samples, 0.15%)</title><rect x="954.3" y="341" width="1.8" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text x="957.35" y="351.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushCollections (2 samples, 0.30%)</title><rect x="593.0" y="469" width="3.5" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text x="596.02" y="479.5" ></text>
</g>
<g >
<title>java/io/PrintWriter:::write (1 samples, 0.15%)</title><rect x="950.9" y="261" width="1.7" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text x="953.86" y="271.5" ></text>
</g>
<g >
<title>tick_sched_timer (1 samples, 0.15%)</title><rect x="514.5" y="373" width="1.7" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="517.47" y="383.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/Cascade:::cascade (4 samples, 0.59%)</title><rect x="886.3" y="485" width="7.0" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text x="889.27" y="495.5" ></text>
</g>
<g >
<title>__libc_recv (17 samples, 2.51%)</title><rect x="470.8" y="917" width="29.7" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="473.83" y="927.5" >__..</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="929.9" y="421" width="1.8" height="15.0" fill="rgb(202,54,54)" rx="2" ry="2" />
<text x="932.91" y="431.5" ></text>
</g>
<g >
<title>[libjvm.so] (372 samples, 55.03%)</title><rect x="528.4" y="677" width="649.4" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="531.43" y="687.5" >[libjvm.so]</text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (19 samples, 2.81%)</title><rect x="291.0" y="901" width="33.2" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="294.04" y="911.5" >pt..</text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::isDirty (13 samples, 1.92%)</title><rect x="1055.6" y="485" width="22.7" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="1058.59" y="495.5" >o..</text>
</g>
<g >
<title>java/lang/Throwable:::printEnclosedStackTrace (1 samples, 0.15%)</title><rect x="950.9" y="293" width="1.7" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="953.86" y="303.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/HttpStrictMultipart:::formatMultipartHeader (1 samples, 0.15%)</title><rect x="954.3" y="357" width="1.8" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text x="957.35" y="367.5" ></text>
</g>
<g >
<title>__x64_sys_futex (18 samples, 2.66%)</title><rect x="292.8" y="853" width="31.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="295.78" y="863.5" >__..</text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultEvictEventListener:::onEvict (1 samples, 0.15%)</title><rect x="528.4" y="485" width="1.8" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="531.43" y="495.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/Cascade:::cascade (3 samples, 0.44%)</title><rect x="907.2" y="469" width="5.3" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text x="910.22" y="479.5" ></text>
</g>
<g >
<title>org/dspace/core/HibernateDBConnection:::uncacheEntity (74 samples, 10.95%)</title><rect x="573.8" y="549" width="129.2" height="15.0" fill="rgb(90,236,90)" rx="2" ry="2" />
<text x="576.82" y="559.5" >org/dspace/core/..</text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultSaveOrUpdateEventListener:::onSaveOrUpdate (2 samples, 0.30%)</title><rect x="568.6" y="421" width="3.5" height="15.0" fill="rgb(52,201,52)" rx="2" ry="2" />
<text x="571.58" y="431.5" ></text>
</g>
<g >
<title>ip_output (1 samples, 0.15%)</title><rect x="472.6" y="773" width="1.7" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="475.57" y="783.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="1167.3" y="293" width="1.8" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text x="1170.31" y="303.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::getOrphans (1 samples, 0.15%)</title><rect x="1146.4" y="421" width="1.7" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text x="1149.36" y="431.5" ></text>
</g>
<g >
<title>ktime_get_update_offsets_now (1 samples, 0.15%)</title><rect x="102.5" y="693" width="1.8" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="105.51" y="703.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEverythingToExecutions (33 samples, 4.88%)</title><rect x="1078.3" y="485" width="57.6" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="1081.28" y="495.5" >org/hi..</text>
</g>
<g >
<title>java/lang/Throwable:::fillInStackTrace (1 samples, 0.15%)</title><rect x="1167.3" y="213" width="1.8" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text x="1170.31" y="223.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/HierarchicalConfiguration:::containsKey (4 samples, 0.59%)</title><rect x="1151.6" y="549" width="7.0" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="1154.60" y="559.5" ></text>
</g>
<g >
<title>[unknown] (19 samples, 2.81%)</title><rect x="291.0" y="917" width="33.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="294.04" y="927.5" >[u..</text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::prepareEntityFlushes (4 samples, 0.59%)</title><rect x="886.3" y="501" width="7.0" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="889.27" y="511.5" ></text>
</g>
<g >
<title>call_stub (372 samples, 55.03%)</title><rect x="528.4" y="661" width="649.4" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text x="531.43" y="671.5" >call_stub</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="270.1" y="725" width="1.7" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="273.09" y="735.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::getOrphans (3 samples, 0.44%)</title><rect x="1128.9" y="437" width="5.2" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text x="1131.91" y="447.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupHead:::match (1 samples, 0.15%)</title><rect x="980.5" y="405" width="1.8" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text x="983.53" y="415.5" ></text>
</g>
<g >
<title>[unknown] (9 samples, 1.33%)</title><rect x="271.8" y="917" width="15.7" height="15.0" fill="rgb(230,95,95)" rx="2" ry="2" />
<text x="274.83" y="927.5" ></text>
</g>
<g >
<title>native_write_msr (32 samples, 4.73%)</title><rect x="46.7" y="725" width="55.8" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text x="49.66" y="735.5" >nativ..</text>
</g>
<g >
<title>itable stub (1 samples, 0.15%)</title><rect x="746.6" y="437" width="1.8" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text x="749.63" y="447.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.44%)</title><rect x="266.6" y="869" width="5.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="269.60" y="879.5" ></text>
</g>
<g >
<title>org/hibernate/loader/criteria/CriteriaJoinWalker:::&lt;init&gt; (1 samples, 0.15%)</title><rect x="1053.8" y="501" width="1.8" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="1056.85" y="511.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::dirtyCheck (1 samples, 0.15%)</title><rect x="900.2" y="453" width="1.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="903.24" y="463.5" ></text>
</g>
<g >
<title>org/apache/log4j/Category:::error (3 samples, 0.44%)</title><rect x="945.6" y="437" width="5.3" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="948.62" y="447.5" ></text>
</g>
<g >
<title>[libjvm.so] (7 samples, 1.04%)</title><rect x="1177.8" y="869" width="12.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="1180.78" y="879.5" ></text>
</g>
<g >
<title>org/hibernate/loader/AbstractEntityJoinWalker:::initStatementString (1 samples, 0.15%)</title><rect x="1053.8" y="469" width="1.8" height="15.0" fill="rgb(101,246,101)" rx="2" ry="2" />
<text x="1056.85" y="479.5" ></text>
</g>
<g >
<title>perf_swevent_add (1 samples, 0.15%)</title><rect x="322.5" y="693" width="1.7" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="325.46" y="703.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1 samples, 0.15%)</title><rect x="242.2" y="661" width="1.7" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text x="245.16" y="671.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/AbstractHttpClient:::doExecute (3 samples, 0.44%)</title><rect x="952.6" y="533" width="5.2" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text x="955.60" y="543.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (2 samples, 0.30%)</title><rect x="512.7" y="549" width="3.5" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="515.72" y="559.5" ></text>
</g>
<g >
<title>org/apache/http/client/protocol/RequestAddCookies:::process (1 samples, 0.15%)</title><rect x="1160.3" y="453" width="1.8" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="1163.33" y="463.5" ></text>
</g>
<g >
<title>[unknown] (34 samples, 5.03%)</title><rect x="44.9" y="917" width="59.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="47.91" y="927.5" >[unkno..</text>
</g>
<g >
<title>java/lang/reflect/Method:::invoke (372 samples, 55.03%)</title><rect x="528.4" y="789" width="649.4" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text x="531.43" y="799.5" >java/lang/reflect/Method:::invoke</text>
</g>
<g >
<title>org/hibernate/engine/spi/TypedValue:::hashCode (1 samples, 0.15%)</title><rect x="673.3" y="421" width="1.8" height="15.0" fill="rgb(88,234,88)" rx="2" ry="2" />
<text x="676.31" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::list (1 samples, 0.15%)</title><rect x="1050.4" y="517" width="1.7" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="1053.36" y="527.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.30%)</title><rect x="1184.8" y="821" width="3.5" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text x="1187.76" y="831.5" ></text>
</g>
<g >
<title>group_sched_in (1 samples, 0.15%)</title><rect x="322.5" y="725" width="1.7" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="325.46" y="735.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/EntityEntryContext:::reentrantSafeEntityEntries (1 samples, 0.15%)</title><rect x="680.3" y="453" width="1.7" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="683.30" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/Cascade:::cascade (11 samples, 1.63%)</title><rect x="661.1" y="453" width="19.2" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text x="664.09" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEntities (20 samples, 2.96%)</title><rect x="1080.0" y="469" width="34.9" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="1083.03" y="479.5" >or..</text>
</g>
<g >
<title>itable stub (1 samples, 0.15%)</title><rect x="896.7" y="453" width="1.8" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="899.75" y="463.5" ></text>
</g>
<g >
<title>schedule (4 samples, 0.59%)</title><rect x="352.1" y="805" width="7.0" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text x="355.13" y="815.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.44%)</title><rect x="266.6" y="901" width="5.2" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="269.60" y="911.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.30%)</title><rect x="238.7" y="517" width="3.5" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text x="241.67" y="527.5" ></text>
</g>
<g >
<title>org/apache/http/util/EntityUtils:::getContentCharSet (1 samples, 0.15%)</title><rect x="957.8" y="517" width="1.8" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="960.84" y="527.5" ></text>
</g>
<g >
<title>org/apache/http/impl/cookie/BestMatchSpecFactory:::newInstance (1 samples, 0.15%)</title><rect x="1160.3" y="405" width="1.8" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="1163.33" y="415.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="1167.3" y="357" width="1.8" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="1170.31" y="367.5" ></text>
</g>
<g >
<title>java/io/FileOutputStream:::write (1 samples, 0.15%)</title><rect x="917.7" y="453" width="1.7" height="15.0" fill="rgb(105,251,105)" rx="2" ry="2" />
<text x="920.69" y="463.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.30%)</title><rect x="238.7" y="469" width="3.5" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="241.67" y="479.5" ></text>
</g>
<g >
<title>org/dspace/discovery/SolrServiceResourceRestrictionPlugin:::additionalIndex (92 samples, 13.61%)</title><rect x="987.5" y="565" width="160.6" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text x="990.51" y="575.5" >org/dspace/discovery..</text>
</g>
<g >
<title>[libjvm.so] (7 samples, 1.04%)</title><rect x="1177.8" y="901" width="12.2" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="1180.78" y="911.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEverythingToExecutions (68 samples, 10.06%)</title><rect x="704.7" y="501" width="118.7" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text x="707.73" y="511.5" >org/hibernate/..</text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractBeanFactory:::doGetBean (2 samples, 0.30%)</title><rect x="1148.1" y="517" width="3.5" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text x="1151.11" y="527.5" ></text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::isDirty (1 samples, 0.15%)</title><rect x="872.3" y="453" width="1.8" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text x="875.31" y="463.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (34 samples, 5.03%)</title><rect x="44.9" y="821" width="59.4" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="47.91" y="831.5" >futex_..</text>
</g>
<g >
<title>syscall_slow_exit_work (1 samples, 0.15%)</title><rect x="469.1" y="853" width="1.7" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="472.08" y="863.5" ></text>
</g>
<g >
<title>org/hibernate/loader/AbstractEntityJoinWalker:::initAll (1 samples, 0.15%)</title><rect x="1053.8" y="485" width="1.8" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="1056.85" y="495.5" ></text>
</g>
<g >
<title>org/apache/http/impl/io/SocketInputBuffer:::isDataAvailable (2 samples, 0.30%)</title><rect x="966.6" y="437" width="3.5" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="969.57" y="447.5" ></text>
</g>
<g >
<title>itable stub (2 samples, 0.30%)</title><rect x="867.1" y="469" width="3.5" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="870.07" y="479.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEverythingToExecutions (17 samples, 2.51%)</title><rect x="544.1" y="469" width="29.7" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="547.14" y="479.5" >or..</text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.30%)</title><rect x="238.7" y="485" width="3.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="241.67" y="495.5" ></text>
</g>
<g >
<title>__ext4_get_inode_loc (1 samples, 0.15%)</title><rect x="945.6" y="37" width="1.8" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" />
<text x="948.62" y="47.5" ></text>
</g>
<g >
<title>org/hibernate/type/EntityType:::nullSafeGet (1 samples, 0.15%)</title><rect x="936.9" y="421" width="1.7" height="15.0" fill="rgb(82,230,82)" rx="2" ry="2" />
<text x="939.89" y="431.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="1167.3" y="325" width="1.8" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="1170.31" y="335.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.15%)</title><rect x="102.5" y="741" width="1.8" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="105.51" y="751.5" ></text>
</g>
<g >
<title>org/hibernate/loader/JoinWalker:::selectString (1 samples, 0.15%)</title><rect x="1053.8" y="453" width="1.8" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="1056.85" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushCollections (2 samples, 0.30%)</title><rect x="851.4" y="501" width="3.5" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="854.36" y="511.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/RequestWrapper:::getRequestLine (1 samples, 0.15%)</title><rect x="1162.1" y="437" width="1.7" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="1165.07" y="447.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupTail:::match (1 samples, 0.15%)</title><rect x="980.5" y="373" width="1.8" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text x="983.53" y="383.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::loadCollection (1 samples, 0.15%)</title><rect x="933.4" y="341" width="1.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="936.40" y="351.5" ></text>
</g>
<g >
<title>finish_task_switch (4 samples, 0.59%)</title><rect x="352.1" y="773" width="7.0" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="355.13" y="783.5" ></text>
</g>
<g >
<title>org/dspace/browse/BrowseIndex:::&lt;init&gt; (1 samples, 0.15%)</title><rect x="980.5" y="549" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="983.53" y="559.5" ></text>
</g>
<g >
<title>org/hibernate/context/internal/ThreadLocalSessionContext$TransactionProtectionWrapper:::invoke (83 samples, 12.28%)</title><rect x="704.7" y="549" width="144.9" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="707.73" y="559.5" >org/hibernate/cont..</text>
</g>
<g >
<title>org/dspace/content/DSpaceObjectServiceImpl:::getMetadata (7 samples, 1.04%)</title><rect x="919.4" y="565" width="12.3" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="922.44" y="575.5" ></text>
</g>
<g >
<title>org/dspace/servicemanager/DSpaceServiceManager:::configureService (2 samples, 0.30%)</title><rect x="1148.1" y="437" width="3.5" height="15.0" fill="rgb(88,234,88)" rx="2" ry="2" />
<text x="1151.11" y="447.5" ></text>
</g>
<g >
<title>java/lang/String:::intern (1 samples, 0.15%)</title><rect x="1052.1" y="469" width="1.7" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="1055.10" y="479.5" ></text>
</g>
<g >
<title>org/dspace/content/Bundle:::getBitstreams (1 samples, 0.15%)</title><rect x="936.9" y="533" width="1.7" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="939.89" y="543.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/StatefulPersistenceContext:::reassociateIfUninitializedProxy (2 samples, 0.30%)</title><rect x="1060.8" y="405" width="3.5" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text x="1063.83" y="415.5" ></text>
</g>
<g >
<title>__audit_syscall_entry (1 samples, 0.15%)</title><rect x="350.4" y="837" width="1.7" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="353.38" y="847.5" ></text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::isDirty (64 samples, 9.47%)</title><rect x="591.3" y="501" width="111.7" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text x="594.27" y="511.5" >org/hibernate..</text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEntities (6 samples, 0.89%)</title><rect x="1135.9" y="453" width="10.5" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text x="1138.89" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/type/AbstractStandardBasicType:::isDirty (1 samples, 0.15%)</title><rect x="748.4" y="437" width="1.7" height="15.0" fill="rgb(59,209,59)" rx="2" ry="2" />
<text x="751.37" y="447.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (8 samples, 1.18%)</title><rect x="271.8" y="821" width="14.0" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text x="274.83" y="831.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.44%)</title><rect x="359.1" y="837" width="5.2" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text x="362.11" y="847.5" ></text>
</g>
<g >
<title>Interpreter (372 samples, 55.03%)</title><rect x="528.4" y="613" width="649.4" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text x="531.43" y="623.5" >Interpreter</text>
</g>
<g >
<title>newidle_balance (1 samples, 0.15%)</title><rect x="462.1" y="757" width="1.7" height="15.0" fill="rgb(208,63,63)" rx="2" ry="2" />
<text x="465.10" y="767.5" ></text>
</g>
<g >
<title>itable stub (5 samples, 0.74%)</title><rect x="992.8" y="453" width="8.7" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="995.75" y="463.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (32 samples, 4.73%)</title><rect x="46.7" y="757" width="55.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="49.66" y="767.5" >__per..</text>
</g>
<g >
<title>org/dspace/core/Context:::uncacheEntity (220 samples, 32.54%)</title><rect x="528.4" y="597" width="384.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="531.43" y="607.5" >org/dspace/core/Context:::uncacheEntity</text>
</g>
<g >
<title>schedule (4 samples, 0.59%)</title><rect x="1169.1" y="261" width="6.9" height="15.0" fill="rgb(204,57,57)" rx="2" ry="2" />
<text x="1172.05" y="271.5" ></text>
</g>
<g >
<title>org/dspace/core/HibernateDBConnection:::uncacheEntity (53 samples, 7.84%)</title><rect x="1055.6" y="549" width="92.5" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text x="1058.59" y="559.5" >org/dspace/..</text>
</g>
<g >
<title>java/io/PrintWriter:::write (1 samples, 0.15%)</title><rect x="947.4" y="277" width="1.7" height="15.0" fill="rgb(71,219,71)" rx="2" ry="2" />
<text x="950.37" y="287.5" ></text>
</g>
<g >
<title>hid_report_raw_event (1 samples, 0.15%)</title><rect x="1113.2" y="293" width="1.7" height="15.0" fill="rgb(213,70,70)" rx="2" ry="2" />
<text x="1116.20" y="303.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.44%)</title><rect x="236.9" y="597" width="5.3" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="239.92" y="607.5" ></text>
</g>
<g >
<title>org/dspace/servicemanager/config/DSpaceConfigurationService:::getPropertyKeys (2 samples, 0.30%)</title><rect x="1148.1" y="421" width="3.5" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text x="1151.11" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEverythingToExecutions (25 samples, 3.70%)</title><rect x="849.6" y="517" width="43.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="852.62" y="527.5" >org/..</text>
</g>
<g >
<title>sun/reflect/UnsafeObjectFieldAccessorImpl:::get (1 samples, 0.15%)</title><rect x="1144.6" y="437" width="1.8" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="1147.62" y="447.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/HierarchicalConfiguration:::containsKey (3 samples, 0.44%)</title><rect x="982.3" y="533" width="5.2" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text x="985.28" y="543.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match (1 samples, 0.15%)</title><rect x="980.5" y="517" width="1.8" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text x="983.53" y="527.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::dirtyCheck (3 samples, 0.44%)</title><rect x="1099.2" y="437" width="5.3" height="15.0" fill="rgb(95,242,95)" rx="2" ry="2" />
<text x="1102.23" y="447.5" ></text>
</g>
<g >
<title>org/dspace/discovery/SolrServiceImpl:::writeDocument (15 samples, 2.22%)</title><rect x="943.9" y="565" width="26.2" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text x="946.88" y="575.5" >o..</text>
</g>
<g >
<title>pick_next_task_fair (1 samples, 0.15%)</title><rect x="462.1" y="773" width="1.7" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="465.10" y="783.5" ></text>
</g>
<g >
<title>[libjvm.so] (79 samples, 11.69%)</title><rect x="106.0" y="869" width="137.9" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="109.01" y="879.5" >[libjvm.so]</text>
</g>
<g >
<title>ip_finish_output2 (1 samples, 0.15%)</title><rect x="472.6" y="757" width="1.7" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="475.57" y="767.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::getOrphans (1 samples, 0.15%)</title><rect x="1074.8" y="405" width="1.7" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text x="1077.79" y="415.5" ></text>
</g>
<g >
<title>org/apache/log4j/WriterAppender:::append (3 samples, 0.44%)</title><rect x="945.6" y="373" width="5.3" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text x="948.62" y="383.5" ></text>
</g>
<g >
<title>[libjvm.so] (16 samples, 2.37%)</title><rect x="216.0" y="709" width="27.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="218.98" y="719.5" >[..</text>
</g>
<g >
<title>sun/reflect/UnsafeObjectFieldAccessorImpl:::get (3 samples, 0.44%)</title><rect x="818.2" y="453" width="5.2" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text x="821.20" y="463.5" ></text>
</g>
<g >
<title>__mark_inode_dirty (1 samples, 0.15%)</title><rect x="945.6" y="101" width="1.8" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="948.62" y="111.5" ></text>
</g>
<g >
<title>[libjvm.so] (79 samples, 11.69%)</title><rect x="106.0" y="901" width="137.9" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text x="109.01" y="911.5" >[libjvm.so]</text>
</g>
<g >
<title>org/hibernate/loader/Loader:::doQueryAndInitializeNonLazyCollections (1 samples, 0.15%)</title><rect x="936.9" y="469" width="1.7" height="15.0" fill="rgb(101,246,101)" rx="2" ry="2" />
<text x="939.89" y="479.5" ></text>
</g>
<g >
<title>tcp_current_mss (1 samples, 0.15%)</title><rect x="524.9" y="789" width="1.8" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text x="527.94" y="799.5" ></text>
</g>
<g >
<title>update_process_times (1 samples, 0.15%)</title><rect x="514.5" y="357" width="1.7" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text x="517.47" y="367.5" ></text>
</g>
<g >
<title>org/hibernate/internal/CriteriaImpl:::isLookupByNaturalKey (1 samples, 0.15%)</title><rect x="1048.6" y="501" width="1.8" height="15.0" fill="rgb(107,253,107)" rx="2" ry="2" />
<text x="1051.61" y="511.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.44%)</title><rect x="236.9" y="565" width="5.3" height="15.0" fill="rgb(250,124,124)" rx="2" ry="2" />
<text x="239.92" y="575.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultLoadEventListener:::doLoad (2 samples, 0.30%)</title><rect x="912.5" y="485" width="3.4" height="15.0" fill="rgb(53,202,53)" rx="2" ry="2" />
<text x="915.46" y="495.5" ></text>
</g>
<g >
<title>_register_finalizer_Java (1 samples, 0.15%)</title><rect x="929.9" y="469" width="1.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="932.91" y="479.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (1 samples, 0.15%)</title><rect x="327.7" y="821" width="1.7" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text x="330.69" y="831.5" ></text>
</g>
<g >
<title>org/hibernate/proxy/pojo/javassist/JavassistLazyInitializer:::invoke (1 samples, 0.15%)</title><rect x="737.9" y="421" width="1.7" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text x="740.90" y="431.5" ></text>
</g>
<g >
<title>[unknown] (20 samples, 2.96%)</title><rect x="10.0" y="917" width="34.9" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="13.00" y="927.5" >[u..</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="238.7" y="309" width="1.7" height="15.0" fill="rgb(206,60,60)" rx="2" ry="2" />
<text x="241.67" y="319.5" ></text>
</g>
<g >
<title>org/apache/log4j/DefaultThrowableRenderer:::render (1 samples, 0.15%)</title><rect x="950.9" y="341" width="1.7" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text x="953.86" y="351.5" ></text>
</g>
<g >
<title>syscall_trace_enter (1 samples, 0.15%)</title><rect x="350.4" y="853" width="1.7" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text x="353.38" y="863.5" ></text>
</g>
<g >
<title>vfs_write (1 samples, 0.15%)</title><rect x="945.6" y="197" width="1.8" height="15.0" fill="rgb(207,61,61)" rx="2" ry="2" />
<text x="948.62" y="207.5" ></text>
</g>
<g >
<title>java/lang/Throwable:::printStackTrace (1 samples, 0.15%)</title><rect x="947.4" y="293" width="1.7" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="950.37" y="303.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::execute (5 samples, 0.74%)</title><rect x="1167.3" y="501" width="8.7" height="15.0" fill="rgb(70,219,70)" rx="2" ry="2" />
<text x="1170.31" y="511.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.30%)</title><rect x="238.7" y="357" width="3.5" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="241.67" y="367.5" ></text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::isDirty (1 samples, 0.15%)</title><rect x="1067.8" y="389" width="1.8" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text x="1070.81" y="399.5" ></text>
</g>
<g >
<title>java/util/AbstractMap:::get (4 samples, 0.59%)</title><rect x="971.8" y="501" width="7.0" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text x="974.80" y="511.5" ></text>
</g>
<g >
<title>org/hibernate/type/AbstractStandardBasicType:::isDirty (1 samples, 0.15%)</title><rect x="903.7" y="453" width="1.8" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text x="906.73" y="463.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::executeMethod (3 samples, 0.44%)</title><rect x="964.8" y="517" width="5.3" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text x="967.82" y="527.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.44%)</title><rect x="236.9" y="629" width="5.3" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="239.92" y="639.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::executeMethod (6 samples, 0.89%)</title><rect x="1165.6" y="533" width="10.4" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="1168.56" y="543.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="1052.1" y="421" width="1.7" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="1055.10" y="431.5" ></text>
</g>
<g >
<title>Finalizer (16 samples, 2.37%)</title><rect x="243.9" y="933" width="27.9" height="15.0" fill="rgb(214,70,70)" rx="2" ry="2" />
<text x="246.91" y="943.5" >F..</text>
</g>
<g >
<title>Interpreter (372 samples, 55.03%)</title><rect x="528.4" y="645" width="649.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="531.43" y="655.5" >Interpreter</text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::onFlushEntity (7 samples, 1.04%)</title><rect x="1057.3" y="421" width="12.3" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text x="1060.34" y="431.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (1 samples, 0.15%)</title><rect x="359.1" y="709" width="1.8" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="362.11" y="719.5" ></text>
</g>
<g >
<title>tcp_recvmsg (15 samples, 2.22%)</title><rect x="472.6" y="821" width="26.2" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="475.57" y="831.5" >t..</text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::immediateLoad (2 samples, 0.30%)</title><rect x="912.5" y="549" width="3.4" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text x="915.46" y="559.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="238.7" y="245" width="1.7" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="241.67" y="255.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (16 samples, 2.37%)</title><rect x="294.5" y="741" width="28.0" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="297.53" y="751.5" >_..</text>
</g>
<g >
<title>ipv4_confirm (1 samples, 0.15%)</title><rect x="521.4" y="693" width="1.8" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text x="524.45" y="703.5" ></text>
</g>
<g >
<title>[libjli.so] (372 samples, 55.03%)</title><rect x="528.4" y="901" width="649.4" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="531.43" y="911.5" >[libjli.so]</text>
</g>
<g >
<title>org/hibernate/loader/Loader:::doQueryAndInitializeNonLazyCollections (7 samples, 1.04%)</title><rect x="919.4" y="517" width="12.3" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text x="922.44" y="527.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="238.7" y="277" width="1.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="241.67" y="287.5" ></text>
</g>
<g >
<title>sk_wait_data (14 samples, 2.07%)</title><rect x="474.3" y="805" width="24.5" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="477.32" y="815.5" >s..</text>
</g>
<g >
<title>schedule (18 samples, 2.66%)</title><rect x="292.8" y="805" width="31.4" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="295.78" y="815.5" >sc..</text>
</g>
<g >
<title>java/lang/Throwable:::&lt;init&gt; (1 samples, 0.15%)</title><rect x="1167.3" y="229" width="1.8" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text x="1170.31" y="239.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp2/DelegatingConnection:::prepareStatement (1 samples, 0.15%)</title><rect x="929.9" y="485" width="1.8" height="15.0" fill="rgb(58,208,58)" rx="2" ry="2" />
<text x="932.91" y="495.5" ></text>
</g>
<g >
<title>java/io/SequenceInputStream:::nextStream (4 samples, 0.59%)</title><rect x="945.6" y="517" width="7.0" height="15.0" fill="rgb(92,238,92)" rx="2" ry="2" />
<text x="948.62" y="527.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="1167.3" y="149" width="1.8" height="15.0" fill="rgb(204,55,55)" rx="2" ry="2" />
<text x="1170.31" y="159.5" ></text>
</g>
<g >
<title>syscall_trace_enter (1 samples, 0.15%)</title><rect x="498.8" y="869" width="1.7" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="501.76" y="879.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.15%)</title><rect x="514.5" y="437" width="1.7" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="517.47" y="447.5" ></text>
</g>
<g >
<title>org/apache/log4j/DefaultThrowableRenderer:::render (1 samples, 0.15%)</title><rect x="947.4" y="325" width="1.7" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text x="950.37" y="335.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.44%)</title><rect x="324.2" y="869" width="5.2" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" />
<text x="327.20" y="879.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.15%)</title><rect x="895.0" y="469" width="1.7" height="15.0" fill="rgb(204,55,55)" rx="2" ry="2" />
<text x="898.00" y="479.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (19 samples, 2.81%)</title><rect x="10.0" y="821" width="33.2" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text x="13.00" y="831.5" >fu..</text>
</g>
<g >
<title>JVM_InvokeMethod (372 samples, 55.03%)</title><rect x="528.4" y="725" width="649.4" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="531.43" y="735.5" >JVM_InvokeMethod</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="1153.3" y="437" width="1.8" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="1156.34" y="447.5" ></text>
</g>
<g >
<title>ip_local_deliver (3 samples, 0.44%)</title><rect x="511.0" y="565" width="5.2" height="15.0" fill="rgb(208,62,62)" rx="2" ry="2" />
<text x="513.98" y="575.5" ></text>
</g>
<g >
<title>org/hibernate/context/internal/ThreadLocalSessionContext$TransactionProtectionWrapper:::invoke (10 samples, 1.48%)</title><rect x="573.8" y="517" width="17.5" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="576.82" y="527.5" ></text>
</g>
<g >
<title>ctx_sched_in (1 samples, 0.15%)</title><rect x="460.4" y="741" width="1.7" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="463.36" y="751.5" ></text>
</g>
<g >
<title>Interpreter (372 samples, 55.03%)</title><rect x="528.4" y="757" width="649.4" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text x="531.43" y="767.5" >Interpreter</text>
</g>
<g >
<title>org/hibernate/type/AbstractStandardBasicType:::isCollectionType (1 samples, 0.15%)</title><rect x="1025.9" y="453" width="1.8" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="1028.92" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::prepareCollectionFlushes (4 samples, 0.59%)</title><rect x="650.6" y="469" width="7.0" height="15.0" fill="rgb(97,243,97)" rx="2" ry="2" />
<text x="653.62" y="479.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="289.3" y="821" width="1.7" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="292.29" y="831.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/util/ClientUtils:::writeXML (2 samples, 0.30%)</title><rect x="961.3" y="453" width="3.5" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="964.33" y="463.5" ></text>
</g>
<g >
<title>do_IRQ (1 samples, 0.15%)</title><rect x="1113.2" y="421" width="1.7" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="1116.20" y="431.5" ></text>
</g>
<g >
<title>futex_wait (18 samples, 2.66%)</title><rect x="292.8" y="837" width="31.4" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="295.78" y="847.5" >fu..</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="940.4" y="421" width="1.7" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text x="943.38" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::isDirty (1 samples, 0.15%)</title><rect x="900.2" y="437" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="903.24" y="447.5" ></text>
</g>
<g >
<title>native_write_msr (1 samples, 0.15%)</title><rect x="359.1" y="645" width="1.8" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="362.11" y="655.5" ></text>
</g>
<g >
<title>event_sched_in.isra.0.part.0 (1 samples, 0.15%)</title><rect x="322.5" y="709" width="1.7" height="15.0" fill="rgb(213,70,70)" rx="2" ry="2" />
<text x="325.46" y="719.5" ></text>
</g>
<g >
<title>org/dspace/authorize/dao/impl/ResourcePolicyDAOImpl:::findByDSoAndAction (39 samples, 5.77%)</title><rect x="987.5" y="549" width="68.1" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text x="990.51" y="559.5" >org/dsp..</text>
</g>
<g >
<title>org/hibernate/loader/Loader:::prepareQueryStatement (1 samples, 0.15%)</title><rect x="929.9" y="501" width="1.8" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text x="932.91" y="511.5" ></text>
</g>
<g >
<title>process_backlog (6 samples, 0.89%)</title><rect x="511.0" y="613" width="10.4" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="513.98" y="623.5" ></text>
</g>
<g >
<title>org/apache/http/impl/entity/EntitySerializer:::serialize (2 samples, 0.30%)</title><rect x="954.3" y="421" width="3.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="957.35" y="431.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/tree/DefaultConfigurationKey$KeyIterator:::nextKey (1 samples, 0.15%)</title><rect x="1156.8" y="501" width="1.8" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text x="1159.83" y="511.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractAutowireCapableBeanFactory:::doCreateBean (2 samples, 0.30%)</title><rect x="1148.1" y="501" width="3.5" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="1151.11" y="511.5" ></text>
</g>
<g >
<title>schedule (56 samples, 8.28%)</title><rect x="367.8" y="805" width="97.8" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="370.84" y="815.5" >schedule</text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.44%)</title><rect x="359.1" y="885" width="5.2" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text x="362.11" y="895.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.15%)</title><rect x="240.4" y="325" width="1.8" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="243.41" y="335.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (1 samples, 0.15%)</title><rect x="242.2" y="645" width="1.7" height="15.0" fill="rgb(211,67,67)" rx="2" ry="2" />
<text x="245.16" y="655.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/StatefulPersistenceContext:::getCollectionEntry (1 samples, 0.15%)</title><rect x="542.4" y="437" width="1.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="545.40" y="447.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.44%)</title><rect x="324.2" y="901" width="5.2" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text x="327.20" y="911.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/FlushVisitor:::processCollection (2 samples, 0.30%)</title><rect x="580.8" y="405" width="3.5" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text x="583.80" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::getOrphans (2 samples, 0.30%)</title><rect x="888.0" y="469" width="3.5" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="891.02" y="479.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.15%)</title><rect x="849.6" y="501" width="1.8" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text x="852.62" y="511.5" ></text>
</g>
<g >
<title>Interpreter (372 samples, 55.03%)</title><rect x="528.4" y="805" width="649.4" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="531.43" y="815.5" >Interpreter</text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match (1 samples, 0.15%)</title><rect x="980.5" y="389" width="1.8" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="983.53" y="399.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="929.9" y="453" width="1.8" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="932.91" y="463.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="238.7" y="197" width="1.7" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="241.67" y="207.5" ></text>
</g>
<g >
<title>group_sched_in (1 samples, 0.15%)</title><rect x="460.4" y="725" width="1.7" height="15.0" fill="rgb(211,67,67)" rx="2" ry="2" />
<text x="463.36" y="735.5" ></text>
</g>
<g >
<title>__fget (1 samples, 0.15%)</title><rect x="505.7" y="821" width="1.8" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="508.74" y="831.5" ></text>
</g>
<g >
<title>__x64_sys_poll (4 samples, 0.59%)</title><rect x="1169.1" y="309" width="6.9" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="1172.05" y="319.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/PersistentBag:::iterator (2 samples, 0.30%)</title><rect x="938.6" y="533" width="3.5" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="941.64" y="543.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (8 samples, 1.18%)</title><rect x="271.8" y="757" width="14.0" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" />
<text x="274.83" y="767.5" ></text>
</g>
<g >
<title>org/hibernate/type/EntityType:::resolve (1 samples, 0.15%)</title><rect x="936.9" y="405" width="1.7" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text x="939.89" y="415.5" ></text>
</g>
<g >
<title>wait_woken (14 samples, 2.07%)</title><rect x="474.3" y="789" width="24.5" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="477.32" y="799.5" >w..</text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.30%)</title><rect x="238.7" y="405" width="3.5" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text x="241.67" y="415.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (12 samples, 1.78%)</title><rect x="329.4" y="741" width="21.0" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text x="332.44" y="751.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (1 samples, 0.15%)</title><rect x="968.3" y="325" width="1.8" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text x="971.31" y="335.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.30%)</title><rect x="238.7" y="437" width="3.5" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="241.67" y="447.5" ></text>
</g>
<g >
<title>preempt_count_sub.constprop.0 (1 samples, 0.15%)</title><rect x="463.8" y="789" width="1.8" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text x="466.85" y="799.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::dirtyCheck (4 samples, 0.59%)</title><rect x="624.4" y="437" width="7.0" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="627.44" y="447.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (4 samples, 0.59%)</title><rect x="1169.1" y="213" width="6.9" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="1172.05" y="223.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::getOrphans (2 samples, 0.30%)</title><rect x="909.0" y="453" width="3.5" height="15.0" fill="rgb(65,213,65)" rx="2" ry="2" />
<text x="911.96" y="463.5" ></text>
</g>
<g >
<title>org/dspace/discovery/FullTextContentStreams$FullTextEnumeration:::nextElement (4 samples, 0.59%)</title><rect x="945.6" y="485" width="7.0" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="948.62" y="495.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.15%)</title><rect x="359.1" y="757" width="1.8" height="15.0" fill="rgb(210,64,64)" rx="2" ry="2" />
<text x="362.11" y="767.5" ></text>
</g>
<g >
<title>org/apache/log4j/Category:::info (1 samples, 0.15%)</title><rect x="917.7" y="565" width="1.7" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text x="920.69" y="575.5" ></text>
</g>
<g >
<title>start_thread (3 samples, 0.44%)</title><rect x="359.1" y="917" width="5.2" height="15.0" fill="rgb(205,57,57)" rx="2" ry="2" />
<text x="362.11" y="927.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::prepareCollectionFlushes (1 samples, 0.15%)</title><rect x="584.3" y="437" width="1.7" height="15.0" fill="rgb(105,251,105)" rx="2" ry="2" />
<text x="587.29" y="447.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (1 samples, 0.15%)</title><rect x="509.2" y="693" width="1.8" height="15.0" fill="rgb(203,54,54)" rx="2" ry="2" />
<text x="512.23" y="703.5" ></text>
</g>
<g >
<title>vtable stub (1 samples, 0.15%)</title><rect x="683.8" y="453" width="1.7" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="686.79" y="463.5" ></text>
</g>
<g >
<title>call_stub (1 samples, 0.15%)</title><rect x="929.9" y="405" width="1.8" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="932.91" y="415.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (12 samples, 1.78%)</title><rect x="243.9" y="821" width="21.0" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="246.91" y="831.5" ></text>
</g>
<g >
<title>VM_Thread (20 samples, 2.96%)</title><rect x="329.4" y="933" width="34.9" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="332.44" y="943.5" >VM..</text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor16:::invoke (8 samples, 1.18%)</title><rect x="530.2" y="533" width="13.9" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="533.18" y="543.5" ></text>
</g>
<g >
<title>org/dspace/eperson/Group_$$_jvst722_1e:::getHibernateLazyInitializer (2 samples, 0.30%)</title><rect x="736.2" y="437" width="3.4" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="739.15" y="447.5" ></text>
</g>
<g >
<title>schedule (34 samples, 5.03%)</title><rect x="44.9" y="805" width="59.4" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="47.91" y="815.5" >schedule</text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultLoadEventListener:::loadFromDatasource (2 samples, 0.30%)</title><rect x="912.5" y="469" width="3.4" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text x="915.46" y="479.5" ></text>
</g>
<g >
<title>__sys_sendto (14 samples, 2.07%)</title><rect x="504.0" y="853" width="24.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="506.99" y="863.5" >_..</text>
</g>
<g >
<title>org/apache/http/entity/mime/FormBodyPart:::&lt;init&gt; (1 samples, 0.15%)</title><rect x="943.9" y="533" width="1.7" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="946.88" y="543.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (5 samples, 0.74%)</title><rect x="1167.3" y="421" width="8.7" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text x="1170.31" y="431.5" ></text>
</g>
<g >
<title>java/nio/charset/Charset:::lookup (1 samples, 0.15%)</title><rect x="1163.8" y="501" width="1.8" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="1166.82" y="511.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (13 samples, 1.92%)</title><rect x="329.4" y="885" width="22.7" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="332.44" y="895.5" >e..</text>
</g>
<g >
<title>[libjvm.so] (372 samples, 55.03%)</title><rect x="528.4" y="885" width="649.4" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="531.43" y="895.5" >[libjvm.so]</text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEntities (18 samples, 2.66%)</title><rect x="854.9" y="501" width="31.4" height="15.0" fill="rgb(82,230,82)" rx="2" ry="2" />
<text x="857.85" y="511.5" >or..</text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::onFlushEntity (7 samples, 1.04%)</title><rect x="828.7" y="453" width="12.2" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text x="831.67" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/engine/spi/CascadeStyle:::hasOrphanDelete (1 samples, 0.15%)</title><rect x="813.0" y="453" width="1.7" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="815.96" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEntities (11 samples, 1.63%)</title><rect x="823.4" y="469" width="19.2" height="15.0" fill="rgb(54,204,54)" rx="2" ry="2" />
<text x="826.43" y="479.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::dirtyCheck (1 samples, 0.15%)</title><rect x="697.8" y="421" width="1.7" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text x="700.75" y="431.5" ></text>
</g>
<g >
<title>do_syscall_64 (34 samples, 5.03%)</title><rect x="44.9" y="869" width="59.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="47.91" y="879.5" >do_sys..</text>
</g>
<g >
<title>tcp_rcv_established (2 samples, 0.30%)</title><rect x="512.7" y="501" width="3.5" height="15.0" fill="rgb(239,108,108)" rx="2" ry="2" />
<text x="515.72" y="511.5" ></text>
</g>
<g >
<title>call_stub (1 samples, 0.15%)</title><rect x="289.3" y="789" width="1.7" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text x="292.29" y="799.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultEvictEventListener:::doEvict (1 samples, 0.15%)</title><rect x="528.4" y="469" width="1.8" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text x="531.43" y="479.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (1 samples, 0.15%)</title><rect x="10.0" y="805" width="1.7" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="13.00" y="815.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/AbstractHttpClient:::doExecute (6 samples, 0.89%)</title><rect x="1165.6" y="517" width="10.4" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text x="1168.56" y="527.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor16:::invoke (36 samples, 5.33%)</title><rect x="849.6" y="549" width="62.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text x="852.62" y="559.5" >sun/re..</text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::dirtyCheck (1 samples, 0.15%)</title><rect x="833.9" y="437" width="1.8" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text x="836.91" y="447.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="238.7" y="261" width="1.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="241.67" y="271.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::request (7 samples, 1.04%)</title><rect x="1163.8" y="549" width="12.2" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="1166.82" y="559.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::doQueryAndInitializeNonLazyCollections (1 samples, 0.15%)</title><rect x="703.0" y="517" width="1.7" height="15.0" fill="rgb(80,227,80)" rx="2" ry="2" />
<text x="705.99" y="527.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::prepareEntityFlushes (1 samples, 0.15%)</title><rect x="542.4" y="469" width="1.7" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="545.40" y="479.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (13 samples, 1.92%)</title><rect x="329.4" y="901" width="22.7" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="332.44" y="911.5" >p..</text>
</g>
<g >
<title>org/hibernate/loader/Loader:::loadEntity (2 samples, 0.30%)</title><rect x="912.5" y="421" width="3.4" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="915.46" y="431.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/AbstractMultipartForm:::doWriteTo (2 samples, 0.30%)</title><rect x="954.3" y="373" width="3.5" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text x="957.35" y="383.5" ></text>
</g>
<g >
<title>org/hibernate/loader/BasicLoader:::postInstantiate (1 samples, 0.15%)</title><rect x="1052.1" y="501" width="1.7" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="1055.10" y="511.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::withTemporarySessionIfNeeded (1 samples, 0.15%)</title><rect x="703.0" y="533" width="1.7" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="705.99" y="543.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (4 samples, 0.59%)</title><rect x="352.1" y="757" width="7.0" height="15.0" fill="rgb(248,121,121)" rx="2" ry="2" />
<text x="355.13" y="767.5" ></text>
</g>
<g >
<title>do_mprotect_pkey (2 samples, 0.30%)</title><rect x="360.9" y="757" width="3.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="363.86" y="767.5" ></text>
</g>
<g >
<title>JVM_IHashCode (1 samples, 0.15%)</title><rect x="919.4" y="453" width="1.8" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="922.44" y="463.5" ></text>
</g>
<g >
<title>itable stub (2 samples, 0.30%)</title><rect x="533.7" y="437" width="3.5" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="536.67" y="447.5" ></text>
</g>
<g >
<title>org/apache/log4j/Category:::callAppenders (3 samples, 0.44%)</title><rect x="945.6" y="421" width="5.3" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text x="948.62" y="431.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="1052.1" y="437" width="1.7" height="15.0" fill="rgb(252,127,127)" rx="2" ry="2" />
<text x="1055.10" y="447.5" ></text>
</g>
<g >
<title>__x64_sys_sendto (14 samples, 2.07%)</title><rect x="504.0" y="869" width="24.4" height="15.0" fill="rgb(205,58,58)" rx="2" ry="2" />
<text x="506.99" y="879.5" >_..</text>
</g>
<g >
<title>java/lang/Throwable:::printStackTrace (1 samples, 0.15%)</title><rect x="950.9" y="325" width="1.7" height="15.0" fill="rgb(82,230,82)" rx="2" ry="2" />
<text x="953.86" y="335.5" ></text>
</g>
<g >
<title>call_stub (3 samples, 0.44%)</title><rect x="266.6" y="789" width="5.2" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="269.60" y="799.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irq (1 samples, 0.15%)</title><rect x="102.5" y="757" width="1.8" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text x="105.51" y="767.5" ></text>
</g>
<g >
<title>do_syscall_64 (1 samples, 0.15%)</title><rect x="287.5" y="885" width="1.8" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="290.54" y="895.5" ></text>
</g>
<g >
<title>[libjvm.so] (7 samples, 1.04%)</title><rect x="1177.8" y="885" width="12.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1180.78" y="895.5" ></text>
</g>
<g >
<title>finish_task_switch (17 samples, 2.51%)</title><rect x="11.7" y="773" width="29.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="14.75" y="783.5" >fi..</text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.44%)</title><rect x="266.6" y="885" width="5.2" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="269.60" y="895.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp2/DelegatingConnection:::prepareStatement (1 samples, 0.15%)</title><rect x="940.4" y="469" width="1.7" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text x="943.38" y="479.5" ></text>
</g>
<g >
<title>__schedule (34 samples, 5.03%)</title><rect x="44.9" y="789" width="59.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="47.91" y="799.5" >__sche..</text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::createMethod (5 samples, 0.74%)</title><rect x="943.9" y="549" width="8.7" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="946.88" y="559.5" ></text>
</g>
<g >
<title>__x64_sys_mprotect (2 samples, 0.30%)</title><rect x="360.9" y="773" width="3.4" height="15.0" fill="rgb(222,82,82)" rx="2" ry="2" />
<text x="363.86" y="783.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (1 samples, 0.15%)</title><rect x="469.1" y="837" width="1.7" height="15.0" fill="rgb(226,87,87)" rx="2" ry="2" />
<text x="472.08" y="847.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.15%)</title><rect x="947.4" y="261" width="1.7" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="950.37" y="271.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (2 samples, 0.30%)</title><rect x="512.7" y="517" width="3.5" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
<text x="515.72" y="527.5" ></text>
</g>
<g >
<title>org/hibernate/proxy/pojo/javassist/JavassistLazyInitializer:::invoke (2 samples, 0.30%)</title><rect x="912.5" y="565" width="3.4" height="15.0" fill="rgb(69,218,69)" rx="2" ry="2" />
<text x="915.46" y="575.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractAutowireCapableBeanFactory:::applyBeanPostProcessorsBeforeInitialization (2 samples, 0.30%)</title><rect x="1148.1" y="469" width="3.5" height="15.0" fill="rgb(94,241,94)" rx="2" ry="2" />
<text x="1151.11" y="479.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEntities (7 samples, 1.04%)</title><rect x="895.0" y="485" width="12.2" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="898.00" y="495.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="1167.3" y="133" width="1.8" height="15.0" fill="rgb(221,80,80)" rx="2" ry="2" />
<text x="1170.31" y="143.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/Cascade:::cascade (3 samples, 0.44%)</title><rect x="842.6" y="453" width="5.3" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text x="845.63" y="463.5" ></text>
</g>
<g >
<title>org/dspace/app/util/DailyFileAppender:::subAppend (3 samples, 0.44%)</title><rect x="945.6" y="357" width="5.3" height="15.0" fill="rgb(107,253,107)" rx="2" ry="2" />
<text x="948.62" y="367.5" ></text>
</g>
<g >
<title>org/apache/log4j/AppenderSkeleton:::doAppend (1 samples, 0.15%)</title><rect x="950.9" y="405" width="1.7" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text x="953.86" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/FlushVisitor:::processCollection (1 samples, 0.15%)</title><rect x="647.1" y="453" width="1.8" height="15.0" fill="rgb(72,221,72)" rx="2" ry="2" />
<text x="650.13" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushCollections (1 samples, 0.15%)</title><rect x="544.1" y="453" width="1.8" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="547.14" y="463.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="359.1" y="821" width="1.8" height="15.0" fill="rgb(202,54,54)" rx="2" ry="2" />
<text x="362.11" y="831.5" ></text>
</g>
<g >
<title>__usb_hcd_giveback_urb (1 samples, 0.15%)</title><rect x="1113.2" y="341" width="1.7" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="1116.20" y="351.5" ></text>
</g>
<g >
<title>call_stub (372 samples, 55.03%)</title><rect x="528.4" y="837" width="649.4" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="531.43" y="847.5" >call_stub</text>
</g>
<g >
<title>native_write_msr (4 samples, 0.59%)</title><rect x="352.1" y="725" width="7.0" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text x="355.13" y="735.5" ></text>
</g>
<g >
<title>JVM_FillInStackTrace (1 samples, 0.15%)</title><rect x="1167.3" y="165" width="1.8" height="15.0" fill="rgb(212,68,68)" rx="2" ry="2" />
<text x="1170.31" y="175.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="940.4" y="437" width="1.7" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="943.38" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/StatefulPersistenceContext:::getCollectionEntry (1 samples, 0.15%)</title><rect x="811.2" y="453" width="1.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="814.21" y="463.5" ></text>
</g>
<g >
<title>__x64_sys_futex (56 samples, 8.28%)</title><rect x="367.8" y="853" width="97.8" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="370.84" y="863.5" >__x64_sys_f..</text>
</g>
<g >
<title>org/hibernate/type/descriptor/sql/BasicExtractor:::extract (1 samples, 0.15%)</title><rect x="914.2" y="341" width="1.7" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text x="917.20" y="351.5" ></text>
</g>
<g >
<title>do_syscall_64 (18 samples, 2.66%)</title><rect x="292.8" y="869" width="31.4" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text x="295.78" y="879.5" >do..</text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.44%)</title><rect x="236.9" y="613" width="5.3" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="239.92" y="623.5" ></text>
</g>
<g >
<title>__x64_sys_write (1 samples, 0.15%)</title><rect x="917.7" y="341" width="1.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="920.69" y="351.5" ></text>
</g>
<g >
<title>schedule (8 samples, 1.18%)</title><rect x="271.8" y="805" width="14.0" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="274.83" y="815.5" ></text>
</g>
<g >
<title>Interpreter (372 samples, 55.03%)</title><rect x="528.4" y="741" width="649.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="531.43" y="751.5" >Interpreter</text>
</g>
<g >
<title>org/hibernate/loader/Loader:::loadCollection (1 samples, 0.15%)</title><rect x="942.1" y="485" width="1.8" height="15.0" fill="rgb(82,230,82)" rx="2" ry="2" />
<text x="945.13" y="495.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/CombinedConfiguration:::fetchNodeList (3 samples, 0.44%)</title><rect x="982.3" y="517" width="5.2" height="15.0" fill="rgb(105,251,105)" rx="2" ry="2" />
<text x="985.28" y="527.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::withTemporarySessionIfNeeded (1 samples, 0.15%)</title><rect x="935.1" y="453" width="1.8" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
<text x="938.15" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/persister/entity/AbstractEntityPersister:::hydrate (1 samples, 0.15%)</title><rect x="942.1" y="437" width="1.8" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text x="945.13" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/Cascade:::cascade (8 samples, 1.18%)</title><rect x="1120.2" y="453" width="13.9" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text x="1123.18" y="463.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="289.3" y="853" width="1.7" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text x="292.29" y="863.5" ></text>
</g>
<g >
<title>java/io/FileOutputStream:::writeBytes (1 samples, 0.15%)</title><rect x="917.7" y="437" width="1.7" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="920.69" y="447.5" ></text>
</g>
<g >
<title>ctx_sched_in (2 samples, 0.30%)</title><rect x="495.3" y="693" width="3.5" height="15.0" fill="rgb(208,63,63)" rx="2" ry="2" />
<text x="498.27" y="703.5" ></text>
</g>
<g >
<title>org/apache/log4j/helpers/AppenderAttachableImpl:::appendLoopOnAppenders (1 samples, 0.15%)</title><rect x="917.7" y="533" width="1.7" height="15.0" fill="rgb(63,212,63)" rx="2" ry="2" />
<text x="920.69" y="543.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEverythingToExecutions (10 samples, 1.48%)</title><rect x="573.8" y="453" width="17.5" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text x="576.82" y="463.5" ></text>
</g>
<g >
<title>org/apache/log4j/WriterAppender:::subAppend (1 samples, 0.15%)</title><rect x="950.9" y="357" width="1.7" height="15.0" fill="rgb(90,236,90)" rx="2" ry="2" />
<text x="953.86" y="367.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy40:::isDirty (10 samples, 1.48%)</title><rect x="573.8" y="533" width="17.5" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="576.82" y="543.5" ></text>
</g>
<g >
<title>org/hibernate/type/descriptor/sql/TimestampTypeDescriptor$2:::doExtract (1 samples, 0.15%)</title><rect x="914.2" y="325" width="1.7" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="917.20" y="335.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::setOwner (1 samples, 0.15%)</title><rect x="898.5" y="453" width="1.7" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text x="901.49" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/Cascade:::cascade (1 samples, 0.15%)</title><rect x="528.4" y="453" width="1.8" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="531.43" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/PersistentList:::toArray (1 samples, 0.15%)</title><rect x="936.9" y="501" width="1.7" height="15.0" fill="rgb(107,253,107)" rx="2" ry="2" />
<text x="939.89" y="511.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.15%)</title><rect x="514.5" y="421" width="1.7" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="517.47" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/Cascade:::cascade (1 samples, 0.15%)</title><rect x="1146.4" y="437" width="1.7" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="1149.36" y="447.5" ></text>
</g>
<g >
<title>__x86_indirect_thunk_rax (1 samples, 0.15%)</title><rect x="500.5" y="901" width="1.7" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="503.50" y="911.5" ></text>
</g>
<g >
<title>org/apache/solr/common/util/XML:::escape (2 samples, 0.30%)</title><rect x="961.3" y="421" width="3.5" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text x="964.33" y="431.5" ></text>
</g>
<g >
<title>net_rx_action (6 samples, 0.89%)</title><rect x="511.0" y="629" width="10.4" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="513.98" y="639.5" ></text>
</g>
<g >
<title>org/apache/http/impl/conn/ManagedClientConnectionImpl:::isStale (2 samples, 0.30%)</title><rect x="966.6" y="469" width="3.5" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" />
<text x="969.57" y="479.5" ></text>
</g>
<g >
<title>sun/reflect/UnsafeObjectFieldAccessorImpl:::get (1 samples, 0.15%)</title><rect x="563.3" y="421" width="1.8" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="566.34" y="431.5" ></text>
</g>
<g >
<title>org/dspace/content/DSpaceObjectServiceImpl:::getMetadataFirstValue (1 samples, 0.15%)</title><rect x="933.4" y="389" width="1.7" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" />
<text x="936.40" y="399.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="1167.3" y="277" width="1.8" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="1170.31" y="287.5" ></text>
</g>
<g >
<title>org/dspace/core/HibernateDBConnection:::uncacheEntity (220 samples, 32.54%)</title><rect x="528.4" y="581" width="384.1" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text x="531.43" y="591.5" >org/dspace/core/HibernateDBConnection:::uncacheEntity</text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor16:::invoke (10 samples, 1.48%)</title><rect x="573.8" y="501" width="17.5" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="576.82" y="511.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="327.7" y="837" width="1.7" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="330.69" y="847.5" ></text>
</g>
<g >
<title>org/hibernate/persister/entity/AbstractEntityPersister:::propertySelectFragmentFragment (1 samples, 0.15%)</title><rect x="1053.8" y="421" width="1.8" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text x="1056.85" y="431.5" ></text>
</g>
<g >
<title>ipv4_conntrack_defrag (1 samples, 0.15%)</title><rect x="516.2" y="549" width="1.8" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="519.21" y="559.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::prepareEntityFlushes (15 samples, 2.22%)</title><rect x="797.2" y="485" width="26.2" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text x="800.25" y="495.5" >o..</text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.30%)</title><rect x="238.7" y="421" width="3.5" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="241.67" y="431.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="966.6" y="341" width="1.7" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="969.57" y="351.5" ></text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::isDirty (1 samples, 0.15%)</title><rect x="772.8" y="453" width="1.8" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="775.81" y="463.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (16 samples, 2.37%)</title><rect x="13.5" y="741" width="27.9" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="16.49" y="751.5" >_..</text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::isCollectionType (1 samples, 0.15%)</title><rect x="1109.7" y="437" width="1.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="1112.70" y="447.5" ></text>
</g>
<g >
<title>start_thread (3 samples, 0.44%)</title><rect x="266.6" y="917" width="5.2" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text x="269.60" y="927.5" ></text>
</g>
<g >
<title>org/apache/log4j/WriterAppender:::append (1 samples, 0.15%)</title><rect x="917.7" y="501" width="1.7" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text x="920.69" y="511.5" ></text>
</g>
<g >
<title>[libjvm.so] (79 samples, 11.69%)</title><rect x="106.0" y="885" width="137.9" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="109.01" y="895.5" >[libjvm.so]</text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::onFlushEntity (40 samples, 5.92%)</title><rect x="715.2" y="469" width="69.8" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="718.21" y="479.5" >org/hib..</text>
</g>
<g >
<title>__schedule (12 samples, 1.78%)</title><rect x="243.9" y="789" width="21.0" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="246.91" y="799.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (1 samples, 0.15%)</title><rect x="10.0" y="789" width="1.7" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="13.00" y="799.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultDirtyCheckEventListener:::onDirtyCheck (15 samples, 2.22%)</title><rect x="823.4" y="501" width="26.2" height="15.0" fill="rgb(55,204,55)" rx="2" ry="2" />
<text x="826.43" y="511.5" >o..</text>
</g>
<g >
<title>native_write_msr (12 samples, 1.78%)</title><rect x="474.3" y="677" width="21.0" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="477.32" y="687.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/Cascade:::cascade (9 samples, 1.33%)</title><rect x="1032.9" y="453" width="15.7" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text x="1035.90" y="463.5" ></text>
</g>
<g >
<title>ip_rcv (6 samples, 0.89%)</title><rect x="511.0" y="581" width="10.4" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="513.98" y="591.5" ></text>
</g>
<g >
<title>schedule (18 samples, 2.66%)</title><rect x="11.7" y="805" width="31.5" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="14.75" y="815.5" >sc..</text>
</g>
<g >
<title>itable stub (1 samples, 0.15%)</title><rect x="1066.1" y="389" width="1.7" height="15.0" fill="rgb(206,58,58)" rx="2" ry="2" />
<text x="1069.07" y="399.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor16:::invoke (83 samples, 12.28%)</title><rect x="704.7" y="533" width="144.9" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="707.73" y="543.5" >sun/reflect/Genera..</text>
</g>
<g >
<title>org/apache/http/impl/AbstractHttpClientConnection:::isStale (2 samples, 0.30%)</title><rect x="966.6" y="453" width="3.5" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text x="969.57" y="463.5" ></text>
</g>
<g >
<title>perf_event_update_userpage (1 samples, 0.15%)</title><rect x="460.4" y="677" width="1.7" height="15.0" fill="rgb(251,124,124)" rx="2" ry="2" />
<text x="463.36" y="687.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (4 samples, 0.59%)</title><rect x="352.1" y="741" width="7.0" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="355.13" y="751.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/request/RequestWriter$LazyContentStream:::getDelegate (2 samples, 0.30%)</title><rect x="961.3" y="501" width="3.5" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text x="964.33" y="511.5" ></text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::listeners (1 samples, 0.15%)</title><rect x="587.8" y="405" width="1.7" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="590.78" y="415.5" ></text>
</g>
<g >
<title>org/dspace/servicemanager/DSpaceServiceManager:::getServicesByType (2 samples, 0.30%)</title><rect x="1148.1" y="565" width="3.5" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="1151.11" y="575.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/FlushVisitor:::processCollection (4 samples, 0.59%)</title><rect x="1015.4" y="437" width="7.0" height="15.0" fill="rgb(102,247,102)" rx="2" ry="2" />
<text x="1018.44" y="447.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy40:::evict (1 samples, 0.15%)</title><rect x="528.4" y="565" width="1.8" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text x="531.43" y="575.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.15%)</title><rect x="1113.2" y="405" width="1.7" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="1116.20" y="415.5" ></text>
</g>
<g >
<title>futex_wait (4 samples, 0.59%)</title><rect x="352.1" y="837" width="7.0" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="355.13" y="847.5" ></text>
</g>
<g >
<title>mprotect_fixup (2 samples, 0.30%)</title><rect x="360.9" y="741" width="3.4" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text x="363.86" y="751.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::prepareCollectionFlushes (2 samples, 0.30%)</title><rect x="793.8" y="485" width="3.4" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text x="796.76" y="495.5" ></text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::checkTransactionSynchStatus (1 samples, 0.15%)</title><rect x="701.2" y="437" width="1.8" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text x="704.24" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/persister/entity/AbstractEntityPersister:::load (2 samples, 0.30%)</title><rect x="912.5" y="453" width="3.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="915.46" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::isDirty (1 samples, 0.15%)</title><rect x="697.8" y="405" width="1.7" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text x="700.75" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultSaveOrUpdateEventListener:::onSaveOrUpdate (2 samples, 0.30%)</title><rect x="1043.4" y="437" width="3.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="1046.37" y="447.5" ></text>
</g>
<g >
<title>java/lang/String:::toLowerCase (1 samples, 0.15%)</title><rect x="915.9" y="565" width="1.8" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text x="918.95" y="575.5" ></text>
</g>
<g >
<title>futex_wait (12 samples, 1.78%)</title><rect x="329.4" y="837" width="21.0" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="332.44" y="847.5" ></text>
</g>
<g >
<title>unlink_anon_vmas (2 samples, 0.30%)</title><rect x="360.9" y="693" width="3.4" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="363.86" y="703.5" ></text>
</g>
<g >
<title>new_sync_write (1 samples, 0.15%)</title><rect x="945.6" y="181" width="1.8" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="948.62" y="191.5" ></text>
</g>
<g >
<title>java/util/AbstractMap:::get (1 samples, 0.15%)</title><rect x="985.8" y="485" width="1.7" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="988.77" y="495.5" ></text>
</g>
<g >
<title>org/apache/http/impl/AbstractHttpClientConnection:::receiveResponseEntity (1 samples, 0.15%)</title><rect x="952.6" y="437" width="1.7" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text x="955.60" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/Cascade:::cascade (1 samples, 0.15%)</title><rect x="542.4" y="453" width="1.7" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="545.40" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::onFlushEntity (13 samples, 1.92%)</title><rect x="860.1" y="485" width="22.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="863.09" y="495.5" >o..</text>
</g>
<g >
<title>tick_sched_timer (1 samples, 0.15%)</title><rect x="359.1" y="693" width="1.8" height="15.0" fill="rgb(217,76,76)" rx="2" ry="2" />
<text x="362.11" y="703.5" ></text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::getEntityUsingInterceptor (1 samples, 0.15%)</title><rect x="936.9" y="373" width="1.7" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text x="939.89" y="383.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::getOrphans (3 samples, 0.44%)</title><rect x="669.8" y="437" width="5.3" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="672.82" y="447.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/MapConfiguration:::getProperty (5 samples, 0.74%)</title><rect x="971.8" y="517" width="8.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="974.80" y="527.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::doQueryAndInitializeNonLazyCollections (1 samples, 0.15%)</title><rect x="942.1" y="469" width="1.8" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text x="945.13" y="479.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc/PgStatement:::executeInternal (1 samples, 0.15%)</title><rect x="912.5" y="357" width="1.7" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text x="915.46" y="367.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::isDirty (1 samples, 0.15%)</title><rect x="622.7" y="437" width="1.7" height="15.0" fill="rgb(91,238,91)" rx="2" ry="2" />
<text x="625.69" y="447.5" ></text>
</g>
<g >
<title>__schedule (8 samples, 1.18%)</title><rect x="271.8" y="789" width="14.0" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text x="274.83" y="799.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/StatefulPersistenceContext:::reassociateIfUninitializedProxy (1 samples, 0.15%)</title><rect x="1097.5" y="437" width="1.7" height="15.0" fill="rgb(90,237,90)" rx="2" ry="2" />
<text x="1100.49" y="447.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (1 samples, 0.15%)</title><rect x="472.6" y="693" width="1.7" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="475.57" y="703.5" ></text>
</g>
<g >
<title>schedule (12 samples, 1.78%)</title><rect x="329.4" y="805" width="21.0" height="15.0" fill="rgb(235,102,102)" rx="2" ry="2" />
<text x="332.44" y="815.5" ></text>
</g>
<g >
<title>ipv4_mtu (1 samples, 0.15%)</title><rect x="524.9" y="773" width="1.8" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="527.94" y="783.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/FlushVisitor:::processCollection (7 samples, 1.04%)</title><rect x="631.4" y="437" width="12.2" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="634.42" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::onFlushEntity (14 samples, 2.07%)</title><rect x="1001.5" y="453" width="24.4" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="1004.48" y="463.5" >o..</text>
</g>
<g >
<title>org/hibernate/internal/SessionFactoryImpl:::getImplementors (2 samples, 0.30%)</title><rect x="987.5" y="517" width="3.5" height="15.0" fill="rgb(89,236,89)" rx="2" ry="2" />
<text x="990.51" y="527.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::onFlushEntity (5 samples, 0.74%)</title><rect x="692.5" y="437" width="8.7" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text x="695.51" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::prepareEntityFlushes (16 samples, 2.37%)</title><rect x="657.6" y="469" width="27.9" height="15.0" fill="rgb(53,203,53)" rx="2" ry="2" />
<text x="660.60" y="479.5" >o..</text>
</g>
<g >
<title>switch_fpu_return (2 samples, 0.30%)</title><rect x="465.6" y="853" width="3.5" height="15.0" fill="rgb(239,106,106)" rx="2" ry="2" />
<text x="468.59" y="863.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultDirtyCheckEventListener:::onDirtyCheck (10 samples, 1.48%)</title><rect x="573.8" y="469" width="17.5" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text x="576.82" y="479.5" ></text>
</g>
<g >
<title>java/lang/Object:::hashCode (2 samples, 0.30%)</title><rect x="1151.6" y="485" width="3.5" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="1154.60" y="495.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::doQueryAndInitializeNonLazyCollections (1 samples, 0.15%)</title><rect x="1050.4" y="485" width="1.7" height="15.0" fill="rgb(56,205,56)" rx="2" ry="2" />
<text x="1053.36" y="495.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (12 samples, 1.78%)</title><rect x="329.4" y="757" width="21.0" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="332.44" y="767.5" ></text>
</g>
<g >
<title>org/dspace/discovery/FullTextContentStreams$FullTextEnumeration:::nextElement (4 samples, 0.59%)</title><rect x="945.6" y="501" width="7.0" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="948.62" y="511.5" ></text>
</g>
<g >
<title>org/apache/log4j/WriterAppender:::append (1 samples, 0.15%)</title><rect x="950.9" y="389" width="1.7" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="953.86" y="399.5" ></text>
</g>
<g >
<title>org/hibernate/loader/entity/AbstractEntityLoader:::load (2 samples, 0.30%)</title><rect x="912.5" y="437" width="3.4" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="915.46" y="447.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupHead:::match (1 samples, 0.15%)</title><rect x="980.5" y="533" width="1.8" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="983.53" y="543.5" ></text>
</g>
<g >
<title>org/dspace/discovery/SolrServiceImpl:::requiresIndexing (2 samples, 0.30%)</title><rect x="1160.3" y="581" width="3.5" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="1163.33" y="591.5" ></text>
</g>
<g >
<title>nft_do_chain (2 samples, 0.30%)</title><rect x="518.0" y="533" width="3.4" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="520.96" y="543.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::initializeEntitiesAndCollections (1 samples, 0.15%)</title><rect x="938.6" y="485" width="1.8" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text x="941.64" y="495.5" ></text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::isCollectionType (1 samples, 0.15%)</title><rect x="1142.9" y="421" width="1.7" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text x="1145.87" y="431.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (2 samples, 0.30%)</title><rect x="966.6" y="373" width="3.5" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text x="969.57" y="383.5" ></text>
</g>
<g >
<title>file_modified (1 samples, 0.15%)</title><rect x="945.6" y="133" width="1.8" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="948.62" y="143.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::setCurrentSession (1 samples, 0.15%)</title><rect x="826.9" y="453" width="1.8" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="829.92" y="463.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="359.1" y="773" width="1.8" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="362.11" y="783.5" ></text>
</g>
<g >
<title>org/apache/http/impl/AbstractHttpClientConnection:::sendRequestEntity (2 samples, 0.30%)</title><rect x="954.3" y="437" width="3.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="957.35" y="447.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.15%)</title><rect x="1113.2" y="437" width="1.7" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="1116.20" y="447.5" ></text>
</g>
<g >
<title>org/apache/log4j/helpers/PatternParser$DatePatternConverter:::convert (1 samples, 0.15%)</title><rect x="949.1" y="309" width="1.8" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="952.11" y="319.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::setOwner (1 samples, 0.15%)</title><rect x="734.4" y="453" width="1.8" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text x="737.41" y="463.5" ></text>
</g>
<g >
<title>do_syscall_64 (1 samples, 0.15%)</title><rect x="917.7" y="357" width="1.7" height="15.0" fill="rgb(213,68,68)" rx="2" ry="2" />
<text x="920.69" y="367.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::wasInitialized (1 samples, 0.15%)</title><rect x="594.8" y="453" width="1.7" height="15.0" fill="rgb(81,229,81)" rx="2" ry="2" />
<text x="597.76" y="463.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (8 samples, 1.18%)</title><rect x="271.8" y="741" width="14.0" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="274.83" y="751.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (1 samples, 0.15%)</title><rect x="514.5" y="389" width="1.7" height="15.0" fill="rgb(214,71,71)" rx="2" ry="2" />
<text x="517.47" y="399.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultLoadEventListener:::onLoad (1 samples, 0.15%)</title><rect x="936.9" y="389" width="1.7" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text x="939.89" y="399.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/EntityEnclosingRequestWrapper$EntityWrapper:::writeTo (2 samples, 0.30%)</title><rect x="954.3" y="405" width="3.5" height="15.0" fill="rgb(66,214,66)" rx="2" ry="2" />
<text x="957.35" y="415.5" ></text>
</g>
<g >
<title>itable stub (6 samples, 0.89%)</title><rect x="596.5" y="453" width="10.5" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="599.51" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::doQueryAndInitializeNonLazyCollections (1 samples, 0.15%)</title><rect x="933.4" y="325" width="1.7" height="15.0" fill="rgb(66,215,66)" rx="2" ry="2" />
<text x="936.40" y="335.5" ></text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::isDirty (36 samples, 5.33%)</title><rect x="849.6" y="533" width="62.9" height="15.0" fill="rgb(102,248,102)" rx="2" ry="2" />
<text x="852.62" y="543.5" >org/hi..</text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEverythingToExecutions (15 samples, 2.22%)</title><rect x="823.4" y="485" width="26.2" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="826.43" y="495.5" >o..</text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::createMethod (3 samples, 0.44%)</title><rect x="959.6" y="517" width="5.2" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text x="962.59" y="527.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::withTemporarySessionIfNeeded (1 samples, 0.15%)</title><rect x="936.9" y="485" width="1.7" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text x="939.89" y="495.5" ></text>
</g>
<g >
<title>pthread_cond_wait@@GLIBC_2.3.2 (4 samples, 0.59%)</title><rect x="352.1" y="901" width="7.0" height="15.0" fill="rgb(215,73,73)" rx="2" ry="2" />
<text x="355.13" y="911.5" ></text>
</g>
<g >
<title>Interpreter (372 samples, 55.03%)</title><rect x="528.4" y="821" width="649.4" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="531.43" y="831.5" >Interpreter</text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::prepareEntityFlushes (5 samples, 0.74%)</title><rect x="1069.6" y="437" width="8.7" height="15.0" fill="rgb(95,241,95)" rx="2" ry="2" />
<text x="1072.56" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultLoadEventListener:::load (2 samples, 0.30%)</title><rect x="912.5" y="501" width="3.4" height="15.0" fill="rgb(68,216,68)" rx="2" ry="2" />
<text x="915.46" y="511.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/FlushVisitor:::processCollection (3 samples, 0.44%)</title><rect x="1104.5" y="437" width="5.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="1107.47" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::getRowFromResultSet (3 samples, 0.44%)</title><rect x="922.9" y="501" width="5.3" height="15.0" fill="rgb(100,246,100)" rx="2" ry="2" />
<text x="925.93" y="511.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.30%)</title><rect x="325.9" y="853" width="3.5" height="15.0" fill="rgb(206,60,60)" rx="2" ry="2" />
<text x="328.95" y="863.5" ></text>
</g>
<g >
<title>event_sched_in.isra.0.part.0 (2 samples, 0.30%)</title><rect x="495.3" y="661" width="3.5" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="498.27" y="671.5" ></text>
</g>
<g >
<title>finish_task_switch (8 samples, 1.18%)</title><rect x="271.8" y="773" width="14.0" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="274.83" y="783.5" ></text>
</g>
<g >
<title>JVM_InternString (1 samples, 0.15%)</title><rect x="1052.1" y="453" width="1.7" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="1055.10" y="463.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (4 samples, 0.59%)</title><rect x="1169.1" y="277" width="6.9" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="1172.05" y="287.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="289.3" y="805" width="1.7" height="15.0" fill="rgb(208,61,61)" rx="2" ry="2" />
<text x="292.29" y="815.5" ></text>
</g>
<g >
<title>org/hibernate/internal/SessionFactoryImpl:::getCollectionPersister (1 samples, 0.15%)</title><rect x="682.0" y="453" width="1.8" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="685.04" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEverythingToExecutions (11 samples, 1.63%)</title><rect x="893.3" y="501" width="19.2" height="15.0" fill="rgb(84,232,84)" rx="2" ry="2" />
<text x="896.25" y="511.5" ></text>
</g>
<g >
<title>__x64_sys_recvfrom (16 samples, 2.37%)</title><rect x="470.8" y="869" width="28.0" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="473.83" y="879.5" >_..</text>
</g>
<g >
<title>do_softirq.part.0 (1 samples, 0.15%)</title><rect x="472.6" y="725" width="1.7" height="15.0" fill="rgb(210,65,65)" rx="2" ry="2" />
<text x="475.57" y="735.5" ></text>
</g>
<g >
<title>org/hibernate/internal/SessionFactoryImpl:::getCollectionPersister (1 samples, 0.15%)</title><rect x="816.4" y="453" width="1.8" height="15.0" fill="rgb(75,222,75)" rx="2" ry="2" />
<text x="819.45" y="463.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::execute (2 samples, 0.30%)</title><rect x="1160.3" y="501" width="3.5" height="15.0" fill="rgb(57,206,57)" rx="2" ry="2" />
<text x="1163.33" y="511.5" ></text>
</g>
<g >
<title>org/dspace/discovery/SolrServiceContentInOriginalBundleFilterPlugin:::hasOriginalBundleWithContent (3 samples, 0.44%)</title><rect x="936.9" y="549" width="5.2" height="15.0" fill="rgb(88,234,88)" rx="2" ry="2" />
<text x="939.89" y="559.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="1167.3" y="341" width="1.8" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="1170.31" y="351.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (1 samples, 0.15%)</title><rect x="472.6" y="805" width="1.7" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text x="475.57" y="815.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.30%)</title><rect x="238.7" y="501" width="3.5" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="241.67" y="511.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl:::invoke (372 samples, 55.03%)</title><rect x="528.4" y="773" width="649.4" height="15.0" fill="rgb(82,229,82)" rx="2" ry="2" />
<text x="531.43" y="783.5" >sun/reflect/DelegatingMethodAccessorImpl:::invoke</text>
</g>
<g >
<title>__send (16 samples, 2.37%)</title><rect x="500.5" y="917" width="27.9" height="15.0" fill="rgb(217,76,76)" rx="2" ry="2" />
<text x="503.50" y="927.5" >_..</text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::prepareEntityFlushes (5 samples, 0.74%)</title><rect x="565.1" y="453" width="8.7" height="15.0" fill="rgb(50,200,50)" rx="2" ry="2" />
<text x="568.09" y="463.5" ></text>
</g>
<g >
<title>Java_java_io_FileOutputStream_writeBytes (1 samples, 0.15%)</title><rect x="945.6" y="293" width="1.8" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="948.62" y="303.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="966.6" y="277" width="1.7" height="15.0" fill="rgb(206,59,59)" rx="2" ry="2" />
<text x="969.57" y="287.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (1 samples, 0.15%)</title><rect x="1188.3" y="805" width="1.7" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="1191.25" y="815.5" ></text>
</g>
<g >
<title>pthread_cond_wait@@GLIBC_2.3.2 (60 samples, 8.88%)</title><rect x="366.1" y="901" width="104.7" height="15.0" fill="rgb(217,75,75)" rx="2" ry="2" />
<text x="369.09" y="911.5" >pthread_cond..</text>
</g>
<g >
<title>ext4_reserve_inode_write (1 samples, 0.15%)</title><rect x="945.6" y="53" width="1.8" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="948.62" y="63.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::isDirty (1 samples, 0.15%)</title><rect x="1078.3" y="469" width="1.7" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="1081.28" y="479.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.15%)</title><rect x="586.0" y="421" width="1.8" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="589.04" y="431.5" ></text>
</g>
<g >
<title>nft_immediate_eval (1 samples, 0.15%)</title><rect x="519.7" y="517" width="1.7" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="522.70" y="527.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (9 samples, 1.33%)</title><rect x="271.8" y="885" width="15.7" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="274.83" y="895.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/request/AbstractUpdateRequest:::process (7 samples, 1.04%)</title><rect x="957.8" y="549" width="12.3" height="15.0" fill="rgb(62,211,62)" rx="2" ry="2" />
<text x="960.84" y="559.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.15%)</title><rect x="629.7" y="421" width="1.7" height="15.0" fill="rgb(201,52,52)" rx="2" ry="2" />
<text x="632.67" y="431.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor16:::invoke (64 samples, 9.47%)</title><rect x="591.3" y="517" width="111.7" height="15.0" fill="rgb(69,218,69)" rx="2" ry="2" />
<text x="594.27" y="527.5" >sun/reflect/G..</text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::withTemporarySessionIfNeeded (1 samples, 0.15%)</title><rect x="933.4" y="357" width="1.7" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="936.40" y="367.5" ></text>
</g>
<g >
<title>tcp_sendmsg_locked (11 samples, 1.63%)</title><rect x="509.2" y="805" width="19.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="512.23" y="815.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (1 samples, 0.15%)</title><rect x="1188.3" y="821" width="1.7" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text x="1191.25" y="831.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (1 samples, 0.15%)</title><rect x="959.6" y="501" width="1.7" height="15.0" fill="rgb(73,221,73)" rx="2" ry="2" />
<text x="962.59" y="511.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/PersistentList:::toArray (1 samples, 0.15%)</title><rect x="703.0" y="549" width="1.7" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text x="705.99" y="559.5" ></text>
</g>
<g >
<title>perf_swevent_add (2 samples, 0.30%)</title><rect x="495.3" y="645" width="3.5" height="15.0" fill="rgb(252,126,126)" rx="2" ry="2" />
<text x="498.27" y="655.5" ></text>
</g>
<g >
<title>[libjvm.so] (7 samples, 1.04%)</title><rect x="229.9" y="693" width="12.3" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="232.94" y="703.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor17:::invoke (1 samples, 0.15%)</title><rect x="528.4" y="533" width="1.8" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="531.43" y="543.5" ></text>
</g>
<g >
<title>org/hibernate/type/descriptor/java/AbstractTypeDescriptor:::areEqual (1 samples, 0.15%)</title><rect x="748.4" y="421" width="1.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="751.37" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::initializeEntitiesAndCollections (1 samples, 0.15%)</title><rect x="928.2" y="501" width="1.7" height="15.0" fill="rgb(85,232,85)" rx="2" ry="2" />
<text x="931.17" y="511.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (4 samples, 0.59%)</title><rect x="1169.1" y="341" width="6.9" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="1172.05" y="351.5" ></text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::isDirty (1 samples, 0.15%)</title><rect x="643.6" y="437" width="1.8" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="646.64" y="447.5" ></text>
</g>
<g >
<title>java (473 samples, 69.97%)</title><rect x="364.3" y="933" width="825.7" height="15.0" fill="rgb(204,56,56)" rx="2" ry="2" />
<text x="367.35" y="943.5" >java</text>
</g>
<g >
<title>org/apache/commons/configuration/MapConfiguration:::getProperty (1 samples, 0.15%)</title><rect x="985.8" y="501" width="1.7" height="15.0" fill="rgb(92,239,92)" rx="2" ry="2" />
<text x="988.77" y="511.5" ></text>
</g>
<g >
<title>java/lang/Throwable:::printStackTrace (1 samples, 0.15%)</title><rect x="950.9" y="309" width="1.7" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="953.86" y="319.5" ></text>
</g>
<g >
<title>org/hibernate/loader/collection/CollectionLoader:::isSubselectLoadingEnabled (1 samples, 0.15%)</title><rect x="935.1" y="437" width="1.8" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text x="938.15" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::withTemporarySessionIfNeeded (1 samples, 0.15%)</title><rect x="942.1" y="501" width="1.8" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text x="945.13" y="511.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (14 samples, 2.07%)</title><rect x="474.3" y="709" width="24.5" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="477.32" y="719.5" >_..</text>
</g>
<g >
<title>java/io/FileOutputStream:::write (1 samples, 0.15%)</title><rect x="945.6" y="325" width="1.8" height="15.0" fill="rgb(56,206,56)" rx="2" ry="2" />
<text x="948.62" y="335.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="289.3" y="837" width="1.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="292.29" y="847.5" ></text>
</g>
<g >
<title>org/apache/log4j/Category:::callAppenders (1 samples, 0.15%)</title><rect x="917.7" y="549" width="1.7" height="15.0" fill="rgb(72,220,72)" rx="2" ry="2" />
<text x="920.69" y="559.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor16:::invoke (13 samples, 1.92%)</title><rect x="1055.6" y="501" width="22.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="1058.59" y="511.5" >s..</text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.15%)</title><rect x="240.4" y="293" width="1.8" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="243.41" y="303.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultSaveOrUpdateEventListener:::onSaveOrUpdate (1 samples, 0.15%)</title><rect x="1076.5" y="405" width="1.8" height="15.0" fill="rgb(75,222,75)" rx="2" ry="2" />
<text x="1079.54" y="415.5" ></text>
</g>
<g >
<title>finish_task_switch (33 samples, 4.88%)</title><rect x="46.7" y="773" width="57.6" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="49.66" y="783.5" >finish..</text>
</g>
<g >
<title>org/dspace/content/DSpaceObjectServiceImpl:::getMetadataFirstValue (1 samples, 0.15%)</title><rect x="942.1" y="533" width="1.8" height="15.0" fill="rgb(78,226,78)" rx="2" ry="2" />
<text x="945.13" y="543.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEntities (7 samples, 1.04%)</title><rect x="1057.3" y="437" width="12.3" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text x="1060.34" y="447.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (1 samples, 0.15%)</title><rect x="472.6" y="741" width="1.7" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="475.57" y="751.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultDirtyCheckEventListener:::onDirtyCheck (9 samples, 1.33%)</title><rect x="687.3" y="485" width="15.7" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="690.28" y="495.5" ></text>
</g>
<g >
<title>fput (1 samples, 0.15%)</title><rect x="470.8" y="837" width="1.8" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text x="473.83" y="847.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupTail:::match (1 samples, 0.15%)</title><rect x="980.5" y="437" width="1.8" height="15.0" fill="rgb(103,248,103)" rx="2" ry="2" />
<text x="983.53" y="447.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (12 samples, 1.78%)</title><rect x="243.9" y="757" width="21.0" height="15.0" fill="rgb(237,103,103)" rx="2" ry="2" />
<text x="246.91" y="767.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultAutoFlushEventListener:::onAutoFlush (33 samples, 4.88%)</title><rect x="991.0" y="501" width="57.6" height="15.0" fill="rgb(102,247,102)" rx="2" ry="2" />
<text x="994.01" y="511.5" >org/hi..</text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::dirtyCheck (4 samples, 0.59%)</title><rect x="552.9" y="421" width="7.0" height="15.0" fill="rgb(55,205,55)" rx="2" ry="2" />
<text x="555.87" y="431.5" ></text>
</g>
<g >
<title>sun/reflect/UnsafeObjectFieldAccessorImpl:::get (1 samples, 0.15%)</title><rect x="891.5" y="469" width="1.8" height="15.0" fill="rgb(51,201,51)" rx="2" ry="2" />
<text x="894.51" y="479.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (15 samples, 2.22%)</title><rect x="502.2" y="901" width="26.2" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="505.25" y="911.5" >e..</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="1050.4" y="405" width="1.7" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="1053.36" y="415.5" ></text>
</g>
<g >
<title>java/lang/Throwable:::printStackTrace (1 samples, 0.15%)</title><rect x="947.4" y="309" width="1.7" height="15.0" fill="rgb(99,245,99)" rx="2" ry="2" />
<text x="950.37" y="319.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (2 samples, 0.30%)</title><rect x="966.6" y="405" width="3.5" height="15.0" fill="rgb(106,252,106)" rx="2" ry="2" />
<text x="969.57" y="415.5" ></text>
</g>
<g >
<title>__x64_sys_futex (12 samples, 1.78%)</title><rect x="243.9" y="853" width="21.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="246.91" y="863.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.15%)</title><rect x="240.4" y="341" width="1.8" height="15.0" fill="rgb(226,87,87)" rx="2" ry="2" />
<text x="243.41" y="351.5" ></text>
</g>
<g >
<title>schedule (14 samples, 2.07%)</title><rect x="474.3" y="757" width="24.5" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="477.32" y="767.5" >s..</text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.15%)</title><rect x="514.5" y="453" width="1.7" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="517.47" y="463.5" ></text>
</g>
<g >
<title>org/dspace/content/DSpaceObjectServiceImpl:::getMetadata (1 samples, 0.15%)</title><rect x="942.1" y="517" width="1.8" height="15.0" fill="rgb(58,208,58)" rx="2" ry="2" />
<text x="945.13" y="527.5" ></text>
</g>
<g >
<title>[libjvm.so] (46 samples, 6.80%)</title><rect x="163.6" y="741" width="80.3" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="166.61" y="751.5" >[libjvm.so]</text>
</g>
<g >
<title>org/hibernate/engine/internal/StatefulPersistenceContext:::reassociateIfUninitializedProxy (1 samples, 0.15%)</title><rect x="1012.0" y="437" width="1.7" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="1014.95" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/type/AbstractStandardBasicType:::hydrate (1 samples, 0.15%)</title><rect x="914.2" y="357" width="1.7" height="15.0" fill="rgb(86,233,86)" rx="2" ry="2" />
<text x="917.20" y="367.5" ></text>
</g>
<g >
<title>__slab_free (1 samples, 0.15%)</title><rect x="362.6" y="661" width="1.7" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="365.60" y="671.5" ></text>
</g>
<g >
<title>start_thread (1 samples, 0.15%)</title><rect x="289.3" y="917" width="1.7" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="292.29" y="927.5" ></text>
</g>
<g >
<title>org/dspace/servicemanager/spring/DSpaceBeanPostProcessor:::postProcessBeforeInitialization (2 samples, 0.30%)</title><rect x="1148.1" y="453" width="3.5" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="1151.11" y="463.5" ></text>
</g>
<g >
<title>__schedule (18 samples, 2.66%)</title><rect x="292.8" y="789" width="31.4" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="295.78" y="799.5" >__..</text>
</g>
<g >
<title>org/apache/commons/dbcp2/DelegatingResultSet:::getTimestamp (1 samples, 0.15%)</title><rect x="914.2" y="309" width="1.7" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text x="917.20" y="319.5" ></text>
</g>
<g >
<title>sun/reflect/UnsafeObjectFieldAccessorImpl:::get (1 samples, 0.15%)</title><rect x="884.5" y="485" width="1.8" height="15.0" fill="rgb(107,252,107)" rx="2" ry="2" />
<text x="887.53" y="495.5" ></text>
</g>
<g >
<title>__x64_sys_futex (34 samples, 5.03%)</title><rect x="44.9" y="853" width="59.4" height="15.0" fill="rgb(226,87,87)" rx="2" ry="2" />
<text x="47.91" y="863.5" >__x64_..</text>
</g>
<g >
<title>do_syscall_64 (1 samples, 0.15%)</title><rect x="968.3" y="309" width="1.8" height="15.0" fill="rgb(216,74,74)" rx="2" ry="2" />
<text x="971.31" y="319.5" ></text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::isDirty (17 samples, 2.51%)</title><rect x="544.1" y="501" width="29.7" height="15.0" fill="rgb(108,253,108)" rx="2" ry="2" />
<text x="547.14" y="511.5" >or..</text>
</g>
<g >
<title>C1_CompilerThre (20 samples, 2.96%)</title><rect x="10.0" y="933" width="34.9" height="15.0" fill="rgb(213,69,69)" rx="2" ry="2" />
<text x="13.00" y="943.5" >C1..</text>
</g>
<g >
<title>ip_output (8 samples, 1.18%)</title><rect x="509.2" y="725" width="14.0" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="512.23" y="735.5" ></text>
</g>
<g >
<title>org/dspace/servicemanager/config/DSpaceConfigurationService:::convert (3 samples, 0.44%)</title><rect x="982.3" y="549" width="5.2" height="15.0" fill="rgb(87,234,87)" rx="2" ry="2" />
<text x="985.28" y="559.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::getOrphans (2 samples, 0.30%)</title><rect x="1038.1" y="437" width="3.5" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="1041.14" y="447.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (4 samples, 0.59%)</title><rect x="1169.1" y="197" width="6.9" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="1172.05" y="207.5" ></text>
</g>
<g >
<title>org/dspace/content/DSpaceObjectServiceImpl:::getMetadata (1 samples, 0.15%)</title><rect x="933.4" y="373" width="1.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="936.40" y="383.5" ></text>
</g>
<g >
<title>do_syscall_64 (1 samples, 0.15%)</title><rect x="945.6" y="229" width="1.8" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text x="948.62" y="239.5" ></text>
</g>
<g >
<title>org/dspace/app/util/DailyFileAppender:::subAppend (1 samples, 0.15%)</title><rect x="950.9" y="373" width="1.7" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text x="953.86" y="383.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultDirtyCheckEventListener:::onDirtyCheck (7 samples, 1.04%)</title><rect x="1135.9" y="485" width="12.2" height="15.0" fill="rgb(80,228,80)" rx="2" ry="2" />
<text x="1138.89" y="495.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultDirtyCheckEventListener:::onDirtyCheck (17 samples, 2.51%)</title><rect x="544.1" y="485" width="29.7" height="15.0" fill="rgb(104,249,104)" rx="2" ry="2" />
<text x="547.14" y="495.5" >or..</text>
</g>
<g >
<title>org/dspace/discovery/SolrServiceImpl:::indexContent (152 samples, 22.49%)</title><rect x="912.5" y="597" width="265.3" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text x="915.46" y="607.5" >org/dspace/discovery/SolrServiceImp..</text>
</g>
<g >
<title>org/hibernate/event/internal/FlushVisitor:::processCollection (1 samples, 0.15%)</title><rect x="1141.1" y="421" width="1.8" height="15.0" fill="rgb(75,223,75)" rx="2" ry="2" />
<text x="1144.12" y="431.5" ></text>
</g>
<g >
<title>org/apache/http/impl/AbstractHttpClientConnection:::isStale (5 samples, 0.74%)</title><rect x="1167.3" y="469" width="8.7" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text x="1170.31" y="479.5" ></text>
</g>
<g >
<title>do_syscall_64 (20 samples, 2.96%)</title><rect x="10.0" y="869" width="34.9" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="13.00" y="879.5" >do..</text>
</g>
<g >
<title>ext4_dirty_inode (1 samples, 0.15%)</title><rect x="945.6" y="85" width="1.8" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="948.62" y="95.5" ></text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::isDirty (1 samples, 0.15%)</title><rect x="1139.4" y="405" width="1.7" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="1142.38" y="415.5" ></text>
</g>
<g >
<title>call_stub (1 samples, 0.15%)</title><rect x="1167.3" y="261" width="1.8" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="1170.31" y="271.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::onFlushEntity (11 samples, 1.63%)</title><rect x="545.9" y="437" width="19.2" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text x="548.89" y="447.5" ></text>
</g>
<g >
<title>preempt_count_add (1 samples, 0.15%)</title><rect x="472.6" y="677" width="1.7" height="15.0" fill="rgb(215,71,71)" rx="2" ry="2" />
<text x="475.57" y="687.5" ></text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::isCollectionType (1 samples, 0.15%)</title><rect x="648.9" y="453" width="1.7" height="15.0" fill="rgb(67,215,67)" rx="2" ry="2" />
<text x="651.88" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::isCollectionType (2 samples, 0.30%)</title><rect x="786.8" y="469" width="3.5" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text x="789.78" y="479.5" ></text>
</g>
<g >
<title>__x64_sys_futex (8 samples, 1.18%)</title><rect x="271.8" y="853" width="14.0" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="274.83" y="863.5" ></text>
</g>
<g >
<title>java/util/TimSort:::sort (1 samples, 0.15%)</title><rect x="933.4" y="453" width="1.7" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text x="936.40" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEverythingToExecutions (7 samples, 1.04%)</title><rect x="1135.9" y="469" width="12.2" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="1138.89" y="479.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor16:::invoke (40 samples, 5.92%)</title><rect x="1078.3" y="517" width="69.8" height="15.0" fill="rgb(93,240,93)" rx="2" ry="2" />
<text x="1081.28" y="527.5" >sun/ref..</text>
</g>
<g >
<title>all (676 samples, 100%)</title><rect x="10.0" y="949" width="1180.0" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="13.00" y="959.5" ></text>
</g>
<g >
<title>ip_finish_output2 (7 samples, 1.04%)</title><rect x="509.2" y="709" width="12.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="512.23" y="719.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="270.1" y="709" width="1.7" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="273.09" y="719.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::prepareEntityFlushes (3 samples, 0.44%)</title><rect x="586.0" y="437" width="5.3" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text x="589.04" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::onFlushEntity (6 samples, 0.89%)</title><rect x="896.7" y="469" width="10.5" height="15.0" fill="rgb(77,225,77)" rx="2" ry="2" />
<text x="899.75" y="479.5" ></text>
</g>
<g >
<title>futex_wait (34 samples, 5.03%)</title><rect x="44.9" y="837" width="59.4" height="15.0" fill="rgb(207,60,60)" rx="2" ry="2" />
<text x="47.91" y="847.5" >futex_..</text>
</g>
<g >
<title>org/hibernate/persister/entity/AbstractEntityPersister:::hydrate (1 samples, 0.15%)</title><rect x="914.2" y="373" width="1.7" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="917.20" y="383.5" ></text>
</g>
<g >
<title>futex_wait (19 samples, 2.81%)</title><rect x="10.0" y="837" width="33.2" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="13.00" y="847.5" >fu..</text>
</g>
<g >
<title>itable stub (1 samples, 0.15%)</title><rect x="530.2" y="453" width="1.7" height="15.0" fill="rgb(209,63,63)" rx="2" ry="2" />
<text x="533.18" y="463.5" ></text>
</g>
<g >
<title>arch_perf_update_userpage (1 samples, 0.15%)</title><rect x="322.5" y="661" width="1.7" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text x="325.46" y="671.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/HierarchicalConfiguration:::getKeys (2 samples, 0.30%)</title><rect x="1148.1" y="405" width="3.5" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="1151.11" y="415.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="359.1" y="789" width="1.8" height="15.0" fill="rgb(206,58,58)" rx="2" ry="2" />
<text x="362.11" y="799.5" ></text>
</g>
<g >
<title>java/util/HashMap$KeySet:::iterator (1 samples, 0.15%)</title><rect x="978.8" y="501" width="1.7" height="15.0" fill="rgb(76,224,76)" rx="2" ry="2" />
<text x="981.79" y="511.5" ></text>
</g>
<g >
<title>org/dspace/discovery/SolrServiceFileInfoPlugin:::additionalIndex (1 samples, 0.15%)</title><rect x="942.1" y="565" width="1.8" height="15.0" fill="rgb(94,240,94)" rx="2" ry="2" />
<text x="945.13" y="575.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (1 samples, 0.15%)</title><rect x="945.6" y="245" width="1.8" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text x="948.62" y="255.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="289.3" y="901" width="1.7" height="15.0" fill="rgb(219,79,79)" rx="2" ry="2" />
<text x="292.29" y="911.5" ></text>
</g>
<g >
<title>[libjvm.so] (4 samples, 0.59%)</title><rect x="235.2" y="661" width="7.0" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="238.18" y="671.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.15%)</title><rect x="359.1" y="741" width="1.8" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="362.11" y="751.5" ></text>
</g>
<g >
<title>org/hibernate/context/internal/ThreadLocalSessionContext$TransactionProtectionWrapper:::invoke (36 samples, 5.33%)</title><rect x="849.6" y="565" width="62.9" height="15.0" fill="rgb(79,227,79)" rx="2" ry="2" />
<text x="852.62" y="575.5" >org/hi..</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="270.1" y="693" width="1.7" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="273.09" y="703.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match (1 samples, 0.15%)</title><rect x="980.5" y="357" width="1.8" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text x="983.53" y="367.5" ></text>
</g>
<g >
<title>java/net/URLEncoder:::encode (1 samples, 0.15%)</title><rect x="1163.8" y="517" width="1.8" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="1166.82" y="527.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::getOrphans (2 samples, 0.30%)</title><rect x="807.7" y="453" width="3.5" height="15.0" fill="rgb(98,244,98)" rx="2" ry="2" />
<text x="810.72" y="463.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (1 samples, 0.15%)</title><rect x="242.2" y="629" width="1.7" height="15.0" fill="rgb(245,116,116)" rx="2" ry="2" />
<text x="245.16" y="639.5" ></text>
</g>
<g >
<title>preempt_count_sub (1 samples, 0.15%)</title><rect x="240.4" y="277" width="1.8" height="15.0" fill="rgb(203,55,55)" rx="2" ry="2" />
<text x="243.41" y="287.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="289.3" y="869" width="1.7" height="15.0" fill="rgb(202,53,53)" rx="2" ry="2" />
<text x="292.29" y="879.5" ></text>
</g>
<g >
<title>org/apache/http/cookie/CookieSpecRegistry$1:::create (1 samples, 0.15%)</title><rect x="1160.3" y="437" width="1.8" height="15.0" fill="rgb(103,249,103)" rx="2" ry="2" />
<text x="1163.33" y="447.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.15%)</title><rect x="703.0" y="485" width="1.7" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="705.99" y="495.5" ></text>
</g>
<g >
<title>syscall_trace_enter (1 samples, 0.15%)</title><rect x="327.7" y="773" width="1.7" height="15.0" fill="rgb(254,129,129)" rx="2" ry="2" />
<text x="330.69" y="783.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (17 samples, 2.51%)</title><rect x="11.7" y="757" width="29.7" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="14.75" y="767.5" >__..</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="359.1" y="805" width="1.8" height="15.0" fill="rgb(226,88,88)" rx="2" ry="2" />
<text x="362.11" y="815.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/FlushVisitor:::processCollection (1 samples, 0.15%)</title><rect x="699.5" y="421" width="1.7" height="15.0" fill="rgb(52,202,52)" rx="2" ry="2" />
<text x="702.50" y="431.5" ></text>
</g>
<g >
<title>__x64_sys_futex (19 samples, 2.81%)</title><rect x="10.0" y="853" width="33.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text x="13.00" y="863.5" >__..</text>
</g>
<g >
<title>org/hibernate/event/internal/FlushVisitor:::processCollection (8 samples, 1.18%)</title><rect x="758.8" y="453" width="14.0" height="15.0" fill="rgb(84,231,84)" rx="2" ry="2" />
<text x="761.85" y="463.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.15%)</title><rect x="914.2" y="293" width="1.7" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="917.20" y="303.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (17 samples, 2.51%)</title><rect x="470.8" y="901" width="29.7" height="15.0" fill="rgb(253,127,127)" rx="2" ry="2" />
<text x="473.83" y="911.5" >en..</text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.30%)</title><rect x="238.7" y="533" width="3.5" height="15.0" fill="rgb(219,78,78)" rx="2" ry="2" />
<text x="241.67" y="543.5" ></text>
</g>
<g >
<title>do_syscall_64 (17 samples, 2.51%)</title><rect x="470.8" y="885" width="29.7" height="15.0" fill="rgb(212,67,67)" rx="2" ry="2" />
<text x="473.83" y="895.5" >do..</text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::onFlushEntity (3 samples, 0.44%)</title><rect x="579.1" y="421" width="5.2" height="15.0" fill="rgb(106,251,106)" rx="2" ry="2" />
<text x="582.05" y="431.5" ></text>
</g>
<g >
<title>C2_CompilerThre (114 samples, 16.86%)</title><rect x="44.9" y="933" width="199.0" height="15.0" fill="rgb(235,100,100)" rx="2" ry="2" />
<text x="47.91" y="943.5" >C2_CompilerThre</text>
</g>
<g >
<title>org/hibernate/context/internal/ThreadLocalSessionContext$TransactionProtectionWrapper:::invoke (64 samples, 9.47%)</title><rect x="591.3" y="533" width="111.7" height="15.0" fill="rgb(60,209,60)" rx="2" ry="2" />
<text x="594.27" y="543.5" >org/hibernate..</text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::dirtyCheck (3 samples, 0.44%)</title><rect x="1064.3" y="405" width="5.3" height="15.0" fill="rgb(69,217,69)" rx="2" ry="2" />
<text x="1067.32" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/engine/jdbc/internal/ResultSetReturnImpl:::extract (1 samples, 0.15%)</title><rect x="919.4" y="501" width="1.8" height="15.0" fill="rgb(109,254,109)" rx="2" ry="2" />
<text x="922.44" y="511.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.15%)</title><rect x="690.8" y="437" width="1.7" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="693.77" y="447.5" ></text>
</g>
<g >
<title>[libjvm.so] (372 samples, 55.03%)</title><rect x="528.4" y="709" width="649.4" height="15.0" fill="rgb(253,128,128)" rx="2" ry="2" />
<text x="531.43" y="719.5" >[libjvm.so]</text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEverythingToExecutions (13 samples, 1.92%)</title><rect x="1055.6" y="453" width="22.7" height="15.0" fill="rgb(105,251,105)" rx="2" ry="2" />
<text x="1058.59" y="463.5" >o..</text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::onFlushEntity (5 samples, 0.74%)</title><rect x="1135.9" y="437" width="8.7" height="15.0" fill="rgb(64,213,64)" rx="2" ry="2" />
<text x="1138.89" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::dirtyCheck (11 samples, 1.63%)</title><rect x="739.6" y="453" width="19.2" height="15.0" fill="rgb(82,230,82)" rx="2" ry="2" />
<text x="742.64" y="463.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (6 samples, 0.89%)</title><rect x="511.0" y="645" width="10.4" height="15.0" fill="rgb(241,109,109)" rx="2" ry="2" />
<text x="513.98" y="655.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (12 samples, 1.78%)</title><rect x="329.4" y="821" width="21.0" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text x="332.44" y="831.5" ></text>
</g>
<g >
<title>org/hibernate/persister/entity/JoinedSubclassEntityPersister:::discriminatorFragment (1 samples, 0.15%)</title><rect x="1053.8" y="405" width="1.8" height="15.0" fill="rgb(54,203,54)" rx="2" ry="2" />
<text x="1056.85" y="415.5" ></text>
</g>
<g >
<title>nft_do_chain_inet (2 samples, 0.30%)</title><rect x="518.0" y="549" width="3.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="520.96" y="559.5" ></text>
</g>
<g >
<title>org/dspace/content/Item:::getCollections (2 samples, 0.30%)</title><rect x="933.4" y="485" width="3.5" height="15.0" fill="rgb(78,225,78)" rx="2" ry="2" />
<text x="936.40" y="495.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (1 samples, 0.15%)</title><rect x="264.9" y="837" width="1.7" height="15.0" fill="rgb(218,77,77)" rx="2" ry="2" />
<text x="267.85" y="847.5" ></text>
</g>
<g >
<title>Ljava/lang/ref/ReferenceQueue:::remove (3 samples, 0.44%)</title><rect x="266.6" y="757" width="5.2" height="15.0" fill="rgb(74,222,74)" rx="2" ry="2" />
<text x="269.60" y="767.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/CombinedConfiguration:::fetchNodeList (4 samples, 0.59%)</title><rect x="1151.6" y="533" width="7.0" height="15.0" fill="rgb(59,208,59)" rx="2" ry="2" />
<text x="1154.60" y="543.5" ></text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::fireLoad (2 samples, 0.30%)</title><rect x="912.5" y="533" width="3.4" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="915.46" y="543.5" ></text>
</g>
<g >
<title>org/dspace/core/HibernateDBConnection:::uncacheEntity (175 samples, 25.89%)</title><rect x="544.1" y="565" width="305.5" height="15.0" fill="rgb(57,207,57)" rx="2" ry="2" />
<text x="547.14" y="575.5" >org/dspace/core/HibernateDBConnection:::u..</text>
</g>
<g >
<title>org/apache/commons/configuration/CombinedConfiguration:::fetchNodeList (1 samples, 0.15%)</title><rect x="1149.9" y="373" width="1.7" height="15.0" fill="rgb(58,207,58)" rx="2" ry="2" />
<text x="1152.85" y="383.5" ></text>
</g>
<g >
<title>do_softirq.part.0 (6 samples, 0.89%)</title><rect x="511.0" y="677" width="10.4" height="15.0" fill="rgb(225,86,86)" rx="2" ry="2" />
<text x="513.98" y="687.5" ></text>
</g>
<g >
<title>_register_finalizer_Java (1 samples, 0.15%)</title><rect x="940.4" y="453" width="1.7" height="15.0" fill="rgb(215,72,72)" rx="2" ry="2" />
<text x="943.38" y="463.5" ></text>
</g>
<g >
<title>itable stub (2 samples, 0.30%)</title><rect x="823.4" y="453" width="3.5" height="15.0" fill="rgb(224,84,84)" rx="2" ry="2" />
<text x="826.43" y="463.5" ></text>
</g>
<g >
<title>Java_java_net_SocketInputStream_socketRead0 (2 samples, 0.30%)</title><rect x="966.6" y="357" width="3.5" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="969.57" y="367.5" ></text>
</g>
<g >
<title>__vma_adjust (2 samples, 0.30%)</title><rect x="360.9" y="709" width="3.4" height="15.0" fill="rgb(216,73,73)" rx="2" ry="2" />
<text x="363.86" y="719.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::prepareEntityFlushes (11 samples, 1.63%)</title><rect x="1116.7" y="469" width="19.2" height="15.0" fill="rgb(104,250,104)" rx="2" ry="2" />
<text x="1119.69" y="479.5" ></text>
</g>
<g >
<title>native_write_msr (8 samples, 1.18%)</title><rect x="271.8" y="725" width="14.0" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="274.83" y="735.5" ></text>
</g>
<g >
<title>java/lang/Integer:::equals (1 samples, 0.15%)</title><rect x="748.4" y="405" width="1.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="751.37" y="415.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="238.7" y="341" width="1.7" height="15.0" fill="rgb(221,81,81)" rx="2" ry="2" />
<text x="241.67" y="351.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.15%)</title><rect x="591.3" y="469" width="1.7" height="15.0" fill="rgb(229,93,93)" rx="2" ry="2" />
<text x="594.27" y="479.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/Cascade:::cascade (2 samples, 0.30%)</title><rect x="587.8" y="421" width="3.5" height="15.0" fill="rgb(65,214,65)" rx="2" ry="2" />
<text x="590.78" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEntities (21 samples, 3.11%)</title><rect x="991.0" y="469" width="36.7" height="15.0" fill="rgb(68,217,68)" rx="2" ry="2" />
<text x="994.01" y="479.5" >org..</text>
</g>
<g >
<title>perf_swevent_add (1 samples, 0.15%)</title><rect x="460.4" y="693" width="1.7" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="463.36" y="703.5" ></text>
</g>
<g >
<title>vma_merge (2 samples, 0.30%)</title><rect x="360.9" y="725" width="3.4" height="15.0" fill="rgb(223,83,83)" rx="2" ry="2" />
<text x="363.86" y="735.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.15%)</title><rect x="1050.4" y="421" width="1.7" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="1053.36" y="431.5" ></text>
</g>
<g >
<title>java/lang/AbstractStringBuilder:::append (1 samples, 0.15%)</title><rect x="970.1" y="549" width="1.7" height="15.0" fill="rgb(79,226,79)" rx="2" ry="2" />
<text x="973.06" y="559.5" ></text>
</g>
<g >
<title>finish_task_switch (54 samples, 7.99%)</title><rect x="367.8" y="773" width="94.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="370.84" y="783.5" >finish_task..</text>
</g>
<g >
<title>[libjvm.so] (73 samples, 10.80%)</title><rect x="116.5" y="757" width="127.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="119.48" y="767.5" >[libjvm.so]</text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::isDirty (10 samples, 1.48%)</title><rect x="573.8" y="485" width="17.5" height="15.0" fill="rgb(81,228,81)" rx="2" ry="2" />
<text x="576.82" y="495.5" ></text>
</g>
<g >
<title>org/hibernate/context/internal/ThreadLocalSessionContext$TransactionProtectionWrapper:::invoke (13 samples, 1.92%)</title><rect x="1055.6" y="517" width="22.7" height="15.0" fill="rgb(67,216,67)" rx="2" ry="2" />
<text x="1058.59" y="527.5" >o..</text>
</g>
<g >
<title>[libjvm.so] (22 samples, 3.25%)</title><rect x="205.5" y="725" width="38.4" height="15.0" fill="rgb(211,66,66)" rx="2" ry="2" />
<text x="208.50" y="735.5" >[li..</text>
</g>
<g >
<title>entry_SYSCALL_64 (13 samples, 1.92%)</title><rect x="243.9" y="885" width="22.7" height="15.0" fill="rgb(228,90,90)" rx="2" ry="2" />
<text x="246.91" y="895.5" >e..</text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultDirtyCheckEventListener:::onDirtyCheck (11 samples, 1.63%)</title><rect x="893.3" y="517" width="19.2" height="15.0" fill="rgb(83,230,83)" rx="2" ry="2" />
<text x="896.25" y="527.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.30%)</title><rect x="238.7" y="549" width="3.5" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="241.67" y="559.5" ></text>
</g>
<g >
<title>update_process_times (1 samples, 0.15%)</title><rect x="359.1" y="677" width="1.8" height="15.0" fill="rgb(201,51,51)" rx="2" ry="2" />
<text x="362.11" y="687.5" ></text>
</g>
<g >
<title>java/lang/ref/Finalizer:::register (1 samples, 0.15%)</title><rect x="929.9" y="389" width="1.8" height="15.0" fill="rgb(70,218,70)" rx="2" ry="2" />
<text x="932.91" y="399.5" ></text>
</g>
<g >
<title>org/dspace/servicemanager/spring/SpringServiceManager:::getServicesByType (2 samples, 0.30%)</title><rect x="1148.1" y="549" width="3.5" height="15.0" fill="rgb(93,239,93)" rx="2" ry="2" />
<text x="1151.11" y="559.5" ></text>
</g>
<g >
<title>finish_task_switch (12 samples, 1.78%)</title><rect x="243.9" y="773" width="21.0" height="15.0" fill="rgb(200,50,50)" rx="2" ry="2" />
<text x="246.91" y="783.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (1 samples, 0.15%)</title><rect x="1113.2" y="389" width="1.7" height="15.0" fill="rgb(247,118,118)" rx="2" ry="2" />
<text x="1116.20" y="399.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::doQueryAndInitializeNonLazyCollections (2 samples, 0.30%)</title><rect x="938.6" y="501" width="3.5" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="941.64" y="511.5" ></text>
</g>
<g >
<title>[libjvm.so] (372 samples, 55.03%)</title><rect x="528.4" y="693" width="649.4" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text x="531.43" y="703.5" >[libjvm.so]</text>
</g>
<g >
<title>org/hibernate/loader/Loader:::applyPostLoadLocks (1 samples, 0.15%)</title><rect x="921.2" y="501" width="1.7" height="15.0" fill="rgb(61,210,61)" rx="2" ry="2" />
<text x="924.18" y="511.5" ></text>
</g>
<g >
<title>native_write_msr (52 samples, 7.69%)</title><rect x="369.6" y="725" width="90.8" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="372.59" y="735.5" >native_wri..</text>
</g>
</g>
</svg>