cgspace-notes/docs/2020/02/out.dspace510-3.svg

2629 lines
126 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="838" onload="init(evt)" viewBox="0 0 1200 838" 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="838.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="821" > </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="821" > </text>
<g id="frames">
<g >
<title>org/dspace/storage/rdbms/TableRowIterator:::&lt;init&gt; (1 samples, 0.48%)</title><rect x="958.5" y="357" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="961.52" y="367.5" ></text>
</g>
<g >
<title>process_backlog (5 samples, 2.39%)</title><rect x="360.0" y="357" width="28.3" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="363.05" y="367.5" >p..</text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.48%)</title><rect x="473.0" y="389" width="5.6" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="475.97" y="399.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.48%)</title><rect x="1071.4" y="229" width="5.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1074.44" y="239.5" ></text>
</g>
<g >
<title>[libnet.so] (1 samples, 0.48%)</title><rect x="1139.2" y="261" width="5.6" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1142.19" y="271.5" ></text>
</g>
<g >
<title>org/postgresql/core/VisibleBufferedInputStream:::readMore (1 samples, 0.48%)</title><rect x="715.7" y="261" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="718.74" y="271.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/request/RequestWriter$LazyContentStream:::getDelegate (7 samples, 3.35%)</title><rect x="873.8" y="325" width="39.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="876.83" y="335.5" >org..</text>
</g>
<g >
<title>__perf_event_task_sched_in (16 samples, 7.66%)</title><rect x="173.7" y="533" width="90.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="176.73" y="543.5" >__perf_eve..</text>
</g>
<g >
<title>Interpreter (134 samples, 64.11%)</title><rect x="410.9" y="453" width="756.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="413.86" y="463.5" >Interpreter</text>
</g>
<g >
<title>org/springframework/core/env/MutablePropertySources:::addLast (5 samples, 2.39%)</title><rect x="580.2" y="309" width="28.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="583.24" y="319.5" >o..</text>
</g>
<g >
<title>perf_event_task_tick (1 samples, 0.48%)</title><rect x="631.1" y="213" width="5.6" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="634.05" y="223.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (2 samples, 0.96%)</title><rect x="1144.8" y="293" width="11.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1147.83" y="303.5" ></text>
</g>
<g >
<title>org/postgresql/core/PGStream:::receiveTupleV3 (1 samples, 0.48%)</title><rect x="653.6" y="245" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="656.64" y="255.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (1 samples, 0.48%)</title><rect x="930.3" y="101" width="5.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="933.29" y="111.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::processResults (1 samples, 0.48%)</title><rect x="653.6" y="261" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="656.64" y="271.5" ></text>
</g>
<g >
<title>java/lang/AbstractStringBuilder:::append (1 samples, 0.48%)</title><rect x="648.0" y="373" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="650.99" y="383.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc/TimestampUtils:::parseBackendTimestamp (1 samples, 0.48%)</title><rect x="427.8" y="341" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="430.80" y="351.5" ></text>
</g>
<g >
<title>start_thread (138 samples, 66.03%)</title><rect x="410.9" y="757" width="779.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="413.86" y="767.5" >start_thread</text>
</g>
<g >
<title>java/lang/AbstractStringBuilder:::append (1 samples, 0.48%)</title><rect x="1060.1" y="357" width="5.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1063.14" y="367.5" ></text>
</g>
<g >
<title>org/apache/http/client/utils/URLEncodedUtils:::parse (1 samples, 0.48%)</title><rect x="924.6" y="261" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="927.64" y="271.5" ></text>
</g>
<g >
<title>Interpreter (134 samples, 64.11%)</title><rect x="410.9" y="661" width="756.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="413.86" y="671.5" >Interpreter</text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractBeanFactory:::doGetBean (3 samples, 1.44%)</title><rect x="986.7" y="357" width="17.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="989.75" y="367.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/AbstractHttpClient:::doExecute (3 samples, 1.44%)</title><rect x="924.6" y="341" width="17.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="927.64" y="351.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRow:::getIntColumn (1 samples, 0.48%)</title><rect x="664.9" y="373" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="667.93" y="383.5" ></text>
</g>
<g >
<title>org/dspace/discovery/SolrServiceImpl:::unIndexContent (8 samples, 3.83%)</title><rect x="1116.6" y="421" width="45.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1119.60" y="431.5" >org/..</text>
</g>
<g >
<title>schedule (1 samples, 0.48%)</title><rect x="1150.5" y="133" width="5.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="1153.48" y="143.5" ></text>
</g>
<g >
<title>tcp_write_xmit (14 samples, 6.70%)</title><rect x="314.9" y="581" width="79.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="317.88" y="591.5" >tcp_write..</text>
</g>
<g >
<title>org/apache/http/impl/AbstractHttpClientConnection:::isStale (1 samples, 0.48%)</title><rect x="1156.1" y="309" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1159.12" y="319.5" ></text>
</g>
<g >
<title>dequeue_task_fair (1 samples, 0.48%)</title><rect x="168.1" y="533" width="5.6" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="171.09" y="543.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.48%)</title><rect x="687.5" y="325" width="5.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="690.51" y="335.5" ></text>
</g>
<g >
<title>org/apache/http/impl/AbstractHttpClientConnection:::sendRequestEntity (13 samples, 6.22%)</title><rect x="789.1" y="277" width="73.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="792.14" y="287.5" >org/apac..</text>
</g>
<g >
<title>JNU_ThrowByName (1 samples, 0.48%)</title><rect x="1156.1" y="213" width="5.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="1159.12" y="223.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.96%)</title><rect x="1088.4" y="245" width="11.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1091.37" y="255.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendOneQuery (1 samples, 0.48%)</title><rect x="659.3" y="245" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="662.28" y="255.5" ></text>
</g>
<g >
<title>ip_finish_output2 (6 samples, 2.87%)</title><rect x="354.4" y="453" width="33.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="357.40" y="463.5" >ip..</text>
</g>
<g >
<title>java/nio/charset/CharsetEncoder:::encode (7 samples, 3.35%)</title><rect x="811.7" y="165" width="39.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="814.72" y="175.5" >jav..</text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::process (3 samples, 1.44%)</title><rect x="670.6" y="357" width="16.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="673.57" y="367.5" ></text>
</g>
<g >
<title>__x64_sys_futex (24 samples, 11.48%)</title><rect x="26.9" y="693" width="135.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="29.94" y="703.5" >__x64_sys_futex</text>
</g>
<g >
<title>ttwu_do_activate (1 samples, 0.48%)</title><rect x="371.3" y="69" width="5.7" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="374.34" y="79.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc/PgPreparedStatement:::executeQuery (2 samples, 0.96%)</title><rect x="653.6" y="309" width="11.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="656.64" y="319.5" ></text>
</g>
<g >
<title>java/net/URI:::&lt;init&gt; (1 samples, 0.48%)</title><rect x="1122.2" y="277" width="5.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1125.25" y="287.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.96%)</title><rect x="518.1" y="277" width="11.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="521.13" y="287.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/Header:::addField (4 samples, 1.91%)</title><rect x="749.6" y="357" width="22.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="752.62" y="367.5" >o..</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.48%)</title><rect x="1156.1" y="181" width="5.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1159.12" y="191.5" ></text>
</g>
<g >
<title>org/dspace/servicemanager/config/DSpaceConfigurationService:::getPropertyAsType (16 samples, 7.66%)</title><rect x="518.1" y="389" width="90.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="521.13" y="399.5" >org/dspace..</text>
</g>
<g >
<title>java/util/IdentityHashMap:::put (1 samples, 0.48%)</title><rect x="772.2" y="197" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="775.20" y="207.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRowIterator:::next (2 samples, 0.96%)</title><rect x="422.2" y="405" width="11.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="425.15" y="415.5" ></text>
</g>
<g >
<title>__GI___libc_write (1 samples, 0.48%)</title><rect x="501.2" y="229" width="5.6" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="504.20" y="239.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::executeMethod (8 samples, 3.83%)</title><rect x="1116.6" y="373" width="45.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1119.60" y="383.5" >org/..</text>
</g>
<g >
<title>futex_wait_queue_me (24 samples, 11.48%)</title><rect x="26.9" y="645" width="135.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="29.94" y="655.5" >futex_wait_queue_me</text>
</g>
<g >
<title>perf_pmu_enable.part.0 (16 samples, 7.66%)</title><rect x="173.7" y="517" width="90.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="176.73" y="527.5" >perf_pmu_e..</text>
</g>
<g >
<title>org/dspace/core/Context:::removeCached (1 samples, 0.48%)</title><rect x="416.5" y="421" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="419.51" y="431.5" ></text>
</g>
<g >
<title>org/apache/http/impl/conn/ProxySelectorRoutePlanner:::determineRoute (1 samples, 0.48%)</title><rect x="1122.2" y="309" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1125.25" y="319.5" ></text>
</g>
<g >
<title>JVM_DoPrivileged (1 samples, 0.48%)</title><rect x="1071.4" y="245" width="5.7" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="1074.44" y="255.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (3 samples, 1.44%)</title><rect x="365.7" y="229" width="16.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="368.69" y="239.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match (1 samples, 0.48%)</title><rect x="992.4" y="165" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="995.39" y="175.5" ></text>
</g>
<g >
<title>do_syscall_64 (24 samples, 11.48%)</title><rect x="275.4" y="725" width="135.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="278.36" y="735.5" >do_syscall_64</text>
</g>
<g >
<title>sock_def_readable (1 samples, 0.48%)</title><rect x="371.3" y="181" width="5.7" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="374.34" y="191.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::processResults (1 samples, 0.48%)</title><rect x="715.7" y="277" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="718.74" y="287.5" ></text>
</g>
<g >
<title>org/dspace/browse/BrowseIndex:::getBrowseIndices (1 samples, 0.48%)</title><rect x="992.4" y="277" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="995.39" y="287.5" ></text>
</g>
<g >
<title>ipv4_dst_check (1 samples, 0.48%)</title><rect x="388.3" y="517" width="5.6" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="391.28" y="527.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (5 samples, 2.39%)</title><rect x="360.0" y="437" width="28.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="363.05" y="447.5" >_..</text>
</g>
<g >
<title>poll_schedule_timeout.constprop.0 (2 samples, 0.96%)</title><rect x="1144.8" y="181" width="11.3" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="1147.83" y="191.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/EntityEnclosingRequestWrapper$EntityWrapper:::writeTo (12 samples, 5.74%)</title><rect x="789.1" y="245" width="67.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="792.14" y="255.5" >org/apa..</text>
</g>
<g >
<title>java/net/URI:::&lt;init&gt; (1 samples, 0.48%)</title><rect x="732.7" y="357" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="735.68" y="367.5" ></text>
</g>
<g >
<title>org/dspace/discovery/BitstreamContentStream:::getStream (1 samples, 0.48%)</title><rect x="772.2" y="373" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="775.20" y="383.5" ></text>
</g>
<g >
<title>call_stub (134 samples, 64.11%)</title><rect x="410.9" y="677" width="756.5" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="413.86" y="687.5" >call_stub</text>
</g>
<g >
<title>java/net/URLEncoder:::encode (1 samples, 0.48%)</title><rect x="913.3" y="325" width="5.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="916.35" y="335.5" ></text>
</g>
<g >
<title>org/dspace/eperson/Group:::find (1 samples, 0.48%)</title><rect x="704.4" y="373" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="707.45" y="383.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc/PgPreparedStatement:::executeQuery (1 samples, 0.48%)</title><rect x="715.7" y="325" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="718.74" y="335.5" ></text>
</g>
<g >
<title>nf_hook_slow (1 samples, 0.48%)</title><rect x="382.6" y="293" width="5.7" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="385.63" y="303.5" ></text>
</g>
<g >
<title>intel_tfa_pmu_enable_all (16 samples, 7.66%)</title><rect x="173.7" y="485" width="90.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="176.73" y="495.5" >intel_tfa_..</text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::getColumnNames (1 samples, 0.48%)</title><rect x="958.5" y="341" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="961.52" y="351.5" ></text>
</g>
<g >
<title>java/util/TimSort:::sort (1 samples, 0.48%)</title><rect x="981.1" y="357" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="984.10" y="367.5" ></text>
</g>
<g >
<title>org/dspace/discovery/SolrServiceImpl:::indexContent (130 samples, 62.20%)</title><rect x="433.4" y="437" width="734.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="436.44" y="447.5" >org/dspace/discovery/SolrServiceImpl:::indexContent</text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::process (1 samples, 0.48%)</title><rect x="721.4" y="373" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="724.39" y="383.5" ></text>
</g>
<g >
<title>dequeue_task_fair (1 samples, 0.48%)</title><rect x="1150.5" y="85" width="5.6" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="1153.48" y="95.5" ></text>
</g>
<g >
<title>org/apache/log4j/AppenderSkeleton:::doAppend (5 samples, 2.39%)</title><rect x="484.3" y="357" width="28.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="487.26" y="367.5" >o..</text>
</g>
<g >
<title>org/apache/http/entity/mime/FormBodyPart:::&lt;init&gt; (6 samples, 2.87%)</title><rect x="738.3" y="373" width="33.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="741.33" y="383.5" >or..</text>
</g>
<g >
<title>try_to_wake_up (1 samples, 0.48%)</title><rect x="371.3" y="85" width="5.7" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text x="374.34" y="95.5" ></text>
</g>
<g >
<title>Java_java_io_FileOutputStream_writeBytes (1 samples, 0.48%)</title><rect x="501.2" y="261" width="5.6" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="504.20" y="271.5" ></text>
</g>
<g >
<title>nf_conntrack_in (2 samples, 0.96%)</title><rect x="320.5" y="453" width="11.3" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="323.53" y="463.5" ></text>
</g>
<g >
<title>sk_stream_alloc_skb (1 samples, 0.48%)</title><rect x="309.2" y="613" width="5.7" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="312.23" y="623.5" ></text>
</g>
<g >
<title>Java_java_net_PlainSocketImpl_socketSetOption0 (1 samples, 0.48%)</title><rect x="1139.2" y="277" width="5.6" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="1142.19" y="287.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::rewriteRequestURI (1 samples, 0.48%)</title><rect x="924.6" y="309" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="927.64" y="319.5" ></text>
</g>
<g >
<title>org/apache/http/impl/io/ChunkedOutputStream:::flushCache (1 samples, 0.48%)</title><rect x="1133.5" y="213" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1136.54" y="223.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.96%)</title><rect x="568.9" y="245" width="11.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="571.95" y="255.5" ></text>
</g>
<g >
<title>org/dspace/content/Item:::getCollections (3 samples, 1.44%)</title><rect x="698.8" y="405" width="16.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="701.80" y="415.5" ></text>
</g>
<g >
<title>[unknown] (1 samples, 0.48%)</title><rect x="10.0" y="725" width="5.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="13.00" y="735.5" ></text>
</g>
<g >
<title>__poll (1 samples, 0.48%)</title><rect x="1099.7" y="261" width="5.6" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="1102.67" y="271.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/DefaultListableBeanFactory:::getBeanNamesForType (9 samples, 4.31%)</title><rect x="1003.7" y="357" width="50.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1006.68" y="367.5" >org/s..</text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::request (8 samples, 3.83%)</title><rect x="1116.6" y="389" width="45.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1119.60" y="399.5" >org/..</text>
</g>
<g >
<title>org/apache/solr/common/params/ModifiableSolrParams:::add (3 samples, 1.44%)</title><rect x="941.6" y="389" width="16.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="944.58" y="399.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (1 samples, 0.48%)</title><rect x="930.3" y="69" width="5.6" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="933.29" y="79.5" ></text>
</g>
<g >
<title>__ip_local_out (5 samples, 2.39%)</title><rect x="314.9" y="501" width="28.2" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="317.88" y="511.5" >_..</text>
</g>
<g >
<title>[libjvm.so] (134 samples, 64.11%)</title><rect x="410.9" y="517" width="756.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="413.86" y="527.5" >[libjvm.so]</text>
</g>
<g >
<title>do_syscall_64 (24 samples, 11.48%)</title><rect x="26.9" y="709" width="135.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="29.94" y="719.5" >do_syscall_64</text>
</g>
<g >
<title>__x64_sys_sendto (20 samples, 9.57%)</title><rect x="292.3" y="709" width="112.9" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="295.30" y="719.5" >__x64_sys_sen..</text>
</g>
<g >
<title>java/net/SocketInputStream:::read (2 samples, 0.96%)</title><rect x="1144.8" y="309" width="11.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1147.83" y="319.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.48%)</title><rect x="1082.7" y="245" width="5.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1085.73" y="255.5" ></text>
</g>
<g >
<title>org/apache/log4j/Category:::error (1 samples, 0.48%)</title><rect x="772.2" y="357" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="775.20" y="367.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method:::invoke (134 samples, 64.11%)</title><rect x="410.9" y="629" width="756.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="413.86" y="639.5" >java/lang/reflect/Method:::invoke</text>
</g>
<g >
<title>org/apache/http/impl/entity/StrictContentLengthStrategy:::determineLength (1 samples, 0.48%)</title><rect x="856.9" y="229" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="859.89" y="239.5" ></text>
</g>
<g >
<title>[libjvm.so] (4 samples, 1.91%)</title><rect x="1167.4" y="709" width="22.6" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1170.42" y="719.5" >[..</text>
</g>
<g >
<title>[libjli.so] (134 samples, 64.11%)</title><rect x="410.9" y="741" width="756.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="413.86" y="751.5" >[libjli.so]</text>
</g>
<g >
<title>java/util/ArrayList:::sort (1 samples, 0.48%)</title><rect x="981.1" y="389" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="984.10" y="399.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (2 samples, 0.96%)</title><rect x="1144.8" y="149" width="11.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="1147.83" y="159.5" ></text>
</g>
<g >
<title>org/apache/log4j/helpers/ISO8601DateFormat:::format (1 samples, 0.48%)</title><rect x="506.8" y="277" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="509.84" y="287.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::querySingleTable (1 samples, 0.48%)</title><rect x="704.4" y="325" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="707.45" y="335.5" ></text>
</g>
<g >
<title>__vsnprintf_internal (1 samples, 0.48%)</title><rect x="10.0" y="677" width="5.6" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="13.00" y="687.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.96%)</title><rect x="1088.4" y="85" width="11.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1091.37" y="95.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRowIterator:::hasNext (1 samples, 0.48%)</title><rect x="693.2" y="389" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="696.16" y="399.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/HttpRequestExecutor:::execute (2 samples, 0.96%)</title><rect x="1127.9" y="309" width="11.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1130.89" y="319.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/DefaultListableBeanFactory:::getBeansOfType (12 samples, 5.74%)</title><rect x="986.7" y="373" width="67.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="989.75" y="383.5" >org/spr..</text>
</g>
<g >
<title>[unknown] (27 samples, 12.92%)</title><rect x="10.0" y="757" width="152.4" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="13.00" y="767.5" >[unknown]</text>
</g>
<g >
<title>org/apache/http/protocol/HttpRequestExecutor:::preProcess (1 samples, 0.48%)</title><rect x="935.9" y="309" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="938.93" y="319.5" ></text>
</g>
<g >
<title>java/lang/String:::equals (1 samples, 0.48%)</title><rect x="964.2" y="325" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="967.16" y="335.5" ></text>
</g>
<g >
<title>org/apache/commons/lang/time/DateUtils:::isSameDay (1 samples, 0.48%)</title><rect x="484.3" y="293" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="487.26" y="303.5" ></text>
</g>
<g >
<title>java/lang/Object:::clone (1 samples, 0.48%)</title><rect x="489.9" y="277" width="5.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="492.90" y="287.5" ></text>
</g>
<g >
<title>java/lang/StringBuilder:::&lt;init&gt; (1 samples, 0.48%)</title><rect x="467.3" y="405" width="5.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="470.32" y="415.5" ></text>
</g>
<g >
<title>org/apache/solr/common/util/XML:::escape (5 samples, 2.39%)</title><rect x="885.1" y="261" width="28.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="888.12" y="271.5" >o..</text>
</g>
<g >
<title>sun/util/calendar/ZoneInfo:::clone (1 samples, 0.48%)</title><rect x="489.9" y="293" width="5.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="492.90" y="303.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/HttpRequestExecutor:::doSendRequest (1 samples, 0.48%)</title><rect x="1133.5" y="293" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1136.54" y="303.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::rewriteRequestURI (1 samples, 0.48%)</title><rect x="1077.1" y="325" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1080.08" y="335.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/HttpRequestExecutor:::preProcess (2 samples, 0.96%)</title><rect x="1105.3" y="325" width="11.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1108.31" y="335.5" ></text>
</g>
<g >
<title>psi_task_change (1 samples, 0.48%)</title><rect x="371.3" y="37" width="5.7" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="374.34" y="47.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.48%)</title><rect x="715.7" y="197" width="5.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="718.74" y="207.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (1 samples, 0.48%)</title><rect x="1054.5" y="389" width="5.6" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="1057.50" y="399.5" ></text>
</g>
<g >
<title>org/dspace/browse/SolrBrowseCreateDAO:::additionalIndex (18 samples, 8.61%)</title><rect x="518.1" y="405" width="101.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="521.13" y="415.5" >org/dspace/b..</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.48%)</title><rect x="1156.1" y="133" width="5.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1159.12" y="143.5" ></text>
</g>
<g >
<title>__wake_up_common (1 samples, 0.48%)</title><rect x="371.3" y="133" width="5.7" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="374.34" y="143.5" ></text>
</g>
<g >
<title>org/apache/commons/lang/time/DateUtils:::isSameDay (2 samples, 0.96%)</title><rect x="484.3" y="309" width="11.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="487.26" y="319.5" ></text>
</g>
<g >
<title>org/apache/log4j/Category:::callAppenders (5 samples, 2.39%)</title><rect x="484.3" y="389" width="28.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="487.26" y="399.5" >o..</text>
</g>
<g >
<title>org/dspace/content/DSpaceObject$MetadataCache:::get (1 samples, 0.48%)</title><rect x="619.8" y="373" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="622.76" y="383.5" ></text>
</g>
<g >
<title>__tcp_push_pending_frames (14 samples, 6.70%)</title><rect x="314.9" y="597" width="79.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="317.88" y="607.5" >__tcp_pus..</text>
</g>
<g >
<title>tcp_sendmsg (17 samples, 8.13%)</title><rect x="297.9" y="645" width="96.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="300.94" y="655.5" >tcp_sendmsg</text>
</g>
<g >
<title>org/apache/http/impl/io/SocketInputBuffer:::isDataAvailable (1 samples, 0.48%)</title><rect x="930.3" y="277" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="933.29" y="287.5" ></text>
</g>
<g >
<title>tcp_rcv_established (2 samples, 0.96%)</title><rect x="371.3" y="197" width="11.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="374.34" y="207.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (1 samples, 0.48%)</title><rect x="687.5" y="389" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="690.51" y="399.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/util/ClientUtils:::writeVal (6 samples, 2.87%)</title><rect x="879.5" y="277" width="33.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="882.47" y="287.5" >or..</text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.96%)</title><rect x="1144.8" y="229" width="11.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="1147.83" y="239.5" ></text>
</g>
<g >
<title>nf_conntrack_tcp_packet (2 samples, 0.96%)</title><rect x="320.5" y="437" width="11.3" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="323.53" y="447.5" ></text>
</g>
<g >
<title>new_sync_write (1 samples, 0.48%)</title><rect x="501.2" y="117" width="5.6" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="504.20" y="127.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::process (1 samples, 0.48%)</title><rect x="964.2" y="357" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="967.16" y="367.5" ></text>
</g>
<g >
<title>java/lang/String:::toLowerCase (2 samples, 0.96%)</title><rect x="456.0" y="405" width="11.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="459.03" y="415.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (5 samples, 2.39%)</title><rect x="360.0" y="325" width="28.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="363.05" y="335.5" >_..</text>
</g>
<g >
<title>__vsnprintf_internal (2 samples, 0.96%)</title><rect x="15.6" y="741" width="11.3" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="18.65" y="751.5" ></text>
</g>
<g >
<title>vfs_write (1 samples, 0.48%)</title><rect x="501.2" y="149" width="5.6" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="504.20" y="159.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::find (1 samples, 0.48%)</title><rect x="704.4" y="357" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="707.45" y="367.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/HttpRequestExecutor:::execute (13 samples, 6.22%)</title><rect x="789.1" y="325" width="73.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="792.14" y="335.5" >org/apac..</text>
</g>
<g >
<title>org/apache/solr/client/solrj/request/QueryRequest:::process (11 samples, 5.26%)</title><rect x="1054.5" y="405" width="62.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1057.50" y="415.5" >org/ap..</text>
</g>
<g >
<title>org/apache/http/impl/client/AbstractHttpClient:::doExecute (9 samples, 4.31%)</title><rect x="1065.8" y="357" width="50.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1068.79" y="367.5" >org/a..</text>
</g>
<g >
<title>org/apache/http/client/utils/URLEncodedUtils:::urlDecode (1 samples, 0.48%)</title><rect x="924.6" y="245" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="927.64" y="255.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.96%)</title><rect x="1144.8" y="245" width="11.3" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text x="1147.83" y="255.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/AbstractMultipartForm:::encode (8 samples, 3.83%)</title><rect x="811.7" y="181" width="45.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="814.72" y="191.5" >org/..</text>
</g>
<g >
<title>java/lang/StringBuilder:::toString (1 samples, 0.48%)</title><rect x="478.6" y="405" width="5.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="481.61" y="415.5" ></text>
</g>
<g >
<title>__sched_text_start (17 samples, 8.13%)</title><rect x="168.1" y="565" width="96.0" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="171.09" y="575.5" >__sched_tex..</text>
</g>
<g >
<title>java/net/AbstractPlainSocketImpl:::setOption (1 samples, 0.48%)</title><rect x="1139.2" y="309" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1142.19" y="319.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.48%)</title><rect x="10.0" y="741" width="5.6" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="13.00" y="751.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/AbstractHttpClient:::doExecute (15 samples, 7.18%)</title><rect x="777.8" y="373" width="84.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="780.85" y="383.5" >org/apach..</text>
</g>
<g >
<title>simple_copy_to_iter (1 samples, 0.48%)</title><rect x="269.7" y="597" width="5.7" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="272.71" y="607.5" ></text>
</g>
<g >
<title>__send (24 samples, 11.48%)</title><rect x="275.4" y="757" width="135.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="278.36" y="767.5" >__send</text>
</g>
<g >
<title>org/dspace/content/Bundle:::getName (1 samples, 0.48%)</title><rect x="619.8" y="405" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="622.76" y="415.5" ></text>
</g>
<g >
<title>org/apache/http/client/protocol/RequestClientConnControl:::process (1 samples, 0.48%)</title><rect x="1105.3" y="309" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1108.31" y="319.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractAutowireCapableBeanFactory:::doCreateBean (1 samples, 0.48%)</title><rect x="992.4" y="341" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="995.39" y="351.5" ></text>
</g>
<g >
<title>ip_queue_xmit (14 samples, 6.70%)</title><rect x="314.9" y="549" width="79.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="317.88" y="559.5" >ip_queue_..</text>
</g>
<g >
<title>java/util/LinkedList$ListItr:::next (1 samples, 0.48%)</title><rect x="806.1" y="181" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="809.08" y="191.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.48%)</title><rect x="687.5" y="341" width="5.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="690.51" y="351.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (1 samples, 0.48%)</title><rect x="930.3" y="229" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="933.29" y="239.5" ></text>
</g>
<g >
<title>sun/net/spi/DefaultProxySelector$3:::run (1 samples, 0.48%)</title><rect x="1071.4" y="181" width="5.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="1074.44" y="191.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (16 samples, 7.66%)</title><rect x="173.7" y="469" width="90.4" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="176.73" y="479.5" >__intel_pm..</text>
</g>
<g >
<title>org/apache/log4j/WriterAppender:::subAppend (1 samples, 0.48%)</title><rect x="772.2" y="261" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="775.20" y="271.5" ></text>
</g>
<g >
<title>futex_wait (24 samples, 11.48%)</title><rect x="26.9" y="661" width="135.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="29.94" y="671.5" >futex_wait</text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingResultSet:::getTimestamp (1 samples, 0.48%)</title><rect x="427.8" y="373" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="430.80" y="383.5" ></text>
</g>
<g >
<title>update_curr (1 samples, 0.48%)</title><rect x="168.1" y="501" width="5.6" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="171.09" y="511.5" ></text>
</g>
<g >
<title>do_sys_poll (1 samples, 0.48%)</title><rect x="930.3" y="133" width="5.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="933.29" y="143.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/HttpRequestExecutor:::doSendRequest (13 samples, 6.22%)</title><rect x="789.1" y="309" width="73.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="792.14" y="319.5" >org/apac..</text>
</g>
<g >
<title>ip_protocol_deliver_rcu (3 samples, 1.44%)</title><rect x="365.7" y="245" width="16.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="368.69" y="255.5" ></text>
</g>
<g >
<title>finish_task_switch (16 samples, 7.66%)</title><rect x="173.7" y="549" width="90.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="176.73" y="559.5" >finish_tas..</text>
</g>
<g >
<title>sun/net/spi/DefaultProxySelector$3:::run (1 samples, 0.48%)</title><rect x="1071.4" y="197" width="5.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="1074.44" y="207.5" ></text>
</g>
<g >
<title>nf_hook_slow (4 samples, 1.91%)</title><rect x="320.5" y="485" width="22.6" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="323.53" y="495.5" >n..</text>
</g>
<g >
<title>JVM_DoPrivileged (2 samples, 0.96%)</title><rect x="518.1" y="293" width="11.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="521.13" y="303.5" ></text>
</g>
<g >
<title>org/springframework/context/annotation/ConfigurationClassPostProcessor$ImportAwareBeanPostProcessor:::postProcessBeforeInitialization (1 samples, 0.48%)</title><rect x="998.0" y="341" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1001.04" y="351.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.48%)</title><rect x="529.4" y="293" width="5.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="532.43" y="303.5" ></text>
</g>
<g >
<title>org/dspace/core/PluginManager:::configureNamedPlugin (1 samples, 0.48%)</title><rect x="608.5" y="357" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="611.47" y="367.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.48%)</title><rect x="1156.1" y="165" width="5.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1159.12" y="175.5" ></text>
</g>
<g >
<title>strncpy (1 samples, 0.48%)</title><rect x="337.5" y="437" width="5.6" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="340.46" y="447.5" ></text>
</g>
<g >
<title>java/lang/System:::identityHashCode (1 samples, 0.48%)</title><rect x="772.2" y="181" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="775.20" y="191.5" ></text>
</g>
<g >
<title>java/util/HashMap:::resize (1 samples, 0.48%)</title><rect x="952.9" y="373" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="955.87" y="383.5" ></text>
</g>
<g >
<title>ksys_write (1 samples, 0.48%)</title><rect x="501.2" y="165" width="5.6" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="504.20" y="175.5" ></text>
</g>
<g >
<title>[libjvm.so] (134 samples, 64.11%)</title><rect x="410.9" y="725" width="756.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="413.86" y="735.5" >[libjvm.so]</text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRow:::setColumn (1 samples, 0.48%)</title><rect x="964.2" y="341" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="967.16" y="351.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::getColumnNames (1 samples, 0.48%)</title><rect x="642.3" y="341" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="645.34" y="351.5" ></text>
</g>
<g >
<title>Java_java_net_SocketInputStream_socketRead0 (1 samples, 0.48%)</title><rect x="930.3" y="213" width="5.6" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="933.29" y="223.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.48%)</title><rect x="10.0" y="693" width="5.6" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="13.00" y="703.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::executeMethod (4 samples, 1.91%)</title><rect x="919.0" y="357" width="22.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="922.00" y="367.5" >o..</text>
</g>
<g >
<title>[libjvm.so] (134 samples, 64.11%)</title><rect x="410.9" y="549" width="756.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="413.86" y="559.5" >[libjvm.so]</text>
</g>
<g >
<title>org/springframework/beans/PropertyEditorRegistrySupport:::createDefaultEditors (16 samples, 7.66%)</title><rect x="518.1" y="357" width="90.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="521.13" y="367.5" >org/spring..</text>
</g>
<g >
<title>lock_sock_nested (1 samples, 0.48%)</title><rect x="297.9" y="629" width="5.7" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="300.94" y="639.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (1 samples, 0.48%)</title><rect x="704.4" y="309" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="707.45" y="319.5" ></text>
</g>
<g >
<title>JVM_Clone (1 samples, 0.48%)</title><rect x="489.9" y="261" width="5.7" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="492.90" y="271.5" ></text>
</g>
<g >
<title>java/lang/String:::toLowerCase (1 samples, 0.48%)</title><rect x="631.1" y="357" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="634.05" y="367.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.96%)</title><rect x="1088.4" y="213" width="11.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1091.37" y="223.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/PoolingConnection$PStmtKey:::equals (1 samples, 0.48%)</title><rect x="704.4" y="261" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="707.45" y="271.5" ></text>
</g>
<g >
<title>org/dspace/discovery/SolrServiceSpellIndexingPlugin:::additionalIndex (2 samples, 0.96%)</title><rect x="969.8" y="405" width="11.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="972.81" y="415.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::tryExecute (13 samples, 6.22%)</title><rect x="789.1" y="341" width="73.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="792.14" y="351.5" >org/apac..</text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::executeMethod (15 samples, 7.18%)</title><rect x="777.8" y="389" width="84.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="780.85" y="399.5" >org/apach..</text>
</g>
<g >
<title>Java_java_net_SocketInputStream_socketRead0 (4 samples, 1.91%)</title><rect x="1082.7" y="277" width="22.6" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="1085.73" y="287.5" >J..</text>
</g>
<g >
<title>do_softirq_own_stack (5 samples, 2.39%)</title><rect x="360.0" y="405" width="28.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="363.05" y="415.5" >d..</text>
</g>
<g >
<title>org/apache/log4j/AppenderSkeleton:::doAppend (1 samples, 0.48%)</title><rect x="772.2" y="309" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="775.20" y="319.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::process (2 samples, 0.96%)</title><rect x="422.2" y="389" width="11.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="425.15" y="399.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Branch:::match (2 samples, 0.96%)</title><rect x="597.2" y="261" width="11.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="600.18" y="271.5" ></text>
</g>
<g >
<title>java/security/AccessController:::doPrivileged (4 samples, 1.91%)</title><rect x="557.7" y="293" width="22.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="560.66" y="303.5" >j..</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.48%)</title><rect x="1082.7" y="213" width="5.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1085.73" y="223.5" ></text>
</g>
<g >
<title>org/dspace/content/DSpaceObject:::getMetadata (1 samples, 0.48%)</title><rect x="619.8" y="389" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="622.76" y="399.5" ></text>
</g>
<g >
<title>switch_fpu_return (1 samples, 0.48%)</title><rect x="405.2" y="709" width="5.7" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="408.22" y="719.5" ></text>
</g>
<g >
<title>nft_do_chain_inet (2 samples, 0.96%)</title><rect x="331.8" y="469" width="11.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="334.82" y="479.5" ></text>
</g>
<g >
<title>org/apache/http/impl/entity/EntitySerializer:::doSerialize (1 samples, 0.48%)</title><rect x="856.9" y="245" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="859.89" y="255.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.48%)</title><rect x="1094.0" y="53" width="5.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1097.02" y="63.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (2 samples, 0.96%)</title><rect x="371.3" y="213" width="11.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="374.34" y="223.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.48%)</title><rect x="687.5" y="309" width="5.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="690.51" y="319.5" ></text>
</g>
<g >
<title>do_syscall_64 (1 samples, 0.48%)</title><rect x="501.2" y="197" width="5.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="504.20" y="207.5" ></text>
</g>
<g >
<title>perf_pmu_enable.part.0 (24 samples, 11.48%)</title><rect x="26.9" y="565" width="135.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="29.94" y="575.5" >perf_pmu_enable.p..</text>
</g>
<g >
<title>all (209 samples, 100%)</title><rect x="10.0" y="789" width="1180.0" height="15.0" fill="rgb(255,130,130)" rx="2" ry="2" />
<text x="13.00" y="799.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::execute (8 samples, 3.83%)</title><rect x="1116.6" y="341" width="45.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1119.60" y="351.5" >org/..</text>
</g>
<g >
<title>java/util/regex/Pattern$BmpCharProperty:::match (1 samples, 0.48%)</title><rect x="992.4" y="133" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="995.39" y="143.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/PoolingDataSource$PoolGuardConnectionWrapper:::prepareStatement (1 samples, 0.48%)</title><rect x="704.4" y="293" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="707.45" y="303.5" ></text>
</g>
<g >
<title>tick_sched_timer (1 samples, 0.48%)</title><rect x="631.1" y="277" width="5.6" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="634.05" y="287.5" ></text>
</g>
<g >
<title>org/springframework/core/env/MutablePropertySources:::addLast (1 samples, 0.48%)</title><rect x="546.4" y="325" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="549.36" y="335.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupHead:::match (1 samples, 0.48%)</title><rect x="992.4" y="181" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="995.39" y="191.5" ></text>
</g>
<g >
<title>org/apache/http/impl/AbstractHttpClientConnection:::sendRequestEntity (1 samples, 0.48%)</title><rect x="1133.5" y="261" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1136.54" y="271.5" ></text>
</g>
<g >
<title>tcp_queue_rcv (1 samples, 0.48%)</title><rect x="377.0" y="181" width="5.6" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="379.99" y="191.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (24 samples, 11.48%)</title><rect x="26.9" y="725" width="135.5" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text x="29.94" y="735.5" >entry_SYSCALL_64_..</text>
</g>
<g >
<title>__x64_sys_poll (1 samples, 0.48%)</title><rect x="930.3" y="149" width="5.6" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="933.29" y="159.5" ></text>
</g>
<g >
<title>java/io/FileOutputStream:::write (1 samples, 0.48%)</title><rect x="501.2" y="293" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="504.20" y="303.5" ></text>
</g>
<g >
<title>Java_java_net_SocketInputStream_socketRead0 (1 samples, 0.48%)</title><rect x="1156.1" y="229" width="5.7" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="1159.12" y="239.5" ></text>
</g>
<g >
<title>java/lang/String:::toLowerCase (1 samples, 0.48%)</title><rect x="710.1" y="373" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="713.10" y="383.5" ></text>
</g>
<g >
<title>java/lang/StringBuilder:::append (1 samples, 0.48%)</title><rect x="473.0" y="405" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="475.97" y="415.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (1 samples, 0.48%)</title><rect x="1156.1" y="245" width="5.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1159.12" y="255.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.48%)</title><rect x="1139.2" y="245" width="5.6" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1142.19" y="255.5" ></text>
</g>
<g >
<title>org/dspace/discovery/SearchUtils:::getIgnoredMetadataFields (1 samples, 0.48%)</title><rect x="439.1" y="421" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="442.09" y="431.5" ></text>
</g>
<g >
<title>org/dspace/content/ItemIterator:::next (2 samples, 0.96%)</title><rect x="422.2" y="437" width="11.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="425.15" y="447.5" ></text>
</g>
<g >
<title>JNU_ThrowByName (1 samples, 0.48%)</title><rect x="1082.7" y="261" width="5.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="1085.73" y="271.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.48%)</title><rect x="489.9" y="245" width="5.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="492.90" y="255.5" ></text>
</g>
<g >
<title>nft_do_chain (1 samples, 0.48%)</title><rect x="382.6" y="261" width="5.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="385.63" y="271.5" ></text>
</g>
<g >
<title>[libjvm.so] (134 samples, 64.11%)</title><rect x="410.9" y="693" width="756.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="413.86" y="703.5" >[libjvm.so]</text>
</g>
<g >
<title>__x64_sys_poll (1 samples, 0.48%)</title><rect x="1099.7" y="213" width="5.6" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="1102.67" y="223.5" ></text>
</g>
<g >
<title>__mnt_want_write_file (1 samples, 0.48%)</title><rect x="501.2" y="69" width="5.6" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="504.20" y="79.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (1 samples, 0.48%)</title><rect x="371.3" y="149" width="5.7" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="374.34" y="159.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::execute (3 samples, 1.44%)</title><rect x="924.6" y="325" width="17.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="927.64" y="335.5" ></text>
</g>
<g >
<title>org/dspace/servicemanager/DSpaceServiceManager:::getServicesByType (13 samples, 6.22%)</title><rect x="981.1" y="405" width="73.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="984.10" y="415.5" >org/dspa..</text>
</g>
<g >
<title>inet6_sendmsg (17 samples, 8.13%)</title><rect x="297.9" y="661" width="96.0" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="300.94" y="671.5" >inet6_sendmsg</text>
</g>
<g >
<title>java/io/FileOutputStream:::writeBytes (1 samples, 0.48%)</title><rect x="501.2" y="277" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="504.20" y="287.5" ></text>
</g>
<g >
<title>org/apache/http/impl/io/AbstractMessageParser:::parse (1 samples, 0.48%)</title><rect x="1127.9" y="229" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1130.89" y="239.5" ></text>
</g>
<g >
<title>Java_java_net_SocketInputStream_socketRead0 (2 samples, 0.96%)</title><rect x="1144.8" y="277" width="11.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="1147.83" y="287.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::request (14 samples, 6.70%)</title><rect x="862.5" y="373" width="79.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="865.54" y="383.5" >org/apach..</text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::createMethod (1 samples, 0.48%)</title><rect x="1060.1" y="373" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1063.14" y="383.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRowIterator:::&lt;init&gt; (2 samples, 0.96%)</title><rect x="636.7" y="357" width="11.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="639.70" y="367.5" ></text>
</g>
<g >
<title>[unknown] (1 samples, 0.48%)</title><rect x="10.0" y="709" width="5.6" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="13.00" y="719.5" ></text>
</g>
<g >
<title>Interpreter (134 samples, 64.11%)</title><rect x="410.9" y="597" width="756.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="413.86" y="607.5" >Interpreter</text>
</g>
<g >
<title>__libc_recv (20 samples, 9.57%)</title><rect x="162.4" y="757" width="113.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="165.44" y="767.5" >__libc_recv</text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::tryExecute (2 samples, 0.96%)</title><rect x="1127.9" y="325" width="11.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1130.89" y="335.5" ></text>
</g>
<g >
<title>org/apache/http/impl/AbstractHttpClientConnection:::isStale (1 samples, 0.48%)</title><rect x="930.3" y="293" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="933.29" y="303.5" ></text>
</g>
<g >
<title>org/apache/http/impl/entity/EntitySerializer:::serialize (1 samples, 0.48%)</title><rect x="1133.5" y="245" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1136.54" y="255.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::request (10 samples, 4.78%)</title><rect x="1060.1" y="389" width="56.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1063.14" y="399.5" >org/a..</text>
</g>
<g >
<title>rb_insert_color (1 samples, 0.48%)</title><rect x="1144.8" y="101" width="5.7" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="1147.83" y="111.5" ></text>
</g>
<g >
<title>JVM_FillInStackTrace (2 samples, 0.96%)</title><rect x="1088.4" y="101" width="11.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="1091.37" y="111.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (5 samples, 2.39%)</title><rect x="360.0" y="389" width="28.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="363.05" y="399.5" >_..</text>
</g>
<g >
<title>org/apache/http/impl/conn/ProxySelectorRoutePlanner:::determineProxy (1 samples, 0.48%)</title><rect x="1122.2" y="293" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1125.25" y="303.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.48%)</title><rect x="1156.1" y="197" width="5.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1159.12" y="207.5" ></text>
</g>
<g >
<title>Java_java_lang_Throwable_fillInStackTrace (2 samples, 0.96%)</title><rect x="1088.4" y="117" width="11.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="1091.37" y="127.5" ></text>
</g>
<g >
<title>org/dspace/content/DSpaceObject$MetadataCache:::get (4 samples, 1.91%)</title><rect x="625.4" y="389" width="22.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="628.41" y="399.5" >o..</text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::execute (8 samples, 3.83%)</title><rect x="1071.4" y="341" width="45.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1074.44" y="351.5" >org/..</text>
</g>
<g >
<title>org/apache/http/impl/io/AbstractSessionInputBuffer:::fillBuffer (1 samples, 0.48%)</title><rect x="930.3" y="261" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="933.29" y="271.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (1 samples, 0.48%)</title><rect x="1144.8" y="117" width="5.7" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="1147.83" y="127.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (20 samples, 9.57%)</title><rect x="162.4" y="741" width="113.0" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text x="165.44" y="751.5" >entry_SYSCALL..</text>
</g>
<g >
<title>ip_local_deliver (3 samples, 1.44%)</title><rect x="365.7" y="277" width="16.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="368.69" y="287.5" ></text>
</g>
<g >
<title>sun/nio/cs/UTF_8$Decoder:::decode (1 samples, 0.48%)</title><rect x="681.9" y="341" width="5.6" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="684.87" y="351.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (24 samples, 11.48%)</title><rect x="275.4" y="741" width="135.5" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text x="278.36" y="751.5" >entry_SYSCALL_64_..</text>
</g>
<g >
<title>ext4_file_write_iter (1 samples, 0.48%)</title><rect x="501.2" y="101" width="5.6" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="504.20" y="111.5" ></text>
</g>
<g >
<title>org/apache/http/impl/conn/ManagedClientConnectionImpl:::sendRequestEntity (1 samples, 0.48%)</title><rect x="1133.5" y="277" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1136.54" y="287.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (2 samples, 0.96%)</title><rect x="653.6" y="341" width="11.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="656.64" y="351.5" ></text>
</g>
<g >
<title>deactivate_task (1 samples, 0.48%)</title><rect x="1150.5" y="101" width="5.6" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="1153.48" y="111.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::determineRoute (1 samples, 0.48%)</title><rect x="1071.4" y="325" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1074.44" y="335.5" ></text>
</g>
<g >
<title>sock_sendmsg (18 samples, 8.61%)</title><rect x="297.9" y="677" width="101.7" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="300.94" y="687.5" >sock_sendmsg</text>
</g>
<g >
<title>JVM_InvokeMethod (134 samples, 64.11%)</title><rect x="410.9" y="565" width="756.5" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="413.86" y="575.5" >JVM_InvokeMethod</text>
</g>
<g >
<title>java/lang/Throwable:::fillInStackTrace (2 samples, 0.96%)</title><rect x="1088.4" y="133" width="11.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1091.37" y="143.5" ></text>
</g>
<g >
<title>org/apache/http/impl/conn/ManagedClientConnectionImpl:::isStale (1 samples, 0.48%)</title><rect x="930.3" y="309" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="933.29" y="319.5" ></text>
</g>
<g >
<title>java/lang/String:::equals (1 samples, 0.48%)</title><rect x="698.8" y="357" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="701.80" y="367.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/AbstractMultipartForm:::doWriteTo (12 samples, 5.74%)</title><rect x="789.1" y="213" width="67.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="792.14" y="223.5" >org/apa..</text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractAutowireCapableBeanFactory:::predictBeanType (3 samples, 1.44%)</title><rect x="1015.0" y="341" width="16.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1017.98" y="351.5" ></text>
</g>
<g >
<title>org/dspace/browse/SolrBrowseCreateDAO:::&lt;init&gt; (1 samples, 0.48%)</title><rect x="992.4" y="293" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="995.39" y="303.5" ></text>
</g>
<g >
<title>org/apache/http/impl/conn/ManagedClientConnectionImpl:::isStale (4 samples, 1.91%)</title><rect x="1082.7" y="325" width="22.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1085.73" y="335.5" >o..</text>
</g>
<g >
<title>finish_task_switch (24 samples, 11.48%)</title><rect x="26.9" y="597" width="135.5" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="29.94" y="607.5" >finish_task_switch</text>
</g>
<g >
<title>org/apache/commons/logging/LogFactory$1:::run (2 samples, 0.96%)</title><rect x="518.1" y="245" width="11.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="521.13" y="255.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (4 samples, 1.91%)</title><rect x="1082.7" y="309" width="22.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1085.73" y="319.5" >j..</text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractBeanFactory:::getMergedLocalBeanDefinition (2 samples, 0.96%)</title><rect x="1031.9" y="341" width="11.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1034.91" y="351.5" ></text>
</g>
<g >
<title>schedule (17 samples, 8.13%)</title><rect x="168.1" y="581" width="96.0" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="171.09" y="591.5" >schedule</text>
</g>
<g >
<title>skb_copy_datagram_iter (2 samples, 0.96%)</title><rect x="264.1" y="629" width="11.3" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="267.07" y="639.5" ></text>
</g>
<g >
<title>org/apache/log4j/helpers/PatternConverter:::format (1 samples, 0.48%)</title><rect x="506.8" y="293" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="509.84" y="303.5" ></text>
</g>
<g >
<title>org/dspace/content/ItemIterator:::nextByRow (2 samples, 0.96%)</title><rect x="422.2" y="421" width="11.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="425.15" y="431.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match (1 samples, 0.48%)</title><rect x="992.4" y="101" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="995.39" y="111.5" ></text>
</g>
<g >
<title>arrayof_jint_fill (1 samples, 0.48%)</title><rect x="591.5" y="277" width="5.7" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="594.53" y="287.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/HttpRequestExecutor:::doReceiveResponse (1 samples, 0.48%)</title><rect x="1127.9" y="293" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1130.89" y="303.5" ></text>
</g>
<g >
<title>[libjvm.so] (4 samples, 1.91%)</title><rect x="557.7" y="261" width="22.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="560.66" y="271.5" >[..</text>
</g>
<g >
<title>org/apache/http/client/utils/URIBuilder:::buildString (1 samples, 0.48%)</title><rect x="1077.1" y="309" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1080.08" y="319.5" ></text>
</g>
<g >
<title>org/apache/log4j/WriterAppender:::subAppend (3 samples, 1.44%)</title><rect x="495.6" y="309" width="16.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="498.55" y="319.5" ></text>
</g>
<g >
<title>Interpreter (134 samples, 64.11%)</title><rect x="410.9" y="645" width="756.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="413.86" y="655.5" >Interpreter</text>
</g>
<g >
<title>java/util/regex/Pattern$GroupHead:::match (1 samples, 0.48%)</title><rect x="992.4" y="117" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="995.39" y="127.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::createMethod (9 samples, 4.31%)</title><rect x="868.2" y="357" width="50.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="871.18" y="367.5" >org/a..</text>
</g>
<g >
<title>update_process_times (1 samples, 0.48%)</title><rect x="631.1" y="245" width="5.6" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="634.05" y="255.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendBind (1 samples, 0.48%)</title><rect x="659.3" y="229" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="662.28" y="239.5" ></text>
</g>
<g >
<title>org/apache/commons/logging/LogFactory:::getFactory (5 samples, 2.39%)</title><rect x="552.0" y="309" width="28.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="555.01" y="319.5" >o..</text>
</g>
<g >
<title>org/dspace/servicemanager/spring/SpringServiceManager:::getServicesByType (12 samples, 5.74%)</title><rect x="986.7" y="389" width="67.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="989.75" y="399.5" >org/dsp..</text>
</g>
<g >
<title>org/apache/solr/client/solrj/request/AbstractUpdateRequest:::process (8 samples, 3.83%)</title><rect x="1116.6" y="405" width="45.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1119.60" y="415.5" >org/..</text>
</g>
<g >
<title>java/lang/reflect/Proxy:::newProxyInstance (1 samples, 0.48%)</title><rect x="777.8" y="357" width="5.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="780.85" y="367.5" ></text>
</g>
<g >
<title>nft_do_chain_inet (1 samples, 0.48%)</title><rect x="382.6" y="277" width="5.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="385.63" y="287.5" ></text>
</g>
<g >
<title>dequeue_entity (1 samples, 0.48%)</title><rect x="1150.5" y="69" width="5.6" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="1153.48" y="79.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (14 samples, 6.70%)</title><rect x="314.9" y="533" width="79.0" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="317.88" y="543.5" >__ip_queu..</text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (2 samples, 0.96%)</title><rect x="653.6" y="357" width="11.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="656.64" y="367.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRowIterator:::next (3 samples, 1.44%)</title><rect x="670.6" y="373" width="16.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="673.57" y="383.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.48%)</title><rect x="1082.7" y="197" width="5.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1085.73" y="207.5" ></text>
</g>
<g >
<title>java/util/HashMap:::resize (1 samples, 0.48%)</title><rect x="540.7" y="309" width="5.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="543.72" y="319.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRowIterator:::next (1 samples, 0.48%)</title><rect x="721.4" y="389" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="724.39" y="399.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (1 samples, 0.48%)</title><rect x="710.1" y="389" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="713.10" y="399.5" ></text>
</g>
<g >
<title>do_sys_poll (2 samples, 0.96%)</title><rect x="1144.8" y="197" width="11.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="1147.83" y="207.5" ></text>
</g>
<g >
<title>[libjvm.so] (4 samples, 1.91%)</title><rect x="1167.4" y="725" width="22.6" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1170.42" y="735.5" >[..</text>
</g>
<g >
<title>java/security/AccessController:::doPrivileged (3 samples, 1.44%)</title><rect x="518.1" y="309" width="17.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="521.13" y="319.5" ></text>
</g>
<g >
<title>org/dspace/content/Bundle:::&lt;init&gt; (7 samples, 3.35%)</title><rect x="648.0" y="389" width="39.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="650.99" y="399.5" >org..</text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (1 samples, 0.48%)</title><rect x="930.3" y="85" width="5.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="933.29" y="95.5" ></text>
</g>
<g >
<title>java/util/TimSort:::countRunAndMakeAscending (1 samples, 0.48%)</title><rect x="981.1" y="341" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="984.10" y="351.5" ></text>
</g>
<g >
<title>org/apache/http/impl/AbstractHttpClientConnection:::receiveResponseHeader (1 samples, 0.48%)</title><rect x="1127.9" y="245" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1130.89" y="255.5" ></text>
</g>
<g >
<title>do_softirq.part.0 (5 samples, 2.39%)</title><rect x="360.0" y="421" width="28.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="363.05" y="431.5" >d..</text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (1 samples, 0.48%)</title><rect x="715.7" y="389" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="718.74" y="399.5" ></text>
</g>
<g >
<title>dequeue_entity (1 samples, 0.48%)</title><rect x="168.1" y="517" width="5.6" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="171.09" y="527.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::execute (14 samples, 6.70%)</title><rect x="783.5" y="357" width="79.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="786.49" y="367.5" >org/apach..</text>
</g>
<g >
<title>org/apache/http/impl/conn/ManagedClientConnectionImpl:::isStale (4 samples, 1.91%)</title><rect x="1139.2" y="325" width="22.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1142.19" y="335.5" >o..</text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (24 samples, 11.48%)</title><rect x="26.9" y="517" width="135.5" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="29.94" y="527.5" >__intel_pmu_enabl..</text>
</g>
<g >
<title>org/apache/http/protocol/RequestTargetHost:::process (1 samples, 0.48%)</title><rect x="1111.0" y="309" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1113.96" y="319.5" ></text>
</g>
<g >
<title>pthread_cond_wait@@GLIBC_2.3.2 (24 samples, 11.48%)</title><rect x="26.9" y="741" width="135.5" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="29.94" y="751.5" >pthread_cond_wait..</text>
</g>
<g >
<title>java/net/SocketTimeoutException:::&lt;init&gt; (2 samples, 0.96%)</title><rect x="1088.4" y="149" width="11.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1091.37" y="159.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1 samples, 0.48%)</title><rect x="501.2" y="213" width="5.6" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text x="504.20" y="223.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/request/AbstractUpdateRequest:::process (14 samples, 6.70%)</title><rect x="862.5" y="389" width="79.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="865.54" y="399.5" >org/apach..</text>
</g>
<g >
<title>org/springframework/core/env/StandardEnvironment:::customizePropertySources (10 samples, 4.78%)</title><rect x="552.0" y="325" width="56.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="555.01" y="335.5" >org/s..</text>
</g>
<g >
<title>scheduler_tick (1 samples, 0.48%)</title><rect x="631.1" y="229" width="5.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="634.05" y="239.5" ></text>
</g>
<g >
<title>java/util/HashMap:::get (1 samples, 0.48%)</title><rect x="698.8" y="373" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="701.80" y="383.5" ></text>
</g>
<g >
<title>org/apache/http/impl/DefaultConnectionReuseStrategy:::keepAlive (1 samples, 0.48%)</title><rect x="783.5" y="341" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="786.49" y="351.5" ></text>
</g>
<g >
<title>[libjvm.so] (4 samples, 1.91%)</title><rect x="1167.4" y="741" width="22.6" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1170.42" y="751.5" >[..</text>
</g>
<g >
<title>do_syscall_64 (1 samples, 0.48%)</title><rect x="1099.7" y="229" width="5.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="1102.67" y="239.5" ></text>
</g>
<g >
<title>org/apache/http/impl/io/AbstractSessionInputBuffer:::fillBuffer (1 samples, 0.48%)</title><rect x="1156.1" y="277" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1159.12" y="287.5" ></text>
</g>
<g >
<title>sun/net/spi/DefaultProxySelector:::select (1 samples, 0.48%)</title><rect x="1071.4" y="277" width="5.7" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="1074.44" y="287.5" ></text>
</g>
<g >
<title>net_rx_action (5 samples, 2.39%)</title><rect x="360.0" y="373" width="28.3" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="363.05" y="383.5" >n..</text>
</g>
<g >
<title>__netif_receive_skb (5 samples, 2.39%)</title><rect x="360.0" y="341" width="28.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="363.05" y="351.5" >_..</text>
</g>
<g >
<title>ip_rcv_finish (3 samples, 1.44%)</title><rect x="365.7" y="293" width="16.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="368.69" y="303.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::findByUnique (1 samples, 0.48%)</title><rect x="704.4" y="341" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="707.45" y="351.5" ></text>
</g>
<g >
<title>org/dspace/discovery/SolrServiceImpl:::requiresIndexing (11 samples, 5.26%)</title><rect x="1054.5" y="421" width="62.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1057.50" y="431.5" >org/ds..</text>
</g>
<g >
<title>org/apache/commons/pool/impl/GenericKeyedObjectPool:::borrowObject (1 samples, 0.48%)</title><rect x="704.4" y="277" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="707.45" y="287.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (3 samples, 1.44%)</title><rect x="365.7" y="261" width="16.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="368.69" y="271.5" ></text>
</g>
<g >
<title>ipv4_conntrack_local (2 samples, 0.96%)</title><rect x="320.5" y="469" width="11.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="323.53" y="479.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.96%)</title><rect x="1088.4" y="197" width="11.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1091.37" y="207.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/SolrRequest:::getPath (1 samples, 0.48%)</title><rect x="862.5" y="357" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="865.54" y="367.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupTail:::match (1 samples, 0.48%)</title><rect x="992.4" y="149" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="995.39" y="159.5" ></text>
</g>
<g >
<title>org/dspace/content/DSpaceObject:::getMetadata (4 samples, 1.91%)</title><rect x="625.4" y="405" width="22.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="628.41" y="415.5" >o..</text>
</g>
<g >
<title>hrtimer_start_range_ns (1 samples, 0.48%)</title><rect x="1144.8" y="133" width="5.7" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="1147.83" y="143.5" ></text>
</g>
<g >
<title>org/apache/http/impl/entity/EntitySerializer:::serialize (13 samples, 6.22%)</title><rect x="789.1" y="261" width="73.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="792.14" y="271.5" >org/apac..</text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (1 samples, 0.48%)</title><rect x="851.2" y="165" width="5.7" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="854.24" y="175.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.96%)</title><rect x="1088.4" y="261" width="11.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1091.37" y="271.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/util/ClientUtils:::writeXML (7 samples, 3.35%)</title><rect x="873.8" y="293" width="39.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="876.83" y="303.5" >org..</text>
</g>
<g >
<title>java/util/regex/Pattern$BmpCharProperty:::match (2 samples, 0.96%)</title><rect x="597.2" y="277" width="11.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="600.18" y="287.5" ></text>
</g>
<g >
<title>org/apache/log4j/WriterAppender:::append (1 samples, 0.48%)</title><rect x="772.2" y="293" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="775.20" y="303.5" ></text>
</g>
<g >
<title>vtable stub (1 samples, 0.48%)</title><rect x="602.8" y="245" width="5.7" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text x="605.82" y="255.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.48%)</title><rect x="715.7" y="357" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="718.74" y="367.5" ></text>
</g>
<g >
<title>__vfprintf_internal (1 samples, 0.48%)</title><rect x="10.0" y="661" width="5.6" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="13.00" y="671.5" ></text>
</g>
<g >
<title>org/apache/log4j/helpers/AppenderAttachableImpl:::appendLoopOnAppenders (5 samples, 2.39%)</title><rect x="484.3" y="373" width="28.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="487.26" y="383.5" >o..</text>
</g>
<g >
<title>java/lang/String:::toLowerCase (2 samples, 0.96%)</title><rect x="760.9" y="341" width="11.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="763.91" y="351.5" ></text>
</g>
<g >
<title>__kmalloc_reserve.isra.0 (1 samples, 0.48%)</title><rect x="309.2" y="581" width="5.7" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="312.23" y="591.5" ></text>
</g>
<g >
<title>org/apache/http/impl/conn/ManagedClientConnectionImpl:::sendRequestEntity (13 samples, 6.22%)</title><rect x="789.1" y="293" width="73.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="792.14" y="303.5" >org/apac..</text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::execute (1 samples, 0.48%)</title><rect x="715.7" y="293" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="718.74" y="303.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::query (2 samples, 0.96%)</title><rect x="653.6" y="373" width="11.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="656.64" y="383.5" ></text>
</g>
<g >
<title>__skb_datagram_iter (2 samples, 0.96%)</title><rect x="264.1" y="613" width="11.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="267.07" y="623.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.48%)</title><rect x="1156.1" y="149" width="5.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1159.12" y="159.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.48%)</title><rect x="715.7" y="373" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="718.74" y="383.5" ></text>
</g>
<g >
<title>java/lang/String:::toLowerCase (2 samples, 0.96%)</title><rect x="456.0" y="389" width="11.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="459.03" y="399.5" ></text>
</g>
<g >
<title>__x64_sys_recvfrom (20 samples, 9.57%)</title><rect x="162.4" y="709" width="113.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="165.44" y="719.5" >__x64_sys_rec..</text>
</g>
<g >
<title>reweight_entity (1 samples, 0.48%)</title><rect x="1150.5" y="37" width="5.6" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="1153.48" y="47.5" ></text>
</g>
<g >
<title>[libjvm.so] (4 samples, 1.91%)</title><rect x="1167.4" y="693" width="22.6" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1170.42" y="703.5" >[..</text>
</g>
<g >
<title>org/dspace/content/Item:::getBundles (9 samples, 4.31%)</title><rect x="648.0" y="405" width="50.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="650.99" y="415.5" >org/d..</text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractAutowireCapableBeanFactory:::predictBeanType (1 samples, 0.48%)</title><rect x="1048.9" y="325" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1051.85" y="335.5" ></text>
</g>
<g >
<title>tcp_push (14 samples, 6.70%)</title><rect x="314.9" y="613" width="79.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="317.88" y="623.5" >tcp_push</text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingResultSet:::getInt (1 samples, 0.48%)</title><rect x="721.4" y="341" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="724.39" y="351.5" ></text>
</g>
<g >
<title>org/dspace/app/util/DailyFileAppender:::subAppend (1 samples, 0.48%)</title><rect x="772.2" y="277" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="775.20" y="287.5" ></text>
</g>
<g >
<title>org/apache/http/impl/io/ChunkedOutputStream:::close (1 samples, 0.48%)</title><rect x="1133.5" y="229" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1136.54" y="239.5" ></text>
</g>
<g >
<title>ktime_get_ts64 (1 samples, 0.48%)</title><rect x="1099.7" y="197" width="5.6" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="1102.67" y="207.5" ></text>
</g>
<g >
<title>__cgroup_bpf_run_filter_skb (1 samples, 0.48%)</title><rect x="343.1" y="469" width="5.7" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="346.11" y="479.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (1 samples, 0.48%)</title><rect x="958.5" y="373" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="961.52" y="383.5" ></text>
</g>
<g >
<title>__ip_finish_output (7 samples, 3.35%)</title><rect x="348.8" y="469" width="39.5" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="351.76" y="479.5" >__i..</text>
</g>
<g >
<title>__vfs_write (1 samples, 0.48%)</title><rect x="501.2" y="133" width="5.6" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="504.20" y="143.5" ></text>
</g>
<g >
<title>java/util/HashMap$ValueIterator:::next (1 samples, 0.48%)</title><rect x="958.5" y="325" width="5.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="961.52" y="335.5" ></text>
</g>
<g >
<title>x86_pmu_enable (16 samples, 7.66%)</title><rect x="173.7" y="501" width="90.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="176.73" y="511.5" >x86_pmu_en..</text>
</g>
<g >
<title>org/apache/http/impl/conn/ProxySelectorRoutePlanner:::determineRoute (1 samples, 0.48%)</title><rect x="1071.4" y="309" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1074.44" y="319.5" ></text>
</g>
<g >
<title>org/apache/http/impl/conn/DefaultHttpResponseParser:::parseHead (1 samples, 0.48%)</title><rect x="1127.9" y="213" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1130.89" y="223.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractBeanFactory:::isTypeMatch (2 samples, 0.96%)</title><rect x="1043.2" y="341" width="11.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1046.21" y="351.5" ></text>
</g>
<g >
<title>__vfprintf_internal (2 samples, 0.96%)</title><rect x="15.6" y="725" width="11.3" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="18.65" y="735.5" ></text>
</g>
<g >
<title>org/springframework/core/env/AbstractEnvironment:::&lt;init&gt; (16 samples, 7.66%)</title><rect x="518.1" y="341" width="90.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="521.13" y="351.5" >org/spring..</text>
</g>
<g >
<title>org/dspace/core/PluginManager:::getNamedPlugin (1 samples, 0.48%)</title><rect x="608.5" y="373" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="611.47" y="383.5" ></text>
</g>
<g >
<title>intel_tfa_pmu_enable_all (24 samples, 11.48%)</title><rect x="26.9" y="533" width="135.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="29.94" y="543.5" >intel_tfa_pmu_ena..</text>
</g>
<g >
<title>java/lang/String:::intern (1 samples, 0.48%)</title><rect x="523.8" y="213" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="526.78" y="223.5" ></text>
</g>
<g >
<title>iptable_security_hook (1 samples, 0.48%)</title><rect x="314.9" y="485" width="5.6" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="317.88" y="495.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingResultSet:::next (1 samples, 0.48%)</title><rect x="693.2" y="373" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="696.16" y="383.5" ></text>
</g>
<g >
<title>sk_wait_data (17 samples, 8.13%)</title><rect x="168.1" y="629" width="96.0" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="171.09" y="639.5" >sk_wait_data</text>
</g>
<g >
<title>default_wake_function (1 samples, 0.48%)</title><rect x="371.3" y="101" width="5.7" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="374.34" y="111.5" ></text>
</g>
<g >
<title>inet6_recvmsg (20 samples, 9.57%)</title><rect x="162.4" y="661" width="113.0" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="165.44" y="671.5" >inet6_recvmsg</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1 samples, 0.48%)</title><rect x="1099.7" y="245" width="5.6" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text x="1102.67" y="255.5" ></text>
</g>
<g >
<title>update_cfs_group (1 samples, 0.48%)</title><rect x="1150.5" y="53" width="5.6" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="1153.48" y="63.5" ></text>
</g>
<g >
<title>org/apache/log4j/Category:::info (5 samples, 2.39%)</title><rect x="484.3" y="405" width="28.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="487.26" y="415.5" >o..</text>
</g>
<g >
<title>org/apache/http/impl/conn/DefaultClientConnection:::receiveResponseHeader (1 samples, 0.48%)</title><rect x="1127.9" y="261" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1130.89" y="271.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (1 samples, 0.48%)</title><rect x="1156.1" y="261" width="5.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1159.12" y="271.5" ></text>
</g>
<g >
<title>activate_task (1 samples, 0.48%)</title><rect x="371.3" y="53" width="5.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="374.34" y="63.5" ></text>
</g>
<g >
<title>sock_recvmsg (20 samples, 9.57%)</title><rect x="162.4" y="677" width="113.0" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="165.44" y="687.5" >sock_recvmsg</text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.96%)</title><rect x="1088.4" y="181" width="11.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1091.37" y="191.5" ></text>
</g>
<g >
<title>org/dspace/content/Item:::getCommunities (2 samples, 0.96%)</title><rect x="715.7" y="405" width="11.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="718.74" y="415.5" ></text>
</g>
<g >
<title>call_stub (134 samples, 64.11%)</title><rect x="410.9" y="501" width="756.5" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="413.86" y="511.5" >call_stub</text>
</g>
<g >
<title>__hrtimer_run_queues (1 samples, 0.48%)</title><rect x="631.1" y="293" width="5.6" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="634.05" y="303.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::createMethod (9 samples, 4.31%)</title><rect x="727.0" y="389" width="50.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="730.03" y="399.5" >org/a..</text>
</g>
<g >
<title>itable stub (1 samples, 0.48%)</title><rect x="1116.6" y="325" width="5.6" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="1119.60" y="335.5" ></text>
</g>
<g >
<title>ip_finish_output (8 samples, 3.83%)</title><rect x="343.1" y="485" width="45.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="346.11" y="495.5" >ip_f..</text>
</g>
<g >
<title>__x64_sys_poll (2 samples, 0.96%)</title><rect x="1144.8" y="213" width="11.3" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="1147.83" y="223.5" ></text>
</g>
<g >
<title>java/lang/Throwable:::printStackTrace (1 samples, 0.48%)</title><rect x="772.2" y="229" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="775.20" y="239.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/ClientParamsStack:::getParameter (1 samples, 0.48%)</title><rect x="935.9" y="261" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="938.93" y="271.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1 samples, 0.48%)</title><rect x="930.3" y="181" width="5.6" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text x="933.29" y="191.5" ></text>
</g>
<g >
<title>org/apache/log4j/helpers/AppenderAttachableImpl:::appendLoopOnAppenders (1 samples, 0.48%)</title><rect x="772.2" y="325" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="775.20" y="335.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (2 samples, 0.96%)</title><rect x="969.8" y="389" width="11.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="972.81" y="399.5" ></text>
</g>
<g >
<title>_register_finalizer_Java (1 samples, 0.48%)</title><rect x="687.5" y="357" width="5.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="690.51" y="367.5" ></text>
</g>
<g >
<title>java/security/AccessController:::doPrivileged (1 samples, 0.48%)</title><rect x="1071.4" y="261" width="5.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1074.44" y="271.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (2 samples, 0.96%)</title><rect x="1144.8" y="165" width="11.3" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="1147.83" y="175.5" ></text>
</g>
<g >
<title>org/dspace/content/Collection:::&lt;init&gt; (2 samples, 0.96%)</title><rect x="698.8" y="389" width="11.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="701.80" y="399.5" ></text>
</g>
<g >
<title>call_stub (2 samples, 0.96%)</title><rect x="518.1" y="261" width="11.3" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="521.13" y="271.5" ></text>
</g>
<g >
<title>java/lang/String:::split (1 samples, 0.48%)</title><rect x="433.4" y="421" width="5.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="436.44" y="431.5" ></text>
</g>
<g >
<title>java/util/Formatter:::format (5 samples, 2.39%)</title><rect x="580.2" y="293" width="28.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="583.24" y="303.5" >j..</text>
</g>
<g >
<title>java/net/PlainSocketImpl:::socketSetOption0 (1 samples, 0.48%)</title><rect x="1139.2" y="293" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1142.19" y="303.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match (1 samples, 0.48%)</title><rect x="992.4" y="229" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="995.39" y="239.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.48%)</title><rect x="631.1" y="325" width="5.6" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="634.05" y="335.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::execute (2 samples, 0.96%)</title><rect x="653.6" y="277" width="11.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="656.64" y="287.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRowIterator:::&lt;init&gt; (1 samples, 0.48%)</title><rect x="687.5" y="373" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="690.51" y="383.5" ></text>
</g>
<g >
<title>inet_send_prepare (1 samples, 0.48%)</title><rect x="393.9" y="661" width="5.7" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="396.92" y="671.5" ></text>
</g>
<g >
<title>Java_java_net_SocketInputStream_socketRead0 (1 samples, 0.48%)</title><rect x="715.7" y="213" width="5.7" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="718.74" y="223.5" ></text>
</g>
<g >
<title>__alloc_skb (1 samples, 0.48%)</title><rect x="309.2" y="597" width="5.7" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="312.23" y="607.5" ></text>
</g>
<g >
<title>pollwake (1 samples, 0.48%)</title><rect x="371.3" y="117" width="5.7" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="374.34" y="127.5" ></text>
</g>
<g >
<title>org/apache/http/impl/conn/DefaultHttpResponseParser:::parseHead (1 samples, 0.48%)</title><rect x="1127.9" y="197" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1130.89" y="207.5" ></text>
</g>
<g >
<title>org/apache/http/impl/conn/ManagedClientConnectionImpl:::receiveResponseHeader (1 samples, 0.48%)</title><rect x="1127.9" y="277" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1130.89" y="287.5" ></text>
</g>
<g >
<title>__sys_recvfrom (20 samples, 9.57%)</title><rect x="162.4" y="693" width="113.0" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="165.44" y="703.5" >__sys_recvfrom</text>
</g>
<g >
<title>org/apache/solr/client/solrj/request/RequestWriter$LazyContentStream:::getName (7 samples, 3.35%)</title><rect x="873.8" y="341" width="39.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="876.83" y="351.5" >org..</text>
</g>
<g >
<title>java/util/Arrays:::sort (1 samples, 0.48%)</title><rect x="981.1" y="373" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="984.10" y="383.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (14 samples, 6.70%)</title><rect x="314.9" y="565" width="79.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="317.88" y="575.5" >__tcp_tra..</text>
</g>
<g >
<title>x86_pmu_enable (24 samples, 11.48%)</title><rect x="26.9" y="549" width="135.5" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="29.94" y="559.5" >x86_pmu_enable</text>
</g>
<g >
<title>do_syscall_64 (20 samples, 9.57%)</title><rect x="162.4" y="725" width="113.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="165.44" y="735.5" >do_syscall_64</text>
</g>
<g >
<title>org/springframework/core/GenericTypeResolver:::doResolveTypeArguments (1 samples, 0.48%)</title><rect x="535.1" y="325" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="538.07" y="335.5" ></text>
</g>
<g >
<title>org/dspace/discovery/SolrServiceImpl:::writeDocument (41 samples, 19.62%)</title><rect x="727.0" y="405" width="231.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="730.03" y="415.5" >org/dspace/discovery/SolrServi..</text>
</g>
<g >
<title>org/dspace/content/Item:::decache (1 samples, 0.48%)</title><rect x="416.5" y="437" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="419.51" y="447.5" ></text>
</g>
<g >
<title>org/dspace/discovery/SolrServiceResourceRestrictionPlugin:::additionalIndex (2 samples, 0.96%)</title><rect x="958.5" y="405" width="11.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="961.52" y="415.5" ></text>
</g>
<g >
<title>queued_spin_lock_slowpath (1 samples, 0.48%)</title><rect x="297.9" y="613" width="5.7" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="300.94" y="623.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/HttpStrictMultipart:::formatMultipartHeader (12 samples, 5.74%)</title><rect x="789.1" y="197" width="67.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="792.14" y="207.5" >org/apa..</text>
</g>
<g >
<title>org/apache/http/client/utils/URIUtils:::rewriteURI (1 samples, 0.48%)</title><rect x="924.6" y="293" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="927.64" y="303.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (4 samples, 1.91%)</title><rect x="1082.7" y="293" width="22.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1085.73" y="303.5" >j..</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.48%)</title><rect x="523.8" y="181" width="5.6" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="526.78" y="191.5" ></text>
</g>
<g >
<title>Interpreter (134 samples, 64.11%)</title><rect x="410.9" y="581" width="756.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="413.86" y="591.5" >Interpreter</text>
</g>
<g >
<title>org/apache/http/impl/conn/ProxySelectorRoutePlanner:::determineProxy (1 samples, 0.48%)</title><rect x="1071.4" y="293" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1074.44" y="303.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::process (1 samples, 0.48%)</title><rect x="619.8" y="357" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="622.76" y="367.5" ></text>
</g>
<g >
<title>__sched_text_start (1 samples, 0.48%)</title><rect x="1150.5" y="117" width="5.6" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="1153.48" y="127.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/util/ClientUtils:::toQueryString (1 samples, 0.48%)</title><rect x="913.3" y="341" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="916.35" y="351.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::process (2 samples, 0.96%)</title><rect x="625.4" y="373" width="11.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="628.41" y="383.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc/PgStatement:::executeInternal (1 samples, 0.48%)</title><rect x="715.7" y="309" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="718.74" y="319.5" ></text>
</g>
<g >
<title>JVM_DoPrivileged (4 samples, 1.91%)</title><rect x="557.7" y="277" width="22.5" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="560.66" y="287.5" >J..</text>
</g>
<g >
<title>[libjvm.so] (134 samples, 64.11%)</title><rect x="410.9" y="533" width="756.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="413.86" y="543.5" >[libjvm.so]</text>
</g>
<g >
<title>import_single_range (1 samples, 0.48%)</title><rect x="399.6" y="693" width="5.6" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="402.57" y="703.5" ></text>
</g>
<g >
<title>org/apache/commons/logging/LogFactory:::getFactory (3 samples, 1.44%)</title><rect x="518.1" y="325" width="17.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="521.13" y="335.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (1 samples, 0.48%)</title><rect x="715.7" y="229" width="5.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="718.74" y="239.5" ></text>
</g>
<g >
<title>schedule (24 samples, 11.48%)</title><rect x="26.9" y="629" width="135.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="29.94" y="639.5" >schedule</text>
</g>
<g >
<title>java/util/regex/Pattern$GroupTail:::match (1 samples, 0.48%)</title><rect x="992.4" y="213" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="995.39" y="223.5" ></text>
</g>
<g >
<title>java/lang/ThreadLocal$ThreadLocalMap:::set (1 samples, 0.48%)</title><rect x="986.7" y="341" width="5.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="989.75" y="351.5" ></text>
</g>
<g >
<title>poll_schedule_timeout.constprop.0 (1 samples, 0.48%)</title><rect x="930.3" y="117" width="5.6" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="933.29" y="127.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/AbstractHttpClient:::doExecute (8 samples, 3.83%)</title><rect x="1116.6" y="357" width="45.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1119.60" y="367.5" >org/..</text>
</g>
<g >
<title>__wake_up_sync_key (1 samples, 0.48%)</title><rect x="371.3" y="165" width="5.7" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="374.34" y="175.5" ></text>
</g>
<g >
<title>org/dspace/discovery/SolrServiceImpl:::buildDocument (108 samples, 51.67%)</title><rect x="444.7" y="421" width="609.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="447.74" y="431.5" >org/dspace/discovery/SolrServiceImpl:::buildDocument</text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.96%)</title><rect x="1088.4" y="229" width="11.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1091.37" y="239.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/MultipartEntity:::writeTo (12 samples, 5.74%)</title><rect x="789.1" y="229" width="67.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="792.14" y="239.5" >org/apa..</text>
</g>
<g >
<title>ip_local_out (13 samples, 6.22%)</title><rect x="314.9" y="517" width="73.4" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="317.88" y="527.5" >ip_local..</text>
</g>
<g >
<title>org/apache/http/impl/io/SocketInputBuffer:::isDataAvailable (1 samples, 0.48%)</title><rect x="1156.1" y="293" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1159.12" y="303.5" ></text>
</g>
<g >
<title>schedule_timeout (17 samples, 8.13%)</title><rect x="168.1" y="597" width="96.0" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="171.09" y="607.5" >schedule_ti..</text>
</g>
<g >
<title>do_futex (24 samples, 11.48%)</title><rect x="26.9" y="677" width="135.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="29.94" y="687.5" >do_futex</text>
</g>
<g >
<title>org/apache/http/client/utils/URIBuilder:::digestURI (1 samples, 0.48%)</title><rect x="924.6" y="277" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="927.64" y="287.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRowIterator:::next (1 samples, 0.48%)</title><rect x="964.2" y="373" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="967.16" y="383.5" ></text>
</g>
<g >
<title>wait_woken (17 samples, 8.13%)</title><rect x="168.1" y="613" width="96.0" height="15.0" fill="rgb(219,79,79)" rx="2" ry="2" />
<text x="171.09" y="623.5" >wait_woken</text>
</g>
<g >
<title>java/lang/Class:::getMethod0 (1 samples, 0.48%)</title><rect x="523.8" y="229" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="526.78" y="239.5" ></text>
</g>
<g >
<title>org/dspace/text/filter/InitialArticleWord:::filter (1 samples, 0.48%)</title><rect x="614.1" y="373" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="617.11" y="383.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (1 samples, 0.48%)</title><rect x="715.7" y="245" width="5.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="718.74" y="255.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::executeMethod (9 samples, 4.31%)</title><rect x="1065.8" y="373" width="50.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1068.79" y="383.5" >org/a..</text>
</g>
<g >
<title>__sys_sendto (19 samples, 9.09%)</title><rect x="292.3" y="693" width="107.3" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="295.30" y="703.5" >__sys_sendto</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.48%)</title><rect x="1082.7" y="229" width="5.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1085.73" y="239.5" ></text>
</g>
<g >
<title>nf_ct_seq_offset (1 samples, 0.48%)</title><rect x="326.2" y="421" width="5.6" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="329.17" y="431.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractAutowireCapableBeanFactory:::instantiateBean (1 samples, 0.48%)</title><rect x="992.4" y="325" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="995.39" y="335.5" ></text>
</g>
<g >
<title>org/springframework/beans/TypeConverterDelegate:::convertIfNecessary (16 samples, 7.66%)</title><rect x="518.1" y="373" width="90.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="521.13" y="383.5" >org/spring..</text>
</g>
<g >
<title>inet_ehashfn (1 samples, 0.48%)</title><rect x="365.7" y="213" width="5.6" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="368.69" y="223.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.96%)</title><rect x="1088.4" y="69" width="11.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1091.37" y="79.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingResultSet:::getInt (1 samples, 0.48%)</title><rect x="721.4" y="357" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="724.39" y="367.5" ></text>
</g>
<g >
<title>org/apache/http/client/protocol/RequestDefaultHeaders:::process (1 samples, 0.48%)</title><rect x="935.9" y="293" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="938.93" y="303.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$BmpCharProperty:::match (1 samples, 0.48%)</title><rect x="992.4" y="197" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="995.39" y="207.5" ></text>
</g>
<g >
<title>java/lang/Class:::getConstructor0 (1 samples, 0.48%)</title><rect x="777.8" y="341" width="5.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="780.85" y="351.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (1 samples, 0.48%)</title><rect x="930.3" y="245" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="933.29" y="255.5" ></text>
</g>
<g >
<title>__kmalloc_node_track_caller (1 samples, 0.48%)</title><rect x="309.2" y="565" width="5.7" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="312.23" y="575.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupHead:::match (1 samples, 0.48%)</title><rect x="992.4" y="245" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="995.39" y="255.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRow:::resetChanged (1 samples, 0.48%)</title><rect x="676.2" y="341" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="679.22" y="351.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendQuery (1 samples, 0.48%)</title><rect x="659.3" y="261" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="662.28" y="271.5" ></text>
</g>
<g >
<title>deactivate_task (1 samples, 0.48%)</title><rect x="168.1" y="549" width="5.6" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="171.09" y="559.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.48%)</title><rect x="715.7" y="341" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="718.74" y="351.5" ></text>
</g>
<g >
<title>org/apache/log4j/DefaultThrowableRenderer:::render (1 samples, 0.48%)</title><rect x="772.2" y="245" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="775.20" y="255.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (24 samples, 11.48%)</title><rect x="26.9" y="581" width="135.5" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="29.94" y="591.5" >__perf_event_task..</text>
</g>
<g >
<title>jlong_disjoint_arraycopy (1 samples, 0.48%)</title><rect x="478.6" y="389" width="5.7" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="481.61" y="399.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl:::invoke (134 samples, 64.11%)</title><rect x="410.9" y="613" width="756.5" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="413.86" y="623.5" >sun/reflect/DelegatingMethodAccessorImpl:::invoke</text>
</g>
<g >
<title>org/springframework/core/convert/support/GenericConversionService:::getMatchableConverters (1 samples, 0.48%)</title><rect x="540.7" y="325" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="543.72" y="335.5" ></text>
</g>
<g >
<title>ip_output (8 samples, 3.83%)</title><rect x="343.1" y="501" width="45.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="346.11" y="511.5" >ip_o..</text>
</g>
<g >
<title>__poll (1 samples, 0.48%)</title><rect x="930.3" y="197" width="5.6" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="933.29" y="207.5" ></text>
</g>
<g >
<title>ip_rcv (4 samples, 1.91%)</title><rect x="365.7" y="309" width="22.6" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="368.69" y="319.5" >i..</text>
</g>
<g >
<title>org/dspace/browse/BrowseIndex:::&lt;init&gt; (1 samples, 0.48%)</title><rect x="992.4" y="261" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="995.39" y="271.5" ></text>
</g>
<g >
<title>java (209 samples, 100.00%)</title><rect x="10.0" y="773" width="1180.0" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text x="13.00" y="783.5" >java</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.48%)</title><rect x="772.2" y="165" width="5.6" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="775.20" y="175.5" ></text>
</g>
<g >
<title>org/apache/solr/common/SolrInputDocument:::addField (1 samples, 0.48%)</title><rect x="512.5" y="405" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="515.49" y="415.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::determineRoute (1 samples, 0.48%)</title><rect x="1122.2" y="325" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1125.25" y="335.5" ></text>
</g>
<g >
<title>java/lang/Throwable:::printStackTrace (1 samples, 0.48%)</title><rect x="772.2" y="213" width="5.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="775.20" y="223.5" ></text>
</g>
<g >
<title>Interpreter (134 samples, 64.11%)</title><rect x="410.9" y="469" width="756.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="413.86" y="479.5" >Interpreter</text>
</g>
<g >
<title>org/dspace/discovery/configuration/DiscoverySearchFilter:::getFilterType (1 samples, 0.48%)</title><rect x="1161.8" y="421" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1164.77" y="431.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (2 samples, 0.96%)</title><rect x="636.7" y="373" width="11.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="639.70" y="383.5" ></text>
</g>
<g >
<title>__generic_file_write_iter (1 samples, 0.48%)</title><rect x="501.2" y="85" width="5.6" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="504.20" y="95.5" ></text>
</g>
<g >
<title>[libjvm.so] (134 samples, 64.11%)</title><rect x="410.9" y="709" width="756.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="413.86" y="719.5" >[libjvm.so]</text>
</g>
<g >
<title>org/postgresql/jdbc/PgStatement:::executeInternal (2 samples, 0.96%)</title><rect x="653.6" y="293" width="11.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="656.64" y="303.5" ></text>
</g>
<g >
<title>Interpreter (134 samples, 64.11%)</title><rect x="410.9" y="485" width="756.5" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="413.86" y="495.5" >Interpreter</text>
</g>
<g >
<title>org/apache/log4j/Category:::callAppenders (1 samples, 0.48%)</title><rect x="772.2" y="341" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="775.20" y="351.5" ></text>
</g>
<g >
<title>JVM_InternString (1 samples, 0.48%)</title><rect x="523.8" y="197" width="5.6" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="526.78" y="207.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingResultSet:::getTimestamp (1 samples, 0.48%)</title><rect x="427.8" y="357" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="430.80" y="367.5" ></text>
</g>
<g >
<title>nft_do_chain (1 samples, 0.48%)</title><rect x="337.5" y="453" width="5.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="340.46" y="463.5" ></text>
</g>
<g >
<title>do_syscall_64 (1 samples, 0.48%)</title><rect x="930.3" y="165" width="5.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="933.29" y="175.5" ></text>
</g>
<g >
<title>org/apache/log4j/WriterAppender:::append (5 samples, 2.39%)</title><rect x="484.3" y="341" width="28.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="487.26" y="351.5" >o..</text>
</g>
<g >
<title>tcp_recvmsg (19 samples, 9.09%)</title><rect x="168.1" y="645" width="107.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="171.09" y="655.5" >tcp_recvmsg</text>
</g>
<g >
<title>org/dspace/authorize/AuthorizeManager:::getPoliciesActionFilter (2 samples, 0.96%)</title><rect x="958.5" y="389" width="11.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="961.52" y="399.5" ></text>
</g>
<g >
<title>tick_sched_handle (1 samples, 0.48%)</title><rect x="631.1" y="261" width="5.6" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="634.05" y="271.5" ></text>
</g>
<g >
<title>__poll (2 samples, 0.96%)</title><rect x="1144.8" y="261" width="11.3" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="1147.83" y="271.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.48%)</title><rect x="1060.1" y="341" width="5.7" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="1063.14" y="351.5" ></text>
</g>
<g >
<title>[libjava.so] (1 samples, 0.48%)</title><rect x="501.2" y="245" width="5.6" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="504.20" y="255.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/BasicHttpContext:::getAttribute (1 samples, 0.48%)</title><rect x="1111.0" y="293" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1113.96" y="303.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/RequestWrapper:::getRequestLine (1 samples, 0.48%)</title><rect x="935.9" y="277" width="5.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="938.93" y="287.5" ></text>
</g>
<g >
<title>__sched_text_start (24 samples, 11.48%)</title><rect x="26.9" y="613" width="135.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="29.94" y="623.5" >__sched_text_start</text>
</g>
<g >
<title>org/apache/http/client/methods/HttpPost:::&lt;init&gt; (1 samples, 0.48%)</title><rect x="732.7" y="373" width="5.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="735.68" y="383.5" ></text>
</g>
<g >
<title>org/dspace/sort/OrderFormat:::makeSortString (2 samples, 0.96%)</title><rect x="608.5" y="389" width="11.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="611.47" y="399.5" ></text>
</g>
<g >
<title>call_stub (2 samples, 0.96%)</title><rect x="1088.4" y="165" width="11.3" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="1091.37" y="175.5" ></text>
</g>
<g >
<title>call_stub (1 samples, 0.48%)</title><rect x="1071.4" y="213" width="5.7" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="1074.44" y="223.5" ></text>
</g>
<g >
<title>org/dspace/app/util/DailyFileAppender:::subAppend (5 samples, 2.39%)</title><rect x="484.3" y="325" width="28.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="487.26" y="335.5" >o..</text>
</g>
<g >
<title>hrtimer_interrupt (1 samples, 0.48%)</title><rect x="631.1" y="309" width="5.6" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="634.05" y="319.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (2 samples, 0.96%)</title><rect x="653.6" y="325" width="11.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="656.64" y="335.5" ></text>
</g>
<g >
<title>__x64_sys_write (1 samples, 0.48%)</title><rect x="501.2" y="181" width="5.6" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="504.20" y="191.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedConstructorAccessor19:::newInstance (1 samples, 0.48%)</title><rect x="992.4" y="309" width="5.6" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="995.39" y="319.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/request/UpdateRequest:::writeXML (7 samples, 3.35%)</title><rect x="873.8" y="309" width="39.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="876.83" y="319.5" >org..</text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.48%)</title><rect x="631.1" y="341" width="5.6" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="634.05" y="351.5" ></text>
</g>
<g >
<title>tcp_sendmsg_locked (16 samples, 7.66%)</title><rect x="303.6" y="629" width="90.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="306.59" y="639.5" >tcp_sendms..</text>
</g>
</g>
</svg>