cgspace-notes/static/2020/02/out.dspace64-3.svg

4997 lines
253 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="950" onload="init(evt)" viewBox="0 0 1200 950" 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="950.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="933" > </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="933" > </text>
<g id="frames">
<g >
<title>Java_java_net_SocketOutputStream_socketWrite0 (1 samples, 0.08%)</title><rect x="1149.7" y="245" width="1.0" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="1152.73" y="255.5" ></text>
</g>
<g >
<title>ip_local_out (24 samples, 1.90%)</title><rect x="88.7" y="629" width="22.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="91.67" y="639.5" >i..</text>
</g>
<g >
<title>__wake_up_common (1 samples, 0.08%)</title><rect x="98.0" y="245" width="1.0" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="101.03" y="255.5" ></text>
</g>
<g >
<title>org/dspace/discovery/FullTextContentStreams:::&lt;init&gt; (4 samples, 0.32%)</title><rect x="778.9" y="517" width="3.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="781.87" y="527.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/tree/DefaultExpressionEngine:::processSubNodes (1 samples, 0.08%)</title><rect x="848.2" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="851.17" y="431.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.08%)</title><rect x="158.0" y="405" width="0.9" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="160.97" y="415.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (12 samples, 0.95%)</title><rect x="1178.8" y="693" width="11.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="1181.76" y="703.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern:::sequence (1 samples, 0.08%)</title><rect x="844.4" y="469" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="847.43" y="479.5" ></text>
</g>
<g >
<title>sock_sendmsg (33 samples, 2.62%)</title><rect x="84.0" y="789" width="30.9" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="86.98" y="799.5" >so..</text>
</g>
<g >
<title>Java_java_net_SocketInputStream_socketRead0 (1 samples, 0.08%)</title><rect x="1150.7" y="389" width="0.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="1153.67" y="399.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="1161.9" y="181" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1164.90" y="191.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.08%)</title><rect x="1146.9" y="485" width="1.0" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="1149.92" y="495.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::wasInitialized (1 samples, 0.08%)</title><rect x="778.9" y="389" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="781.87" y="399.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (2 samples, 0.16%)</title><rect x="1117.9" y="357" width="1.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="1120.89" y="367.5" ></text>
</g>
<g >
<title>org/hibernate/proxy/pojo/javassist/JavassistLazyInitializer:::invoke (4 samples, 0.32%)</title><rect x="758.3" y="517" width="3.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="761.27" y="527.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushCollections (10 samples, 0.79%)</title><rect x="326.5" y="453" width="9.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="329.54" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEntities (74 samples, 5.87%)</title><rect x="672.1" y="469" width="69.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="675.11" y="479.5" >org/hib..</text>
</g>
<g >
<title>org/hibernate/event/internal/WrapVisitor:::processValue (6 samples, 0.48%)</title><rect x="1076.7" y="405" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1079.68" y="415.5" ></text>
</g>
<g >
<title>JVM_IHashCode (10 samples, 0.79%)</title><rect x="822.9" y="389" width="9.4" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="825.89" y="399.5" ></text>
</g>
<g >
<title>org/dspace/app/util/DailyFileAppender:::subAppend (2 samples, 0.16%)</title><rect x="791.0" y="325" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="794.05" y="335.5" ></text>
</g>
<g >
<title>sun/reflect/UnsafeObjectFieldAccessorImpl:::get (3 samples, 0.24%)</title><rect x="1089.8" y="405" width="2.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="1092.79" y="415.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="158.0" y="389" width="0.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="160.97" y="399.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern:::atom (1 samples, 0.08%)</title><rect x="844.4" y="453" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="847.43" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/internal/util/collections/IdentityMap:::entryArray (5 samples, 0.40%)</title><rect x="267.5" y="421" width="4.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="270.54" y="431.5" ></text>
</g>
<g >
<title>tcp_rcv_established (2 samples, 0.16%)</title><rect x="98.0" y="309" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="101.03" y="319.5" ></text>
</g>
<g >
<title>org/apache/http/entity/InputStreamEntity:::writeTo (1 samples, 0.08%)</title><rect x="1159.1" y="325" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1162.10" y="335.5" ></text>
</g>
<g >
<title>java/lang/String:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="790.1" y="245" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="793.11" y="255.5" ></text>
</g>
<g >
<title>schedule (12 samples, 0.95%)</title><rect x="1178.8" y="741" width="11.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="1181.76" y="751.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/EntityEnclosingRequestWrapper$EntityWrapper:::writeTo (10 samples, 0.79%)</title><rect x="792.9" y="357" width="9.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="795.92" y="367.5" ></text>
</g>
<g >
<title>org/hibernate/engine/spi/CollectionEntry:::getOrphans (9 samples, 0.71%)</title><rect x="1112.3" y="405" width="8.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1115.27" y="415.5" ></text>
</g>
<g >
<title>java/util/AbstractMap:::get (3 samples, 0.24%)</title><rect x="1142.2" y="453" width="2.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1145.24" y="463.5" ></text>
</g>
<g >
<title>itable stub (5 samples, 0.40%)</title><rect x="674.9" y="453" width="4.7" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="677.92" y="463.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (4 samples, 0.32%)</title><rect x="10.0" y="757" width="3.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="13.00" y="767.5" ></text>
</g>
<g >
<title>inet6_recvmsg (23 samples, 1.83%)</title><rect x="60.6" y="773" width="21.5" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="63.57" y="783.5" >i..</text>
</g>
<g >
<title>org/hibernate/type/EntityType:::nullSafeGet (1 samples, 0.08%)</title><rect x="314.4" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="317.37" y="431.5" ></text>
</g>
<g >
<title>event_sched_in.isra.0 (1 samples, 0.08%)</title><rect x="13.7" y="597" width="1.0" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="16.75" y="607.5" ></text>
</g>
<g >
<title>Java_java_lang_Throwable_fillInStackTrace (1 samples, 0.08%)</title><rect x="797.6" y="133" width="0.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="800.60" y="143.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (3 samples, 0.24%)</title><rect x="97.1" y="357" width="2.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="100.10" y="367.5" ></text>
</g>
<g >
<title>org/apache/http/impl/conn/DefaultHttpResponseParser:::parseHead (1 samples, 0.08%)</title><rect x="1158.2" y="325" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1161.16" y="335.5" ></text>
</g>
<g >
<title>nft_do_chain_inet (9 samples, 0.71%)</title><rect x="101.8" y="389" width="8.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="104.78" y="399.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/HttpRequestExecutor:::preProcess (1 samples, 0.08%)</title><rect x="802.3" y="453" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="805.29" y="463.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (2 samples, 0.16%)</title><rect x="114.9" y="821" width="1.9" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="117.89" y="831.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::hasQueuedOperations (1 samples, 0.08%)</title><rect x="333.1" y="437" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="336.10" y="447.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (1 samples, 0.08%)</title><rect x="817.3" y="389" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="820.27" y="399.5" ></text>
</g>
<g >
<title>org/hibernate/type/AbstractStandardBasicType:::isComponentType (1 samples, 0.08%)</title><rect x="236.6" y="405" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="239.63" y="415.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.32%)</title><rect x="10.0" y="837" width="3.7" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text x="13.00" y="847.5" ></text>
</g>
<g >
<title>perf_event_sched_in (1 samples, 0.08%)</title><rect x="114.9" y="741" width="0.9" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="117.89" y="751.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="1135.7" y="293" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1138.68" y="303.5" ></text>
</g>
<g >
<title>org/hibernate/type/AbstractType:::isCollectionType (1 samples, 0.08%)</title><rect x="734.9" y="453" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="737.86" y="463.5" ></text>
</g>
<g >
<title>__sched_text_start (2 samples, 0.16%)</title><rect x="114.9" y="789" width="1.9" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="117.89" y="799.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/HierarchicalConfiguration:::getProperty (3 samples, 0.24%)</title><rect x="1142.2" y="501" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1145.24" y="511.5" ></text>
</g>
<g >
<title>java/util/ArrayList:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="802.3" y="357" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="805.29" y="367.5" ></text>
</g>
<g >
<title>sun/reflect/UnsafeObjectFieldAccessorImpl:::get (1 samples, 0.08%)</title><rect x="753.6" y="437" width="0.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="756.59" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::prepareCollectionFlushes (20 samples, 1.59%)</title><rect x="554.1" y="453" width="18.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="557.11" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultSaveOrUpdateEventListener:::onSaveOrUpdate (1 samples, 0.08%)</title><rect x="1120.7" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1123.70" y="415.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (3 samples, 0.24%)</title><rect x="97.1" y="373" width="2.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="100.10" y="383.5" ></text>
</g>
<g >
<title>futex_wait (50 samples, 3.97%)</title><rect x="13.7" y="773" width="46.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="16.75" y="783.5" >fute..</text>
</g>
<g >
<title>org/apache/commons/configuration/CombinedConfiguration:::fetchNodeList (3 samples, 0.24%)</title><rect x="1142.2" y="485" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1145.24" y="495.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/HttpRequestExecutor:::doSendRequest (1 samples, 0.08%)</title><rect x="815.4" y="389" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="818.40" y="399.5" ></text>
</g>
<g >
<title>org/apache/http/impl/AbstractHttpClientConnection:::sendRequestEntity (1 samples, 0.08%)</title><rect x="1149.7" y="373" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1152.73" y="383.5" ></text>
</g>
<g >
<title>do_syscall_64 (23 samples, 1.83%)</title><rect x="60.6" y="837" width="21.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="63.57" y="847.5" >d..</text>
</g>
<g >
<title>org/hibernate/type/ManyToOneType:::isDirty (1 samples, 0.08%)</title><rect x="193.6" y="389" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="196.56" y="399.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/HttpRequestExecutor:::doReceiveResponse (1 samples, 0.08%)</title><rect x="1158.2" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1161.16" y="415.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$BmpCharProperty:::match (1 samples, 0.08%)</title><rect x="843.5" y="437" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="846.49" y="447.5" ></text>
</g>
<g >
<title>vtable stub (1 samples, 0.08%)</title><rect x="865.0" y="405" width="1.0" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text x="868.03" y="415.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match (1 samples, 0.08%)</title><rect x="843.5" y="405" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="846.49" y="415.5" ></text>
</g>
<g >
<title>sun/reflect/UnsafeQualifiedObjectFieldAccessorImpl:::get (1 samples, 0.08%)</title><rect x="1092.6" y="405" width="0.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="1095.60" y="415.5" ></text>
</g>
<g >
<title>org/dspace/util/MultiFormatDateParser:::parse (2 samples, 0.16%)</title><rect x="1145.0" y="517" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1148.05" y="527.5" ></text>
</g>
<g >
<title>org/hibernate/proxy/pojo/javassist/JavassistLazyInitializer:::invoke (1 samples, 0.08%)</title><rect x="777.0" y="389" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="780.00" y="399.5" ></text>
</g>
<g >
<title>org/apache/http/pool/RouteSpecificPool:::getFree (1 samples, 0.08%)</title><rect x="1151.6" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1154.60" y="431.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.16%)</title><rect x="845.4" y="341" width="1.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="848.37" y="351.5" ></text>
</g>
<g >
<title>update_sd_lb_stats (1 samples, 0.08%)</title><rect x="81.2" y="597" width="0.9" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="84.17" y="607.5" ></text>
</g>
<g >
<title>Java_java_lang_Throwable_fillInStackTrace (1 samples, 0.08%)</title><rect x="817.3" y="213" width="0.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="820.27" y="223.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/TwoPhaseLoad:::doInitializeEntity (1 samples, 0.08%)</title><rect x="785.4" y="421" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="788.43" y="431.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/AbstractConfiguration:::getBoolean (4 samples, 0.32%)</title><rect x="845.4" y="485" width="3.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="848.37" y="495.5" ></text>
</g>
<g >
<title>org/apache/http/impl/AbstractHttpClientConnection:::sendRequestEntity (10 samples, 0.79%)</title><rect x="792.9" y="389" width="9.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="795.92" y="399.5" ></text>
</g>
<g >
<title>org/hibernate/internal/util/collections/IdentityMap:::entryArray (8 samples, 0.63%)</title><rect x="962.4" y="405" width="7.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="965.43" y="415.5" ></text>
</g>
<g >
<title>JVM_FillInStackTrace (1 samples, 0.08%)</title><rect x="1150.7" y="213" width="0.9" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="1153.67" y="223.5" ></text>
</g>
<g >
<title>org/apache/solr/common/params/ModifiableSolrParams:::set (1 samples, 0.08%)</title><rect x="1147.9" y="469" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1150.86" y="479.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/StatefulPersistenceContext:::removeEntry (1 samples, 0.08%)</title><rect x="756.4" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="759.40" y="415.5" ></text>
</g>
<g >
<title>java/io/InputStream:::read (1 samples, 0.08%)</title><rect x="815.4" y="293" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="818.40" y="303.5" ></text>
</g>
<g >
<title>inet6_sendmsg (32 samples, 2.54%)</title><rect x="84.0" y="773" width="30.0" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="86.98" y="783.5" >in..</text>
</g>
<g >
<title>org/hibernate/loader/Loader:::loadCollection (1 samples, 0.08%)</title><rect x="761.1" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="764.08" y="415.5" ></text>
</g>
<g >
<title>org/dspace/discovery/SolrServiceContentInOriginalBundleFilterPlugin:::hasOriginalBundleWithContent (4 samples, 0.32%)</title><rect x="782.6" y="501" width="3.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="785.62" y="511.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor23:::invoke (2 samples, 0.16%)</title><rect x="777.0" y="453" width="1.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="780.00" y="463.5" ></text>
</g>
<g >
<title>org/dspace/services/factory/DSpaceServicesFactory:::getInstance (1 samples, 0.08%)</title><rect x="867.8" y="501" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="870.84" y="511.5" ></text>
</g>
<g >
<title>tick_sched_timer (1 samples, 0.08%)</title><rect x="87.7" y="613" width="1.0" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="90.73" y="623.5" ></text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::isDirty (1 samples, 0.08%)</title><rect x="1087.9" y="405" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1090.92" y="415.5" ></text>
</g>
<g >
<title>org/dspace/discovery/FullTextContentStreams:::buildFullTextList (4 samples, 0.32%)</title><rect x="778.9" y="501" width="3.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="781.87" y="511.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultLoadEventListener:::doLoad (3 samples, 0.24%)</title><rect x="758.3" y="437" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="761.27" y="447.5" ></text>
</g>
<g >
<title>itable stub (9 samples, 0.71%)</title><rect x="691.8" y="437" width="8.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="694.78" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::isDirty (5 samples, 0.40%)</title><rect x="188.9" y="389" width="4.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="191.87" y="399.5" ></text>
</g>
<g >
<title>org/hibernate/loader/AbstractEntityJoinWalker:::initAll (5 samples, 0.40%)</title><rect x="1007.4" y="437" width="4.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1010.38" y="447.5" ></text>
</g>
<g >
<title>org/dspace/content/ItemServiceImpl:::getCommunities (2 samples, 0.16%)</title><rect x="777.0" y="517" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="780.00" y="527.5" ></text>
</g>
<g >
<title>Interpreter (1,118 samples, 88.73%)</title><rect x="118.6" y="773" width="1047.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="121.63" y="783.5" >Interpreter</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="1150.7" y="293" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1153.67" y="303.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="1143.2" y="373" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1146.17" y="383.5" ></text>
</g>
<g >
<title>itable stub (4 samples, 0.32%)</title><rect x="184.2" y="389" width="3.7" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="187.19" y="399.5" ></text>
</g>
<g >
<title>_new_instance_Java (1 samples, 0.08%)</title><rect x="531.6" y="405" width="1.0" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="534.63" y="415.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/tree/DefaultExpressionEngine:::findNodesForKey (2 samples, 0.16%)</title><rect x="847.2" y="437" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="850.24" y="447.5" ></text>
</g>
<g >
<title>ip_queue_xmit (24 samples, 1.90%)</title><rect x="88.7" y="661" width="22.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="91.67" y="671.5" >i..</text>
</g>
<g >
<title>nf_conntrack_tcp_packet (1 samples, 0.08%)</title><rect x="92.4" y="565" width="0.9" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="95.41" y="575.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::setOwner (1 samples, 0.08%)</title><rect x="413.6" y="421" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="416.63" y="431.5" ></text>
</g>
<g >
<title>__ip_local_out (5 samples, 0.40%)</title><rect x="88.7" y="613" width="4.6" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="91.67" y="623.5" ></text>
</g>
<g >
<title>java/util/HashSet:::add (15 samples, 1.19%)</title><rect x="822.9" y="421" width="14.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="825.89" y="431.5" ></text>
</g>
<g >
<title>acpi_irq (1 samples, 0.08%)</title><rect x="1124.4" y="309" width="1.0" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="1127.44" y="319.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultAutoFlushEventListener:::onAutoFlush (142 samples, 11.27%)</title><rect x="871.6" y="453" width="133.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="874.59" y="463.5" >org/hibernate/ev..</text>
</g>
<g >
<title>java/util/HashSet:::add (3 samples, 0.24%)</title><rect x="634.7" y="389" width="2.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="637.65" y="399.5" ></text>
</g>
<g >
<title>try_to_wake_up (1 samples, 0.08%)</title><rect x="98.0" y="197" width="1.0" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text x="101.03" y="207.5" ></text>
</g>
<g >
<title>org/jboss/logging/Log4jLogger:::isEnabled (1 samples, 0.08%)</title><rect x="647.8" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="650.76" y="431.5" ></text>
</g>
<g >
<title>nft_do_chain (9 samples, 0.71%)</title><rect x="101.8" y="373" width="8.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="104.78" y="383.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::doQueryAndInitializeNonLazyCollections (1 samples, 0.08%)</title><rect x="778.9" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="781.87" y="415.5" ></text>
</g>
<g >
<title>[libjvm.so] (10 samples, 0.79%)</title><rect x="822.9" y="373" width="9.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="825.89" y="383.5" ></text>
</g>
<g >
<title>org/hibernate/loader/OuterJoinableAssociation:::addJoins (1 samples, 0.08%)</title><rect x="1010.2" y="389" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1013.19" y="399.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.16%)</title><rect x="1161.0" y="325" width="1.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1163.97" y="335.5" ></text>
</g>
<g >
<title>java/util/AbstractMap:::get (1 samples, 0.08%)</title><rect x="1135.7" y="373" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1138.68" y="383.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::initializeEntitiesAndCollections (3 samples, 0.24%)</title><rect x="315.3" y="453" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="318.30" y="463.5" ></text>
</g>
<g >
<title>java/util/ArrayList$Itr:::next (1 samples, 0.08%)</title><rect x="617.8" y="421" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="620.79" y="431.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/HttpRequestExecutor:::preProcess (3 samples, 0.24%)</title><rect x="1152.5" y="437" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1155.54" y="447.5" ></text>
</g>
<g >
<title>org/dspace/content/Bitstream:::getName (1 samples, 0.08%)</title><rect x="778.9" y="485" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="781.87" y="495.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::initializeEntitiesAndCollections (1 samples, 0.08%)</title><rect x="779.8" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="782.81" y="415.5" ></text>
</g>
<g >
<title>sun/reflect/UnsafeIntegerFieldAccessorImpl:::get (1 samples, 0.08%)</title><rect x="1095.4" y="421" width="0.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="1098.41" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/type/AbstractStandardBasicType:::isCollectionType (1 samples, 0.08%)</title><rect x="1082.3" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1085.30" y="415.5" ></text>
</g>
<g >
<title>Interpreter (1,118 samples, 88.73%)</title><rect x="118.6" y="709" width="1047.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="121.63" y="719.5" >Interpreter</text>
</g>
<g >
<title>org/hibernate/persister/entity/AbstractEntityPersister:::selectFragment (1 samples, 0.08%)</title><rect x="1011.1" y="389" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1014.13" y="399.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="817.3" y="277" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="820.27" y="287.5" ></text>
</g>
<g >
<title>org/hibernate/context/internal/ThreadLocalSessionContext$TransactionProtectionWrapper:::invoke (99 samples, 7.86%)</title><rect x="664.6" y="517" width="92.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="667.62" y="527.5" >org/hiberna..</text>
</g>
<g >
<title>org/springframework/beans/factory/support/DefaultListableBeanFactory:::getBeansOfType (4 samples, 0.32%)</title><rect x="1134.7" y="485" width="3.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1137.75" y="495.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/EntityEntryContext:::reentrantSafeEntityEntries (4 samples, 0.32%)</title><rect x="307.8" y="421" width="3.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="310.81" y="431.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (1 samples, 0.08%)</title><rect x="96.2" y="421" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="99.16" y="431.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::handleResponse (1 samples, 0.08%)</title><rect x="1148.8" y="437" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1151.79" y="447.5" ></text>
</g>
<g >
<title>tick_sched_timer (1 samples, 0.08%)</title><rect x="158.0" y="341" width="0.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="160.97" y="351.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::dirtyCheck (20 samples, 1.59%)</title><rect x="176.7" y="405" width="18.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="179.70" y="415.5" ></text>
</g>
<g >
<title>org/dspace/browse/BrowseIndex:::&lt;init&gt; (3 samples, 0.24%)</title><rect x="842.6" y="501" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="845.56" y="511.5" ></text>
</g>
<g >
<title>org/apache/log4j/AppenderSkeleton:::doAppend (1 samples, 0.08%)</title><rect x="788.2" y="389" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="791.24" y="399.5" ></text>
</g>
<g >
<title>java/util/AbstractMap:::get (1 samples, 0.08%)</title><rect x="1136.6" y="357" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1139.62" y="367.5" ></text>
</g>
<g >
<title>java/lang/Integer:::equals (1 samples, 0.08%)</title><rect x="431.4" y="389" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="434.43" y="399.5" ></text>
</g>
<g >
<title>__send (36 samples, 2.86%)</title><rect x="83.0" y="869" width="33.8" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="86.05" y="879.5" >__..</text>
</g>
<g >
<title>sun/reflect/UnsafeQualifiedObjectFieldAccessorImpl:::get (1 samples, 0.08%)</title><rect x="959.6" y="405" width="1.0" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="962.62" y="415.5" ></text>
</g>
<g >
<title>tcp_options_write (1 samples, 0.08%)</title><rect x="112.1" y="677" width="0.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="115.08" y="687.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.08%)</title><rect x="871.6" y="421" width="0.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="874.59" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/engine/jdbc/internal/ResultSetReturnImpl:::extract (3 samples, 0.24%)</title><rect x="767.6" y="453" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="770.63" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/engine/jdbc/internal/StatementPreparerImpl$StatementPreparationTemplate:::prepareStatement (1 samples, 0.08%)</title><rect x="783.6" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="786.56" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::isCollectionType (3 samples, 0.24%)</title><rect x="735.8" y="453" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="738.79" y="463.5" ></text>
</g>
<g >
<title>__pthread_getspecific (1 samples, 0.08%)</title><rect x="861.3" y="357" width="0.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="864.29" y="367.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::withTemporarySessionIfNeeded (2 samples, 0.16%)</title><rect x="780.7" y="453" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="783.75" y="463.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc/PgStatement:::executeInternal (3 samples, 0.24%)</title><rect x="767.6" y="421" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="770.63" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::hasHolder (1 samples, 0.08%)</title><rect x="523.2" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="526.21" y="431.5" ></text>
</g>
<g >
<title>[libjvm.so] (1,118 samples, 88.73%)</title><rect x="118.6" y="629" width="1047.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="121.63" y="639.5" >[libjvm.so]</text>
</g>
<g >
<title>java/util/ArrayList:::iterator (1 samples, 0.08%)</title><rect x="274.1" y="421" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="277.10" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/persister/entity/AbstractEntityPersister:::toColumns (1 samples, 0.08%)</title><rect x="1012.1" y="389" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1015.06" y="399.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/MultipartEntity:::writeTo (1 samples, 0.08%)</title><rect x="1149.7" y="325" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1152.73" y="335.5" ></text>
</g>
<g >
<title>iptable_filter_hook (1 samples, 0.08%)</title><rect x="89.6" y="597" width="0.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="92.60" y="607.5" ></text>
</g>
<g >
<title>java/lang/Object:::hashCode (8 samples, 0.63%)</title><rect x="854.7" y="389" width="7.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="857.73" y="399.5" ></text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::isDirty (12 samples, 0.95%)</title><rect x="432.4" y="405" width="11.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="435.37" y="415.5" ></text>
</g>
<g >
<title>__x64_sys_recvfrom (23 samples, 1.83%)</title><rect x="60.6" y="821" width="21.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="63.57" y="831.5" >_..</text>
</g>
<g >
<title>org/hibernate/type/AbstractType:::isCollectionType (2 samples, 0.16%)</title><rect x="1083.2" y="405" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1086.24" y="415.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="1150.7" y="133" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1153.67" y="143.5" ></text>
</g>
<g >
<title>org/apache/solr/common/SolrInputDocument:::addField (2 samples, 0.16%)</title><rect x="764.8" y="517" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="767.83" y="527.5" ></text>
</g>
<g >
<title>pthread_cond_wait@@GLIBC_2.3.2 (50 samples, 3.97%)</title><rect x="13.7" y="853" width="46.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="16.75" y="863.5" >pthr..</text>
</g>
<g >
<title>__sys_recvfrom (23 samples, 1.83%)</title><rect x="60.6" y="805" width="21.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="63.57" y="815.5" >_..</text>
</g>
<g >
<title>__sched_text_start (50 samples, 3.97%)</title><rect x="13.7" y="725" width="46.9" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="16.75" y="735.5" >__sc..</text>
</g>
<g >
<title>org/hibernate/event/internal/FlushVisitor:::processCollection (22 samples, 1.75%)</title><rect x="924.0" y="389" width="20.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="927.03" y="399.5" ></text>
</g>
<g >
<title>org/dspace/servicemanager/spring/DSpaceBeanPostProcessor:::postProcessBeforeInitialization (3 samples, 0.24%)</title><rect x="1135.7" y="421" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1138.68" y="431.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (17 samples, 1.35%)</title><rect x="94.3" y="517" width="15.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="97.29" y="527.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractAutowireCapableBeanFactory:::resolveBeforeInstantiation (1 samples, 0.08%)</title><rect x="1134.7" y="469" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1137.75" y="479.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.08%)</title><rect x="1152.5" y="421" width="1.0" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="1155.54" y="431.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="87.7" y="661" width="1.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="90.73" y="671.5" ></text>
</g>
<g >
<title>org/hibernate/persister/entity/AbstractEntityPersister:::hydrate (1 samples, 0.08%)</title><rect x="774.2" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="777.19" y="431.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.08%)</title><rect x="80.2" y="613" width="1.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="83.24" y="623.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::prepareEntityFlushes (97 samples, 7.70%)</title><rect x="572.8" y="453" width="90.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="575.84" y="463.5" >org/hibern..</text>
</g>
<g >
<title>__dev_queue_xmit (1 samples, 0.08%)</title><rect x="110.2" y="533" width="0.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="113.21" y="543.5" ></text>
</g>
<g >
<title>org/dspace/eperson/Group_$$_jvst437_1e:::getHibernateLazyInitializer (1 samples, 0.08%)</title><rect x="410.8" y="421" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="413.83" y="431.5" ></text>
</g>
<g >
<title>__netif_receive_skb (15 samples, 1.19%)</title><rect x="96.2" y="453" width="14.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="99.16" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/internal/IteratorImpl:::next (1 samples, 0.08%)</title><rect x="1164.7" y="549" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1167.71" y="559.5" ></text>
</g>
<g >
<title>update_blocked_averages (2 samples, 0.16%)</title><rect x="1117.9" y="293" width="1.9" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="1120.89" y="303.5" ></text>
</g>
<g >
<title>java/lang/Object:::hashCode (2 samples, 0.16%)</title><rect x="845.4" y="373" width="1.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="848.37" y="383.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="798.5" y="277" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="801.54" y="287.5" ></text>
</g>
<g >
<title>java/util/HashMap:::resize (1 samples, 0.08%)</title><rect x="1119.8" y="357" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1122.76" y="367.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultSaveOrUpdateEventListener:::onSaveOrUpdate (3 samples, 0.24%)</title><rect x="991.5" y="389" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="994.46" y="399.5" ></text>
</g>
<g >
<title>tick_sched_handle (1 samples, 0.08%)</title><rect x="223.5" y="309" width="1.0" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="226.52" y="319.5" ></text>
</g>
<g >
<title>org/apache/http/entity/HttpEntityWrapper:::isChunked (1 samples, 0.08%)</title><rect x="802.3" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="805.29" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/internal/util/collections/IdentityMap:::entryArray (2 samples, 0.16%)</title><rect x="743.3" y="453" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="746.29" y="463.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractBeanFactory:::doGetBean (3 samples, 0.24%)</title><rect x="1135.7" y="469" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1138.68" y="479.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/MapConfiguration$1:::entrySet (1 samples, 0.08%)</title><rect x="1135.7" y="357" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1138.68" y="367.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::request (9 samples, 0.71%)</title><rect x="1146.9" y="501" width="8.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1149.92" y="511.5" ></text>
</g>
<g >
<title>org/dspace/servicemanager/config/DSpaceConfigurationService:::getArrayProperty (3 samples, 0.24%)</title><rect x="1138.5" y="517" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1141.49" y="527.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/EntityEntryContext:::reentrantSafeEntityEntries (3 samples, 0.24%)</title><rect x="653.4" y="437" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="656.38" y="447.5" ></text>
</g>
<g >
<title>org/apache/http/conn/BasicManagedEntity:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="1155.3" y="437" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1158.35" y="447.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="790.1" y="309" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="793.11" y="319.5" ></text>
</g>
<g >
<title>java/lang/Object:::hashCode (1 samples, 0.08%)</title><rect x="1135.7" y="325" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1138.68" y="335.5" ></text>
</g>
<g >
<title>java/net/SocketTimeoutException:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="1150.7" y="261" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1153.67" y="271.5" ></text>
</g>
<g >
<title>org/hibernate/proxy/pojo/javassist/JavassistLazyInitializer:::invoke (1 samples, 0.08%)</title><rect x="232.0" y="373" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="234.95" y="383.5" ></text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::fireLoad (3 samples, 0.24%)</title><rect x="758.3" y="485" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="761.27" y="495.5" ></text>
</g>
<g >
<title>org/apache/http/impl/conn/ManagedClientConnectionImpl:::sendRequestEntity (1 samples, 0.08%)</title><rect x="1159.1" y="389" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1162.10" y="399.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::isDirty (1 samples, 0.08%)</title><rect x="727.4" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="730.37" y="431.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="817.3" y="117" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="820.27" y="127.5" ></text>
</g>
<g >
<title>org/hibernate/engine/jdbc/internal/ResultSetReturnImpl:::extract (1 samples, 0.08%)</title><rect x="761.1" y="373" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="764.08" y="383.5" ></text>
</g>
<g >
<title>sun/nio/cs/UTF_8$Decoder:::decode (1 samples, 0.08%)</title><rect x="790.1" y="213" width="0.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="793.11" y="223.5" ></text>
</g>
<g >
<title>sun/nio/cs/UTF_8$Encoder:::encodeArrayLoop (1 samples, 0.08%)</title><rect x="788.2" y="309" width="1.0" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="791.24" y="319.5" ></text>
</g>
<g >
<title>x86_pmu_enable (1 samples, 0.08%)</title><rect x="223.5" y="229" width="1.0" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="226.52" y="239.5" ></text>
</g>
<g >
<title>java/util/HashSet:::add (2 samples, 0.16%)</title><rect x="845.4" y="389" width="1.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="848.37" y="399.5" ></text>
</g>
<g >
<title>handle_irq_event (1 samples, 0.08%)</title><rect x="1124.4" y="357" width="1.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="1127.44" y="367.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::doQueryAndInitializeNonLazyCollections (2 samples, 0.16%)</title><rect x="780.7" y="437" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="783.75" y="447.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="797.6" y="53" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="800.60" y="63.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/EntityEnclosingRequestWrapper$EntityWrapper:::writeTo (1 samples, 0.08%)</title><rect x="1159.1" y="341" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1162.10" y="351.5" ></text>
</g>
<g >
<title>java/util/HashSet:::add (13 samples, 1.03%)</title><rect x="852.9" y="405" width="12.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="855.86" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/type/descriptor/java/AbstractTypeDescriptor:::areEqual (1 samples, 0.08%)</title><rect x="954.0" y="389" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="957.00" y="399.5" ></text>
</g>
<g >
<title>org/hibernate/type/AbstractStandardBasicType:::isCollectionType (1 samples, 0.08%)</title><rect x="1093.5" y="421" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1096.54" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/type/descriptor/java/AbstractTypeDescriptor:::areEqual (1 samples, 0.08%)</title><rect x="194.5" y="389" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="197.49" y="399.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (2 samples, 0.16%)</title><rect x="222.6" y="389" width="1.9" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="225.59" y="399.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::tryExecute (10 samples, 0.79%)</title><rect x="792.9" y="453" width="9.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="795.92" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/Cascade:::cascade (27 samples, 2.14%)</title><rect x="1102.0" y="421" width="25.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1104.97" y="431.5" >o..</text>
</g>
<g >
<title>org/hibernate/loader/Loader:::bindParameterValues (1 samples, 0.08%)</title><rect x="1004.6" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1007.57" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::onFlushEntity (203 samples, 16.11%)</title><rect x="352.8" y="437" width="190.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="355.76" y="447.5" >org/hibernate/event/inte..</text>
</g>
<g >
<title>org/apache/http/impl/conn/ManagedClientConnectionImpl:::sendRequestEntity (1 samples, 0.08%)</title><rect x="815.4" y="373" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="818.40" y="383.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::dirtyCheck (32 samples, 2.54%)</title><rect x="414.6" y="421" width="29.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="417.57" y="431.5" >or..</text>
</g>
<g >
<title>org/hibernate/persister/entity/AbstractEntityPersister:::load (3 samples, 0.24%)</title><rect x="758.3" y="405" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="761.27" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/type/descriptor/java/AbstractTypeDescriptor:::areEqual (1 samples, 0.08%)</title><rect x="242.3" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="245.25" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/persister/entity/AbstractEntityPersister:::getSubclassPropertyTableNumber (1 samples, 0.08%)</title><rect x="1012.1" y="373" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1015.06" y="383.5" ></text>
</g>
<g >
<title>update_sd_lb_stats (1 samples, 0.08%)</title><rect x="59.6" y="645" width="1.0" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="62.63" y="655.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::wasInitialized (1 samples, 0.08%)</title><rect x="872.5" y="421" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="875.52" y="431.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::executeMethod (8 samples, 0.63%)</title><rect x="1155.3" y="485" width="7.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1158.35" y="495.5" ></text>
</g>
<g >
<title>org/dspace/content/Bundle:::getName (1 samples, 0.08%)</title><rect x="784.5" y="485" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="787.49" y="495.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/AbstractHttpClient:::doExecute (7 samples, 0.56%)</title><rect x="1148.8" y="469" width="6.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1151.79" y="479.5" ></text>
</g>
<g >
<title>ip_local_deliver (5 samples, 0.40%)</title><rect x="97.1" y="389" width="4.7" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="100.10" y="399.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.16%)</title><rect x="1161.0" y="341" width="1.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1163.97" y="351.5" ></text>
</g>
<g >
<title>org/hibernate/loader/BasicLoader:::postInstantiate (2 samples, 0.16%)</title><rect x="1005.5" y="453" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1008.51" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::getOrphans (3 samples, 0.24%)</title><rect x="748.0" y="421" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="750.97" y="431.5" ></text>
</g>
<g >
<title>org/dspace/servicemanager/config/DSpaceConfigurationService:::getProperty (4 samples, 0.32%)</title><rect x="1141.3" y="517" width="3.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1144.30" y="527.5" ></text>
</g>
<g >
<title>itable stub (9 samples, 0.71%)</title><rect x="1020.5" y="421" width="8.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="1023.49" y="431.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/tree/DefaultExpressionEngine:::findNodesForKey (2 samples, 0.16%)</title><rect x="866.0" y="453" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="868.97" y="463.5" ></text>
</g>
<g >
<title>JVM_IHashCode (2 samples, 0.16%)</title><rect x="845.4" y="357" width="1.8" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="848.37" y="367.5" ></text>
</g>
<g >
<title>ktime_get (1 samples, 0.08%)</title><rect x="294.7" y="309" width="0.9" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="297.70" y="319.5" ></text>
</g>
<g >
<title>do_syscall_64 (50 samples, 3.97%)</title><rect x="13.7" y="821" width="46.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="16.75" y="831.5" >do_s..</text>
</g>
<g >
<title>java/util/ArrayList:::iterator (1 samples, 0.08%)</title><rect x="972.7" y="405" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="975.73" y="415.5" ></text>
</g>
<g >
<title>java/util/HashSet:::add (2 samples, 0.16%)</title><rect x="1143.2" y="421" width="1.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1146.17" y="431.5" ></text>
</g>
<g >
<title>java/io/IOException:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="797.6" y="197" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="800.60" y="207.5" ></text>
</g>
<g >
<title>org/hibernate/engine/jdbc/internal/ResultSetReturnImpl:::extract (1 samples, 0.08%)</title><rect x="777.9" y="389" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="780.94" y="399.5" ></text>
</g>
<g >
<title>perf_event_task_tick (1 samples, 0.08%)</title><rect x="223.5" y="261" width="1.0" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="226.52" y="271.5" ></text>
</g>
<g >
<title>handle_fasteoi_irq (1 samples, 0.08%)</title><rect x="1124.4" y="373" width="1.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="1127.44" y="383.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::prepareCollectionFlushes (10 samples, 0.79%)</title><rect x="960.6" y="421" width="9.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="963.56" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::hasQueuedOperations (1 samples, 0.08%)</title><rect x="669.3" y="469" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="672.30" y="479.5" ></text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::resolve (1 samples, 0.08%)</title><rect x="785.4" y="405" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="788.43" y="415.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/content/InputStreamBody:::writeTo (1 samples, 0.08%)</title><rect x="797.6" y="309" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="800.60" y="319.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::withTemporarySessionIfNeeded (11 samples, 0.87%)</title><rect x="766.7" y="501" width="10.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="769.70" y="511.5" ></text>
</g>
<g >
<title>sun/reflect/UnsafeObjectFieldAccessorImpl:::get (2 samples, 0.16%)</title><rect x="996.1" y="389" width="1.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="999.14" y="399.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::doQueryAndInitializeNonLazyCollections (1 samples, 0.08%)</title><rect x="783.6" y="437" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="786.56" y="447.5" ></text>
</g>
<g >
<title>tcp_release_cb (1 samples, 0.08%)</title><rect x="62.4" y="725" width="1.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="65.44" y="735.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::doList (1 samples, 0.08%)</title><rect x="1004.6" y="453" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1007.57" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/type/AbstractStandardBasicType:::isComponentType (1 samples, 0.08%)</title><rect x="257.2" y="421" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="260.24" y="431.5" ></text>
</g>
<g >
<title>java/lang/Object:::hashCode (10 samples, 0.79%)</title><rect x="822.9" y="405" width="9.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="825.89" y="415.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1 samples, 0.08%)</title><rect x="158.0" y="373" width="0.9" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="160.97" y="383.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/Cascade:::cascade (1 samples, 0.08%)</title><rect x="756.4" y="469" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="759.40" y="479.5" ></text>
</g>
<g >
<title>nf_hook_slow (9 samples, 0.71%)</title><rect x="101.8" y="405" width="8.4" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="104.78" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::dirtyCheck (8 samples, 0.63%)</title><rect x="1056.1" y="405" width="7.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1059.08" y="415.5" ></text>
</g>
<g >
<title>call_stub (1 samples, 0.08%)</title><rect x="1161.9" y="277" width="0.9" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="1164.90" y="287.5" ></text>
</g>
<g >
<title>load_balance (1 samples, 0.08%)</title><rect x="59.6" y="677" width="1.0" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="62.63" y="687.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultSaveOrUpdateEventListener:::onSaveOrUpdate (10 samples, 0.79%)</title><rect x="637.5" y="421" width="9.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="640.46" y="431.5" ></text>
</g>
<g >
<title>java/lang/StringBuilder:::append (2 samples, 0.16%)</title><rect x="762.0" y="517" width="1.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="765.02" y="527.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1 samples, 0.08%)</title><rect x="223.5" y="357" width="1.0" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="226.52" y="367.5" ></text>
</g>
<g >
<title>org/hibernate/internal/SessionFactoryImpl:::getCollectionPersister (1 samples, 0.08%)</title><rect x="1002.7" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1005.70" y="415.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (1 samples, 0.08%)</title><rect x="158.0" y="357" width="0.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="160.97" y="367.5" ></text>
</g>
<g >
<title>Java_java_net_SocketOutputStream_socketWrite0 (2 samples, 0.16%)</title><rect x="799.5" y="277" width="1.8" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="802.48" y="287.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="969.0" y="357" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="971.98" y="367.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::tryExecute (1 samples, 0.08%)</title><rect x="815.4" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="818.40" y="431.5" ></text>
</g>
<g >
<title>net_rx_action (17 samples, 1.35%)</title><rect x="94.3" y="485" width="15.9" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="97.29" y="495.5" ></text>
</g>
<g >
<title>finish_task_switch (49 samples, 3.89%)</title><rect x="13.7" y="709" width="45.9" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="16.75" y="719.5" >fini..</text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEverythingToExecutions (98 samples, 7.78%)</title><rect x="664.6" y="485" width="91.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="667.62" y="495.5" >org/hibern..</text>
</g>
<g >
<title>java/net/SocketOutputStream:::socketWrite0 (1 samples, 0.08%)</title><rect x="313.4" y="405" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="316.43" y="415.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$CharProperty:::match (1 samples, 0.08%)</title><rect x="843.5" y="341" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="846.49" y="351.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/tree/DefaultExpressionEngine:::processSubNodes (2 samples, 0.16%)</title><rect x="866.0" y="437" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="868.97" y="447.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="80.2" y="629" width="1.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="83.24" y="639.5" ></text>
</g>
<g >
<title>org/apache/http/impl/conn/ManagedClientConnectionImpl:::sendRequestEntity (1 samples, 0.08%)</title><rect x="1149.7" y="389" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1152.73" y="399.5" ></text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::list (151 samples, 11.98%)</title><rect x="871.6" y="485" width="141.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="874.59" y="495.5" >org/hibernate/int..</text>
</g>
<g >
<title>org/hibernate/type/EntityType:::resolve (1 samples, 0.08%)</title><rect x="776.1" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="779.06" y="431.5" ></text>
</g>
<g >
<title>ip_rcv (14 samples, 1.11%)</title><rect x="97.1" y="421" width="13.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="100.10" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultLoadEventListener:::onLoad (1 samples, 0.08%)</title><rect x="776.1" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="779.06" y="415.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/util/ClientUtils:::writeVal (5 samples, 0.40%)</title><rect x="805.1" y="405" width="4.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="808.10" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::immediateLoad (3 samples, 0.24%)</title><rect x="758.3" y="501" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="761.27" y="511.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/MapConfiguration:::getProperty (1 samples, 0.08%)</title><rect x="1140.4" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1143.37" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/loader/entity/AbstractEntityLoader:::load (3 samples, 0.24%)</title><rect x="758.3" y="389" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="761.27" y="399.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::rewriteRequestURI (3 samples, 0.24%)</title><rect x="812.6" y="421" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="815.59" y="431.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.16%)</title><rect x="1161.0" y="373" width="1.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1163.97" y="383.5" ></text>
</g>
<g >
<title>acpi_ev_gpe_detect (1 samples, 0.08%)</title><rect x="1124.4" y="277" width="1.0" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="1127.44" y="287.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (4 samples, 0.32%)</title><rect x="10.0" y="693" width="3.7" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="13.00" y="703.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::execute (8 samples, 0.63%)</title><rect x="1155.3" y="453" width="7.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1158.35" y="463.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.08%)</title><rect x="818.2" y="373" width="0.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="821.21" y="383.5" ></text>
</g>
<g >
<title>itable stub (3 samples, 0.24%)</title><rect x="1013.0" y="437" width="2.8" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="1016.00" y="447.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match (1 samples, 0.08%)</title><rect x="843.5" y="469" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="846.49" y="479.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1 samples, 0.08%)</title><rect x="384.6" y="389" width="0.9" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="387.60" y="399.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="817.3" y="165" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="820.27" y="175.5" ></text>
</g>
<g >
<title>java/util/AbstractMap:::get (18 samples, 1.43%)</title><rect x="820.1" y="453" width="16.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="823.08" y="463.5" ></text>
</g>
<g >
<title>itable stub (3 samples, 0.24%)</title><rect x="876.3" y="405" width="2.8" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="879.27" y="415.5" ></text>
</g>
<g >
<title>psi_task_change (1 samples, 0.08%)</title><rect x="98.0" y="149" width="1.0" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="101.03" y="159.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (24 samples, 1.90%)</title><rect x="88.7" y="645" width="22.4" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="91.67" y="655.5" >_..</text>
</g>
<g >
<title>org/hibernate/type/EntityType:::nullSafeGet (1 samples, 0.08%)</title><rect x="1164.7" y="533" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1167.71" y="543.5" ></text>
</g>
<g >
<title>perf_event_update_userpage (1 samples, 0.08%)</title><rect x="13.7" y="581" width="1.0" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="16.75" y="591.5" ></text>
</g>
<g >
<title>tick_program_event (1 samples, 0.08%)</title><rect x="294.7" y="325" width="0.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="297.70" y="335.5" ></text>
</g>
<g >
<title>update_curr (1 samples, 0.08%)</title><rect x="518.5" y="293" width="1.0" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="521.52" y="303.5" ></text>
</g>
<g >
<title>__check_object_size (1 samples, 0.08%)</title><rect x="84.0" y="741" width="0.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="86.98" y="751.5" ></text>
</g>
<g >
<title>sun/reflect/UnsafeObjectFieldAccessorImpl:::get (1 samples, 0.08%)</title><rect x="733.0" y="437" width="0.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="735.98" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::getPersistenceContext (2 samples, 0.16%)</title><rect x="658.1" y="437" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="661.06" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::isDirty (1 samples, 0.08%)</title><rect x="325.6" y="453" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="328.60" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/engine/spi/TypedValue:::hashCode (2 samples, 0.16%)</title><rect x="635.6" y="373" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="638.59" y="383.5" ></text>
</g>
<g >
<title>JVM_IHashCode (1 samples, 0.08%)</title><rect x="779.8" y="325" width="0.9" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="782.81" y="335.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::dirtyCheck (10 samples, 0.79%)</title><rect x="914.7" y="389" width="9.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="917.67" y="399.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="789.2" y="325" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="792.17" y="335.5" ></text>
</g>
<g >
<title>update_curr (1 samples, 0.08%)</title><rect x="115.8" y="741" width="1.0" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="118.83" y="751.5" ></text>
</g>
<g >
<title>intel_tfa_pmu_enable_all (1 samples, 0.08%)</title><rect x="223.5" y="213" width="1.0" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="226.52" y="223.5" ></text>
</g>
<g >
<title>org/hibernate/engine/jdbc/internal/ResultSetReturnImpl:::extract (1 samples, 0.08%)</title><rect x="313.4" y="453" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="316.43" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::checkTransactionSynchStatus (1 samples, 0.08%)</title><rect x="1003.6" y="405" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1006.63" y="415.5" ></text>
</g>
<g >
<title>[libjvm.so] (4 samples, 0.32%)</title><rect x="857.5" y="357" width="3.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="860.54" y="367.5" ></text>
</g>
<g >
<title>org/apache/log4j/WriterAppender:::subAppend (1 samples, 0.08%)</title><rect x="788.2" y="341" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="791.24" y="351.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::list (1 samples, 0.08%)</title><rect x="1004.6" y="469" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1007.57" y="479.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="1150.7" y="149" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1153.67" y="159.5" ></text>
</g>
<g >
<title>jshort_arraycopy (1 samples, 0.08%)</title><rect x="1009.3" y="405" width="0.9" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="1012.25" y="415.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/DefaultSingletonBeanRegistry:::getSingleton (1 samples, 0.08%)</title><rect x="867.8" y="469" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="870.84" y="479.5" ></text>
</g>
<g >
<title>org/dspace/content/Collection_$$_jvst437_11:::getName (1 samples, 0.08%)</title><rect x="777.0" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="780.00" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::withTemporarySessionIfNeeded (7 samples, 0.56%)</title><rect x="312.5" y="485" width="6.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="315.49" y="495.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="779.8" y="309" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="782.81" y="319.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractAutowireCapableBeanFactory:::initializeBean (3 samples, 0.24%)</title><rect x="1135.7" y="437" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1138.68" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEverythingToExecutions (142 samples, 11.27%)</title><rect x="871.6" y="437" width="133.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="874.59" y="447.5" >org/hibernate/ev..</text>
</g>
<g >
<title>schedule (50 samples, 3.97%)</title><rect x="13.7" y="741" width="46.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="16.75" y="751.5" >sche..</text>
</g>
<g >
<title>group_sched_in (1 samples, 0.08%)</title><rect x="13.7" y="613" width="1.0" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="16.75" y="623.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/PersistentList:::toArray (1 samples, 0.08%)</title><rect x="782.6" y="453" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="785.62" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::onFlushEntity (69 samples, 5.48%)</title><rect x="1028.9" y="421" width="64.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1031.92" y="431.5" >org/hib..</text>
</g>
<g >
<title>update_process_times (1 samples, 0.08%)</title><rect x="87.7" y="581" width="1.0" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="90.73" y="591.5" ></text>
</g>
<g >
<title>ttwu_do_activate (1 samples, 0.08%)</title><rect x="98.0" y="181" width="1.0" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="101.03" y="191.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::tryExecute (1 samples, 0.08%)</title><rect x="1149.7" y="437" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1152.73" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::isDirty (2 samples, 0.16%)</title><rect x="1060.8" y="389" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1063.76" y="399.5" ></text>
</g>
<g >
<title>tick_sched_do_timer (1 samples, 0.08%)</title><rect x="384.6" y="341" width="0.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="387.60" y="351.5" ></text>
</g>
<g >
<title>org/dspace/eperson/Group_$$_jvst437_1e:::getHibernateLazyInitializer (1 samples, 0.08%)</title><rect x="950.3" y="373" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="953.25" y="383.5" ></text>
</g>
<g >
<title>java/util/HashMap:::resize (1 samples, 0.08%)</title><rect x="1140.4" y="357" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1143.37" y="367.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (1 samples, 0.08%)</title><rect x="1150.7" y="421" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1153.67" y="431.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="797.6" y="101" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="800.60" y="111.5" ></text>
</g>
<g >
<title>[libjvm.so] (26 samples, 2.06%)</title><rect x="1165.7" y="821" width="24.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1168.65" y="831.5" >[..</text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor30:::invoke (1 samples, 0.08%)</title><rect x="870.7" y="453" width="0.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="873.65" y="463.5" ></text>
</g>
<g >
<title>java/util/AbstractMap:::get (18 samples, 1.43%)</title><rect x="849.1" y="437" width="16.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="852.11" y="447.5" ></text>
</g>
<g >
<title>org/dspace/core/HibernateDBConnection:::uncacheEntity (130 samples, 10.32%)</title><rect x="1013.0" y="501" width="121.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1016.00" y="511.5" >org/dspace/core..</text>
</g>
<g >
<title>org/hibernate/engine/spi/CascadeStyle:::hasOrphanDelete (1 samples, 0.08%)</title><rect x="1131.9" y="421" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1134.94" y="431.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/MapConfiguration:::getProperty (3 samples, 0.24%)</title><rect x="1142.2" y="469" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1145.24" y="479.5" ></text>
</g>
<g >
<title>org/hibernate/type/AbstractStandardBasicType:::isDirty (1 samples, 0.08%)</title><rect x="187.9" y="389" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="190.94" y="399.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="384.6" y="405" width="0.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="387.60" y="415.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/AbstractHttpClient:::doExecute (8 samples, 0.63%)</title><rect x="1155.3" y="469" width="7.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1158.35" y="479.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1 samples, 0.08%)</title><rect x="294.7" y="341" width="0.9" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="297.70" y="351.5" ></text>
</g>
<g >
<title>run_rebalance_domains (2 samples, 0.16%)</title><rect x="1117.9" y="309" width="1.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="1120.89" y="319.5" ></text>
</g>
<g >
<title>pick_next_task_fair (1 samples, 0.08%)</title><rect x="59.6" y="709" width="1.0" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="62.63" y="719.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/HttpRequestExecutor:::doSendRequest (1 samples, 0.08%)</title><rect x="1149.7" y="405" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1152.73" y="415.5" ></text>
</g>
<g >
<title>__alloc_skb (2 samples, 0.16%)</title><rect x="86.8" y="709" width="1.9" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="89.79" y="719.5" ></text>
</g>
<g >
<title>org/dspace/discovery/SolrServiceImpl:::writeDocument (35 samples, 2.78%)</title><rect x="786.4" y="517" width="32.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="789.37" y="527.5" >or..</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="790.1" y="293" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="793.11" y="303.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/Cascade:::cascade (1 samples, 0.08%)</title><rect x="756.4" y="453" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="759.40" y="463.5" ></text>
</g>
<g >
<title>sun/reflect/UnsafeObjectFieldAccessorImpl:::get (2 samples, 0.16%)</title><rect x="1125.4" y="405" width="1.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="1128.38" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/FlushVisitor:::processCollection (14 samples, 1.11%)</title><rect x="1063.6" y="405" width="13.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1066.57" y="415.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="798.5" y="261" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="801.54" y="271.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (1 samples, 0.08%)</title><rect x="384.6" y="373" width="0.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="387.60" y="383.5" ></text>
</g>
<g >
<title>tick_sched_timer (1 samples, 0.08%)</title><rect x="990.5" y="277" width="1.0" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="993.52" y="287.5" ></text>
</g>
<g >
<title>org/apache/log4j/WriterAppender:::subAppend (1 samples, 0.08%)</title><rect x="792.0" y="309" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="794.98" y="319.5" ></text>
</g>
<g >
<title>org/dspace/discovery/SolrServiceImpl:::indexContent (435 samples, 34.52%)</title><rect x="757.3" y="549" width="407.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="760.33" y="559.5" >org/dspace/discovery/SolrServiceImpl:::indexContent</text>
</g>
<g >
<title>process_backlog (16 samples, 1.27%)</title><rect x="95.2" y="469" width="15.0" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="98.22" y="479.5" ></text>
</g>
<g >
<title>org/dspace/discovery/SolrServiceImpl:::unIndexContent (8 samples, 0.63%)</title><rect x="1155.3" y="533" width="7.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1158.35" y="543.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/request/UpdateRequest:::writeXML (5 samples, 0.40%)</title><rect x="805.1" y="437" width="4.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="808.10" y="447.5" ></text>
</g>
<g >
<title>java/io/FileInputStream:::&lt;init&gt; (2 samples, 0.16%)</title><rect x="789.2" y="405" width="1.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="792.17" y="415.5" ></text>
</g>
<g >
<title>java/io/SequenceInputStream:::nextStream (5 samples, 0.40%)</title><rect x="788.2" y="469" width="4.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="791.24" y="479.5" ></text>
</g>
<g >
<title>x86_pmu_enable (16 samples, 1.27%)</title><rect x="65.3" y="613" width="14.9" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="68.25" y="623.5" ></text>
</g>
<g >
<title>org/apache/http/impl/io/SocketInputBuffer:::isDataAvailable (1 samples, 0.08%)</title><rect x="1150.7" y="437" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1153.67" y="447.5" ></text>
</g>
<g >
<title>run_rebalance_domains (1 samples, 0.08%)</title><rect x="80.2" y="581" width="1.0" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="83.24" y="591.5" ></text>
</g>
<g >
<title>[libjvm.so] (1,118 samples, 88.73%)</title><rect x="118.6" y="805" width="1047.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="121.63" y="815.5" >[libjvm.so]</text>
</g>
<g >
<title>perf_pmu_enable.part.0 (1 samples, 0.08%)</title><rect x="223.5" y="245" width="1.0" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="226.52" y="255.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/TwoPhaseLoad:::doInitializeEntity (2 samples, 0.16%)</title><rect x="316.2" y="437" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="319.24" y="447.5" ></text>
</g>
<g >
<title>tcp_push (1 samples, 0.08%)</title><rect x="84.9" y="741" width="1.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="87.92" y="751.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (1 samples, 0.08%)</title><rect x="114.9" y="757" width="0.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="117.89" y="767.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::getRowFromResultSet (1 samples, 0.08%)</title><rect x="314.4" y="453" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="317.37" y="463.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="1150.7" y="197" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1153.67" y="207.5" ></text>
</g>
<g >
<title>java/util/HashSet:::add (1 samples, 0.08%)</title><rect x="990.5" y="357" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="993.52" y="367.5" ></text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::getCollection (1 samples, 0.08%)</title><rect x="779.8" y="357" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="782.81" y="367.5" ></text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::autoFlushIfRequired (142 samples, 11.27%)</title><rect x="871.6" y="469" width="133.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="874.59" y="479.5" >org/hibernate/in..</text>
</g>
<g >
<title>java/util/regex/Pattern$GroupTail:::match (1 samples, 0.08%)</title><rect x="843.5" y="389" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="846.49" y="399.5" ></text>
</g>
<g >
<title>tick_sched_timer (1 samples, 0.08%)</title><rect x="223.5" y="325" width="1.0" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="226.52" y="335.5" ></text>
</g>
<g >
<title>itable stub (8 samples, 0.63%)</title><rect x="128.0" y="421" width="7.5" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="131.00" y="431.5" ></text>
</g>
<g >
<title>java/util/HashMap:::resize (1 samples, 0.08%)</title><rect x="765.8" y="501" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="768.76" y="511.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/HttpRequestExecutor:::execute (1 samples, 0.08%)</title><rect x="1149.7" y="421" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1152.73" y="431.5" ></text>
</g>
<g >
<title>update_process_times (1 samples, 0.08%)</title><rect x="158.0" y="309" width="0.9" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="160.97" y="319.5" ></text>
</g>
<g >
<title>org/dspace/discovery/SolrServiceMetadataBrowseIndexingPlugin:::additionalIndex (54 samples, 4.29%)</title><rect x="819.1" y="517" width="50.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="822.14" y="527.5" >org/d..</text>
</g>
<g >
<title>JVM_IHashCode (1 samples, 0.08%)</title><rect x="1135.7" y="309" width="0.9" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="1138.68" y="319.5" ></text>
</g>
<g >
<title>call_stub (1,118 samples, 88.73%)</title><rect x="118.6" y="613" width="1047.1" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="121.63" y="623.5" >call_stub</text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::getCollection (1 samples, 0.08%)</title><rect x="785.4" y="389" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="788.43" y="399.5" ></text>
</g>
<g >
<title>org/hibernate/loader/entity/AbstractEntityLoader:::load (1 samples, 0.08%)</title><rect x="781.7" y="357" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="784.68" y="367.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::dirtyCheck (6 samples, 0.48%)</title><rect x="700.2" y="437" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="703.21" y="447.5" ></text>
</g>
<g >
<title>java/util/HashSet:::add (1 samples, 0.08%)</title><rect x="1135.7" y="341" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1138.68" y="351.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp2/DelegatingPreparedStatement:::executeQuery (1 samples, 0.08%)</title><rect x="777.9" y="373" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="780.94" y="383.5" ></text>
</g>
<g >
<title>java/util/ArrayList:::iterator (1 samples, 0.08%)</title><rect x="578.5" y="437" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="581.46" y="447.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::executeMethod (9 samples, 0.71%)</title><rect x="810.7" y="469" width="8.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="813.71" y="479.5" ></text>
</g>
<g >
<title>org/dspace/content/comparator/NameAscendingComparator:::compare (1 samples, 0.08%)</title><rect x="777.0" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="780.00" y="431.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/AbstractConfiguration:::getStringArray (1 samples, 0.08%)</title><rect x="1140.4" y="469" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1143.37" y="479.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="817.3" y="341" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="820.27" y="351.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupHead:::match (1 samples, 0.08%)</title><rect x="843.5" y="357" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="846.49" y="367.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/MapConfiguration:::getProperty (1 samples, 0.08%)</title><rect x="1137.6" y="389" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1140.56" y="399.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::doQueryAndInitializeNonLazyCollections (3 samples, 0.24%)</title><rect x="758.3" y="373" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="761.27" y="383.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::prepareCollectionFlushes (9 samples, 0.71%)</title><rect x="263.8" y="437" width="8.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="266.79" y="447.5" ></text>
</g>
<g >
<title>newidle_balance (1 samples, 0.08%)</title><rect x="81.2" y="645" width="0.9" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="84.17" y="655.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::initializeEntitiesAndCollections (1 samples, 0.08%)</title><rect x="776.1" y="453" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="779.06" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::isDirty (3 samples, 0.24%)</title><rect x="565.3" y="437" width="2.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="568.35" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::getRowFromResultSet (6 samples, 0.48%)</title><rect x="770.4" y="453" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="773.44" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEntities (82 samples, 6.51%)</title><rect x="1020.5" y="437" width="76.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1023.49" y="447.5" >org/hibe..</text>
</g>
<g >
<title>org/apache/http/HttpHost:::toHostString (1 samples, 0.08%)</title><rect x="1154.4" y="389" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1157.41" y="399.5" ></text>
</g>
<g >
<title>java/util/AbstractMap:::get (2 samples, 0.16%)</title><rect x="845.4" y="421" width="1.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="848.37" y="431.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendBind (1 samples, 0.08%)</title><rect x="758.3" y="277" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="761.27" y="287.5" ></text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::isDirty (1 samples, 0.08%)</title><rect x="704.0" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="706.95" y="431.5" ></text>
</g>
<g >
<title>scheduler_tick (1 samples, 0.08%)</title><rect x="87.7" y="565" width="1.0" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="90.73" y="575.5" ></text>
</g>
<g >
<title>org/hibernate/persister/entity/AbstractEntityPersister:::createJoin (1 samples, 0.08%)</title><rect x="1010.2" y="373" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1013.19" y="383.5" ></text>
</g>
<g >
<title>org/apache/http/impl/DefaultConnectionReuseStrategy:::canResponseHaveBody (1 samples, 0.08%)</title><rect x="1156.3" y="437" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1159.29" y="447.5" ></text>
</g>
<g >
<title>itable stub (7 samples, 0.56%)</title><rect x="319.0" y="453" width="6.6" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="322.05" y="463.5" ></text>
</g>
<g >
<title>org/apache/http/impl/entity/EntitySerializer:::serialize (10 samples, 0.79%)</title><rect x="792.9" y="373" width="9.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="795.92" y="383.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/ImmutableHttpProcessor:::process (1 samples, 0.08%)</title><rect x="802.3" y="437" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="805.29" y="447.5" ></text>
</g>
<g >
<title>sun/reflect/UnsafeObjectFieldAccessorImpl:::set (1 samples, 0.08%)</title><rect x="775.1" y="421" width="1.0" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="778.13" y="431.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendQuery (1 samples, 0.08%)</title><rect x="758.3" y="309" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="761.27" y="319.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/CombinedConfiguration:::fetchNodeList (20 samples, 1.59%)</title><rect x="849.1" y="469" width="18.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="852.11" y="479.5" ></text>
</g>
<g >
<title>visit_groups_merge (1 samples, 0.08%)</title><rect x="13.7" y="645" width="1.0" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="16.75" y="655.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$BmpCharProperty:::match (1 samples, 0.08%)</title><rect x="843.5" y="373" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="846.49" y="383.5" ></text>
</g>
<g >
<title>futex_wait (4 samples, 0.32%)</title><rect x="10.0" y="773" width="3.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="13.00" y="783.5" ></text>
</g>
<g >
<title>do_futex (50 samples, 3.97%)</title><rect x="13.7" y="789" width="46.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="16.75" y="799.5" >do_f..</text>
</g>
<g >
<title>org/dspace/storage/bitstore/BitstreamStorageServiceImpl:::retrieve (1 samples, 0.08%)</title><rect x="797.6" y="229" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="800.60" y="239.5" ></text>
</g>
<g >
<title>org/apache/http/impl/conn/ManagedClientConnectionImpl:::sendRequestEntity (10 samples, 0.79%)</title><rect x="792.9" y="405" width="9.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="795.92" y="415.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl:::invoke (1 samples, 0.08%)</title><rect x="777.0" y="373" width="0.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="780.00" y="383.5" ></text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::createCriteria (1 samples, 0.08%)</title><rect x="870.7" y="437" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="873.65" y="447.5" ></text>
</g>
<g >
<title>org/apache/log4j/helpers/QuietWriter:::write (1 samples, 0.08%)</title><rect x="788.2" y="325" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="791.24" y="335.5" ></text>
</g>
<g >
<title>JVM_FillInStackTrace (1 samples, 0.08%)</title><rect x="1161.9" y="213" width="0.9" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="1164.90" y="223.5" ></text>
</g>
<g >
<title>finish_task_switch (18 samples, 1.43%)</title><rect x="64.3" y="661" width="16.9" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="67.32" y="671.5" ></text>
</g>
<g >
<title>com/sun/proxy/$Proxy40:::createCriteria (1 samples, 0.08%)</title><rect x="870.7" y="485" width="0.9" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text x="873.65" y="495.5" ></text>
</g>
<g >
<title>java/lang/StringCoding:::decode (1 samples, 0.08%)</title><rect x="790.1" y="229" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="793.11" y="239.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/content/StringBody:::writeTo (4 samples, 0.32%)</title><rect x="798.5" y="309" width="3.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="801.54" y="319.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="1150.7" y="357" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1153.67" y="367.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEntities (147 samples, 11.67%)</title><rect x="126.1" y="437" width="137.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="129.13" y="447.5" >org/hibernate/eve..</text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (12 samples, 0.95%)</title><rect x="1178.8" y="789" width="11.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="1181.76" y="799.5" ></text>
</g>
<g >
<title>java/lang/Throwable:::fillInStackTrace (1 samples, 0.08%)</title><rect x="1150.7" y="245" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1153.67" y="255.5" ></text>
</g>
<g >
<title>ctx_sched_in (1 samples, 0.08%)</title><rect x="64.3" y="613" width="1.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="67.32" y="623.5" ></text>
</g>
<g >
<title>org/hibernate/type/AbstractStandardBasicType:::isCollectionType (1 samples, 0.08%)</title><rect x="544.7" y="437" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="547.75" y="447.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/RequestContent:::process (1 samples, 0.08%)</title><rect x="1153.5" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1156.48" y="415.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor16:::invoke (130 samples, 10.32%)</title><rect x="1013.0" y="469" width="121.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="1016.00" y="479.5" >sun/reflect/Gen..</text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::evict (1 samples, 0.08%)</title><rect x="756.4" y="485" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="759.40" y="495.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor16:::invoke (368 samples, 29.21%)</title><rect x="319.0" y="485" width="344.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="322.05" y="495.5" >sun/reflect/GeneratedMethodAccessor16:::invoke</text>
</g>
<g >
<title>org/hibernate/type/EntityType:::resolve (1 samples, 0.08%)</title><rect x="1164.7" y="517" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1167.71" y="527.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="797.6" y="85" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="800.60" y="95.5" ></text>
</g>
<g >
<title>org/dspace/content/Collection_$$_jvst437_11:::getHibernateLazyInitializer (1 samples, 0.08%)</title><rect x="777.0" y="213" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="780.00" y="223.5" ></text>
</g>
<g >
<title>org/apache/solr/common/util/XML:::escape (5 samples, 0.40%)</title><rect x="805.1" y="389" width="4.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="808.10" y="399.5" ></text>
</g>
<g >
<title>org/hibernate/type/AbstractStandardBasicType:::isCollectionType (4 samples, 0.32%)</title><rect x="519.5" y="421" width="3.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="522.46" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/EntityEntryContext:::reentrantSafeEntityEntries (4 samples, 0.32%)</title><rect x="998.0" y="405" width="3.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1001.02" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::prepareEntityFlushes (12 samples, 0.95%)</title><rect x="745.2" y="469" width="11.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="748.16" y="479.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="817.3" y="181" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="820.27" y="191.5" ></text>
</g>
<g >
<title>sun/reflect/UnsafeObjectFieldAccessorImpl:::get (1 samples, 0.08%)</title><rect x="311.6" y="421" width="0.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="314.56" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/context/internal/ThreadLocalSessionContext$TransactionProtectionWrapper:::invoke (130 samples, 10.32%)</title><rect x="1013.0" y="485" width="121.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1016.00" y="495.5" >org/hibernate/c..</text>
</g>
<g >
<title>acpi_ev_sci_xrupt_handler (1 samples, 0.08%)</title><rect x="1124.4" y="293" width="1.0" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="1127.44" y="303.5" ></text>
</g>
<g >
<title>irq_exit (2 samples, 0.16%)</title><rect x="1117.9" y="341" width="1.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="1120.89" y="351.5" ></text>
</g>
<g >
<title>itable stub (3 samples, 0.24%)</title><rect x="428.6" y="405" width="2.8" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="431.62" y="415.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (2 samples, 0.16%)</title><rect x="98.0" y="325" width="1.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="101.03" y="335.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/HttpRequestExecutor:::execute (1 samples, 0.08%)</title><rect x="815.4" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="818.40" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::prepareCollectionFlushes (4 samples, 0.32%)</title><rect x="741.4" y="469" width="3.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="744.41" y="479.5" ></text>
</g>
<g >
<title>org/apache/http/entity/InputStreamEntity:::writeTo (1 samples, 0.08%)</title><rect x="815.4" y="309" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="818.40" y="319.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::withTemporarySessionIfNeeded (1 samples, 0.08%)</title><rect x="783.6" y="453" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="786.56" y="463.5" ></text>
</g>
<g >
<title>throwFileNotFoundException (2 samples, 0.16%)</title><rect x="789.2" y="357" width="1.8" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="792.17" y="367.5" ></text>
</g>
<g >
<title>ip_finish_output2 (19 samples, 1.51%)</title><rect x="93.3" y="565" width="17.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="96.35" y="575.5" ></text>
</g>
<g >
<title>sun/reflect/UnsafeIntegerFieldAccessorImpl:::get (1 samples, 0.08%)</title><rect x="531.6" y="421" width="1.0" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="534.63" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/engine/spi/CascadingAction:::requiresNoCascadeChecking (1 samples, 0.08%)</title><rect x="1001.8" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1004.76" y="415.5" ></text>
</g>
<g >
<title>org/apache/http/impl/conn/DefaultClientConnection:::receiveResponseHeader (1 samples, 0.08%)</title><rect x="1158.2" y="373" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1161.16" y="383.5" ></text>
</g>
<g >
<title>tick_sched_handle (1 samples, 0.08%)</title><rect x="87.7" y="597" width="1.0" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="90.73" y="607.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::loadCollection (1 samples, 0.08%)</title><rect x="778.9" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="781.87" y="431.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="798.5" y="245" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="801.54" y="255.5" ></text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::isCollectionType (1 samples, 0.08%)</title><rect x="1081.4" y="389" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1084.37" y="399.5" ></text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::listeners (1 samples, 0.08%)</title><rect x="314.4" y="389" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="317.37" y="399.5" ></text>
</g>
<g >
<title>java/net/SocketOutputStream:::socketWrite0 (2 samples, 0.16%)</title><rect x="799.5" y="293" width="1.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="802.48" y="303.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor17:::invoke (1 samples, 0.08%)</title><rect x="663.7" y="485" width="0.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="666.68" y="495.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::getRowFromResultSet (1 samples, 0.08%)</title><rect x="782.6" y="405" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="785.62" y="415.5" ></text>
</g>
<g >
<title>pick_next_task_fair (1 samples, 0.08%)</title><rect x="81.2" y="661" width="0.9" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="84.17" y="671.5" ></text>
</g>
<g >
<title>intel_tfa_pmu_enable_all (16 samples, 1.27%)</title><rect x="65.3" y="597" width="14.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="68.25" y="607.5" ></text>
</g>
<g >
<title>org/hibernate/type/AbstractType:::isCollectionType (2 samples, 0.16%)</title><rect x="951.2" y="389" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="954.19" y="399.5" ></text>
</g>
<g >
<title>org/dspace/discovery/FullTextContentStreams$FullTextEnumeration:::nextElement (1 samples, 0.08%)</title><rect x="797.6" y="245" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="800.60" y="255.5" ></text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::evict (1 samples, 0.08%)</title><rect x="663.7" y="469" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="666.68" y="479.5" ></text>
</g>
<g >
<title>pollwake (1 samples, 0.08%)</title><rect x="98.0" y="229" width="1.0" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="101.03" y="239.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc/PgStatement:::executeInternal (1 samples, 0.08%)</title><rect x="758.3" y="325" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="761.27" y="335.5" ></text>
</g>
<g >
<title>iptable_raw_hook (1 samples, 0.08%)</title><rect x="90.5" y="581" width="1.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="93.54" y="591.5" ></text>
</g>
<g >
<title>[libjvm.so] (26 samples, 2.06%)</title><rect x="1165.7" y="805" width="24.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1168.65" y="815.5" >[..</text>
</g>
<g >
<title>java/util/regex/Pattern$GroupTail:::match (1 samples, 0.08%)</title><rect x="843.5" y="453" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="846.49" y="463.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/AbstractHttpClient:::doExecute (9 samples, 0.71%)</title><rect x="810.7" y="453" width="8.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="813.71" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/TwoPhaseLoad:::doInitializeEntity (1 samples, 0.08%)</title><rect x="781.7" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="784.68" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::doQueryAndInitializeNonLazyCollections (1 samples, 0.08%)</title><rect x="785.4" y="453" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="788.43" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/criterion/SimpleExpression:::toSqlString (1 samples, 0.08%)</title><rect x="1012.1" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1015.06" y="415.5" ></text>
</g>
<g >
<title>ipv4_conntrack_local (2 samples, 0.16%)</title><rect x="91.5" y="581" width="1.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="94.48" y="591.5" ></text>
</g>
<g >
<title>org/hibernate/engine/spi/TypedValue:::hashCode (1 samples, 0.08%)</title><rect x="748.9" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="751.90" y="415.5" ></text>
</g>
<g >
<title>pick_next_task_fair (1 samples, 0.08%)</title><rect x="518.5" y="325" width="1.0" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="521.52" y="335.5" ></text>
</g>
<g >
<title>sk_filter_trim_cap (1 samples, 0.08%)</title><rect x="97.1" y="325" width="0.9" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="100.10" y="335.5" ></text>
</g>
<g >
<title>org/dspace/servicemanager/config/DSpaceConfigurationService:::getPropertyAsType (3 samples, 0.24%)</title><rect x="1138.5" y="501" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1141.49" y="511.5" ></text>
</g>
<g >
<title>call_stub (1 samples, 0.08%)</title><rect x="790.1" y="277" width="0.9" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="793.11" y="287.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (1 samples, 0.08%)</title><rect x="98.0" y="261" width="1.0" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="101.03" y="271.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractBeanFactory:::doGetBean (1 samples, 0.08%)</title><rect x="867.8" y="485" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="870.84" y="495.5" ></text>
</g>
<g >
<title>java/util/HashSet:::add (1 samples, 0.08%)</title><rect x="1140.4" y="373" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1143.37" y="383.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.08%)</title><rect x="839.7" y="453" width="1.0" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="842.75" y="463.5" ></text>
</g>
<g >
<title>sun/reflect/UnsafeObjectFieldAccessorImpl:::get (10 samples, 0.79%)</title><rect x="243.2" y="405" width="9.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="246.19" y="415.5" ></text>
</g>
<g >
<title>do_syscall_64 (35 samples, 2.78%)</title><rect x="84.0" y="837" width="32.8" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="86.98" y="847.5" >do..</text>
</g>
<g >
<title>org/hibernate/collection/internal/PersistentList:::readFrom (1 samples, 0.08%)</title><rect x="782.6" y="389" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="785.62" y="399.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::execute (12 samples, 0.95%)</title><rect x="792.9" y="469" width="11.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="795.92" y="479.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/PersistentList:::toArray (1 samples, 0.08%)</title><rect x="783.6" y="469" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="786.56" y="479.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="1006.4" y="373" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1009.44" y="383.5" ></text>
</g>
<g >
<title>[libjvm.so] (1,118 samples, 88.73%)</title><rect x="118.6" y="821" width="1047.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="121.63" y="831.5" >[libjvm.so]</text>
</g>
<g >
<title>java/util/HashMap:::resize (3 samples, 0.24%)</title><rect x="862.2" y="389" width="2.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="865.22" y="399.5" ></text>
</g>
<g >
<title>intel_tfa_pmu_enable_all (48 samples, 3.81%)</title><rect x="14.7" y="645" width="44.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="17.68" y="655.5" >inte..</text>
</g>
<g >
<title>org/hibernate/type/AbstractStandardBasicType:::hydrate (1 samples, 0.08%)</title><rect x="774.2" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="777.19" y="415.5" ></text>
</g>
<g >
<title>visit_groups_merge (1 samples, 0.08%)</title><rect x="114.9" y="709" width="0.9" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="117.89" y="719.5" ></text>
</g>
<g >
<title>do_softirq.part.0 (17 samples, 1.35%)</title><rect x="94.3" y="533" width="15.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="97.29" y="543.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/WrapVisitor:::processValue (3 samples, 0.24%)</title><rect x="252.6" y="421" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="255.56" y="431.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="531.6" y="373" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="534.63" y="383.5" ></text>
</g>
<g >
<title>put_prev_entity (1 samples, 0.08%)</title><rect x="518.5" y="309" width="1.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="521.52" y="319.5" ></text>
</g>
<g >
<title>ctx_sched_in (1 samples, 0.08%)</title><rect x="114.9" y="725" width="0.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="117.89" y="735.5" ></text>
</g>
<g >
<title>java/lang/String:::hashCode (1 samples, 0.08%)</title><rect x="819.1" y="501" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="822.14" y="511.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEverythingToExecutions (130 samples, 10.32%)</title><rect x="1013.0" y="453" width="121.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1016.00" y="463.5" >org/hibernate/e..</text>
</g>
<g >
<title>java/lang/Throwable:::fillInStackTrace (1 samples, 0.08%)</title><rect x="817.3" y="229" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="820.27" y="239.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="817.3" y="325" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="820.27" y="335.5" ></text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::evict (1 samples, 0.08%)</title><rect x="756.4" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="759.40" y="431.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="1150.7" y="309" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1153.67" y="319.5" ></text>
</g>
<g >
<title>vtable stub (1 samples, 0.08%)</title><rect x="841.6" y="485" width="1.0" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text x="844.62" y="495.5" ></text>
</g>
<g >
<title>org/dspace/text/filter/LowerCaseAndTrim:::filter (1 samples, 0.08%)</title><rect x="868.8" y="485" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="871.78" y="495.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendOneQuery (1 samples, 0.08%)</title><rect x="758.3" y="293" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="761.27" y="303.5" ></text>
</g>
<g >
<title>__cgroup_bpf_run_filter_skb (1 samples, 0.08%)</title><rect x="97.1" y="309" width="0.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="100.10" y="319.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/StatefulPersistenceContext:::getCollectionEntry (1 samples, 0.08%)</title><rect x="1111.3" y="405" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1114.33" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/Cascade:::cascade (79 samples, 6.27%)</title><rect x="579.4" y="437" width="74.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="582.40" y="447.5" >org/hibe..</text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.08%)</title><rect x="1124.4" y="405" width="1.0" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="1127.44" y="415.5" ></text>
</g>
<g >
<title>__sched_text_start (12 samples, 0.95%)</title><rect x="1178.8" y="725" width="11.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="1181.76" y="735.5" ></text>
</g>
<g >
<title>nf_conntrack_in (1 samples, 0.08%)</title><rect x="91.5" y="565" width="0.9" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="94.48" y="575.5" ></text>
</g>
<g >
<title>org/apache/http/impl/io/SocketInputBuffer:::isDataAvailable (1 samples, 0.08%)</title><rect x="817.3" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="820.27" y="431.5" ></text>
</g>
<g >
<title>org/apache/http/impl/AbstractHttpClientConnection:::sendRequestEntity (1 samples, 0.08%)</title><rect x="815.4" y="357" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="818.40" y="367.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::onFlushEntity (125 samples, 9.92%)</title><rect x="135.5" y="421" width="117.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="138.49" y="431.5" >org/hibernate/..</text>
</g>
<g >
<title>org/dspace/app/util/DailyFileAppender:::subAppend (1 samples, 0.08%)</title><rect x="788.2" y="357" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="791.24" y="367.5" ></text>
</g>
<g >
<title>pthread_mutex_lock (1 samples, 0.08%)</title><rect x="313.4" y="373" width="1.0" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="316.43" y="383.5" ></text>
</g>
<g >
<title>[libjli.so] (1,118 samples, 88.73%)</title><rect x="118.6" y="853" width="1047.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="121.63" y="863.5" >[libjli.so]</text>
</g>
<g >
<title>org/hibernate/collection/internal/PersistentBag:::isEmpty (1 samples, 0.08%)</title><rect x="761.1" y="469" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="764.08" y="479.5" ></text>
</g>
<g >
<title>org/apache/log4j/helpers/AppenderAttachableImpl:::appendLoopOnAppenders (1 samples, 0.08%)</title><rect x="788.2" y="405" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="791.24" y="415.5" ></text>
</g>
<g >
<title>sun/reflect/UnsafeObjectFieldAccessorImpl:::get (1 samples, 0.08%)</title><rect x="958.7" y="405" width="0.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="961.68" y="415.5" ></text>
</g>
<g >
<title>timekeeping_advance (1 samples, 0.08%)</title><rect x="990.5" y="213" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="993.52" y="223.5" ></text>
</g>
<g >
<title>org/hibernate/loader/criteria/CriteriaJoinWalker:::&lt;init&gt; (6 samples, 0.48%)</title><rect x="1007.4" y="453" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1010.38" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/WrapVisitor:::processValue (4 samples, 0.32%)</title><rect x="728.3" y="437" width="3.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="731.30" y="447.5" ></text>
</g>
<g >
<title>java (1,260 samples, 100.00%)</title><rect x="10.0" y="885" width="1180.0" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text x="13.00" y="895.5" >java</text>
</g>
<g >
<title>org/dspace/content/Bundle:::getBitstreams (2 samples, 0.16%)</title><rect x="782.6" y="485" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="785.62" y="495.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::hasQueuedOperations (1 samples, 0.08%)</title><rect x="125.2" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="128.19" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/type/descriptor/java/AbstractTypeDescriptor:::areEqual (1 samples, 0.08%)</title><rect x="1062.6" y="389" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1065.63" y="399.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/CombinedConfiguration:::fetchNodeList (2 samples, 0.16%)</title><rect x="1138.5" y="469" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1141.49" y="479.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/tree/DefaultExpressionEngine:::processSubNodes (1 samples, 0.08%)</title><rect x="1139.4" y="437" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1142.43" y="447.5" ></text>
</g>
<g >
<title>intel_tfa_pmu_enable_all (12 samples, 0.95%)</title><rect x="1178.8" y="645" width="11.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="1181.76" y="655.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/StatefulPersistenceContext:::removeEntity (1 samples, 0.08%)</title><rect x="663.7" y="453" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="666.68" y="463.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::executeMethod (12 samples, 0.95%)</title><rect x="792.9" y="501" width="11.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="795.92" y="511.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::getRow (3 samples, 0.24%)</title><rect x="773.3" y="437" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="776.25" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::extractKeysFromResultSet (2 samples, 0.16%)</title><rect x="771.4" y="437" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="774.38" y="447.5" ></text>
</g>
<g >
<title>vtable stub (1 samples, 0.08%)</title><rect x="318.1" y="453" width="0.9" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text x="321.11" y="463.5" ></text>
</g>
<g >
<title>Java_java_net_SocketInputStream_socketRead0 (1 samples, 0.08%)</title><rect x="817.3" y="373" width="0.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="820.27" y="383.5" ></text>
</g>
<g >
<title>org/hibernate/persister/collection/AbstractCollectionPersister:::getElementPersister (1 samples, 0.08%)</title><rect x="659.9" y="437" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="662.94" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/FlushVisitor:::processCollection (56 samples, 4.44%)</title><rect x="444.5" y="421" width="52.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="447.54" y="431.5" >org/h..</text>
</g>
<g >
<title>tick_sched_do_timer (1 samples, 0.08%)</title><rect x="990.5" y="261" width="1.0" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="993.52" y="271.5" ></text>
</g>
<g >
<title>org/dspace/sort/OrderFormat:::makeSortString (1 samples, 0.08%)</title><rect x="868.8" y="501" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="871.78" y="511.5" ></text>
</g>
<g >
<title>java/lang/StringCoding:::encode (1 samples, 0.08%)</title><rect x="809.8" y="421" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="812.78" y="431.5" ></text>
</g>
<g >
<title>java/lang/Throwable:::fillInStackTrace (1 samples, 0.08%)</title><rect x="797.6" y="149" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="800.60" y="159.5" ></text>
</g>
<g >
<title>org/hibernate/type/descriptor/sql/BasicExtractor:::extract (2 samples, 0.16%)</title><rect x="771.4" y="421" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="774.38" y="431.5" ></text>
</g>
<g >
<title>JNU_NewStringPlatform (1 samples, 0.08%)</title><rect x="790.1" y="341" width="0.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="793.11" y="351.5" ></text>
</g>
<g >
<title>java/util/HashMap:::resize (1 samples, 0.08%)</title><rect x="1138.5" y="389" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1141.49" y="399.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (1 samples, 0.08%)</title><rect x="817.3" y="405" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="820.27" y="415.5" ></text>
</g>
<g >
<title>org/dspace/storage/bitstore/DSBitStoreService:::get (1 samples, 0.08%)</title><rect x="797.6" y="213" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="800.60" y="223.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::setOwner (1 samples, 0.08%)</title><rect x="913.7" y="389" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="916.73" y="399.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::handleResponse (1 samples, 0.08%)</title><rect x="1157.2" y="437" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1160.22" y="447.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl:::invoke (2 samples, 0.16%)</title><rect x="777.0" y="469" width="1.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="780.00" y="479.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::withTemporarySessionIfNeeded (1 samples, 0.08%)</title><rect x="761.1" y="453" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="764.08" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/loader/OuterJoinLoader:::getCollectionPersisters (1 samples, 0.08%)</title><rect x="760.1" y="357" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="763.14" y="367.5" ></text>
</g>
<g >
<title>org/hibernate/internal/util/collections/IdentityMap:::entryArray (5 samples, 0.40%)</title><rect x="568.2" y="437" width="4.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="571.16" y="447.5" ></text>
</g>
<g >
<title>sun/nio/cs/UTF_8$Encoder:::encode (1 samples, 0.08%)</title><rect x="809.8" y="405" width="0.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="812.78" y="415.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/CombinedConfiguration:::fetchNodeList (1 samples, 0.08%)</title><rect x="1136.6" y="389" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1139.62" y="399.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractAutowireCapableBeanFactory:::doCreateBean (3 samples, 0.24%)</title><rect x="1135.7" y="453" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1138.68" y="463.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/EntityEnclosingRequestWrapper$EntityWrapper:::writeTo (1 samples, 0.08%)</title><rect x="815.4" y="325" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="818.40" y="335.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/PersistentList:::toArray (1 samples, 0.08%)</title><rect x="779.8" y="453" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="782.81" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/type/AbstractStandardBasicType:::isDirty (1 samples, 0.08%)</title><rect x="431.4" y="405" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="434.43" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/criterion/LogicalExpression:::toSqlString (1 samples, 0.08%)</title><rect x="1012.1" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1015.06" y="431.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (1 samples, 0.08%)</title><rect x="553.2" y="421" width="0.9" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="556.17" y="431.5" ></text>
</g>
<g >
<title>JVM_IHashCode (6 samples, 0.48%)</title><rect x="856.6" y="373" width="5.6" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="859.60" y="383.5" ></text>
</g>
<g >
<title>java/io/ByteArrayInputStream:::read (1 samples, 0.08%)</title><rect x="1159.1" y="309" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1162.10" y="319.5" ></text>
</g>
<g >
<title>org/dspace/discovery/SolrServiceResourceRestrictionPlugin:::additionalIndex (283 samples, 22.46%)</title><rect x="869.7" y="517" width="265.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="872.71" y="527.5" >org/dspace/discovery/SolrServiceRes..</text>
</g>
<g >
<title>sun/reflect/UnsafeObjectFieldAccessorImpl:::get (1 samples, 0.08%)</title><rect x="1096.3" y="421" width="1.0" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="1099.35" y="431.5" ></text>
</g>
<g >
<title>find_busiest_group (1 samples, 0.08%)</title><rect x="59.6" y="661" width="1.0" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="62.63" y="671.5" ></text>
</g>
<g >
<title>org/hibernate/context/internal/ThreadLocalSessionContext$TransactionProtectionWrapper:::invoke (1 samples, 0.08%)</title><rect x="870.7" y="469" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="873.65" y="479.5" ></text>
</g>
<g >
<title>org/apache/solr/common/util/ContentStreamBase$StringStream:::getStream (1 samples, 0.08%)</title><rect x="809.8" y="437" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="812.78" y="447.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1 samples, 0.08%)</title><rect x="87.7" y="645" width="1.0" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="90.73" y="655.5" ></text>
</g>
<g >
<title>call_stub (1 samples, 0.08%)</title><rect x="817.3" y="261" width="0.9" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="820.27" y="271.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc/PgStatement:::executeInternal (1 samples, 0.08%)</title><rect x="313.4" y="421" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="316.43" y="431.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (2 samples, 0.16%)</title><rect x="1161.0" y="405" width="1.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1163.97" y="415.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/content/StringBody:::writeTo (1 samples, 0.08%)</title><rect x="1149.7" y="293" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1152.73" y="303.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/MapConfiguration$1:::entrySet (2 samples, 0.16%)</title><rect x="845.4" y="405" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="848.37" y="415.5" ></text>
</g>
<g >
<title>__handle_irq_event_percpu (1 samples, 0.08%)</title><rect x="1124.4" y="325" width="1.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="1127.44" y="335.5" ></text>
</g>
<g >
<title>org/hibernate/internal/SessionFactoryImpl:::getCollectionPersister (1 samples, 0.08%)</title><rect x="1133.8" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1136.81" y="431.5" ></text>
</g>
<g >
<title>[libjvm.so] (1,118 samples, 88.73%)</title><rect x="118.6" y="661" width="1047.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="121.63" y="671.5" >[libjvm.so]</text>
</g>
<g >
<title>ip_finish_output (19 samples, 1.51%)</title><rect x="93.3" y="597" width="17.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="96.35" y="607.5" ></text>
</g>
<g >
<title>org/apache/http/impl/conn/DefaultClientConnection:::sendRequestHeader (1 samples, 0.08%)</title><rect x="1160.0" y="373" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1163.03" y="383.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/HttpRequestExecutor:::execute (3 samples, 0.24%)</title><rect x="1158.2" y="421" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1161.16" y="431.5" ></text>
</g>
<g >
<title>java/lang/StringBuilder:::append (1 samples, 0.08%)</title><rect x="757.3" y="533" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="760.33" y="543.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::doQueryAndInitializeNonLazyCollections (10 samples, 0.79%)</title><rect x="767.6" y="469" width="9.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="770.63" y="479.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime (1 samples, 0.08%)</title><rect x="518.5" y="277" width="1.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="521.52" y="287.5" ></text>
</g>
<g >
<title>org/hibernate/persister/entity/AbstractEntityPersister:::getEntityName (1 samples, 0.08%)</title><rect x="1123.5" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1126.51" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/PersistentBag:::iterator (1 samples, 0.08%)</title><rect x="785.4" y="485" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="788.43" y="495.5" ></text>
</g>
<g >
<title>sun/reflect/UnsafeObjectFieldAccessorImpl:::get (4 samples, 0.32%)</title><rect x="259.1" y="421" width="3.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="262.11" y="431.5" ></text>
</g>
<g >
<title>org/apache/http/impl/entity/EntitySerializer:::serialize (1 samples, 0.08%)</title><rect x="1149.7" y="357" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1152.73" y="367.5" ></text>
</g>
<g >
<title>java/util/ArrayList:::toArray (1 samples, 0.08%)</title><rect x="802.3" y="341" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="805.29" y="351.5" ></text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::isCollectionType (3 samples, 0.24%)</title><rect x="1085.1" y="405" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1088.11" y="415.5" ></text>
</g>
<g >
<title>ctx_sched_in (1 samples, 0.08%)</title><rect x="13.7" y="661" width="1.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="16.75" y="671.5" ></text>
</g>
<g >
<title>org/hibernate/type/AbstractType:::isCollectionType (2 samples, 0.16%)</title><rect x="237.6" y="405" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="240.57" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/type/descriptor/java/AbstractTypeDescriptor:::areEqual (1 samples, 0.08%)</title><rect x="443.6" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="446.60" y="415.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (1 samples, 0.08%)</title><rect x="801.3" y="293" width="1.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="804.35" y="303.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/FormBodyPart:::generateContentType (1 samples, 0.08%)</title><rect x="787.3" y="469" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="790.30" y="479.5" ></text>
</g>
<g >
<title>java/lang/Object:::hashCode (1 samples, 0.08%)</title><rect x="1143.2" y="405" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1146.17" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/StatefulPersistenceContext:::getCollectionEntry (1 samples, 0.08%)</title><rect x="984.9" y="389" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="987.90" y="399.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor16:::invoke (207 samples, 16.43%)</title><rect x="118.6" y="469" width="193.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="121.63" y="479.5" >sun/reflect/GeneratedMeth..</text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::setOwner (1 samples, 0.08%)</title><rect x="175.8" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="178.76" y="415.5" ></text>
</g>
<g >
<title>org/dspace/discovery/FullTextContentStreams:::getStream (5 samples, 0.40%)</title><rect x="788.2" y="485" width="4.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="791.24" y="495.5" ></text>
</g>
<g >
<title>load_balance (1 samples, 0.08%)</title><rect x="81.2" y="629" width="0.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="84.17" y="639.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/TwoPhaseLoad:::doInitializeEntity (1 samples, 0.08%)</title><rect x="777.0" y="245" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="780.00" y="255.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/CombinedConfiguration:::fetchNodeList (1 samples, 0.08%)</title><rect x="1140.4" y="437" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1143.37" y="447.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="531.6" y="357" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="534.63" y="367.5" ></text>
</g>
<g >
<title>sun/reflect/UnsafeObjectFieldAccessorImpl:::get (2 samples, 0.16%)</title><rect x="955.9" y="389" width="1.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="958.87" y="399.5" ></text>
</g>
<g >
<title>org/dspace/content/Collection:::getName (1 samples, 0.08%)</title><rect x="777.0" y="341" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="780.00" y="351.5" ></text>
</g>
<g >
<title>org/dspace/eperson/Group_$$_jvst437_1e:::getHibernateLazyInitializer (3 samples, 0.24%)</title><rect x="230.1" y="389" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="233.08" y="399.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::processResults (3 samples, 0.24%)</title><rect x="767.6" y="405" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="770.63" y="415.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="1161.9" y="197" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1164.90" y="207.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::isDirty (2 samples, 0.16%)</title><rect x="1099.2" y="421" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1102.16" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::prepareEntityFlushes (43 samples, 3.41%)</title><rect x="272.2" y="437" width="40.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="275.22" y="447.5" >org..</text>
</g>
<g >
<title>org/hibernate/engine/jdbc/internal/JdbcCoordinatorImpl:::release (1 samples, 0.08%)</title><rect x="312.5" y="453" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="315.49" y="463.5" ></text>
</g>
<g >
<title>tcp_push (27 samples, 2.14%)</title><rect x="88.7" y="725" width="25.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="91.67" y="735.5" >t..</text>
</g>
<g >
<title>dev_hard_start_xmit (1 samples, 0.08%)</title><rect x="110.2" y="517" width="0.9" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text x="113.21" y="527.5" ></text>
</g>
<g >
<title>tcp_newly_delivered (1 samples, 0.08%)</title><rect x="99.0" y="293" width="0.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="101.97" y="303.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (1 samples, 0.08%)</title><rect x="769.5" y="373" width="0.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="772.51" y="383.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/MapConfiguration:::getProperty (2 samples, 0.16%)</title><rect x="845.4" y="437" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="848.37" y="447.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/MultipartEntity:::getContentType (1 samples, 0.08%)</title><rect x="1153.5" y="389" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1156.48" y="399.5" ></text>
</g>
<g >
<title>itable stub (14 samples, 1.11%)</title><rect x="158.9" y="405" width="13.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="161.90" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/type/AbstractStandardBasicType:::isCollectionType (2 samples, 0.16%)</title><rect x="255.4" y="421" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="258.37" y="431.5" ></text>
</g>
<g >
<title>queued_spin_lock_slowpath (1 samples, 0.08%)</title><rect x="59.6" y="597" width="1.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="62.63" y="607.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultLoadEventListener:::loadFromDatasource (3 samples, 0.24%)</title><rect x="758.3" y="421" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="761.27" y="431.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/FormBodyPart:::&lt;init&gt; (2 samples, 0.16%)</title><rect x="786.4" y="485" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="789.37" y="495.5" ></text>
</g>
<g >
<title>[libjava.so] (2 samples, 0.16%)</title><rect x="789.2" y="373" width="1.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="792.17" y="383.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="1006.4" y="357" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1009.44" y="367.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/MapConfiguration$1:::entrySet (16 samples, 1.27%)</title><rect x="822.0" y="437" width="14.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="824.95" y="447.5" ></text>
</g>
<g >
<title>ip_rcv_finish (5 samples, 0.40%)</title><rect x="97.1" y="405" width="4.7" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="100.10" y="415.5" ></text>
</g>
<g >
<title>Interpreter (1,118 samples, 88.73%)</title><rect x="118.6" y="581" width="1047.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="121.63" y="591.5" >Interpreter</text>
</g>
<g >
<title>Interpreter (1,118 samples, 88.73%)</title><rect x="118.6" y="693" width="1047.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="121.63" y="703.5" >Interpreter</text>
</g>
<g >
<title>org/apache/http/impl/AbstractHttpClientConnection:::receiveResponseHeader (1 samples, 0.08%)</title><rect x="1158.2" y="357" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1161.16" y="367.5" ></text>
</g>
<g >
<title>itable stub (13 samples, 1.03%)</title><rect x="898.7" y="389" width="12.2" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="901.75" y="399.5" ></text>
</g>
<g >
<title>org/dspace/eperson/Group_$$_jvst437_1e:::getHibernateLazyInitializer (1 samples, 0.08%)</title><rect x="172.0" y="405" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="175.02" y="415.5" ></text>
</g>
<g >
<title>update_process_times (1 samples, 0.08%)</title><rect x="223.5" y="293" width="1.0" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="226.52" y="303.5" ></text>
</g>
<g >
<title>handle_irq_event_percpu (1 samples, 0.08%)</title><rect x="1124.4" y="341" width="1.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="1127.44" y="351.5" ></text>
</g>
<g >
<title>java/util/AbstractMap:::get (1 samples, 0.08%)</title><rect x="1138.5" y="437" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1141.49" y="447.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern:::compile (1 samples, 0.08%)</title><rect x="844.4" y="485" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="847.43" y="495.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.08%)</title><rect x="971.8" y="405" width="0.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="974.79" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::checkNoUnresolvedActionsAfterOperation (1 samples, 0.08%)</title><rect x="994.3" y="389" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="997.27" y="399.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="223.5" y="373" width="1.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="226.52" y="383.5" ></text>
</g>
<g >
<title>update_blocked_averages (1 samples, 0.08%)</title><rect x="59.6" y="613" width="1.0" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="62.63" y="623.5" ></text>
</g>
<g >
<title>org/apache/log4j/Category:::callAppenders (1 samples, 0.08%)</title><rect x="788.2" y="421" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="791.24" y="431.5" ></text>
</g>
<g >
<title>dev_queue_xmit (1 samples, 0.08%)</title><rect x="110.2" y="549" width="0.9" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text x="113.21" y="559.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::prepareQueryStatement (1 samples, 0.08%)</title><rect x="783.6" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="786.56" y="431.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="790.1" y="325" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="793.11" y="335.5" ></text>
</g>
<g >
<title>org/dspace/content/DSpaceObjectServiceImpl:::getMetadata (1 samples, 0.08%)</title><rect x="778.9" y="453" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="781.87" y="463.5" ></text>
</g>
<g >
<title>org/dspace/discovery/SolrServiceContentInOriginalBundleFilterPlugin:::additionalIndex (4 samples, 0.32%)</title><rect x="782.6" y="517" width="3.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="785.62" y="527.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/tree/DefaultExpressionEngine:::findNodesForKey (1 samples, 0.08%)</title><rect x="1139.4" y="453" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1142.43" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/loader/criteria/CriteriaQueryTranslator:::getWhereCondition (1 samples, 0.08%)</title><rect x="1012.1" y="437" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1015.06" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::initializeEntitiesAndCollections (1 samples, 0.08%)</title><rect x="781.7" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="784.68" y="431.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1 samples, 0.08%)</title><rect x="990.5" y="309" width="1.0" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="993.52" y="319.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/FormBodyPart:::generateContentDisp (1 samples, 0.08%)</title><rect x="786.4" y="469" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="789.37" y="479.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (48 samples, 3.81%)</title><rect x="14.7" y="629" width="44.9" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="17.68" y="639.5" >__in..</text>
</g>
<g >
<title>_new_array_Java (1 samples, 0.08%)</title><rect x="798.5" y="293" width="1.0" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="801.54" y="303.5" ></text>
</g>
<g >
<title>Java_java_net_SocketOutputStream_socketWrite0 (1 samples, 0.08%)</title><rect x="313.4" y="389" width="1.0" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="316.43" y="399.5" ></text>
</g>
<g >
<title>org/dspace/core/HibernateDBConnection:::uncacheEntity (207 samples, 16.43%)</title><rect x="118.6" y="501" width="193.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="121.63" y="511.5" >org/dspace/core/Hibernate..</text>
</g>
<g >
<title>org/hibernate/proxy/pojo/javassist/JavassistLazyInitializer:::invoke (2 samples, 0.16%)</title><rect x="777.0" y="485" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="780.00" y="495.5" ></text>
</g>
<g >
<title>jlong_disjoint_arraycopy (1 samples, 0.08%)</title><rect x="804.2" y="437" width="0.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="807.16" y="447.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (17 samples, 1.35%)</title><rect x="64.3" y="645" width="15.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="67.32" y="655.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::isDirty (3 samples, 0.24%)</title><rect x="173.0" y="405" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="175.95" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/engine/spi/CascadingAction:::requiresNoCascadeChecking (1 samples, 0.08%)</title><rect x="620.6" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="623.60" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/EntityEntryContext:::reentrantSafeEntityEntries (5 samples, 0.40%)</title><rect x="1127.3" y="421" width="4.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1130.25" y="431.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (50 samples, 3.97%)</title><rect x="13.7" y="837" width="46.9" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text x="16.75" y="847.5" >entr..</text>
</g>
<g >
<title>__lll_lock_wait (4 samples, 0.32%)</title><rect x="10.0" y="853" width="3.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="13.00" y="863.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::getQueuedOrphans (1 samples, 0.08%)</title><rect x="287.2" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="290.21" y="415.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::executeMethod (7 samples, 0.56%)</title><rect x="1148.8" y="485" width="6.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1151.79" y="495.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (4 samples, 0.32%)</title><rect x="10.0" y="629" width="3.7" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="13.00" y="639.5" ></text>
</g>
<g >
<title>sun/reflect/UnsafeIntegerFieldAccessorImpl:::get (1 samples, 0.08%)</title><rect x="954.9" y="389" width="1.0" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="957.94" y="399.5" ></text>
</g>
<g >
<title>jlong_disjoint_arraycopy (1 samples, 0.08%)</title><rect x="763.9" y="517" width="0.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="766.89" y="527.5" ></text>
</g>
<g >
<title>org/apache/log4j/Category:::callAppenders (2 samples, 0.16%)</title><rect x="791.0" y="389" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="794.05" y="399.5" ></text>
</g>
<g >
<title>java/net/SocketOutputStream:::socketWrite0 (1 samples, 0.08%)</title><rect x="1149.7" y="261" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1152.73" y="271.5" ></text>
</g>
<g >
<title>all (1,260 samples, 100%)</title><rect x="10.0" y="901" width="1180.0" height="15.0" fill="rgb(255,130,130)" rx="2" ry="2" />
<text x="13.00" y="911.5" ></text>
</g>
<g >
<title>java/util/HashSet:::add (1 samples, 0.08%)</title><rect x="1119.8" y="373" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1122.76" y="383.5" ></text>
</g>
<g >
<title>java/io/FileInputStream:::open0 (2 samples, 0.16%)</title><rect x="789.2" y="389" width="1.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="792.17" y="399.5" ></text>
</g>
<g >
<title>__x64_sys_futex (50 samples, 3.97%)</title><rect x="13.7" y="805" width="46.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="16.75" y="815.5" >__x6..</text>
</g>
<g >
<title>org/apache/commons/configuration/MapConfiguration:::getProperty (18 samples, 1.43%)</title><rect x="820.1" y="469" width="16.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="823.08" y="479.5" ></text>
</g>
<g >
<title>JVM_FillInStackTrace (1 samples, 0.08%)</title><rect x="817.3" y="197" width="0.9" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="820.27" y="207.5" ></text>
</g>
<g >
<title>org/apache/log4j/Category:::error (2 samples, 0.16%)</title><rect x="791.0" y="405" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="794.05" y="415.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/tree/DefaultExpressionEngine:::processSubNodes (1 samples, 0.08%)</title><rect x="848.2" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="851.17" y="415.5" ></text>
</g>
<g >
<title>finish_task_switch (12 samples, 0.95%)</title><rect x="1178.8" y="709" width="11.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="1181.76" y="719.5" ></text>
</g>
<g >
<title>JVM_InternString (1 samples, 0.08%)</title><rect x="1006.4" y="389" width="1.0" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="1009.44" y="399.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (49 samples, 3.89%)</title><rect x="13.7" y="693" width="45.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="16.75" y="703.5" >__pe..</text>
</g>
<g >
<title>org/hibernate/loader/Loader:::doQueryAndInitializeNonLazyCollections (1 samples, 0.08%)</title><rect x="1004.6" y="437" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1007.57" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::prepareEntityFlushes (37 samples, 2.94%)</title><rect x="969.9" y="421" width="34.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="972.92" y="431.5" >or..</text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::isCollectionType (3 samples, 0.24%)</title><rect x="546.6" y="437" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="549.62" y="447.5" ></text>
</g>
<g >
<title>org/dspace/content/DSpaceObjectServiceImpl:::getMetadata (1 samples, 0.08%)</title><rect x="784.5" y="469" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="787.49" y="479.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/ImmutableHttpProcessor:::process (2 samples, 0.16%)</title><rect x="1153.5" y="421" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1156.48" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/internal/util/StringHelper:::replace (1 samples, 0.08%)</title><rect x="1011.1" y="357" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1014.13" y="367.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (24 samples, 1.90%)</title><rect x="88.7" y="677" width="22.4" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="91.67" y="687.5" >_..</text>
</g>
<g >
<title>tick_do_update_jiffies64.part.0 (1 samples, 0.08%)</title><rect x="990.5" y="245" width="1.0" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="993.52" y="255.5" ></text>
</g>
<g >
<title>org/dspace/content/DSpaceObjectServiceImpl:::getMetadata (1 samples, 0.08%)</title><rect x="777.0" y="325" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="780.00" y="335.5" ></text>
</g>
<g >
<title>org/dspace/content/DSpaceObjectServiceImpl:::getMetadata (11 samples, 0.87%)</title><rect x="766.7" y="517" width="10.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="769.70" y="527.5" ></text>
</g>
<g >
<title>interrupt_entry (1 samples, 0.08%)</title><rect x="427.7" y="405" width="0.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="430.68" y="415.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="1150.7" y="373" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1153.67" y="383.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/PersistentSet:::toArray (1 samples, 0.08%)</title><rect x="777.9" y="437" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="780.94" y="447.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="799.5" y="261" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="802.48" y="271.5" ></text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::hasHolder (1 samples, 0.08%)</title><rect x="496.0" y="405" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="499.05" y="415.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp2/DelegatingPreparedStatement:::executeQuery (1 samples, 0.08%)</title><rect x="761.1" y="357" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="764.08" y="367.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/CombinedConfiguration:::fetchNodeList (1 samples, 0.08%)</title><rect x="1135.7" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1138.68" y="415.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/MultipartEntityBuilder:::buildEntity (1 samples, 0.08%)</title><rect x="802.3" y="373" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="805.29" y="383.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::onFlushEntity (84 samples, 6.67%)</title><rect x="879.1" y="405" width="78.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="882.08" y="415.5" >org/hiber..</text>
</g>
<g >
<title>sun/reflect/UnsafeObjectFieldAccessorImpl:::get (7 samples, 0.56%)</title><rect x="301.3" y="405" width="6.5" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="304.25" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/type/ManyToOneType:::isDirty (1 samples, 0.08%)</title><rect x="528.8" y="421" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="531.83" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::doQueryAndInitializeNonLazyCollections (1 samples, 0.08%)</title><rect x="781.7" y="341" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="784.68" y="351.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.08%)</title><rect x="787.3" y="453" width="0.9" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="790.30" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultLoadEventListener:::onLoad (3 samples, 0.24%)</title><rect x="758.3" y="469" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="761.27" y="479.5" ></text>
</g>
<g >
<title>group_sched_in (1 samples, 0.08%)</title><rect x="64.3" y="565" width="1.0" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="67.32" y="575.5" ></text>
</g>
<g >
<title>org/dspace/discovery/SolrServiceImpl:::requiresIndexing (9 samples, 0.71%)</title><rect x="1146.9" y="533" width="8.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1149.92" y="543.5" ></text>
</g>
<g >
<title>org/hibernate/type/EntityType:::isEntityType (1 samples, 0.08%)</title><rect x="1094.5" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1097.48" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::initializeEntitiesAndCollections (1 samples, 0.08%)</title><rect x="785.4" y="437" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="788.43" y="447.5" ></text>
</g>
<g >
<title>org/apache/log4j/Category:::warn (1 samples, 0.08%)</title><rect x="788.2" y="437" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="791.24" y="447.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/RequestContent:::process (1 samples, 0.08%)</title><rect x="802.3" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="805.29" y="431.5" ></text>
</g>
<g >
<title>org/apache/http/impl/AbstractHttpClientConnection:::sendRequestEntity (1 samples, 0.08%)</title><rect x="1159.1" y="373" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1162.10" y="383.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::createMethod (1 samples, 0.08%)</title><rect x="1147.9" y="485" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1150.86" y="495.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="817.3" y="133" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="820.27" y="143.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::doQueryAndInitializeNonLazyCollections (1 samples, 0.08%)</title><rect x="777.9" y="405" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="780.94" y="415.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (12 samples, 0.95%)</title><rect x="1178.8" y="629" width="11.2" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="1181.76" y="639.5" ></text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::resolve (1 samples, 0.08%)</title><rect x="317.2" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="320.17" y="431.5" ></text>
</g>
<g >
<title>__entry_text_start (1 samples, 0.08%)</title><rect x="83.0" y="853" width="1.0" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="86.05" y="863.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::loadCollection (1 samples, 0.08%)</title><rect x="777.0" y="293" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="780.00" y="303.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::initializeEntitiesAndCollections (1 samples, 0.08%)</title><rect x="784.5" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="787.49" y="415.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.24%)</title><rect x="1176.0" y="789" width="2.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1178.95" y="799.5" ></text>
</g>
<g >
<title>intel_tfa_pmu_enable_all (4 samples, 0.32%)</title><rect x="10.0" y="645" width="3.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="13.00" y="655.5" ></text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::isDirty (3 samples, 0.24%)</title><rect x="921.2" y="373" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="924.22" y="383.5" ></text>
</g>
<g >
<title>java/util/LinkedList:::addAll (1 samples, 0.08%)</title><rect x="782.6" y="469" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="785.62" y="479.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/request/AbstractUpdateRequest:::process (16 samples, 1.27%)</title><rect x="804.2" y="501" width="14.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="807.16" y="511.5" ></text>
</g>
<g >
<title>java/util/LinkedList:::addAll (1 samples, 0.08%)</title><rect x="779.8" y="469" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="782.81" y="479.5" ></text>
</g>
<g >
<title>__tcp_push_pending_frames (26 samples, 2.06%)</title><rect x="88.7" y="709" width="24.3" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="91.67" y="719.5" >_..</text>
</g>
<g >
<title>exit_to_usermode_loop (1 samples, 0.08%)</title><rect x="518.5" y="373" width="1.0" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="521.52" y="383.5" ></text>
</g>
<g >
<title>org/dspace/eperson/Group_$$_jvst437_1e:::getHibernateLazyInitializer (2 samples, 0.16%)</title><rect x="910.9" y="389" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="913.92" y="399.5" ></text>
</g>
<g >
<title>JVM_IHashCode (1 samples, 0.08%)</title><rect x="1143.2" y="389" width="0.9" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="1146.17" y="399.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp2/DelegatingPreparedStatement:::executeQuery (3 samples, 0.24%)</title><rect x="767.6" y="437" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="770.63" y="447.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (2 samples, 0.16%)</title><rect x="1161.0" y="421" width="1.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1163.97" y="431.5" ></text>
</g>
<g >
<title>visit_groups_merge (1 samples, 0.08%)</title><rect x="64.3" y="597" width="1.0" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="67.32" y="607.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/request/RequestWriter$LazyContentStream:::getDelegate (6 samples, 0.48%)</title><rect x="804.2" y="453" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="807.16" y="463.5" ></text>
</g>
<g >
<title>java/lang/String:::intern (1 samples, 0.08%)</title><rect x="1006.4" y="405" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1009.44" y="415.5" ></text>
</g>
<g >
<title>default_wake_function (1 samples, 0.08%)</title><rect x="98.0" y="213" width="1.0" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="101.03" y="223.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/StatefulPersistenceContext:::proxyFor (1 samples, 0.08%)</title><rect x="770.4" y="437" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="773.44" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/StatefulPersistenceContext:::getCollectionEntry (2 samples, 0.16%)</title><rect x="618.7" y="421" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="621.73" y="431.5" ></text>
</g>
<g >
<title>activate_task (1 samples, 0.08%)</title><rect x="98.0" y="165" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="101.03" y="175.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp2/DelegatingPreparedStatement:::executeQuery (1 samples, 0.08%)</title><rect x="313.4" y="437" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="316.43" y="447.5" ></text>
</g>
<g >
<title>security_socket_sendmsg (1 samples, 0.08%)</title><rect x="114.0" y="773" width="0.9" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text x="116.95" y="783.5" ></text>
</g>
<g >
<title>Interpreter (1,118 samples, 88.73%)</title><rect x="118.6" y="565" width="1047.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="121.63" y="575.5" >Interpreter</text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.08%)</title><rect x="384.6" y="421" width="0.9" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="387.60" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultSaveOrUpdateEventListener:::onSaveOrUpdate (2 samples, 0.16%)</title><rect x="750.8" y="437" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="753.78" y="447.5" ></text>
</g>
<g >
<title>itable stub (16 samples, 1.27%)</title><rect x="1041.1" y="405" width="15.0" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="1044.10" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/type/EntityType:::loadByUniqueKey (1 samples, 0.08%)</title><rect x="781.7" y="373" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="784.68" y="383.5" ></text>
</g>
<g >
<title>schedule (4 samples, 0.32%)</title><rect x="10.0" y="741" width="3.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="13.00" y="751.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp2/DelegatingPreparedStatement:::executeQuery (1 samples, 0.08%)</title><rect x="758.3" y="341" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="761.27" y="351.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/TwoPhaseLoad:::doInitializeEntity (1 samples, 0.08%)</title><rect x="779.8" y="389" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="782.81" y="399.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultSaveOrUpdateEventListener:::onSaveOrUpdate (2 samples, 0.16%)</title><rect x="295.6" y="405" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="298.63" y="415.5" ></text>
</g>
<g >
<title>org/dspace/authorize/dao/impl/ResourcePolicyDAOImpl:::findByDSoAndAction (152 samples, 12.06%)</title><rect x="870.7" y="501" width="142.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="873.65" y="511.5" >org/dspace/authori..</text>
</g>
<g >
<title>java/io/ByteArrayInputStream:::read (1 samples, 0.08%)</title><rect x="815.4" y="277" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="818.40" y="287.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (24 samples, 1.90%)</title><rect x="60.6" y="853" width="22.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text x="63.57" y="863.5" >e..</text>
</g>
<g >
<title>__x64_sys_sendto (33 samples, 2.62%)</title><rect x="84.0" y="821" width="30.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="86.98" y="831.5" >__..</text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (16 samples, 1.27%)</title><rect x="65.3" y="581" width="14.9" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="68.25" y="591.5" ></text>
</g>
<g >
<title>org/hibernate/engine/spi/CascadingAction$4:::cascade (1 samples, 0.08%)</title><rect x="756.4" y="437" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="759.40" y="447.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/HierarchicalConfiguration:::getProperty (2 samples, 0.16%)</title><rect x="1136.6" y="405" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1139.62" y="415.5" ></text>
</g>
<g >
<title>[libjvm.so] (1,118 samples, 88.73%)</title><rect x="118.6" y="645" width="1047.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="121.63" y="655.5" >[libjvm.so]</text>
</g>
<g >
<title>java/lang/Throwable:::fillInStackTrace (1 samples, 0.08%)</title><rect x="1161.9" y="245" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1164.90" y="255.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/AbstractHttpClient:::doExecute (12 samples, 0.95%)</title><rect x="792.9" y="485" width="11.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="795.92" y="495.5" ></text>
</g>
<g >
<title>java/util/HashSet:::add (1 samples, 0.08%)</title><rect x="1138.5" y="405" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1141.49" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/type/AbstractStandardBasicType:::isEntityType (1 samples, 0.08%)</title><rect x="232.9" y="389" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="235.89" y="399.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/MapConfiguration$1:::entrySet (1 samples, 0.08%)</title><rect x="1140.4" y="389" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1143.37" y="399.5" ></text>
</g>
<g >
<title>org/hibernate/persister/collection/AbstractCollectionPersister:::getElementType (2 samples, 0.16%)</title><rect x="660.9" y="437" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="663.87" y="447.5" ></text>
</g>
<g >
<title>tcp_sendmsg_locked (30 samples, 2.38%)</title><rect x="85.9" y="741" width="28.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="88.86" y="751.5" >t..</text>
</g>
<g >
<title>org/apache/http/entity/mime/Header:::addField (1 samples, 0.08%)</title><rect x="786.4" y="453" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="789.37" y="463.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/tree/DefaultExpressionEngine:::processSubNodes (1 samples, 0.08%)</title><rect x="840.7" y="453" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="843.68" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::initializeEntitiesAndCollections (1 samples, 0.08%)</title><rect x="777.0" y="261" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="780.00" y="271.5" ></text>
</g>
<g >
<title>jint_disjoint_arraycopy (1 samples, 0.08%)</title><rect x="802.3" y="325" width="0.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="805.29" y="335.5" ></text>
</g>
<g >
<title>org/apache/http/message/BasicLineParser:::parseStatusLine (1 samples, 0.08%)</title><rect x="1158.2" y="293" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1161.16" y="303.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::processResults (1 samples, 0.08%)</title><rect x="761.1" y="325" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="764.08" y="335.5" ></text>
</g>
<g >
<title>org/dspace/eperson/Group_$$_jvst437_1e:::getHibernateLazyInitializer (5 samples, 0.40%)</title><rect x="512.0" y="405" width="4.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="514.97" y="415.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl:::invoke (1,118 samples, 88.73%)</title><rect x="118.6" y="725" width="1047.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="121.63" y="735.5" >sun/reflect/DelegatingMethodAccessorImpl:::invoke</text>
</g>
<g >
<title>__softirqentry_text_start (1 samples, 0.08%)</title><rect x="80.2" y="597" width="1.0" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="83.24" y="607.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="294.7" y="357" width="0.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="297.70" y="367.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="817.3" y="293" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="820.27" y="303.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::prepareEntityFlushes (36 samples, 2.86%)</title><rect x="1101.0" y="437" width="33.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1104.03" y="447.5" >or..</text>
</g>
<g >
<title>org/hibernate/loader/Loader:::doQueryAndInitializeNonLazyCollections (1 samples, 0.08%)</title><rect x="761.1" y="389" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="764.08" y="399.5" ></text>
</g>
<g >
<title>org/dspace/storage/bitstore/BitstreamStorageServiceImpl:::retrieve (4 samples, 0.32%)</title><rect x="789.2" y="437" width="3.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="792.17" y="447.5" ></text>
</g>
<g >
<title>nf_hook_slow (3 samples, 0.24%)</title><rect x="90.5" y="597" width="2.8" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="93.54" y="607.5" ></text>
</g>
<g >
<title>Java_java_lang_Throwable_fillInStackTrace (1 samples, 0.08%)</title><rect x="1161.9" y="229" width="0.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="1164.90" y="239.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="1161.9" y="309" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1164.90" y="319.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::withTemporarySessionIfNeeded (1 samples, 0.08%)</title><rect x="784.5" y="453" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="787.49" y="463.5" ></text>
</g>
<g >
<title>sk_wait_data (21 samples, 1.67%)</title><rect x="62.4" y="741" width="19.7" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="65.44" y="751.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/HierarchicalConfiguration:::getProperty (24 samples, 1.90%)</title><rect x="820.1" y="501" width="22.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="823.08" y="511.5" >o..</text>
</g>
<g >
<title>Interpreter (1,118 samples, 88.73%)</title><rect x="118.6" y="597" width="1047.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="121.63" y="607.5" >Interpreter</text>
</g>
<g >
<title>perf_pmu_nop_int (1 samples, 0.08%)</title><rect x="114.9" y="677" width="0.9" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="117.89" y="687.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultUserTokenHandler:::getUserToken (1 samples, 0.08%)</title><rect x="816.3" y="421" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="819.33" y="431.5" ></text>
</g>
<g >
<title>org/apache/http/client/utils/URLEncodedUtils:::urlDecode (1 samples, 0.08%)</title><rect x="814.5" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="817.46" y="415.5" ></text>
</g>
<g >
<title>Java_java_lang_Throwable_fillInStackTrace (1 samples, 0.08%)</title><rect x="1150.7" y="229" width="0.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="1153.67" y="239.5" ></text>
</g>
<g >
<title>org/hibernate/loader/DefaultEntityAliases:::&lt;init&gt; (2 samples, 0.16%)</title><rect x="1005.5" y="437" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1008.51" y="447.5" ></text>
</g>
<g >
<title>org/dspace/servicemanager/spring/SpringServiceManager:::getServicesByType (4 samples, 0.32%)</title><rect x="1134.7" y="501" width="3.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1137.75" y="511.5" ></text>
</g>
<g >
<title>org/dspace/content/Item_$$_jvst437_4:::getHandle (4 samples, 0.32%)</title><rect x="758.3" y="533" width="3.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="761.27" y="543.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushCollections (1 samples, 0.08%)</title><rect x="671.2" y="469" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="674.17" y="479.5" ></text>
</g>
<g >
<title>flexible_sched_in (1 samples, 0.08%)</title><rect x="114.9" y="693" width="0.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="117.89" y="703.5" ></text>
</g>
<g >
<title>perf_pmu_enable.part.0 (4 samples, 0.32%)</title><rect x="10.0" y="677" width="3.7" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="13.00" y="687.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/FlushVisitor:::processCollection (31 samples, 2.46%)</title><rect x="195.4" y="405" width="29.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="198.43" y="415.5" >or..</text>
</g>
<g >
<title>org/dspace/discovery/configuration/DiscoverySearchFilter:::getFilterType (2 samples, 0.16%)</title><rect x="1162.8" y="533" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1165.84" y="543.5" ></text>
</g>
<g >
<title>org/hibernate/engine/jdbc/internal/ResultSetReturnImpl:::extract (1 samples, 0.08%)</title><rect x="758.3" y="357" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="761.27" y="367.5" ></text>
</g>
<g >
<title>java/util/HashMap:::resize (5 samples, 0.40%)</title><rect x="832.3" y="405" width="4.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="835.25" y="415.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/AbstractMultipartForm:::doWriteTo (10 samples, 0.79%)</title><rect x="792.9" y="325" width="9.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="795.92" y="335.5" ></text>
</g>
<g >
<title>x86_pmu_enable (48 samples, 3.81%)</title><rect x="14.7" y="661" width="44.9" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="17.68" y="671.5" >x86_..</text>
</g>
<g >
<title>pick_next_task_fair (1 samples, 0.08%)</title><rect x="115.8" y="773" width="1.0" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="118.83" y="783.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushCollections (5 samples, 0.40%)</title><rect x="1015.8" y="437" width="4.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1018.81" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultLoadEventListener:::load (3 samples, 0.24%)</title><rect x="758.3" y="453" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="761.27" y="463.5" ></text>
</g>
<g >
<title>__pthread_mutex_lock (1 samples, 0.08%)</title><rect x="800.4" y="261" width="0.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="803.41" y="271.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::withTemporarySessionIfNeeded (1 samples, 0.08%)</title><rect x="785.4" y="469" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="788.43" y="479.5" ></text>
</g>
<g >
<title>perf_pmu_enable.part.0 (16 samples, 1.27%)</title><rect x="65.3" y="629" width="14.9" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="68.25" y="639.5" ></text>
</g>
<g >
<title>java/io/SequenceInputStream:::read (1 samples, 0.08%)</title><rect x="797.6" y="277" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="800.60" y="287.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::prepareCollectionFlushes (4 samples, 0.32%)</title><rect x="1097.3" y="437" width="3.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1100.29" y="447.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="969.0" y="341" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="971.98" y="351.5" ></text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::getPersistenceContext (1 samples, 0.08%)</title><rect x="646.8" y="421" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="649.83" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/loader/criteria/CriteriaLoader:::&lt;init&gt; (8 samples, 0.63%)</title><rect x="1005.5" y="469" width="7.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1008.51" y="479.5" ></text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::isCollectionType (1 samples, 0.08%)</title><rect x="516.7" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="519.65" y="415.5" ></text>
</g>
<g >
<title>java/lang/String:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="790.1" y="261" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="793.11" y="271.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/AbstractMultipartForm:::encode (3 samples, 0.24%)</title><rect x="794.8" y="293" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="797.79" y="303.5" ></text>
</g>
<g >
<title>org/hibernate/engine/spi/CascadingAction:::requiresNoCascadeChecking (1 samples, 0.08%)</title><rect x="1132.9" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1135.87" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection$1:::doWork (1 samples, 0.08%)</title><rect x="761.1" y="437" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="764.08" y="447.5" ></text>
</g>
<g >
<title>org/apache/http/impl/io/AbstractMessageParser:::parse (1 samples, 0.08%)</title><rect x="1158.2" y="341" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1161.16" y="351.5" ></text>
</g>
<g >
<title>org/apache/http/impl/conn/ManagedClientConnectionImpl:::sendRequestHeader (1 samples, 0.08%)</title><rect x="1160.0" y="389" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1163.03" y="399.5" ></text>
</g>
<g >
<title>org/hibernate/type/AbstractType:::isCollectionType (1 samples, 0.08%)</title><rect x="545.7" y="437" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="548.68" y="447.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.08%)</title><rect x="990.5" y="341" width="1.0" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="993.52" y="351.5" ></text>
</g>
<g >
<title>itable stub (2 samples, 0.16%)</title><rect x="1058.9" y="389" width="1.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="1061.89" y="399.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::tryExecute (3 samples, 0.24%)</title><rect x="1158.2" y="437" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1161.16" y="447.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::request (8 samples, 0.63%)</title><rect x="1155.3" y="501" width="7.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1158.35" y="511.5" ></text>
</g>
<g >
<title>schedule (2 samples, 0.16%)</title><rect x="114.9" y="805" width="1.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="117.89" y="815.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::withTemporarySessionIfNeeded (1 samples, 0.08%)</title><rect x="777.0" y="309" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="780.00" y="319.5" ></text>
</g>
<g >
<title>flexible_sched_in (1 samples, 0.08%)</title><rect x="13.7" y="629" width="1.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="16.75" y="639.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="797.6" y="69" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="800.60" y="79.5" ></text>
</g>
<g >
<title>register_finalizer Runtime1 stub (1 samples, 0.08%)</title><rect x="752.7" y="437" width="0.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="755.65" y="447.5" ></text>
</g>
<g >
<title>org/dspace/content/DSpaceObjectServiceImpl:::getMetadataFirstValue (1 samples, 0.08%)</title><rect x="778.9" y="469" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="781.87" y="479.5" ></text>
</g>
<g >
<title>org/hibernate/engine/jdbc/internal/JdbcCoordinatorImpl:::release (1 samples, 0.08%)</title><rect x="781.7" y="325" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="784.68" y="335.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.16%)</title><rect x="1161.0" y="357" width="1.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1163.97" y="367.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.08%)</title><rect x="1101.0" y="421" width="1.0" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="1104.03" y="431.5" ></text>
</g>
<g >
<title>org/dspace/discovery/SolrServiceImpl:::buildDocument (411 samples, 32.62%)</title><rect x="762.0" y="533" width="384.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="765.02" y="543.5" >org/dspace/discovery/SolrServiceImpl:::buildDocument</text>
</g>
<g >
<title>__hrtimer_run_queues (1 samples, 0.08%)</title><rect x="87.7" y="629" width="1.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="90.73" y="639.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/EntityEnclosingRequestWrapper$EntityWrapper:::writeTo (1 samples, 0.08%)</title><rect x="1149.7" y="341" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1152.73" y="351.5" ></text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::listeners (2 samples, 0.16%)</title><rect x="1121.6" y="405" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1124.63" y="415.5" ></text>
</g>
<g >
<title>finish_task_switch (1 samples, 0.08%)</title><rect x="114.9" y="773" width="0.9" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="117.89" y="783.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/util/ClientUtils:::writeXML (5 samples, 0.40%)</title><rect x="805.1" y="421" width="4.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="808.10" y="431.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/request/RequestWriter$LazyContentStream:::getStream (1 samples, 0.08%)</title><rect x="809.8" y="453" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="812.78" y="463.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="1135.7" y="277" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1138.68" y="287.5" ></text>
</g>
<g >
<title>perf_pmu_enable.part.0 (48 samples, 3.81%)</title><rect x="14.7" y="677" width="44.9" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="17.68" y="687.5" >perf..</text>
</g>
<g >
<title>org/hibernate/engine/spi/CascadingAction:::requiresNoCascadeChecking (2 samples, 0.16%)</title><rect x="656.2" y="437" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="659.19" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::prepareQueryStatement (1 samples, 0.08%)</title><rect x="759.2" y="357" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="762.21" y="367.5" ></text>
</g>
<g >
<title>update_nohz_stats (1 samples, 0.08%)</title><rect x="59.6" y="629" width="1.0" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="62.63" y="639.5" ></text>
</g>
<g >
<title>org/dspace/core/HibernateDBConnection:::uncacheEntity (682 samples, 54.13%)</title><rect x="118.6" y="533" width="638.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="121.63" y="543.5" >org/dspace/core/HibernateDBConnection:::uncacheEntity</text>
</g>
<g >
<title>x86_pmu_enable (4 samples, 0.32%)</title><rect x="10.0" y="661" width="3.7" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="13.00" y="671.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/WrapVisitor:::processValue (10 samples, 0.79%)</title><rect x="224.5" y="405" width="9.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="227.46" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/persister/entity/AbstractEntityPersister:::getEntityName (1 samples, 0.08%)</title><rect x="662.7" y="437" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="665.75" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/type/ManyToOneType:::isDirty (1 samples, 0.08%)</title><rect x="1088.9" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1091.86" y="415.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.08%)</title><rect x="920.3" y="373" width="0.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="923.29" y="383.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/request/QueryRequest:::process (9 samples, 0.71%)</title><rect x="1146.9" y="517" width="8.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1149.92" y="527.5" ></text>
</g>
<g >
<title>__ip_finish_output (19 samples, 1.51%)</title><rect x="93.3" y="581" width="17.8" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="96.35" y="591.5" ></text>
</g>
<g >
<title>flexible_sched_in (1 samples, 0.08%)</title><rect x="64.3" y="581" width="1.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="67.32" y="591.5" ></text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::listeners (1 samples, 0.08%)</title><rect x="766.7" y="485" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="769.70" y="495.5" ></text>
</g>
<g >
<title>itable stub (3 samples, 0.24%)</title><rect x="118.6" y="437" width="2.8" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="121.63" y="447.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor16:::invoke (98 samples, 7.78%)</title><rect x="664.6" y="501" width="91.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="667.62" y="511.5" >sun/reflec..</text>
</g>
<g >
<title>finish_task_switch (4 samples, 0.32%)</title><rect x="10.0" y="709" width="3.7" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="13.00" y="719.5" ></text>
</g>
<g >
<title>[libjvm.so] (1,118 samples, 88.73%)</title><rect x="118.6" y="837" width="1047.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="121.63" y="847.5" >[libjvm.so]</text>
</g>
<g >
<title>sun/reflect/UnsafeIntegerFieldAccessorImpl:::get (1 samples, 0.08%)</title><rect x="738.6" y="453" width="0.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="741.60" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/loader/AbstractEntityJoinWalker:::initStatementString (3 samples, 0.24%)</title><rect x="1009.3" y="421" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1012.25" y="431.5" ></text>
</g>
<g >
<title>JVM_InvokeMethod (1,118 samples, 88.73%)</title><rect x="118.6" y="677" width="1047.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="121.63" y="687.5" >JVM_InvokeMethod</text>
</g>
<g >
<title>__errno_location (1 samples, 0.08%)</title><rect x="1149.7" y="229" width="1.0" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="1152.73" y="239.5" ></text>
</g>
<g >
<title>update_blocked_averages (1 samples, 0.08%)</title><rect x="80.2" y="565" width="1.0" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="83.24" y="575.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc/PgStatement:::executeInternal (1 samples, 0.08%)</title><rect x="761.1" y="341" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="764.08" y="351.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.08%)</title><rect x="1011.1" y="341" width="1.0" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="1014.13" y="351.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::doQueryAndInitializeNonLazyCollections (7 samples, 0.56%)</title><rect x="312.5" y="469" width="6.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="315.49" y="479.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (1 samples, 0.08%)</title><rect x="990.5" y="293" width="1.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="993.52" y="303.5" ></text>
</g>
<g >
<title>JVM_FillInStackTrace (1 samples, 0.08%)</title><rect x="797.6" y="117" width="0.9" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="800.60" y="127.5" ></text>
</g>
<g >
<title>put_prev_entity (1 samples, 0.08%)</title><rect x="115.8" y="757" width="1.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="118.83" y="767.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/AbstractMultipartForm:::doWriteTo (1 samples, 0.08%)</title><rect x="1149.7" y="309" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1152.73" y="319.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (12 samples, 0.95%)</title><rect x="1178.8" y="757" width="11.2" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="1181.76" y="767.5" ></text>
</g>
<g >
<title>ip_output (19 samples, 1.51%)</title><rect x="93.3" y="613" width="17.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="96.35" y="623.5" ></text>
</g>
<g >
<title>org/hibernate/type/AbstractStandardBasicType:::isCollectionType (3 samples, 0.24%)</title><rect x="233.8" y="405" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="236.83" y="415.5" ></text>
</g>
<g >
<title>itable stub (2 samples, 0.16%)</title><rect x="1007.4" y="421" width="1.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="1010.38" y="431.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::execute (7 samples, 0.56%)</title><rect x="1148.8" y="453" width="6.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1151.79" y="463.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.08%)</title><rect x="317.2" y="405" width="0.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="320.17" y="415.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (1 samples, 0.08%)</title><rect x="518.5" y="405" width="1.0" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="521.52" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/context/internal/ThreadLocalSessionContext$TransactionProtectionWrapper:::invoke (369 samples, 29.29%)</title><rect x="319.0" y="501" width="345.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="322.05" y="511.5" >org/hibernate/context/internal/ThreadLocalSess..</text>
</g>
<g >
<title>sun/reflect/UnsafeQualifiedObjectFieldAccessorImpl:::get (1 samples, 0.08%)</title><rect x="262.9" y="421" width="0.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="265.86" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::getOrphans (17 samples, 1.35%)</title><rect x="621.5" y="405" width="16.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="624.54" y="415.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="969.0" y="373" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="971.98" y="383.5" ></text>
</g>
<g >
<title>org/hibernate/type/AbstractStandardBasicType:::isCollectionType (1 samples, 0.08%)</title><rect x="733.9" y="453" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="736.92" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/TwoPhaseLoad:::doInitializeEntity (1 samples, 0.08%)</title><rect x="776.1" y="437" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="779.06" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/WrapVisitor:::processValue (24 samples, 1.90%)</title><rect x="497.0" y="421" width="22.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="499.98" y="431.5" >o..</text>
</g>
<g >
<title>org/hibernate/engine/internal/EntityEntryContext:::reentrantSafeEntityEntries (2 samples, 0.16%)</title><rect x="754.5" y="453" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="757.52" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/type/descriptor/java/AbstractTypeDescriptor:::areEqual (2 samples, 0.16%)</title><rect x="529.8" y="421" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="532.76" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEntities (90 samples, 7.14%)</title><rect x="876.3" y="421" width="84.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="879.27" y="431.5" >org/hiber..</text>
</g>
<g >
<title>switch_fpu_return (1 samples, 0.08%)</title><rect x="82.1" y="837" width="0.9" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="85.11" y="847.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::setCurrentSession (1 samples, 0.08%)</title><rect x="412.7" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="415.70" y="431.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (1 samples, 0.08%)</title><rect x="223.5" y="197" width="1.0" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="226.52" y="207.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::doQueryAndInitializeNonLazyCollections (1 samples, 0.08%)</title><rect x="782.6" y="421" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="785.62" y="431.5" ></text>
</g>
<g >
<title>org/apache/http/impl/io/AbstractMessageWriter:::write (1 samples, 0.08%)</title><rect x="1160.0" y="357" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1163.03" y="367.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="1161.9" y="293" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1164.90" y="303.5" ></text>
</g>
<g >
<title>scheduler_tick (1 samples, 0.08%)</title><rect x="223.5" y="277" width="1.0" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="226.52" y="287.5" ></text>
</g>
<g >
<title>x86_pmu_enable (12 samples, 0.95%)</title><rect x="1178.8" y="661" width="11.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="1181.76" y="671.5" ></text>
</g>
<g >
<title>[libjvm.so] (26 samples, 2.06%)</title><rect x="1165.7" y="853" width="24.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1168.65" y="863.5" >[..</text>
</g>
<g >
<title>org/hibernate/collection/internal/PersistentList:::readFrom (1 samples, 0.08%)</title><rect x="314.4" y="437" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="317.37" y="447.5" ></text>
</g>
<g >
<title>org/dspace/servicemanager/config/DSpaceConfigurationService:::convert (24 samples, 1.90%)</title><rect x="845.4" y="501" width="22.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="848.37" y="511.5" >o..</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="817.3" y="309" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="820.27" y="319.5" ></text>
</g>
<g >
<title>org/hibernate/loader/JoinWalker:::selectString (1 samples, 0.08%)</title><rect x="1011.1" y="405" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1014.13" y="415.5" ></text>
</g>
<g >
<title>sun/reflect/UnsafeObjectFieldAccessorImpl:::get (11 samples, 0.87%)</title><rect x="532.6" y="421" width="10.3" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="535.57" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/type/EntityType:::resolve (1 samples, 0.08%)</title><rect x="314.4" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="317.37" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::resolve (1 samples, 0.08%)</title><rect x="779.8" y="373" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="782.81" y="383.5" ></text>
</g>
<g >
<title>org/dspace/discovery/FullTextContentStreams$FullTextEnumeration:::nextElement (5 samples, 0.40%)</title><rect x="788.2" y="453" width="4.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="791.24" y="463.5" ></text>
</g>
<g >
<title>org/dspace/core/HibernateDBConnection:::uncacheEntity (583 samples, 46.27%)</title><rect x="118.6" y="517" width="546.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="121.63" y="527.5" >org/dspace/core/HibernateDBConnection:::uncacheEntity</text>
</g>
<g >
<title>slow_subtype_check Runtime1 stub (1 samples, 0.08%)</title><rect x="803.2" y="453" width="1.0" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="806.22" y="463.5" ></text>
</g>
<g >
<title>[unknown] (54 samples, 4.29%)</title><rect x="10.0" y="869" width="50.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="13.00" y="879.5" >[unkn..</text>
</g>
<g >
<title>org/hibernate/loader/Loader:::doQueryAndInitializeNonLazyCollections (1 samples, 0.08%)</title><rect x="777.0" y="277" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="780.00" y="287.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushCollections (3 samples, 0.24%)</title><rect x="873.5" y="421" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="876.46" y="431.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.16%)</title><rect x="859.4" y="341" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="862.41" y="351.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="1150.7" y="325" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1153.67" y="335.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/HttpRequestExecutor:::doSendRequest (10 samples, 0.79%)</title><rect x="792.9" y="421" width="9.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="795.92" y="431.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.32%)</title><rect x="10.0" y="821" width="3.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="13.00" y="831.5" ></text>
</g>
<g >
<title>org/apache/log4j/WriterAppender:::append (1 samples, 0.08%)</title><rect x="788.2" y="373" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="791.24" y="383.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/MultipartEntity:::writeTo (10 samples, 0.79%)</title><rect x="792.9" y="341" width="9.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="795.92" y="351.5" ></text>
</g>
<g >
<title>org/postgresql/core/PGStream:::receiveTupleV3 (3 samples, 0.24%)</title><rect x="767.6" y="389" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="770.63" y="399.5" ></text>
</g>
<g >
<title>itable stub (18 samples, 1.43%)</title><rect x="335.9" y="437" width="16.9" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="338.90" y="447.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/MapConfiguration$1:::entrySet (16 samples, 1.27%)</title><rect x="851.0" y="421" width="15.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="853.98" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/FlushVisitor:::processCollection (1 samples, 0.08%)</title><rect x="542.9" y="437" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="545.87" y="447.5" ></text>
</g>
<g >
<title>sock_def_readable (1 samples, 0.08%)</title><rect x="98.0" y="293" width="1.0" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="101.03" y="303.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/HttpRequestExecutor:::preProcess (1 samples, 0.08%)</title><rect x="818.2" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="821.21" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/engine/spi/CollectionEntry:::getOrphans (6 samples, 0.48%)</title><rect x="985.8" y="389" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="988.84" y="399.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (1 samples, 0.08%)</title><rect x="518.5" y="389" width="1.0" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="521.52" y="399.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc/PgStatement:::executeInternal (1 samples, 0.08%)</title><rect x="777.9" y="357" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="780.94" y="367.5" ></text>
</g>
<g >
<title>call_stub (1,118 samples, 88.73%)</title><rect x="118.6" y="789" width="1047.1" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="121.63" y="799.5" >call_stub</text>
</g>
<g >
<title>org/apache/http/impl/entity/EntitySerializer:::serialize (1 samples, 0.08%)</title><rect x="815.4" y="341" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="818.40" y="351.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (2 samples, 0.16%)</title><rect x="1117.9" y="373" width="1.9" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="1120.89" y="383.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupHead:::match (1 samples, 0.08%)</title><rect x="843.5" y="485" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="846.49" y="495.5" ></text>
</g>
<g >
<title>newidle_balance (1 samples, 0.08%)</title><rect x="59.6" y="693" width="1.0" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="62.63" y="703.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (1 samples, 0.08%)</title><rect x="815.4" y="261" width="0.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="818.40" y="271.5" ></text>
</g>
<g >
<title>org/apache/http/impl/conn/ManagedClientConnectionImpl:::receiveResponseHeader (1 samples, 0.08%)</title><rect x="1158.2" y="389" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1161.16" y="399.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::wasInitialized (2 samples, 0.16%)</title><rect x="334.0" y="437" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="337.03" y="447.5" ></text>
</g>
<g >
<title>__x64_sys_futex (4 samples, 0.32%)</title><rect x="10.0" y="805" width="3.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="13.00" y="815.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_node (2 samples, 0.16%)</title><rect x="86.8" y="693" width="1.9" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text x="89.79" y="703.5" ></text>
</g>
<g >
<title>org/hibernate/type/EntityType:::isEntityType (1 samples, 0.08%)</title><rect x="953.1" y="389" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="956.06" y="399.5" ></text>
</g>
<g >
<title>Java_java_net_SocketInputStream_socketRead0 (2 samples, 0.16%)</title><rect x="1161.0" y="389" width="1.8" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="1163.97" y="399.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/DefaultFlushEntityEventListener:::onFlushEntity (58 samples, 4.60%)</title><rect x="679.6" y="453" width="54.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="682.60" y="463.5" >org/h..</text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.08%)</title><rect x="80.2" y="645" width="1.0" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="83.24" y="655.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/Cascade:::cascade (9 samples, 0.71%)</title><rect x="746.1" y="453" width="8.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="749.10" y="463.5" ></text>
</g>
<g >
<title>call_stub (1 samples, 0.08%)</title><rect x="1150.7" y="277" width="0.9" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="1153.67" y="287.5" ></text>
</g>
<g >
<title>sun/reflect/UnsafeObjectFieldAccessorImpl:::get (4 samples, 0.32%)</title><rect x="549.4" y="437" width="3.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="552.43" y="447.5" ></text>
</g>
<g >
<title>java/io/InputStream:::read (1 samples, 0.08%)</title><rect x="797.6" y="293" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="800.60" y="303.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::withTemporarySessionIfNeeded (1 samples, 0.08%)</title><rect x="777.9" y="421" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="780.94" y="431.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/CombinedConfiguration:::fetchNodeList (4 samples, 0.32%)</title><rect x="845.4" y="453" width="3.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="848.37" y="463.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupHead:::match (1 samples, 0.08%)</title><rect x="843.5" y="421" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="846.49" y="431.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (3 samples, 0.24%)</title><rect x="97.1" y="341" width="2.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="100.10" y="351.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::isDirty (1 samples, 0.08%)</title><rect x="411.8" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="414.76" y="431.5" ></text>
</g>
<g >
<title>java/lang/System:::identityHashCode (1 samples, 0.08%)</title><rect x="779.8" y="341" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="782.81" y="351.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/HttpRequestExecutor:::execute (10 samples, 0.79%)</title><rect x="792.9" y="437" width="9.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="795.92" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/Cascade:::cascade (35 samples, 2.78%)</title><rect x="275.0" y="421" width="32.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="278.03" y="431.5" >or..</text>
</g>
<g >
<title>sock_recvmsg (23 samples, 1.83%)</title><rect x="60.6" y="789" width="21.5" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="63.57" y="799.5" >s..</text>
</g>
<g >
<title>org/apache/http/impl/DefaultConnectionReuseStrategy:::keepAlive (1 samples, 0.08%)</title><rect x="811.7" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="814.65" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/type/AbstractType:::isCollectionType (1 samples, 0.08%)</title><rect x="258.2" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="261.17" y="431.5" ></text>
</g>
<g >
<title>eth_type_trans (1 samples, 0.08%)</title><rect x="110.2" y="501" width="0.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="113.21" y="511.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="797.6" y="37" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="800.60" y="47.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (17 samples, 1.35%)</title><rect x="94.3" y="501" width="15.9" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="97.29" y="511.5" ></text>
</g>
<g >
<title>org/dspace/content/Item_$$_jvst437_4:::getCollections (2 samples, 0.16%)</title><rect x="777.0" y="501" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="780.00" y="511.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (2 samples, 0.16%)</title><rect x="116.8" y="869" width="1.8" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="119.76" y="879.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::loadCollection (1 samples, 0.08%)</title><rect x="784.5" y="437" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="787.49" y="447.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/HttpRequestExecutor:::doSendRequest (2 samples, 0.16%)</title><rect x="1159.1" y="405" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1162.10" y="415.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (17 samples, 1.35%)</title><rect x="94.3" y="549" width="15.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="97.29" y="559.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/MapConfiguration:::getProperty (1 samples, 0.08%)</title><rect x="1138.5" y="453" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1141.49" y="463.5" ></text>
</g>
<g >
<title>acpi_os_read_port (1 samples, 0.08%)</title><rect x="1124.4" y="213" width="1.0" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="1127.44" y="223.5" ></text>
</g>
<g >
<title>org/apache/http/pool/AbstractConnPool:::getPoolEntryBlocking (1 samples, 0.08%)</title><rect x="1151.6" y="437" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1154.60" y="447.5" ></text>
</g>
<g >
<title>perf_swevent_add (1 samples, 0.08%)</title><rect x="64.3" y="549" width="1.0" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="67.32" y="559.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/WrapVisitor:::processValue (1 samples, 0.08%)</title><rect x="543.8" y="437" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="546.81" y="447.5" ></text>
</g>
<g >
<title>sk_stream_alloc_skb (2 samples, 0.16%)</title><rect x="86.8" y="725" width="1.9" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="89.79" y="735.5" ></text>
</g>
<g >
<title>find_busiest_group (1 samples, 0.08%)</title><rect x="81.2" y="613" width="0.9" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="84.17" y="623.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/HierarchicalConfiguration:::getProperty (1 samples, 0.08%)</title><rect x="1140.4" y="453" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1143.37" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/type/EntityType:::resolve (1 samples, 0.08%)</title><rect x="781.7" y="389" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="784.68" y="399.5" ></text>
</g>
<g >
<title>org/hibernate/type/EntityType:::isEntityType (1 samples, 0.08%)</title><rect x="517.6" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="520.59" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::listeners (3 samples, 0.24%)</title><rect x="297.5" y="405" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="300.51" y="415.5" ></text>
</g>
<g >
<title>tick_sched_timer (1 samples, 0.08%)</title><rect x="384.6" y="357" width="0.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="387.60" y="367.5" ></text>
</g>
<g >
<title>org/apache/http/impl/entity/EntitySerializer:::serialize (1 samples, 0.08%)</title><rect x="1159.1" y="357" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1162.10" y="367.5" ></text>
</g>
<g >
<title>org/hibernate/type/AbstractStandardBasicType:::isEntityType (1 samples, 0.08%)</title><rect x="1080.4" y="389" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1083.43" y="399.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="1150.7" y="181" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1153.67" y="191.5" ></text>
</g>
<g >
<title>org/hibernate/type/AbstractStandardBasicType:::isCollectionType (1 samples, 0.08%)</title><rect x="957.7" y="405" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="960.75" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/FlushVisitor:::processCollection (24 samples, 1.90%)</title><rect x="705.8" y="437" width="22.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="708.83" y="447.5" >o..</text>
</g>
<g >
<title>ip_protocol_deliver_rcu (1 samples, 0.08%)</title><rect x="99.9" y="373" width="0.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="102.90" y="383.5" ></text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::hasHolder (1 samples, 0.08%)</title><rect x="239.4" y="405" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="242.44" y="415.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/HttpStrictMultipart:::formatMultipartHeader (5 samples, 0.40%)</title><rect x="792.9" y="309" width="4.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="795.92" y="319.5" ></text>
</g>
<g >
<title>org/dspace/core/Context:::uncacheEntity (682 samples, 54.13%)</title><rect x="118.6" y="549" width="638.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="121.63" y="559.5" >org/dspace/core/Context:::uncacheEntity</text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl:::invoke (1 samples, 0.08%)</title><rect x="761.1" y="501" width="0.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="764.08" y="511.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/RequestTargetHost:::process (1 samples, 0.08%)</title><rect x="1154.4" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1157.41" y="415.5" ></text>
</g>
<g >
<title>schedule (20 samples, 1.59%)</title><rect x="63.4" y="693" width="18.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="66.38" y="703.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/tree/DefaultExpressionEngine:::findNodesForKey (5 samples, 0.40%)</title><rect x="836.9" y="469" width="4.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="839.94" y="479.5" ></text>
</g>
<g >
<title>rcu_segcblist_ready_cbs (1 samples, 0.08%)</title><rect x="158.0" y="293" width="0.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="160.97" y="303.5" ></text>
</g>
<g >
<title>__sched_text_start (4 samples, 0.32%)</title><rect x="10.0" y="725" width="3.7" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="13.00" y="735.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (15 samples, 1.19%)</title><rect x="96.2" y="437" width="14.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="99.16" y="447.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::execute (9 samples, 0.71%)</title><rect x="810.7" y="437" width="8.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="813.71" y="447.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::processResults (1 samples, 0.08%)</title><rect x="777.9" y="341" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="780.94" y="351.5" ></text>
</g>
<g >
<title>org/hibernate/type/EntityType:::isEntityType (1 samples, 0.08%)</title><rect x="241.3" y="405" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="244.32" y="415.5" ></text>
</g>
<g >
<title>nf_ct_get_tuple (1 samples, 0.08%)</title><rect x="91.5" y="549" width="0.9" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="94.48" y="559.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="817.3" y="357" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="820.27" y="367.5" ></text>
</g>
<g >
<title>do_futex (4 samples, 0.32%)</title><rect x="10.0" y="789" width="3.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="13.00" y="799.5" ></text>
</g>
<g >
<title>org/hibernate/persister/collection/AbstractCollectionPersister:::getElementType (1 samples, 0.08%)</title><rect x="300.3" y="405" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="303.32" y="415.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::createMethod (7 samples, 0.56%)</title><rect x="804.2" y="469" width="6.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="807.16" y="479.5" ></text>
</g>
<g >
<title>acpi_ev_detect_gpe (1 samples, 0.08%)</title><rect x="1124.4" y="261" width="1.0" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="1127.44" y="271.5" ></text>
</g>
<g >
<title>__sched_text_start (1 samples, 0.08%)</title><rect x="518.5" y="341" width="1.0" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="521.52" y="351.5" ></text>
</g>
<g >
<title>org/hibernate/engine/internal/Cascade:::cascade (26 samples, 2.06%)</title><rect x="973.7" y="405" width="24.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="976.67" y="415.5" >o..</text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::setCurrentSession (1 samples, 0.08%)</title><rect x="912.8" y="389" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="915.79" y="399.5" ></text>
</g>
<g >
<title>org/apache/http/impl/conn/DefaultHttpResponseParser:::parseHead (1 samples, 0.08%)</title><rect x="1158.2" y="309" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1161.16" y="319.5" ></text>
</g>
<g >
<title>org/apache/log4j/DefaultThrowableRenderer:::render (1 samples, 0.08%)</title><rect x="792.0" y="293" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="794.98" y="303.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::withTemporarySessionIfNeeded (1 samples, 0.08%)</title><rect x="761.1" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="764.08" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::withTemporarySessionIfNeeded (1 samples, 0.08%)</title><rect x="778.9" y="437" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="781.87" y="447.5" ></text>
</g>
<g >
<title>java/util/IdentityHashMap:::nextKeyIndex (1 samples, 0.08%)</title><rect x="745.2" y="453" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="748.16" y="463.5" ></text>
</g>
<g >
<title>java/net/SocketTimeoutException:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="817.3" y="245" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="820.27" y="255.5" ></text>
</g>
<g >
<title>org/hibernate/engine/jdbc/internal/StatementPreparerImpl$StatementPreparationTemplate:::prepareStatement (1 samples, 0.08%)</title><rect x="759.2" y="341" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="762.21" y="351.5" ></text>
</g>
<g >
<title>java/io/SequenceInputStream:::nextStream (1 samples, 0.08%)</title><rect x="797.6" y="261" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="800.60" y="271.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/PersistentList:::toArray (2 samples, 0.16%)</title><rect x="780.7" y="469" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="783.75" y="479.5" ></text>
</g>
<g >
<title>java/util/HashMap:::resize (1 samples, 0.08%)</title><rect x="1144.1" y="405" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1147.11" y="415.5" ></text>
</g>
<g >
<title>perf_event_sched_in (1 samples, 0.08%)</title><rect x="64.3" y="629" width="1.0" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="67.32" y="639.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/MapConfiguration$1:::entrySet (1 samples, 0.08%)</title><rect x="1138.5" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1141.49" y="431.5" ></text>
</g>
<g >
<title>java/util/TimSort:::sort (1 samples, 0.08%)</title><rect x="777.0" y="437" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="780.00" y="447.5" ></text>
</g>
<g >
<title>vtable stub (1 samples, 0.08%)</title><rect x="749.8" y="405" width="1.0" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text x="752.84" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::getOrphans (6 samples, 0.48%)</title><rect x="985.8" y="373" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="988.84" y="383.5" ></text>
</g>
<g >
<title>java/lang/Throwable:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="797.6" y="181" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="800.60" y="191.5" ></text>
</g>
<g >
<title>org/hibernate/loader/JoinWalker:::mergeOuterJoins (1 samples, 0.08%)</title><rect x="1010.2" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1013.19" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::isCollectionType (1 samples, 0.08%)</title><rect x="732.0" y="437" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="735.05" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/engine/spi/CollectionEntry:::getOrphans (8 samples, 0.63%)</title><rect x="288.1" y="405" width="7.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="291.14" y="415.5" ></text>
</g>
<g >
<title>perf_event_sched_in (1 samples, 0.08%)</title><rect x="13.7" y="677" width="1.0" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="16.75" y="687.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (35 samples, 2.78%)</title><rect x="84.0" y="853" width="32.8" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text x="86.98" y="863.5" >en..</text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEverythingToExecutions (207 samples, 16.43%)</title><rect x="118.6" y="453" width="193.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="121.63" y="463.5" >org/hibernate/event/inter..</text>
</g>
<g >
<title>tcp_recvmsg (23 samples, 1.83%)</title><rect x="60.6" y="757" width="21.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="63.57" y="767.5" >t..</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="531.6" y="389" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="534.63" y="399.5" ></text>
</g>
<g >
<title>java/lang/String:::toLowerCase (1 samples, 0.08%)</title><rect x="868.8" y="469" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="871.78" y="479.5" ></text>
</g>
<g >
<title>org/hibernate/type/descriptor/java/AbstractTypeDescriptor:::areEqual (1 samples, 0.08%)</title><rect x="943.7" y="373" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="946.70" y="383.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/MapConfiguration$1:::entrySet (2 samples, 0.16%)</title><rect x="1143.2" y="437" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1146.17" y="447.5" ></text>
</g>
<g >
<title>tcp_sendmsg (32 samples, 2.54%)</title><rect x="84.0" y="757" width="30.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="86.98" y="767.5" >tc..</text>
</g>
<g >
<title>org/apache/solr/client/solrj/request/AbstractUpdateRequest:::process (8 samples, 0.63%)</title><rect x="1155.3" y="517" width="7.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1158.35" y="527.5" ></text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::isCollectionType (1 samples, 0.08%)</title><rect x="240.4" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="243.38" y="415.5" ></text>
</g>
<g >
<title>deactivate_task (1 samples, 0.08%)</title><rect x="63.4" y="661" width="0.9" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="66.38" y="671.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/CombinedConfiguration:::fetchNodeList (23 samples, 1.83%)</title><rect x="820.1" y="485" width="21.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="823.08" y="495.5" >o..</text>
</g>
<g >
<title>org/hibernate/loader/DefaultEntityAliases:::getSuffixedPropertyAliases (2 samples, 0.16%)</title><rect x="1005.5" y="421" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1008.51" y="431.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor18:::invoke (1 samples, 0.08%)</title><rect x="761.1" y="485" width="0.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="764.08" y="495.5" ></text>
</g>
<g >
<title>org/hibernate/persister/entity/AbstractEntityPersister:::propertySelectFragmentFragment (1 samples, 0.08%)</title><rect x="1011.1" y="373" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1014.13" y="383.5" ></text>
</g>
<g >
<title>org/dspace/servicemanager/DSpaceServiceManager:::getServicesByType (4 samples, 0.32%)</title><rect x="1134.7" y="517" width="3.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1137.75" y="527.5" ></text>
</g>
<g >
<title>org/hibernate/engine/spi/CollectionEntry:::getOrphans (3 samples, 0.24%)</title><rect x="748.0" y="437" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="750.97" y="447.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="1150.7" y="341" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1153.67" y="351.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (1 samples, 0.08%)</title><rect x="793.9" y="293" width="0.9" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="796.86" y="303.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::createMethod (7 samples, 0.56%)</title><rect x="786.4" y="501" width="6.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="789.37" y="511.5" ></text>
</g>
<g >
<title>wait_woken (20 samples, 1.59%)</title><rect x="63.4" y="725" width="18.7" height="15.0" fill="rgb(219,79,79)" rx="2" ry="2" />
<text x="66.38" y="735.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/MapConfiguration:::getProperty (18 samples, 1.43%)</title><rect x="849.1" y="453" width="16.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="852.11" y="463.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEntities (233 samples, 18.49%)</title><rect x="335.9" y="453" width="218.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="338.90" y="463.5" >org/hibernate/event/internal..</text>
</g>
<g >
<title>org/hibernate/type/EntityType:::resolve (1 samples, 0.08%)</title><rect x="777.0" y="229" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="780.00" y="239.5" ></text>
</g>
<g >
<title>org/hibernate/engine/spi/CollectionEntry:::getOrphans (17 samples, 1.35%)</title><rect x="621.5" y="421" width="16.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="624.54" y="431.5" ></text>
</g>
<g >
<title>Interpreter (1,118 samples, 88.73%)</title><rect x="118.6" y="757" width="1047.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="121.63" y="767.5" >Interpreter</text>
</g>
<g >
<title>tcp_write_xmit (26 samples, 2.06%)</title><rect x="88.7" y="693" width="24.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="91.67" y="703.5" >t..</text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (1 samples, 0.08%)</title><rect x="1150.7" y="405" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1153.67" y="415.5" ></text>
</g>
<g >
<title>tcp_write_xmit (1 samples, 0.08%)</title><rect x="113.0" y="709" width="1.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="116.02" y="719.5" ></text>
</g>
<g >
<title>perf_pmu_enable.part.0 (12 samples, 0.95%)</title><rect x="1178.8" y="677" width="11.2" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="1181.76" y="687.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.16%)</title><rect x="830.4" y="357" width="1.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="833.38" y="367.5" ></text>
</g>
<g >
<title>java/net/SocketTimeoutException:::&lt;init&gt; (1 samples, 0.08%)</title><rect x="1161.9" y="261" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1164.90" y="271.5" ></text>
</g>
<g >
<title>org/dspace/content/Bundle:::getBitstreams (3 samples, 0.24%)</title><rect x="779.8" y="485" width="2.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="782.81" y="495.5" ></text>
</g>
<g >
<title>sun/reflect/UnsafeObjectFieldAccessorImpl:::get (2 samples, 0.16%)</title><rect x="739.5" y="453" width="1.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="742.54" y="463.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (1 samples, 0.08%)</title><rect x="1118.8" y="277" width="1.0" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="1121.83" y="287.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/HierarchicalConfiguration:::getProperty (2 samples, 0.16%)</title><rect x="1138.5" y="485" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1141.49" y="495.5" ></text>
</g>
<g >
<title>bbr_cwnd_event (1 samples, 0.08%)</title><rect x="111.1" y="677" width="1.0" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text x="114.14" y="687.5" ></text>
</g>
<g >
<title>__sys_sendto (33 samples, 2.62%)</title><rect x="84.0" y="805" width="30.9" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="86.98" y="815.5" >__..</text>
</g>
<g >
<title>java/lang/reflect/Method:::invoke (1,118 samples, 88.73%)</title><rect x="118.6" y="741" width="1047.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="121.63" y="751.5" >java/lang/reflect/Method:::invoke</text>
</g>
<g >
<title>org/apache/commons/configuration/MapConfiguration:::getProperty (1 samples, 0.08%)</title><rect x="1136.6" y="373" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1139.62" y="383.5" ></text>
</g>
<g >
<title>acpi_hw_read_port (1 samples, 0.08%)</title><rect x="1124.4" y="229" width="1.0" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="1127.44" y="239.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.08%)</title><rect x="782.6" y="357" width="1.0" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="785.62" y="367.5" ></text>
</g>
<g >
<title>schedule_timeout (20 samples, 1.59%)</title><rect x="63.4" y="709" width="18.7" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="66.38" y="719.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::getOrphans (6 samples, 0.48%)</title><rect x="290.0" y="389" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="293.02" y="399.5" ></text>
</g>
<g >
<title>java/util/AbstractMap:::get (1 samples, 0.08%)</title><rect x="1140.4" y="405" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1143.37" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/type/descriptor/java/AbstractTypeDescriptor:::areEqual (1 samples, 0.08%)</title><rect x="704.9" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="707.89" y="431.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/MultipartEntity:::isChunked (1 samples, 0.08%)</title><rect x="802.3" y="389" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="805.29" y="399.5" ></text>
</g>
<g >
<title>org/hibernate/type/CollectionType:::isCollectionType (4 samples, 0.32%)</title><rect x="524.1" y="421" width="3.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="527.14" y="431.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::withTemporarySessionIfNeeded (1 samples, 0.08%)</title><rect x="779.8" y="437" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="782.81" y="447.5" ></text>
</g>
<g >
<title>acpi_hw_read (1 samples, 0.08%)</title><rect x="1124.4" y="245" width="1.0" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="1127.44" y="255.5" ></text>
</g>
<g >
<title>ipt_do_table (1 samples, 0.08%)</title><rect x="90.5" y="565" width="1.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="93.54" y="575.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::withTemporarySessionIfNeeded (1 samples, 0.08%)</title><rect x="782.6" y="437" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="785.62" y="447.5" ></text>
</g>
<g >
<title>[[vdso]] (2 samples, 0.16%)</title><rect x="116.8" y="853" width="1.8" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="119.76" y="863.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushEverythingToExecutions (368 samples, 29.21%)</title><rect x="319.0" y="469" width="344.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="322.05" y="479.5" >org/hibernate/event/internal/AbstractFlushingE..</text>
</g>
<g >
<title>prepare_exit_to_usermode (12 samples, 0.95%)</title><rect x="1178.8" y="773" width="11.2" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="1181.76" y="783.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::doQueryAndInitializeNonLazyCollections (1 samples, 0.08%)</title><rect x="779.8" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="782.81" y="431.5" ></text>
</g>
<g >
<title>strncpy (4 samples, 0.32%)</title><rect x="106.5" y="357" width="3.7" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="109.46" y="367.5" ></text>
</g>
<g >
<title>org/hibernate/proxy/pojo/javassist/JavassistLazyInitializer:::invoke (1 samples, 0.08%)</title><rect x="515.7" y="389" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="518.71" y="399.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/ImmutableHttpProcessor:::process (1 samples, 0.08%)</title><rect x="818.2" y="405" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="821.21" y="415.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::doQueryAndInitializeNonLazyCollections (1 samples, 0.08%)</title><rect x="784.5" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="787.49" y="431.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.08%)</title><rect x="294.7" y="373" width="0.9" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="297.70" y="383.5" ></text>
</g>
<g >
<title>org/hibernate/persister/collection/AbstractCollectionPersister:::readIndex (1 samples, 0.08%)</title><rect x="782.6" y="373" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="785.62" y="383.5" ></text>
</g>
<g >
<title>itable stub (27 samples, 2.14%)</title><rect x="385.5" y="421" width="25.3" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="388.54" y="431.5" >i..</text>
</g>
<g >
<title>org/hibernate/internal/SessionImpl:::listeners (1 samples, 0.08%)</title><rect x="995.2" y="389" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="998.21" y="399.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::getOrphans (9 samples, 0.71%)</title><rect x="1112.3" y="389" width="8.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1115.27" y="399.5" ></text>
</g>
<g >
<title>__libc_recv (24 samples, 1.90%)</title><rect x="60.6" y="869" width="22.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="63.57" y="879.5" >_..</text>
</g>
<g >
<title>org/apache/http/protocol/RequestContent:::process (1 samples, 0.08%)</title><rect x="818.2" y="389" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="821.21" y="399.5" ></text>
</g>
<g >
<title>update_wall_time (1 samples, 0.08%)</title><rect x="990.5" y="229" width="1.0" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="993.52" y="239.5" ></text>
</g>
<g >
<title>psi_task_change (1 samples, 0.08%)</title><rect x="63.4" y="645" width="0.9" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="66.38" y="655.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/HierarchicalConfiguration:::getProperty (4 samples, 0.32%)</title><rect x="845.4" y="469" width="3.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="848.37" y="479.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/MapConfiguration:::getProperty (1 samples, 0.08%)</title><rect x="1135.7" y="389" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1138.68" y="399.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/ClientParamsStack:::getParameter (1 samples, 0.08%)</title><rect x="1157.2" y="421" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1160.22" y="431.5" ></text>
</g>
<g >
<title>sun/reflect/UnsafeObjectFieldAccessorImpl:::get (5 samples, 0.40%)</title><rect x="648.7" y="421" width="4.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="651.70" y="431.5" ></text>
</g>
<g >
<title>org/apache/commons/configuration/HierarchicalConfiguration:::getProperty (20 samples, 1.59%)</title><rect x="849.1" y="485" width="18.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="852.11" y="495.5" ></text>
</g>
<g >
<title>itable stub (5 samples, 0.40%)</title><rect x="664.6" y="469" width="4.7" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="667.62" y="479.5" ></text>
</g>
<g >
<title>org/apache/log4j/AppenderSkeleton:::doAppend (2 samples, 0.16%)</title><rect x="791.0" y="357" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="794.05" y="367.5" ></text>
</g>
<g >
<title>__sched_text_start (20 samples, 1.59%)</title><rect x="63.4" y="677" width="18.7" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="66.38" y="687.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="817.3" y="149" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="820.27" y="159.5" ></text>
</g>
<g >
<title>java/nio/charset/CharsetEncoder:::encode (3 samples, 0.24%)</title><rect x="794.8" y="277" width="2.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="797.79" y="287.5" ></text>
</g>
<g >
<title>tick_sched_handle (1 samples, 0.08%)</title><rect x="158.0" y="325" width="0.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="160.97" y="335.5" ></text>
</g>
<g >
<title>JNU_NewObjectByName (1 samples, 0.08%)</title><rect x="789.2" y="341" width="0.9" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="792.17" y="351.5" ></text>
</g>
<g >
<title>update_dl_rq_load_avg (1 samples, 0.08%)</title><rect x="80.2" y="549" width="1.0" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="83.24" y="559.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (2 samples, 0.16%)</title><rect x="1117.9" y="325" width="1.9" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="1120.89" y="335.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (1 samples, 0.08%)</title><rect x="98.0" y="277" width="1.0" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="101.03" y="287.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (1 samples, 0.08%)</title><rect x="223.5" y="341" width="1.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="226.52" y="351.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/AbstractFlushingEventListener:::flushCollections (5 samples, 0.40%)</title><rect x="121.4" y="437" width="4.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="124.44" y="447.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor17:::invoke (1 samples, 0.08%)</title><rect x="756.4" y="501" width="0.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="759.40" y="511.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::request (16 samples, 1.27%)</title><rect x="804.2" y="485" width="14.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="807.16" y="495.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (50 samples, 3.97%)</title><rect x="13.7" y="757" width="46.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="16.75" y="767.5" >fute..</text>
</g>
<g >
<title>org/hibernate/collection/internal/PersistentList:::toArray (7 samples, 0.56%)</title><rect x="312.5" y="501" width="6.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="315.49" y="511.5" ></text>
</g>
<g >
<title>[libjvm.so] (26 samples, 2.06%)</title><rect x="1165.7" y="837" width="24.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1168.65" y="847.5" >[..</text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.08%)</title><rect x="990.5" y="325" width="1.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="993.52" y="335.5" ></text>
</g>
<g >
<title>org/hibernate/loader/Loader:::loadCollection (10 samples, 0.79%)</title><rect x="767.6" y="485" width="9.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="770.63" y="495.5" ></text>
</g>
<g >
<title>_new_array_Java (1 samples, 0.08%)</title><rect x="969.0" y="389" width="0.9" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="971.98" y="399.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.08%)</title><rect x="87.7" y="677" width="1.0" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="90.73" y="687.5" ></text>
</g>
<g >
<title>org/hibernate/event/internal/WrapVisitor:::processValue (7 samples, 0.56%)</title><rect x="944.6" y="389" width="6.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="947.63" y="399.5" ></text>
</g>
<g >
<title>org/hibernate/type/descriptor/sql/IntegerTypeDescriptor$2:::doExtract (1 samples, 0.08%)</title><rect x="772.3" y="405" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="775.32" y="415.5" ></text>
</g>
<g >
<title>org/apache/http/impl/io/AbstractSessionOutputBuffer:::flush (1 samples, 0.08%)</title><rect x="1149.7" y="277" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1152.73" y="287.5" ></text>
</g>
<g >
<title>start_thread (1,144 samples, 90.79%)</title><rect x="118.6" y="869" width="1071.4" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="121.63" y="879.5" >start_thread</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="789.2" y="309" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="792.17" y="319.5" ></text>
</g>
<g >
<title>iptable_mangle_hook (1 samples, 0.08%)</title><rect x="100.8" y="373" width="1.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="103.84" y="383.5" ></text>
</g>
<g >
<title>schedule (1 samples, 0.08%)</title><rect x="518.5" y="357" width="1.0" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="521.52" y="367.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (1 samples, 0.08%)</title><rect x="553.2" y="437" width="0.9" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="556.17" y="447.5" ></text>
</g>
<g >
<title>org/apache/log4j/helpers/AppenderAttachableImpl:::appendLoopOnAppenders (2 samples, 0.16%)</title><rect x="791.0" y="373" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="794.05" y="383.5" ></text>
</g>
<g >
<title>org/apache/log4j/WriterAppender:::append (2 samples, 0.16%)</title><rect x="791.0" y="341" width="1.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="794.05" y="351.5" ></text>
</g>
<g >
<title>do_IRQ (1 samples, 0.08%)</title><rect x="1124.4" y="389" width="1.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="1127.44" y="399.5" ></text>
</g>
<g >
<title>org/dspace/storage/bitstore/DSBitStoreService:::get (4 samples, 0.32%)</title><rect x="789.2" y="421" width="3.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="792.17" y="431.5" ></text>
</g>
<g >
<title>org/dspace/servicemanager/config/DSpaceConfigurationService:::convert (1 samples, 0.08%)</title><rect x="1140.4" y="485" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1143.37" y="495.5" ></text>
</g>
<g >
<title>org/hibernate/context/internal/ThreadLocalSessionContext$TransactionProtectionWrapper:::invoke (207 samples, 16.43%)</title><rect x="118.6" y="485" width="193.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="121.63" y="495.5" >org/hibernate/context/int..</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.08%)</title><rect x="1150.7" y="165" width="0.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1153.67" y="175.5" ></text>
</g>
<g >
<title>org/hibernate/type/EntityType:::isEntityType (1 samples, 0.08%)</title><rect x="527.9" y="421" width="0.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="530.89" y="431.5" ></text>
</g>
<g >
<title>java/lang/Throwable:::fillInStackTrace (1 samples, 0.08%)</title><rect x="797.6" y="165" width="0.9" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="800.60" y="175.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedMethodAccessor27:::invoke (1 samples, 0.08%)</title><rect x="777.0" y="357" width="0.9" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="780.00" y="367.5" ></text>
</g>
<g >
<title>org/apache/http/impl/io/SocketInputBuffer:::isDataAvailable (2 samples, 0.16%)</title><rect x="1161.0" y="437" width="1.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1163.97" y="447.5" ></text>
</g>
<g >
<title>org/hibernate/collection/internal/AbstractPersistentCollection:::isDirty (1 samples, 0.08%)</title><rect x="670.2" y="469" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="673.24" y="479.5" ></text>
</g>
</g>
</svg>