cgspace-notes/docs/2020/02/out.dspace58-2.svg

7089 lines
348 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="1398" onload="init(evt)" viewBox="0 0 1200 1398" 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="1398.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="1381" > </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="1381" > </text>
<g id="frames">
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (3 samples, 0.27%)</title><rect x="884.8" y="917" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="887.79" y="927.5" ></text>
</g>
<g >
<title>acpi_hw_read_port (1 samples, 0.09%)</title><rect x="790.2" y="613" width="1.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="793.22" y="623.5" ></text>
</g>
<g >
<title>refcount_inc_not_zero_checked (1 samples, 0.09%)</title><rect x="244.3" y="757" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="247.28" y="767.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::getColumnNames (1 samples, 0.09%)</title><rect x="756.9" y="949" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="759.90" y="959.5" ></text>
</g>
<g >
<title>java/util/Arrays:::copyOf (1 samples, 0.09%)</title><rect x="1057.8" y="949" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1060.81" y="959.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="462.4" y="789" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="465.44" y="799.5" ></text>
</g>
<g >
<title>java/util/LinkedList:::linkFirst (3 samples, 0.27%)</title><rect x="697.8" y="869" width="3.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="700.80" y="879.5" ></text>
</g>
<g >
<title>skb_clone (2 samples, 0.18%)</title><rect x="347.4" y="1109" width="2.2" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="350.45" y="1119.5" ></text>
</g>
<g >
<title>do_IRQ (1 samples, 0.09%)</title><rect x="132.5" y="1109" width="1.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="135.51" y="1119.5" ></text>
</g>
<g >
<title>nf_confirm (1 samples, 0.09%)</title><rect x="344.2" y="1029" width="1.1" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="347.23" y="1039.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.27%)</title><rect x="543.0" y="645" width="3.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="546.04" y="655.5" ></text>
</g>
<g >
<title>org/apache/http/message/BasicHeaderValueParser:::parseElements (1 samples, 0.09%)</title><rect x="1123.4" y="965" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1126.37" y="975.5" ></text>
</g>
<g >
<title>nvme_complete_rq (1 samples, 0.09%)</title><rect x="137.9" y="1061" width="1.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="140.89" y="1071.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::executeMethod (39 samples, 3.55%)</title><rect x="423.8" y="949" width="41.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="426.75" y="959.5" >org..</text>
</g>
<g >
<title>org/dspace/app/util/DailyFileAppender:::subAppend (10 samples, 0.91%)</title><rect x="409.8" y="869" width="10.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="412.78" y="879.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::clearParameters (1 samples, 0.09%)</title><rect x="869.7" y="885" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="872.74" y="895.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (13 samples, 1.18%)</title><rect x="116.4" y="1093" width="14.0" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="119.39" y="1103.5" ></text>
</g>
<g >
<title>bbr_update_model (1 samples, 0.09%)</title><rect x="281.9" y="725" width="1.1" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text x="284.89" y="735.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeQuery (3 samples, 0.27%)</title><rect x="884.8" y="885" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="887.79" y="895.5" ></text>
</g>
<g >
<title>org/apache/http/impl/conn/HttpPoolEntry:::close (1 samples, 0.09%)</title><rect x="559.2" y="901" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="562.16" y="911.5" ></text>
</g>
<g >
<title>_itoa_word (1 samples, 0.09%)</title><rect x="12.1" y="1285" width="1.1" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="15.15" y="1295.5" ></text>
</g>
<g >
<title>perf_pmu_disable.part.0 (1 samples, 0.09%)</title><rect x="100.3" y="1061" width="1.0" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="103.27" y="1071.5" ></text>
</g>
<g >
<title>acpi_ev_sci_xrupt_handler (1 samples, 0.09%)</title><rect x="790.2" y="677" width="1.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="793.22" y="687.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (1 samples, 0.09%)</title><rect x="436.6" y="613" width="1.1" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="439.65" y="623.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.09%)</title><rect x="873.0" y="869" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="875.97" y="879.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="755.8" y="853" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="758.83" y="863.5" ></text>
</g>
<g >
<title>sun/nio/cs/UTF_8$Decoder:::decode (1 samples, 0.09%)</title><rect x="807.4" y="869" width="1.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="810.41" y="879.5" ></text>
</g>
<g >
<title>acpi_irq (1 samples, 0.09%)</title><rect x="421.6" y="613" width="1.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="424.60" y="623.5" ></text>
</g>
<g >
<title>memset_erms (1 samples, 0.09%)</title><rect x="179.8" y="1125" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="182.80" y="1135.5" ></text>
</g>
<g >
<title>inet6_recvmsg (44 samples, 4.01%)</title><rect x="89.5" y="1221" width="47.3" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="92.53" y="1231.5" >inet..</text>
</g>
<g >
<title>link_path_walk.part.0 (1 samples, 0.09%)</title><rect x="11.1" y="1189" width="1.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="14.07" y="1199.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/PoolingDataSource$PoolGuardConnectionWrapper:::prepareStatement (1 samples, 0.09%)</title><rect x="861.1" y="885" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="864.15" y="895.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="855.8" y="725" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="858.77" y="735.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::execute (1 samples, 0.09%)</title><rect x="867.6" y="853" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="870.60" y="863.5" ></text>
</g>
<g >
<title>syscall_trace_enter (1 samples, 0.09%)</title><rect x="367.9" y="1269" width="1.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="370.87" y="1279.5" ></text>
</g>
<g >
<title>org/apache/http/impl/io/AbstractSessionOutputBuffer:::flushBuffer (1 samples, 0.09%)</title><rect x="538.7" y="789" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="541.74" y="799.5" ></text>
</g>
<g >
<title>org/dspace/content/Item:::getID (1 samples, 0.09%)</title><rect x="798.8" y="933" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="801.82" y="943.5" ></text>
</g>
<g >
<title>java/lang/reflect/Proxy:::newProxyInstance (2 samples, 0.18%)</title><rect x="1063.2" y="949" width="2.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1066.19" y="959.5" ></text>
</g>
<g >
<title>walk_component (1 samples, 0.09%)</title><rect x="11.1" y="1173" width="1.0" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="14.07" y="1183.5" ></text>
</g>
<g >
<title>sun/reflect/DelegatingMethodAccessorImpl:::invoke (747 samples, 68.03%)</title><rect x="372.2" y="1173" width="802.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="375.17" y="1183.5" >sun/reflect/DelegatingMethodAccessorImpl:::invoke</text>
</g>
<g >
<title>ip_build_and_send_pkt (1 samples, 0.09%)</title><rect x="1078.2" y="149" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="1081.23" y="159.5" ></text>
</g>
<g >
<title>__ip_finish_output (1 samples, 0.09%)</title><rect x="1078.2" y="501" width="1.1" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="1081.23" y="511.5" ></text>
</g>
<g >
<title>__libc_recv (55 samples, 5.01%)</title><rect x="83.1" y="1317" width="59.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="86.08" y="1327.5" >__libc..</text>
</g>
<g >
<title>ext4_reserve_inode_write (2 samples, 0.18%)</title><rect x="409.8" y="533" width="2.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="412.78" y="543.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/ClientParamsStack:::getParameter (1 samples, 0.09%)</title><rect x="535.5" y="869" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="538.52" y="879.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::processResults (1 samples, 0.09%)</title><rect x="873.0" y="805" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="875.97" y="815.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="1168.5" y="869" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1171.51" y="879.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.09%)</title><rect x="765.5" y="885" width="1.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="768.50" y="895.5" ></text>
</g>
<g >
<title>__wake_up (1 samples, 0.09%)</title><rect x="137.9" y="773" width="1.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="140.89" y="783.5" ></text>
</g>
<g >
<title>__x86_indirect_thunk_rax (1 samples, 0.09%)</title><rect x="335.6" y="949" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="338.63" y="959.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::handleResponse (1 samples, 0.09%)</title><rect x="535.5" y="885" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="538.52" y="895.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.09%)</title><rect x="436.6" y="789" width="1.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="439.65" y="799.5" ></text>
</g>
<g >
<title>perf_event_sched_in (1 samples, 0.09%)</title><rect x="116.4" y="1077" width="1.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="119.39" y="1087.5" ></text>
</g>
<g >
<title>__sched_text_start (30 samples, 2.73%)</title><rect x="100.3" y="1125" width="32.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="103.27" y="1135.5" >__..</text>
</g>
<g >
<title>dev_queue_xmit (7 samples, 0.64%)</title><rect x="336.7" y="997" width="7.5" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text x="339.70" y="1007.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="542.0" y="741" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="544.97" y="751.5" ></text>
</g>
<g >
<title>syscall_slow_exit_work (1 samples, 0.09%)</title><rect x="411.9" y="725" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="414.93" y="735.5" ></text>
</g>
<g >
<title>deactivate_task (11 samples, 1.00%)</title><rect x="102.4" y="1109" width="11.8" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="105.42" y="1119.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeWithFlags (3 samples, 0.27%)</title><rect x="878.3" y="853" width="3.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="881.34" y="863.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (1 samples, 0.09%)</title><rect x="812.8" y="773" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="815.79" y="783.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRowIterator:::hasNext (2 samples, 0.18%)</title><rect x="1030.9" y="949" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1033.95" y="959.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRow:::getIntColumn (1 samples, 0.09%)</title><rect x="874.0" y="917" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="877.04" y="927.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.27%)</title><rect x="543.0" y="789" width="3.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="546.04" y="799.5" ></text>
</g>
<g >
<title>tcp_stream_memory_free (1 samples, 0.09%)</title><rect x="361.4" y="1189" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="364.42" y="1199.5" ></text>
</g>
<g >
<title>generic_update_time (2 samples, 0.18%)</title><rect x="409.8" y="597" width="2.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="412.78" y="607.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRow:::setColumn (1 samples, 0.09%)</title><rect x="573.1" y="933" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="576.13" y="943.5" ></text>
</g>
<g >
<title>lookup_slow (1 samples, 0.09%)</title><rect x="11.1" y="1157" width="1.0" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="14.07" y="1167.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (1 samples, 0.09%)</title><rect x="735.4" y="677" width="1.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="738.41" y="687.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::execute (7 samples, 0.64%)</title><rect x="853.6" y="805" width="7.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="856.62" y="815.5" ></text>
</g>
<g >
<title>java/lang/String:::equals (1 samples, 0.09%)</title><rect x="782.7" y="901" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="785.70" y="911.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/HttpRequestExecutor:::preProcess (3 samples, 0.27%)</title><rect x="555.9" y="885" width="3.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="558.94" y="895.5" ></text>
</g>
<g >
<title>org/springframework/core/convert/support/MapToMapConverter:::getConvertibleTypes (1 samples, 0.09%)</title><rect x="702.1" y="885" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="705.09" y="895.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (144 samples, 13.11%)</title><rect x="195.9" y="1125" width="154.8" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="198.92" y="1135.5" >__tcp_transmit_skb</text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.18%)</title><rect x="723.6" y="885" width="2.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="726.59" y="895.5" ></text>
</g>
<g >
<title>sched_clock_cpu (1 samples, 0.09%)</title><rect x="798.8" y="853" width="1.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="801.82" y="863.5" ></text>
</g>
<g >
<title>org/dspace/discovery/SolrServiceResourceRestrictionPlugin:::additionalIndex (5 samples, 0.46%)</title><rect x="883.7" y="965" width="5.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="886.72" y="975.5" ></text>
</g>
<g >
<title>Java_java_net_SocketOutputStream_socketWrite0 (2 samples, 0.18%)</title><rect x="452.8" y="805" width="2.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="455.77" y="815.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/PoolablePreparedStatement:::close (1 samples, 0.09%)</title><rect x="804.2" y="869" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="807.19" y="879.5" ></text>
</g>
<g >
<title>Interpreter (1 samples, 0.09%)</title><rect x="1078.2" y="917" width="1.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="1081.23" y="927.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="764.4" y="885" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="767.43" y="895.5" ></text>
</g>
<g >
<title>perf_event_task_tick (1 samples, 0.09%)</title><rect x="436.6" y="677" width="1.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="439.65" y="687.5" ></text>
</g>
<g >
<title>ip_local_out (1 samples, 0.09%)</title><rect x="1121.2" y="661" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="1124.22" y="671.5" ></text>
</g>
<g >
<title>do_IRQ (1 samples, 0.09%)</title><rect x="631.2" y="837" width="1.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="634.17" y="847.5" ></text>
</g>
<g >
<title>org/apache/http/entity/AbstractHttpEntity:::getContentType (1 samples, 0.09%)</title><rect x="380.8" y="949" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="383.77" y="959.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::execute (2 samples, 0.18%)</title><rect x="760.1" y="853" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="763.13" y="863.5" ></text>
</g>
<g >
<title>java/util/ArrayList$Itr:::next (1 samples, 0.09%)</title><rect x="1049.2" y="981" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1052.22" y="991.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingStatement:::close (1 samples, 0.09%)</title><rect x="1032.0" y="933" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1035.02" y="943.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/PoolingConnection$PStmtKey:::hashCode (1 samples, 0.09%)</title><rect x="765.5" y="901" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="768.50" y="911.5" ></text>
</g>
<g >
<title>new_sync_write (1 samples, 0.09%)</title><rect x="1139.5" y="757" width="1.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="1142.49" y="767.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::execute (5 samples, 0.46%)</title><rect x="1035.2" y="869" width="5.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1038.25" y="879.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingStatement:::close (1 samples, 0.09%)</title><rect x="799.9" y="949" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="802.89" y="959.5" ></text>
</g>
<g >
<title>ipv4_conntrack_local (1 samples, 0.09%)</title><rect x="1078.2" y="85" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1081.23" y="95.5" ></text>
</g>
<g >
<title>futex_wait (61 samples, 5.56%)</title><rect x="13.2" y="1221" width="65.6" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="16.22" y="1231.5" >futex_w..</text>
</g>
<g >
<title>clone_endio (1 samples, 0.09%)</title><rect x="137.9" y="949" width="1.1" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="140.89" y="959.5" ></text>
</g>
<g >
<title>__entry_text_start (1 samples, 0.09%)</title><rect x="371.1" y="1301" width="1.1" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="374.09" y="1311.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="877.3" y="869" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="880.27" y="879.5" ></text>
</g>
<g >
<title>org/apache/http/impl/DefaultConnectionReuseStrategy:::keepAlive (2 samples, 0.18%)</title><rect x="1071.8" y="933" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1074.79" y="943.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRowIterator:::hasNext (1 samples, 0.09%)</title><rect x="752.6" y="949" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="755.60" y="959.5" ></text>
</g>
<g >
<title>update_process_times (1 samples, 0.09%)</title><rect x="436.6" y="709" width="1.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="439.65" y="719.5" ></text>
</g>
<g >
<title>autoremove_wake_function (1 samples, 0.09%)</title><rect x="137.9" y="709" width="1.1" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="140.89" y="719.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (3 samples, 0.27%)</title><rect x="735.4" y="885" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="738.41" y="895.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$CharProperty:::study (2 samples, 0.18%)</title><rect x="921.3" y="741" width="2.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="924.33" y="751.5" ></text>
</g>
<g >
<title>__ext4_get_inode_loc (1 samples, 0.09%)</title><rect x="409.8" y="517" width="1.1" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="412.78" y="527.5" ></text>
</g>
<g >
<title>ip_queue_xmit (1 samples, 0.09%)</title><rect x="1121.2" y="693" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="1124.22" y="703.5" ></text>
</g>
<g >
<title>tcp_connect (1 samples, 0.09%)</title><rect x="1078.2" y="613" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="1081.23" y="623.5" ></text>
</g>
<g >
<title>perf_event_sched_in (1 samples, 0.09%)</title><rect x="1111.5" y="677" width="1.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="1114.55" y="687.5" ></text>
</g>
<g >
<title>Java_java_io_FileOutputStream_writeBytes (3 samples, 0.27%)</title><rect x="1137.3" y="901" width="3.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="1140.34" y="911.5" ></text>
</g>
<g >
<title>ip_local_deliver (62 samples, 5.65%)</title><rect x="236.8" y="837" width="66.6" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="239.76" y="847.5" >ip_loca..</text>
</g>
<g >
<title>java/util/regex/Pattern$CharProperty:::match (1 samples, 0.09%)</title><rect x="846.1" y="885" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="849.10" y="895.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (1 samples, 0.09%)</title><rect x="177.7" y="1061" width="1.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="180.65" y="1071.5" ></text>
</g>
<g >
<title>generic_write_end (1 samples, 0.09%)</title><rect x="1139.5" y="677" width="1.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="1142.49" y="687.5" ></text>
</g>
<g >
<title>Interpreter (1 samples, 0.09%)</title><rect x="1078.2" y="869" width="1.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="1081.23" y="879.5" ></text>
</g>
<g >
<title>[libjvm.so] (13 samples, 1.18%)</title><rect x="1176.0" y="1269" width="14.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1179.03" y="1279.5" ></text>
</g>
<g >
<title>do_filp_open (1 samples, 0.09%)</title><rect x="11.1" y="1221" width="1.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="14.07" y="1231.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$5:::isSatisfiedBy (1 samples, 0.09%)</title><rect x="1144.9" y="917" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1147.86" y="927.5" ></text>
</g>
<g >
<title>java/net/PlainSocketImpl:::socketSetOption0 (1 samples, 0.09%)</title><rect x="1091.1" y="917" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1094.13" y="927.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Ques:::study (1 samples, 0.09%)</title><rect x="921.3" y="677" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="924.33" y="687.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (4 samples, 0.36%)</title><rect x="811.7" y="869" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="814.71" y="879.5" ></text>
</g>
<g >
<title>org/springframework/core/GenericTypeResolver:::doResolveTypeArguments (12 samples, 1.09%)</title><rect x="666.6" y="885" width="12.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="669.63" y="895.5" ></text>
</g>
<g >
<title>schedule (1 samples, 0.09%)</title><rect x="137.9" y="1253" width="1.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="140.89" y="1263.5" ></text>
</g>
<g >
<title>bio_endio (1 samples, 0.09%)</title><rect x="137.9" y="869" width="1.1" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="140.89" y="879.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (1 samples, 0.09%)</title><rect x="1121.2" y="709" width="1.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="1124.22" y="719.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::find (17 samples, 1.55%)</title><rect x="845.0" y="933" width="18.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="848.03" y="943.5" ></text>
</g>
<g >
<title>activate_task (12 samples, 1.09%)</title><rect x="258.3" y="613" width="12.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="261.25" y="623.5" ></text>
</g>
<g >
<title>lock_sock_nested (1 samples, 0.09%)</title><rect x="164.8" y="1189" width="1.0" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="167.75" y="1199.5" ></text>
</g>
<g >
<title>java/text/SimpleDateFormat:::format (2 samples, 0.18%)</title><rect x="487.2" y="821" width="2.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="490.16" y="831.5" ></text>
</g>
<g >
<title>JVM_InternString (5 samples, 0.46%)</title><rect x="657.0" y="773" width="5.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="659.96" y="783.5" ></text>
</g>
<g >
<title>rcu_core (1 samples, 0.09%)</title><rect x="964.3" y="821" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="967.32" y="831.5" ></text>
</g>
<g >
<title>nf_conntrack_in (6 samples, 0.55%)</title><rect x="213.1" y="1013" width="6.5" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="216.11" y="1023.5" ></text>
</g>
<g >
<title>inet_shutdown (1 samples, 0.09%)</title><rect x="1121.2" y="789" width="1.1" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="1124.22" y="799.5" ></text>
</g>
<g >
<title>irqtime_account_irq (1 samples, 0.09%)</title><rect x="77.7" y="1093" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="80.70" y="1103.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (1 samples, 0.09%)</title><rect x="1083.6" y="837" width="1.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="1086.61" y="847.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/EntityEnclosingRequestWrapper$EntityWrapper:::writeTo (3 samples, 0.27%)</title><rect x="536.6" y="853" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="539.59" y="863.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeQuery (7 samples, 0.64%)</title><rect x="853.6" y="837" width="7.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="856.62" y="847.5" ></text>
</g>
<g >
<title>org/apache/http/impl/conn/DefaultClientConnection:::close (1 samples, 0.09%)</title><rect x="1122.3" y="933" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1125.30" y="943.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (61 samples, 5.56%)</title><rect x="13.2" y="1285" width="65.6" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text x="16.22" y="1295.5" >entry_S..</text>
</g>
<g >
<title>finish_task_switch (1 samples, 0.09%)</title><rect x="137.9" y="1221" width="1.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="140.89" y="1231.5" ></text>
</g>
<g >
<title>java/util/concurrent/ConcurrentHashMap:::putVal (1 samples, 0.09%)</title><rect x="1065.3" y="949" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1068.34" y="959.5" ></text>
</g>
<g >
<title>org/dspace/browse/BrowseIndex:::getTableName (1 samples, 0.09%)</title><rect x="617.2" y="949" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="620.19" y="959.5" ></text>
</g>
<g >
<title>org/postgresql/core/PGStream:::ReceiveTupleV3 (1 samples, 0.09%)</title><rect x="873.0" y="789" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="875.97" y="799.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendOneQuery (1 samples, 0.09%)</title><rect x="880.5" y="821" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="883.49" y="831.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (1 samples, 0.09%)</title><rect x="249.7" y="661" width="1.0" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="252.65" y="671.5" ></text>
</g>
<g >
<title>__list_del_entry_valid (1 samples, 0.09%)</title><rect x="228.2" y="933" width="1.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="231.16" y="943.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="810.6" y="869" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="813.64" y="879.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="460.3" y="821" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="463.29" y="831.5" ></text>
</g>
<g >
<title>schedule (30 samples, 2.73%)</title><rect x="100.3" y="1141" width="32.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="103.27" y="1151.5" >sc..</text>
</g>
<g >
<title>rcu_core_si (1 samples, 0.09%)</title><rect x="964.3" y="837" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="967.32" y="847.5" ></text>
</g>
<g >
<title>java/lang/StringCoding:::encode (1 samples, 0.09%)</title><rect x="1056.7" y="949" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1059.74" y="959.5" ></text>
</g>
<g >
<title>ksys_write (2 samples, 0.18%)</title><rect x="1138.4" y="805" width="2.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="1141.42" y="815.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="748.3" y="901" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="751.31" y="911.5" ></text>
</g>
<g >
<title>ctx_sched_in (1 samples, 0.09%)</title><rect x="116.4" y="1061" width="1.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="119.39" y="1071.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractBeanFactory:::doGetBean (40 samples, 3.64%)</title><rect x="893.4" y="917" width="43.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="896.39" y="927.5" >org/..</text>
</g>
<g >
<title>sk_forced_mem_schedule (1 samples, 0.09%)</title><rect x="172.3" y="1173" width="1.1" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="175.28" y="1183.5" ></text>
</g>
<g >
<title>do_syscall_64 (1 samples, 0.09%)</title><rect x="11.1" y="1269" width="1.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="14.07" y="1279.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.09%)</title><rect x="873.0" y="901" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="875.97" y="911.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.27%)</title><rect x="1096.5" y="805" width="3.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1099.50" y="815.5" ></text>
</g>
<g >
<title>do_syscall_64 (1 samples, 0.09%)</title><rect x="1121.2" y="837" width="1.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="1124.22" y="847.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (1 samples, 0.09%)</title><rect x="821.4" y="805" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="824.38" y="815.5" ></text>
</g>
<g >
<title>org/apache/http/impl/io/SocketInputBuffer:::isDataAvailable (21 samples, 1.91%)</title><rect x="1090.1" y="933" width="22.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1093.05" y="943.5" >o..</text>
</g>
<g >
<title>tcp_rcv_established (1 samples, 0.09%)</title><rect x="165.8" y="1141" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="168.83" y="1151.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Begin:::match (1 samples, 0.09%)</title><rect x="803.1" y="901" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="806.11" y="911.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (1 samples, 0.09%)</title><rect x="456.0" y="821" width="1.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="458.99" y="831.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (1 samples, 0.09%)</title><rect x="760.1" y="821" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="763.13" y="831.5" ></text>
</g>
<g >
<title>nf_nat_packet (1 samples, 0.09%)</title><rect x="220.6" y="997" width="1.1" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="223.64" y="1007.5" ></text>
</g>
<g >
<title>__kfree_skb (2 samples, 0.18%)</title><rect x="284.0" y="709" width="2.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="287.04" y="719.5" ></text>
</g>
<g >
<title>java/lang/String:::hashCode (1 samples, 0.09%)</title><rect x="865.4" y="917" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="868.45" y="927.5" ></text>
</g>
<g >
<title>sock_sendmsg (187 samples, 17.03%)</title><rect x="161.5" y="1237" width="201.0" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="164.53" y="1247.5" >sock_sendmsg</text>
</g>
<g >
<title>call_stub (7 samples, 0.64%)</title><rect x="1101.9" y="773" width="7.5" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="1104.88" y="783.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingResultSet:::getInt (1 samples, 0.09%)</title><rect x="808.5" y="885" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="811.49" y="895.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (3 samples, 0.27%)</title><rect x="878.3" y="901" width="3.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="881.34" y="911.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.09%)</title><rect x="77.7" y="1141" width="1.1" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="80.70" y="1151.5" ></text>
</g>
<g >
<title>java/lang/String:::intern (6 samples, 0.55%)</title><rect x="657.0" y="789" width="6.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="659.96" y="799.5" ></text>
</g>
<g >
<title>java/util/concurrent/ConcurrentHashMap:::transfer (1 samples, 0.09%)</title><rect x="554.9" y="853" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="557.86" y="863.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (1 samples, 0.09%)</title><rect x="827.8" y="789" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="830.83" y="799.5" ></text>
</g>
<g >
<title>Java_java_net_SocketInputStream_socketRead0 (1 samples, 0.09%)</title><rect x="740.8" y="741" width="1.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="743.78" y="751.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.09%)</title><rect x="867.6" y="917" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="870.60" y="927.5" ></text>
</g>
<g >
<title>__intel_pmu_disable_all (1 samples, 0.09%)</title><rect x="100.3" y="1029" width="1.0" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="103.27" y="1039.5" ></text>
</g>
<g >
<title>do_syscall_64 (205 samples, 18.67%)</title><rect x="148.6" y="1285" width="220.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="151.63" y="1295.5" >do_syscall_64</text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (1 samples, 0.09%)</title><rect x="1026.6" y="821" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1029.65" y="831.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (8 samples, 0.73%)</title><rect x="852.6" y="885" width="8.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="855.55" y="895.5" ></text>
</g>
<g >
<title>java/lang/StringCoding:::decode (2 samples, 0.18%)</title><rect x="775.2" y="917" width="2.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="778.17" y="927.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1 samples, 0.09%)</title><rect x="1018.1" y="837" width="1.0" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="1021.05" y="847.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::tryExecute (9 samples, 0.82%)</title><rect x="1079.3" y="933" width="9.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1082.31" y="943.5" ></text>
</g>
<g >
<title>jshort_arraycopy (1 samples, 0.09%)</title><rect x="1132.0" y="997" width="1.0" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="1134.97" y="1007.5" ></text>
</g>
<g >
<title>Interpreter (1 samples, 0.09%)</title><rect x="1121.2" y="885" width="1.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="1124.22" y="895.5" ></text>
</g>
<g >
<title>tcp_v6_conn_request (1 samples, 0.09%)</title><rect x="1078.2" y="213" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="1081.23" y="223.5" ></text>
</g>
<g >
<title>__entry_text_start (1 samples, 0.09%)</title><rect x="83.1" y="1301" width="1.1" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="86.08" y="1311.5" ></text>
</g>
<g >
<title>java/net/SocketTimeoutException:::&lt;init&gt; (7 samples, 0.64%)</title><rect x="1101.9" y="757" width="7.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1104.88" y="767.5" ></text>
</g>
<g >
<title>sockfd_lookup_light (4 samples, 0.36%)</title><rect x="362.5" y="1237" width="4.3" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="365.50" y="1247.5" ></text>
</g>
<g >
<title>[libjvm.so] (5 samples, 0.46%)</title><rect x="657.0" y="757" width="5.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="659.96" y="767.5" ></text>
</g>
<g >
<title>__x64_sys_poll (6 samples, 0.55%)</title><rect x="547.3" y="773" width="6.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="550.34" y="783.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.09%)</title><rect x="421.6" y="709" width="1.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="424.60" y="719.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl:::invoke (747 samples, 68.03%)</title><rect x="372.2" y="1157" width="802.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="375.17" y="1167.5" >sun/reflect/NativeMethodAccessorImpl:::invoke</text>
</g>
<g >
<title>x86_pmu_disable (1 samples, 0.09%)</title><rect x="100.3" y="1045" width="1.0" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="103.27" y="1055.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingResultSet:::wasNull (1 samples, 0.09%)</title><rect x="593.6" y="965" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="596.55" y="975.5" ></text>
</g>
<g >
<title>__ip_finish_output (108 samples, 9.84%)</title><rect x="228.2" y="1029" width="116.0" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="231.16" y="1039.5" >__ip_finish_ou..</text>
</g>
<g >
<title>switch_fpu_return (3 samples, 0.27%)</title><rect x="139.0" y="1269" width="3.2" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="141.96" y="1279.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.09%)</title><rect x="871.9" y="933" width="1.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="874.89" y="943.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/AbstractHttpClient:::getBackoffManager (1 samples, 0.09%)</title><rect x="1120.1" y="965" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1123.15" y="975.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeQuery (4 samples, 0.36%)</title><rect x="820.3" y="869" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="823.31" y="879.5" ></text>
</g>
<g >
<title>select_task_rq_fair (3 samples, 0.27%)</title><rect x="254.0" y="629" width="3.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="256.95" y="639.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/HttpRequestExecutor:::doReceiveResponse (8 samples, 0.73%)</title><rect x="1080.4" y="917" width="8.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1083.38" y="927.5" ></text>
</g>
<g >
<title>JVM_GetDeclaringClass (1 samples, 0.09%)</title><rect x="631.2" y="869" width="1.0" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="634.17" y="879.5" ></text>
</g>
<g >
<title>jlong_disjoint_arraycopy (1 samples, 0.09%)</title><rect x="387.2" y="917" width="1.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="390.21" y="927.5" ></text>
</g>
<g >
<title>__vfs_write (2 samples, 0.18%)</title><rect x="409.8" y="677" width="2.1" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="412.78" y="687.5" ></text>
</g>
<g >
<title>org/apache/http/impl/conn/ManagedClientConnectionImpl:::sendRequestEntity (3 samples, 0.27%)</title><rect x="536.6" y="869" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="539.59" y="879.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendOneQuery (1 samples, 0.09%)</title><rect x="737.6" y="805" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="740.56" y="815.5" ></text>
</g>
<g >
<title>org/apache/solr/common/util/JavaBinCodec:::readVal (2 samples, 0.18%)</title><rect x="1124.4" y="965" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1127.44" y="975.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingStatement:::close (1 samples, 0.09%)</title><rect x="804.2" y="885" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="807.19" y="895.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="784.8" y="869" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="787.85" y="879.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (3 samples, 0.27%)</title><rect x="867.6" y="949" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="870.60" y="959.5" ></text>
</g>
<g >
<title>Java_java_net_SocketInputStream_socketRead0 (2 samples, 0.18%)</title><rect x="461.4" y="853" width="2.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="464.37" y="863.5" ></text>
</g>
<g >
<title>__vfs_write (1 samples, 0.09%)</title><rect x="1139.5" y="773" width="1.1" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="1142.49" y="783.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match0 (2 samples, 0.18%)</title><rect x="716.1" y="773" width="2.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="719.07" y="783.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.09%)</title><rect x="735.4" y="709" width="1.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="738.41" y="719.5" ></text>
</g>
<g >
<title>schedule (1 samples, 0.09%)</title><rect x="696.7" y="805" width="1.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="699.72" y="815.5" ></text>
</g>
<g >
<title>Interpreter (745 samples, 67.85%)</title><rect x="374.3" y="1013" width="800.7" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="377.32" y="1023.5" >Interpreter</text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match (3 samples, 0.27%)</title><rect x="917.0" y="725" width="3.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="920.03" y="735.5" ></text>
</g>
<g >
<title>ext4_mark_iloc_dirty (1 samples, 0.09%)</title><rect x="1139.5" y="613" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="1142.49" y="623.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (1 samples, 0.09%)</title><rect x="137.9" y="1269" width="1.1" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="140.89" y="1279.5" ></text>
</g>
<g >
<title>update_load_avg (1 samples, 0.09%)</title><rect x="106.7" y="1061" width="1.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="109.72" y="1071.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="740.8" y="725" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="743.78" y="735.5" ></text>
</g>
<g >
<title>sk_page_frag_refill (1 samples, 0.09%)</title><rect x="173.4" y="1173" width="1.0" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="176.35" y="1183.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/DefaultSingletonBeanRegistry:::getSingletonNames (1 samples, 0.09%)</title><rect x="1014.8" y="901" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1017.83" y="911.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/PoolingDataSource$PoolGuardConnectionWrapper:::prepareStatement (1 samples, 0.09%)</title><rect x="791.3" y="917" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="794.29" y="927.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRowIterator:::hasNext (3 samples, 0.27%)</title><rect x="763.4" y="949" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="766.35" y="959.5" ></text>
</g>
<g >
<title>_copy_from_iter_full (2 samples, 0.18%)</title><rect x="170.1" y="1173" width="2.2" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="173.13" y="1183.5" ></text>
</g>
<g >
<title>org/apache/http/client/protocol/RequestDefaultHeaders:::process (1 samples, 0.09%)</title><rect x="1114.8" y="917" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1117.77" y="927.5" ></text>
</g>
<g >
<title>account_entity_enqueue (2 samples, 0.18%)</title><rect x="261.5" y="565" width="2.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="264.48" y="575.5" ></text>
</g>
<g >
<title>enqueue_entity (2 samples, 0.18%)</title><rect x="261.5" y="581" width="2.1" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="264.48" y="591.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$BmpCharProperty:::match (3 samples, 0.27%)</title><rect x="917.0" y="757" width="3.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="920.03" y="767.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern:::sequence (6 samples, 0.55%)</title><rect x="925.6" y="805" width="6.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="928.63" y="815.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (2 samples, 0.18%)</title><rect x="749.4" y="917" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="752.38" y="927.5" ></text>
</g>
<g >
<title>java/util/Calendar:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="1135.2" y="949" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1138.19" y="959.5" ></text>
</g>
<g >
<title>blk_mq_end_request (1 samples, 0.09%)</title><rect x="137.9" y="1045" width="1.1" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="140.89" y="1055.5" ></text>
</g>
<g >
<title>__fsnotify_parent (1 samples, 0.09%)</title><rect x="1138.4" y="773" width="1.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="1141.42" y="783.5" ></text>
</g>
<g >
<title>inet6_recvmsg (1 samples, 0.09%)</title><rect x="88.5" y="1237" width="1.0" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="91.45" y="1247.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (2 samples, 0.18%)</title><rect x="1082.5" y="901" width="2.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1085.53" y="911.5" ></text>
</g>
<g >
<title>psi_task_change (7 samples, 0.64%)</title><rect x="263.6" y="597" width="7.5" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="266.62" y="607.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.09%)</title><rect x="964.3" y="901" width="1.1" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="967.32" y="911.5" ></text>
</g>
<g >
<title>ttwu_do_activate (14 samples, 1.28%)</title><rect x="258.3" y="629" width="15.0" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="261.25" y="639.5" ></text>
</g>
<g >
<title>ipv4_conntrack_defrag (1 samples, 0.09%)</title><rect x="204.5" y="1045" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="207.52" y="1055.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::processResults (2 samples, 0.18%)</title><rect x="1157.8" y="869" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1160.76" y="879.5" ></text>
</g>
<g >
<title>org/dspace/core/Context:::cache (1 samples, 0.09%)</title><rect x="754.8" y="949" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="757.75" y="959.5" ></text>
</g>
<g >
<title>java/lang/String:::toLowerCase (1 samples, 0.09%)</title><rect x="762.3" y="917" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="765.28" y="927.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/Header:::addField (12 samples, 1.09%)</title><rect x="389.4" y="917" width="12.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="392.36" y="927.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (1 samples, 0.09%)</title><rect x="709.6" y="805" width="1.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="712.62" y="815.5" ></text>
</g>
<g >
<title>JNU_ThrowByName (7 samples, 0.64%)</title><rect x="1092.2" y="869" width="7.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="1095.20" y="879.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (1 samples, 0.09%)</title><rect x="137.9" y="757" width="1.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="140.89" y="767.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/request/UpdateRequest:::writeXML (49 samples, 4.46%)</title><rect x="471.0" y="885" width="52.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="474.04" y="895.5" >org/a..</text>
</g>
<g >
<title>rcu_gp_kthread_wake (1 samples, 0.09%)</title><rect x="964.3" y="789" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="967.32" y="799.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingResultSet:::getInt (1 samples, 0.09%)</title><rect x="808.5" y="869" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="811.49" y="879.5" ></text>
</g>
<g >
<title>ip_rcv (1 samples, 0.09%)</title><rect x="331.3" y="885" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="334.33" y="895.5" ></text>
</g>
<g >
<title>tcp_event_data_recv (1 samples, 0.09%)</title><rect x="287.3" y="741" width="1.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="290.27" y="751.5" ></text>
</g>
<g >
<title>psi_task_change (1 samples, 0.09%)</title><rect x="1110.5" y="693" width="1.0" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="1113.47" y="703.5" ></text>
</g>
<g >
<title>nf_hook_slow (1 samples, 0.09%)</title><rect x="1078.2" y="101" width="1.1" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="1081.23" y="111.5" ></text>
</g>
<g >
<title>java/lang/AbstractStringBuilder:::append (1 samples, 0.09%)</title><rect x="615.0" y="949" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="618.05" y="959.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/BasicHttpContext:::setAttribute (1 samples, 0.09%)</title><rect x="554.9" y="885" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="557.86" y="895.5" ></text>
</g>
<g >
<title>org/dspace/sort/OrderFormat:::makeSortString (4 samples, 0.36%)</title><rect x="723.6" y="949" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="726.59" y="959.5" ></text>
</g>
<g >
<title>[libjvm.so] (4 samples, 0.36%)</title><rect x="416.2" y="757" width="4.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="419.23" y="767.5" ></text>
</g>
<g >
<title>sk_filter_trim_cap (2 samples, 0.18%)</title><rect x="238.9" y="789" width="2.2" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="241.91" y="799.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="826.8" y="853" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="829.76" y="863.5" ></text>
</g>
<g >
<title>sun/reflect/NativeMethodAccessorImpl:::invoke0 (747 samples, 68.03%)</title><rect x="372.2" y="1141" width="802.8" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="375.17" y="1151.5" >sun/reflect/NativeMethodAccessorImpl:::invoke0</text>
</g>
<g >
<title>java/lang/String:::equals (1 samples, 0.09%)</title><rect x="795.6" y="917" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="798.59" y="927.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$LastNode:::match (1 samples, 0.09%)</title><rect x="717.1" y="693" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="720.14" y="703.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractAutowireCapableBeanFactory:::populateBean (2 samples, 0.18%)</title><rect x="933.2" y="885" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="936.15" y="895.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (2 samples, 0.18%)</title><rect x="760.1" y="901" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="763.13" y="911.5" ></text>
</g>
<g >
<title>tcp_rcv_state_process (1 samples, 0.09%)</title><rect x="1078.2" y="229" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="1081.23" y="239.5" ></text>
</g>
<g >
<title>[libjvm.so] (747 samples, 68.03%)</title><rect x="372.2" y="1285" width="802.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="375.17" y="1295.5" >[libjvm.so]</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="662.3" y="773" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="665.33" y="783.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.09%)</title><rect x="571.0" y="901" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="573.98" y="911.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.27%)</title><rect x="409.8" y="757" width="3.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text x="412.78" y="767.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/content/StringBody:::&lt;init&gt; (6 samples, 0.55%)</title><rect x="402.3" y="933" width="6.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="405.26" y="943.5" ></text>
</g>
<g >
<title>java/net/SocketOutputStream:::socketWrite0 (1 samples, 0.09%)</title><rect x="834.3" y="821" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="837.28" y="831.5" ></text>
</g>
<g >
<title>_register_finalizer_Java (2 samples, 0.18%)</title><rect x="835.4" y="933" width="2.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="838.36" y="943.5" ></text>
</g>
<g >
<title>scheduler_tick (1 samples, 0.09%)</title><rect x="436.6" y="693" width="1.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="439.65" y="703.5" ></text>
</g>
<g >
<title>__wake_up_common (21 samples, 1.91%)</title><rect x="251.8" y="693" width="22.6" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="254.80" y="703.5" >_..</text>
</g>
<g >
<title>handle_irq_event (1 samples, 0.09%)</title><rect x="421.6" y="661" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="424.60" y="671.5" ></text>
</g>
<g >
<title>[libjvm.so] (7 samples, 0.64%)</title><rect x="1101.9" y="693" width="7.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1104.88" y="703.5" ></text>
</g>
<g >
<title>_IO_default_xsputn (1 samples, 0.09%)</title><rect x="78.8" y="1317" width="1.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="81.78" y="1327.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/request/RequestWriter$LazyContentStream:::getStream (7 samples, 0.64%)</title><rect x="523.7" y="917" width="7.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="526.70" y="927.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$5:::isSatisfiedBy (2 samples, 0.18%)</title><rect x="848.3" y="837" width="2.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="851.25" y="847.5" ></text>
</g>
<g >
<title>__wake_up_bit (1 samples, 0.09%)</title><rect x="137.9" y="789" width="1.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="140.89" y="799.5" ></text>
</g>
<g >
<title>JVM_InvokeMethod (747 samples, 68.03%)</title><rect x="372.2" y="1125" width="802.8" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="375.17" y="1135.5" >JVM_InvokeMethod</text>
</g>
<g >
<title>release_sock (1 samples, 0.09%)</title><rect x="165.8" y="1189" width="1.1" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text x="168.83" y="1199.5" ></text>
</g>
<g >
<title>__tcp_send_ack.part.0 (1 samples, 0.09%)</title><rect x="134.7" y="1157" width="1.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="137.66" y="1167.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$CharProperty:::study (3 samples, 0.27%)</title><rect x="921.3" y="773" width="3.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="924.33" y="783.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1 samples, 0.09%)</title><rect x="436.6" y="773" width="1.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="439.65" y="783.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (6 samples, 0.55%)</title><rect x="547.3" y="709" width="6.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="550.34" y="719.5" ></text>
</g>
<g >
<title>nft_lookup_eval (1 samples, 0.09%)</title><rect x="301.2" y="789" width="1.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="304.24" y="799.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::processResults (1 samples, 0.09%)</title><rect x="884.8" y="837" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="887.79" y="847.5" ></text>
</g>
<g >
<title>acpi_os_read_port (1 samples, 0.09%)</title><rect x="790.2" y="597" width="1.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="793.22" y="607.5" ></text>
</g>
<g >
<title>pick_next_task_fair (1 samples, 0.09%)</title><rect x="130.4" y="1109" width="1.0" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="133.36" y="1119.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1 samples, 0.09%)</title><rect x="11.1" y="1285" width="1.0" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text x="14.07" y="1295.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::execute (38 samples, 3.46%)</title><rect x="423.8" y="917" width="40.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="426.75" y="927.5" >org..</text>
</g>
<g >
<title>ip_local_out (1 samples, 0.09%)</title><rect x="1078.2" y="133" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="1081.23" y="143.5" ></text>
</g>
<g >
<title>tcp_push (1 samples, 0.09%)</title><rect x="166.9" y="1189" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="169.90" y="1199.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (1 samples, 0.09%)</title><rect x="1078.2" y="565" width="1.1" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="1081.23" y="575.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.09%)</title><rect x="220.6" y="965" width="1.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="223.64" y="975.5" ></text>
</g>
<g >
<title>do_sys_poll (3 samples, 0.27%)</title><rect x="1109.4" y="805" width="3.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="1112.40" y="815.5" ></text>
</g>
<g >
<title>wake_bit_function (1 samples, 0.09%)</title><rect x="137.9" y="725" width="1.1" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text x="140.89" y="735.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (4 samples, 0.36%)</title><rect x="824.6" y="933" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="827.61" y="943.5" ></text>
</g>
<g >
<title>[libjvm.so] (5 samples, 0.46%)</title><rect x="415.2" y="773" width="5.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="418.15" y="783.5" ></text>
</g>
<g >
<title>finish_task_switch (61 samples, 5.56%)</title><rect x="13.2" y="1157" width="65.6" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="16.22" y="1167.5" >finish_..</text>
</g>
<g >
<title>org/dspace/browse/BrowseIndex:::generateMdBits (2 samples, 0.18%)</title><rect x="903.1" y="853" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="906.06" y="863.5" ></text>
</g>
<g >
<title>org/apache/log4j/helpers/AppenderAttachableImpl:::appendLoopOnAppenders (10 samples, 0.91%)</title><rect x="409.8" y="885" width="10.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="412.78" y="895.5" ></text>
</g>
<g >
<title>iptable_mangle_hook (1 samples, 0.09%)</title><rect x="203.4" y="1045" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="206.44" y="1055.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::handleResponse (1 samples, 0.09%)</title><rect x="1073.9" y="933" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1076.93" y="943.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Branch:::match (2 samples, 0.18%)</title><rect x="716.1" y="741" width="2.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="719.07" y="751.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRow:::getBooleanColumn (1 samples, 0.09%)</title><rect x="1041.7" y="965" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1044.69" y="975.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (5 samples, 0.46%)</title><rect x="877.3" y="933" width="5.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="880.27" y="943.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendOneQuery (1 samples, 0.09%)</title><rect x="838.6" y="837" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="841.58" y="847.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$5:::isSatisfiedBy (2 samples, 0.18%)</title><rect x="848.3" y="853" width="2.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="851.25" y="863.5" ></text>
</g>
<g >
<title>record_times (1 samples, 0.09%)</title><rect x="270.1" y="581" width="1.0" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="273.07" y="591.5" ></text>
</g>
<g >
<title>tick_sched_handle (1 samples, 0.09%)</title><rect x="436.6" y="725" width="1.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="439.65" y="735.5" ></text>
</g>
<g >
<title>sk_wait_data (32 samples, 2.91%)</title><rect x="98.1" y="1189" width="34.4" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="101.12" y="1199.5" >sk..</text>
</g>
<g >
<title>org/apache/http/entity/HttpEntityWrapper:::isChunked (1 samples, 0.09%)</title><rect x="463.5" y="869" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="466.52" y="879.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (3 samples, 0.27%)</title><rect x="740.8" y="885" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="743.78" y="895.5" ></text>
</g>
<g >
<title>remove_wait_queue (1 samples, 0.09%)</title><rect x="98.1" y="1173" width="1.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="101.12" y="1183.5" ></text>
</g>
<g >
<title>org/springframework/beans/support/ResourceEditorRegistrar:::registerCustomEditors (2 samples, 0.18%)</title><rect x="900.9" y="869" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="903.91" y="879.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_node (1 samples, 0.09%)</title><rect x="190.5" y="1157" width="1.1" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text x="193.55" y="1167.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (2 samples, 0.18%)</title><rect x="837.5" y="933" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="840.50" y="943.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractAutowireCapableBeanFactory:::predictBeanType (22 samples, 2.00%)</title><rect x="965.4" y="901" width="23.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="968.39" y="911.5" >o..</text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.09%)</title><rect x="137.9" y="1205" width="1.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="140.89" y="1215.5" ></text>
</g>
<g >
<title>fput_many (1 samples, 0.09%)</title><rect x="87.4" y="1237" width="1.1" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="90.38" y="1247.5" ></text>
</g>
<g >
<title>ip_rcv (1 samples, 0.09%)</title><rect x="1078.2" y="341" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="1081.23" y="351.5" ></text>
</g>
<g >
<title>tcp_v6_connect (1 samples, 0.09%)</title><rect x="1078.2" y="645" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="1081.23" y="655.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (1 samples, 0.09%)</title><rect x="884.8" y="821" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="887.79" y="831.5" ></text>
</g>
<g >
<title>org/dspace/core/Context:::&lt;init&gt; (7 samples, 0.64%)</title><rect x="1165.3" y="997" width="7.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1168.28" y="1007.5" ></text>
</g>
<g >
<title>acpi_hw_read (1 samples, 0.09%)</title><rect x="790.2" y="629" width="1.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="793.22" y="639.5" ></text>
</g>
<g >
<title>ip_local_out (1 samples, 0.09%)</title><rect x="249.7" y="645" width="1.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="252.65" y="655.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::loadParameters (1 samples, 0.09%)</title><rect x="1029.9" y="933" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1032.87" y="943.5" ></text>
</g>
<g >
<title>org/apache/commons/pool/impl/GenericKeyedObjectPool:::borrowObject (1 samples, 0.09%)</title><rect x="572.1" y="901" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="575.06" y="911.5" ></text>
</g>
<g >
<title>org/postgresql/core/PGStream:::ReceiveTupleV3 (1 samples, 0.09%)</title><rect x="421.6" y="757" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="424.60" y="767.5" ></text>
</g>
<g >
<title>__libc_connect (1 samples, 0.09%)</title><rect x="1078.2" y="757" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="1081.23" y="767.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (1 samples, 0.09%)</title><rect x="884.8" y="805" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="887.79" y="815.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupHead:::match (1 samples, 0.09%)</title><rect x="717.1" y="709" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="720.14" y="719.5" ></text>
</g>
<g >
<title>intel_tfa_pmu_enable_all (12 samples, 1.09%)</title><rect x="117.5" y="1045" width="12.9" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="120.47" y="1055.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (1 samples, 0.09%)</title><rect x="368.9" y="1285" width="1.1" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="371.94" y="1295.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (1 samples, 0.09%)</title><rect x="821.4" y="789" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="824.38" y="799.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (22 samples, 2.00%)</title><rect x="251.8" y="725" width="23.6" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="254.80" y="735.5" >_..</text>
</g>
<g >
<title>[libjvm.so] (8 samples, 0.73%)</title><rect x="1100.8" y="821" width="8.6" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1103.80" y="831.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Node:::study (4 samples, 0.36%)</title><rect x="920.3" y="805" width="4.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="923.26" y="815.5" ></text>
</g>
<g >
<title>__skb_datagram_iter (1 samples, 0.09%)</title><rect x="132.5" y="1173" width="1.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="135.51" y="1183.5" ></text>
</g>
<g >
<title>java/util/HashSet:::contains (1 samples, 0.09%)</title><rect x="589.3" y="965" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="592.25" y="975.5" ></text>
</g>
<g >
<title>finish_task_switch (1 samples, 0.09%)</title><rect x="1111.5" y="709" width="1.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="1114.55" y="719.5" ></text>
</g>
<g >
<title>Interpreter (1 samples, 0.09%)</title><rect x="1121.2" y="901" width="1.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="1124.22" y="911.5" ></text>
</g>
<g >
<title>intel_tfa_pmu_enable_all (60 samples, 5.46%)</title><rect x="13.2" y="1093" width="64.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="16.22" y="1103.5" >intel_t..</text>
</g>
<g >
<title>run_rebalance_domains (1 samples, 0.09%)</title><rect x="220.6" y="917" width="1.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="223.64" y="927.5" ></text>
</g>
<g >
<title>org/springframework/context/support/AbstractApplicationContext$BeanPostProcessorChecker:::postProcessAfterInitialization (1 samples, 0.09%)</title><rect x="935.3" y="901" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="938.30" y="911.5" ></text>
</g>
<g >
<title>java/util/Formatter:::format (15 samples, 1.37%)</title><rect x="704.2" y="869" width="16.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="707.24" y="879.5" ></text>
</g>
<g >
<title>org/apache/solr/common/SolrInputDocument:::addField (1 samples, 0.09%)</title><rect x="882.6" y="949" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="885.64" y="959.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="1165.3" y="933" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1168.28" y="943.5" ></text>
</g>
<g >
<title>iptable_security_hook (1 samples, 0.09%)</title><rect x="212.0" y="1029" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="215.04" y="1039.5" ></text>
</g>
<g >
<title>ext4_do_update_inode (1 samples, 0.09%)</title><rect x="1139.5" y="597" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="1142.49" y="607.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (4 samples, 0.36%)</title><rect x="820.3" y="885" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="823.31" y="895.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Begin:::match (5 samples, 0.46%)</title><rect x="845.0" y="901" width="5.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="848.03" y="911.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.18%)</title><rect x="835.4" y="917" width="2.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="838.36" y="927.5" ></text>
</g>
<g >
<title>refcount_sub_and_test_checked (2 samples, 0.18%)</title><rect x="92.8" y="1141" width="2.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="95.75" y="1151.5" ></text>
</g>
<g >
<title>bbr_update_model (2 samples, 0.18%)</title><rect x="279.7" y="709" width="2.2" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text x="282.74" y="719.5" ></text>
</g>
<g >
<title>__GI___libc_open (1 samples, 0.09%)</title><rect x="11.1" y="1301" width="1.0" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="14.07" y="1311.5" ></text>
</g>
<g >
<title>deactivate_task (1 samples, 0.09%)</title><rect x="1110.5" y="709" width="1.0" height="15.0" fill="rgb(251,125,125)" rx="2" ry="2" />
<text x="1113.47" y="719.5" ></text>
</g>
<g >
<title>org/dspace/content/DSpaceObject:::getMetadata (1 samples, 0.09%)</title><rect x="798.8" y="949" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="801.82" y="959.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRow:::getIntColumn (1 samples, 0.09%)</title><rect x="727.9" y="949" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="730.89" y="959.5" ></text>
</g>
<g >
<title>tcp_in_window (1 samples, 0.09%)</title><rect x="218.5" y="997" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="221.49" y="1007.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="748.3" y="885" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="751.31" y="895.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeQuery (3 samples, 0.27%)</title><rect x="735.4" y="853" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="738.41" y="863.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$CharProperty:::match (2 samples, 0.18%)</title><rect x="848.3" y="869" width="2.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="851.25" y="879.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingStatement:::close (3 samples, 0.27%)</title><rect x="1161.0" y="965" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1163.98" y="975.5" ></text>
</g>
<g >
<title>nf_hook_slow (1 samples, 0.09%)</title><rect x="1121.2" y="629" width="1.1" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="1124.22" y="639.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="461.4" y="821" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="464.37" y="831.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/PoolablePreparedStatement:::close (2 samples, 0.18%)</title><rect x="764.4" y="917" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="767.43" y="927.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::close (1 samples, 0.09%)</title><rect x="1166.4" y="949" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1169.36" y="959.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (3 samples, 0.27%)</title><rect x="878.3" y="917" width="3.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="881.34" y="927.5" ></text>
</g>
<g >
<title>iptable_mangle_hook (1 samples, 0.09%)</title><rect x="293.7" y="805" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="296.72" y="815.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/PoolingDataSource$PoolGuardConnectionWrapper:::prepareStatement (1 samples, 0.09%)</title><rect x="744.0" y="885" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="747.01" y="895.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.09%)</title><rect x="421.6" y="869" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="424.60" y="879.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$BranchConn:::match (2 samples, 0.18%)</title><rect x="716.1" y="757" width="2.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="719.07" y="767.5" ></text>
</g>
<g >
<title>ipv4_conntrack_in (2 samples, 0.18%)</title><rect x="304.5" y="837" width="2.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="307.46" y="847.5" ></text>
</g>
<g >
<title>Interpreter (1 samples, 0.09%)</title><rect x="1078.2" y="805" width="1.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="1081.23" y="815.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (1 samples, 0.09%)</title><rect x="165.8" y="1157" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="168.83" y="1167.5" ></text>
</g>
<g >
<title>java/lang/Class:::getEnclosingMethod0 (1 samples, 0.09%)</title><rect x="632.2" y="885" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="635.24" y="895.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (3 samples, 0.27%)</title><rect x="884.8" y="933" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="887.79" y="943.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (5 samples, 0.46%)</title><rect x="785.9" y="901" width="5.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="788.92" y="911.5" ></text>
</g>
<g >
<title>tcp_v4_conn_request (1 samples, 0.09%)</title><rect x="1078.2" y="197" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="1081.23" y="207.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.09%)</title><rect x="421.6" y="853" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="424.60" y="863.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (41 samples, 3.73%)</title><rect x="246.4" y="773" width="44.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="249.43" y="783.5" >tcp_..</text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingStatement:::close (1 samples, 0.09%)</title><rect x="752.6" y="933" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="755.60" y="943.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match0 (1 samples, 0.09%)</title><rect x="803.1" y="885" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="806.11" y="895.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (51 samples, 4.64%)</title><rect x="236.8" y="821" width="54.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="239.76" y="831.5" >ip_lo..</text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::find (12 samples, 1.09%)</title><rect x="803.1" y="933" width="12.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="806.11" y="943.5" ></text>
</g>
<g >
<title>nft_lookup_eval (1 samples, 0.09%)</title><rect x="300.2" y="773" width="1.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="303.16" y="783.5" ></text>
</g>
<g >
<title>org/apache/commons/pool/impl/GenericObjectPool:::borrowObject (6 samples, 0.55%)</title><rect x="1166.4" y="981" width="6.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1169.36" y="991.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.09%)</title><rect x="220.6" y="949" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="223.64" y="959.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="462.4" y="837" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="465.44" y="847.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (2 samples, 0.18%)</title><rect x="864.4" y="933" width="2.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="867.37" y="943.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="733.3" y="869" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="736.26" y="879.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/PoolingConnection$PStmtKey:::hashCode (1 samples, 0.09%)</title><rect x="791.3" y="885" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="794.29" y="895.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (13 samples, 1.18%)</title><rect x="540.9" y="853" width="14.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="543.89" y="863.5" ></text>
</g>
<g >
<title>run_rebalance_domains (1 samples, 0.09%)</title><rect x="735.4" y="661" width="1.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="738.41" y="671.5" ></text>
</g>
<g >
<title>vfs_write (2 samples, 0.18%)</title><rect x="1138.4" y="789" width="2.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="1141.42" y="799.5" ></text>
</g>
<g >
<title>handle_irq_event_percpu (1 samples, 0.09%)</title><rect x="790.2" y="725" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="793.22" y="735.5" ></text>
</g>
<g >
<title>nf_conntrack_in (1 samples, 0.09%)</title><rect x="219.6" y="1029" width="1.0" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="222.56" y="1039.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$CharProperty:::match (1 samples, 0.09%)</title><rect x="917.0" y="613" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="920.03" y="623.5" ></text>
</g>
<g >
<title>java/util/AbstractCollection:::addAll (1 samples, 0.09%)</title><rect x="587.1" y="965" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="590.10" y="975.5" ></text>
</g>
<g >
<title>org/springframework/core/convert/support/GenericConversionService:::addConverter (18 samples, 1.64%)</title><rect x="682.8" y="885" width="19.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="685.75" y="895.5" ></text>
</g>
<g >
<title>ctx_sched_in (1 samples, 0.09%)</title><rect x="1111.5" y="661" width="1.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="1114.55" y="671.5" ></text>
</g>
<g >
<title>org/postgresql/core/PGStream:::ReceiveTupleV3 (1 samples, 0.09%)</title><rect x="813.9" y="773" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="816.86" y="783.5" ></text>
</g>
<g >
<title>[libjvm.so] (9 samples, 0.82%)</title><rect x="1099.7" y="869" width="9.7" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1102.73" y="879.5" ></text>
</g>
<g >
<title>dec_pending (1 samples, 0.09%)</title><rect x="137.9" y="885" width="1.1" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="140.89" y="895.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::execute (2 samples, 0.18%)</title><rect x="749.4" y="853" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="752.38" y="863.5" ></text>
</g>
<g >
<title>ip_queue_xmit (137 samples, 12.48%)</title><rect x="200.2" y="1109" width="147.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="203.22" y="1119.5" >ip_queue_xmit</text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingStatement:::close (1 samples, 0.09%)</title><rect x="1147.0" y="933" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1150.01" y="943.5" ></text>
</g>
<g >
<title>acpi_os_read_port (1 samples, 0.09%)</title><rect x="132.5" y="933" width="1.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="135.51" y="943.5" ></text>
</g>
<g >
<title>iptable_filter_hook (3 samples, 0.27%)</title><rect x="205.6" y="1029" width="3.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="208.59" y="1039.5" ></text>
</g>
<g >
<title>com/atmire/dspace/discovery/AtmireSolrService:::logduration (1 samples, 0.09%)</title><rect x="1044.9" y="981" width="1.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text x="1047.92" y="991.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::loadParameters (1 samples, 0.09%)</title><rect x="869.7" y="933" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="872.74" y="943.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (2 samples, 0.18%)</title><rect x="1151.3" y="933" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1154.31" y="943.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::find (1 samples, 0.09%)</title><rect x="755.8" y="933" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="758.83" y="943.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (1 samples, 0.09%)</title><rect x="1078.2" y="277" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="1081.23" y="287.5" ></text>
</g>
<g >
<title>java/lang/AbstractStringBuilder:::append (1 samples, 0.09%)</title><rect x="1055.7" y="965" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1058.66" y="975.5" ></text>
</g>
<g >
<title>__fget (1 samples, 0.09%)</title><rect x="136.8" y="1205" width="1.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="139.81" y="1215.5" ></text>
</g>
<g >
<title>acpi_ev_gpe_detect (1 samples, 0.09%)</title><rect x="421.6" y="581" width="1.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="424.60" y="591.5" ></text>
</g>
<g >
<title>tcp_rcv_space_adjust (1 samples, 0.09%)</title><rect x="135.7" y="1189" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="138.74" y="1199.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="545.2" y="613" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="548.19" y="623.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRowIterator:::hasNext (4 samples, 0.36%)</title><rect x="1159.9" y="981" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1162.91" y="991.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupTail:::match (4 samples, 0.36%)</title><rect x="916.0" y="773" width="4.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="918.96" y="783.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::processResults (4 samples, 0.36%)</title><rect x="785.9" y="821" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="788.92" y="831.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (5 samples, 0.46%)</title><rect x="785.9" y="917" width="5.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="788.92" y="927.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendSync (1 samples, 0.09%)</title><rect x="1170.7" y="933" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1173.66" y="943.5" ></text>
</g>
<g >
<title>jshort_arraycopy (1 samples, 0.09%)</title><rect x="590.3" y="965" width="1.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="593.33" y="975.5" ></text>
</g>
<g >
<title>Interpreter (1 samples, 0.09%)</title><rect x="1122.3" y="917" width="1.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="1125.30" y="927.5" ></text>
</g>
<g >
<title>nf_nat_ipv4_local_fn (1 samples, 0.09%)</title><rect x="220.6" y="1029" width="1.1" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="223.64" y="1039.5" ></text>
</g>
<g >
<title>jlong_disjoint_arraycopy (3 samples, 0.27%)</title><rect x="467.8" y="885" width="3.2" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="470.81" y="895.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/DefaultListableBeanFactory:::getBeansOfType (114 samples, 10.38%)</title><rect x="893.4" y="933" width="122.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="896.39" y="943.5" >org/springframe..</text>
</g>
<g >
<title>update_cfs_group (1 samples, 0.09%)</title><rect x="105.6" y="1061" width="1.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="108.65" y="1071.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_node (4 samples, 0.36%)</title><rect x="185.2" y="1141" width="4.3" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text x="188.17" y="1151.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::receiveFields (1 samples, 0.09%)</title><rect x="1169.6" y="917" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1172.58" y="927.5" ></text>
</g>
<g >
<title>tcp_current_mss (1 samples, 0.09%)</title><rect x="360.3" y="1157" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="363.35" y="1167.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (1 samples, 0.09%)</title><rect x="878.3" y="805" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="881.34" y="815.5" ></text>
</g>
<g >
<title>skb_copy_datagram_iter (1 samples, 0.09%)</title><rect x="132.5" y="1189" width="1.1" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="135.51" y="1199.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeWithFlags (3 samples, 0.27%)</title><rect x="740.8" y="821" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="743.78" y="831.5" ></text>
</g>
<g >
<title>read_tsc (1 samples, 0.09%)</title><rect x="177.7" y="1029" width="1.0" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="180.65" y="1039.5" ></text>
</g>
<g >
<title>__wake_up_common (1 samples, 0.09%)</title><rect x="137.9" y="741" width="1.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="140.89" y="751.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.09%)</title><rect x="827.8" y="901" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="830.83" y="911.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern:::RemoveQEQuoting (1 samples, 0.09%)</title><rect x="924.6" y="805" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="927.55" y="815.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.09%)</title><rect x="867.6" y="933" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="870.60" y="943.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (3 samples, 0.27%)</title><rect x="740.8" y="853" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="743.78" y="863.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/ImmutableHttpProcessor:::process (1 samples, 0.09%)</title><rect x="1116.9" y="933" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1119.92" y="943.5" ></text>
</g>
<g >
<title>java/io/FileOutputStream:::write (3 samples, 0.27%)</title><rect x="409.8" y="837" width="3.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="412.78" y="847.5" ></text>
</g>
<g >
<title>java/util/LinkedHashMap$LinkedValueIterator:::next (1 samples, 0.09%)</title><rect x="892.3" y="917" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="895.31" y="927.5" ></text>
</g>
<g >
<title>tcp_sendmsg_locked (180 samples, 16.39%)</title><rect x="168.0" y="1189" width="193.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="170.98" y="1199.5" >tcp_sendmsg_locked</text>
</g>
<g >
<title>tcp_release_cb (2 samples, 0.18%)</title><rect x="96.0" y="1173" width="2.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="98.97" y="1183.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.55%)</title><rect x="547.3" y="805" width="6.5" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text x="550.34" y="815.5" ></text>
</g>
<g >
<title>wake_up_bit (1 samples, 0.09%)</title><rect x="137.9" y="805" width="1.1" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text x="140.89" y="815.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$BitClass:::isSatisfiedBy (1 samples, 0.09%)</title><rect x="849.3" y="805" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="852.33" y="815.5" ></text>
</g>
<g >
<title>vfs_write (2 samples, 0.18%)</title><rect x="409.8" y="693" width="2.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="412.78" y="703.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (1 samples, 0.09%)</title><rect x="356.0" y="1077" width="1.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="359.05" y="1087.5" ></text>
</g>
<g >
<title>nft_do_chain (5 samples, 0.46%)</title><rect x="221.7" y="1013" width="5.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="224.71" y="1023.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="460.3" y="805" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="463.29" y="815.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (5 samples, 0.46%)</title><rect x="810.6" y="901" width="5.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="813.64" y="911.5" ></text>
</g>
<g >
<title>ext4_file_write_iter (2 samples, 0.18%)</title><rect x="409.8" y="645" width="2.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="412.78" y="655.5" ></text>
</g>
<g >
<title>java/util/HashMap:::resize (1 samples, 0.09%)</title><rect x="732.2" y="901" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="735.19" y="911.5" ></text>
</g>
<g >
<title>default_wake_function (21 samples, 1.91%)</title><rect x="251.8" y="661" width="22.6" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="254.80" y="671.5" >d..</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="10.0" y="1301" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="13.00" y="1311.5" ></text>
</g>
<g >
<title>nf_conntrack_tcp_packet (2 samples, 0.18%)</title><rect x="215.3" y="997" width="2.1" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="218.26" y="1007.5" ></text>
</g>
<g >
<title>JVM_DoPrivileged (1 samples, 0.09%)</title><rect x="1068.6" y="917" width="1.0" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="1071.56" y="927.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (54 samples, 4.92%)</title><rect x="84.2" y="1301" width="58.0" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text x="87.15" y="1311.5" >entry_..</text>
</g>
<g >
<title>org/apache/commons/logging/LogFactory$1:::run (11 samples, 1.00%)</title><rect x="651.6" y="805" width="11.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="654.58" y="815.5" ></text>
</g>
<g >
<title>org/apache/log4j/helpers/PatternConverter:::format (1 samples, 0.09%)</title><rect x="1140.6" y="933" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1143.56" y="943.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::processResults (2 samples, 0.18%)</title><rect x="878.3" y="821" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="881.34" y="831.5" ></text>
</g>
<g >
<title>__audit_syscall_exit (1 samples, 0.09%)</title><rect x="411.9" y="709" width="1.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="414.93" y="719.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/PoolablePreparedStatement:::close (1 samples, 0.09%)</title><rect x="797.7" y="901" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="800.74" y="911.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.09%)</title><rect x="798.8" y="901" width="1.1" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="801.82" y="911.5" ></text>
</g>
<g >
<title>bbr_quantization_budget (1 samples, 0.09%)</title><rect x="165.8" y="1109" width="1.1" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text x="168.83" y="1119.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::getColumnNames (1 samples, 0.09%)</title><rect x="888.0" y="933" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="891.01" y="943.5" ></text>
</g>
<g >
<title>acpi_ev_gpe_detect (1 samples, 0.09%)</title><rect x="790.2" y="661" width="1.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="793.22" y="671.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::execute (3 samples, 0.27%)</title><rect x="878.3" y="837" width="3.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="881.34" y="847.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (1 samples, 0.09%)</title><rect x="873.0" y="757" width="1.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="875.97" y="767.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeQuery (7 samples, 0.64%)</title><rect x="1021.3" y="885" width="7.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1024.28" y="895.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::execute (1 samples, 0.09%)</title><rect x="1172.8" y="965" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1175.81" y="975.5" ></text>
</g>
<g >
<title>do_IRQ (1 samples, 0.09%)</title><rect x="790.2" y="773" width="1.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="793.22" y="783.5" ></text>
</g>
<g >
<title>org/apache/http/impl/io/SocketInputBuffer:::isDataAvailable (2 samples, 0.18%)</title><rect x="461.4" y="901" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="464.37" y="911.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.27%)</title><rect x="1096.5" y="821" width="3.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1099.50" y="831.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="462.4" y="725" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="465.44" y="735.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="569.9" y="885" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="572.91" y="895.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="1061.0" y="965" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1064.04" y="975.5" ></text>
</g>
<g >
<title>pthread_mutex_unlock (1 samples, 0.09%)</title><rect x="453.8" y="789" width="1.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="456.84" y="799.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1 samples, 0.09%)</title><rect x="1121.2" y="853" width="1.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text x="1124.22" y="863.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (9 samples, 0.82%)</title><rect x="1020.2" y="917" width="9.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1023.20" y="927.5" ></text>
</g>
<g >
<title>pollwake (21 samples, 1.91%)</title><rect x="251.8" y="677" width="22.6" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="254.80" y="687.5" >p..</text>
</g>
<g >
<title>group_sched_in (1 samples, 0.09%)</title><rect x="1111.5" y="613" width="1.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="1114.55" y="623.5" ></text>
</g>
<g >
<title>task_ctx_sched_out (2 samples, 0.18%)</title><rect x="100.3" y="1093" width="2.1" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="103.27" y="1103.5" ></text>
</g>
<g >
<title>org/postgresql/core/PGStream:::ReceiveTupleV3 (4 samples, 0.36%)</title><rect x="785.9" y="805" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="788.92" y="815.5" ></text>
</g>
<g >
<title>do_sys_poll (6 samples, 0.55%)</title><rect x="547.3" y="757" width="6.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="550.34" y="767.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (5 samples, 0.46%)</title><rect x="785.9" y="885" width="5.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="788.92" y="895.5" ></text>
</g>
<g >
<title>org/apache/commons/pool/impl/GenericKeyedObjectPool:::borrowObject (1 samples, 0.09%)</title><rect x="861.1" y="869" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="864.15" y="879.5" ></text>
</g>
<g >
<title>hrtimer_init_sleeper (1 samples, 0.09%)</title><rect x="547.3" y="693" width="1.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="550.34" y="703.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (2 samples, 0.18%)</title><rect x="749.4" y="901" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="752.38" y="911.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/HttpRequestExecutor:::preProcess (1 samples, 0.09%)</title><rect x="463.5" y="901" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="466.52" y="911.5" ></text>
</g>
<g >
<title>com/atmire/dspace/discovery/ItemCollectionPlugin:::additionalIndex (5 samples, 0.46%)</title><rect x="568.8" y="965" width="5.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text x="571.83" y="975.5" ></text>
</g>
<g >
<title>[libnet.so] (1 samples, 0.09%)</title><rect x="1083.6" y="853" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1086.61" y="863.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (1 samples, 0.09%)</title><rect x="1078.2" y="261" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="1081.23" y="271.5" ></text>
</g>
<g >
<title>java/util/StringTokenizer:::nextToken (1 samples, 0.09%)</title><rect x="904.1" y="837" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="907.13" y="847.5" ></text>
</g>
<g >
<title>Java_java_net_SocketOutputStream_socketWrite0 (1 samples, 0.09%)</title><rect x="1079.3" y="885" width="1.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="1082.31" y="895.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (3 samples, 0.27%)</title><rect x="1109.4" y="773" width="3.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="1112.40" y="783.5" ></text>
</g>
<g >
<title>do_syscall_64 (1 samples, 0.09%)</title><rect x="1078.2" y="725" width="1.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="1081.23" y="735.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.27%)</title><rect x="1109.4" y="853" width="3.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text x="1112.40" y="863.5" ></text>
</g>
<g >
<title>nft_do_chain (22 samples, 2.00%)</title><rect x="306.6" y="821" width="23.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="309.61" y="831.5" >n..</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="852.6" y="869" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="855.55" y="879.5" ></text>
</g>
<g >
<title>nf_hook_slow (8 samples, 0.73%)</title><rect x="293.7" y="821" width="8.6" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="296.72" y="831.5" ></text>
</g>
<g >
<title>__tcp_send_ack.part.0 (1 samples, 0.09%)</title><rect x="249.7" y="709" width="1.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="252.65" y="719.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeQuery (1 samples, 0.09%)</title><rect x="838.6" y="885" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="841.58" y="895.5" ></text>
</g>
<g >
<title>java/security/AccessController:::doPrivileged (2 samples, 0.18%)</title><rect x="1068.6" y="933" width="2.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1071.56" y="943.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::processResults (1 samples, 0.09%)</title><rect x="760.1" y="837" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="763.13" y="847.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::createMethod (39 samples, 3.55%)</title><rect x="381.8" y="949" width="42.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="384.84" y="959.5" >org..</text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::loadParameters (1 samples, 0.09%)</title><rect x="1040.6" y="949" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1043.62" y="959.5" ></text>
</g>
<g >
<title>tcp_ack (1 samples, 0.09%)</title><rect x="165.8" y="1125" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="168.83" y="1135.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (4 samples, 0.36%)</title><rect x="811.7" y="853" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="814.71" y="863.5" ></text>
</g>
<g >
<title>__handle_irq_event_percpu (1 samples, 0.09%)</title><rect x="790.2" y="709" width="1.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="793.22" y="719.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (22 samples, 2.00%)</title><rect x="251.8" y="709" width="23.6" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="254.80" y="719.5" >_..</text>
</g>
<g >
<title>java/util/HashMap:::get (1 samples, 0.09%)</title><rect x="1050.3" y="981" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1053.29" y="991.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="1068.6" y="901" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1071.56" y="911.5" ></text>
</g>
<g >
<title>__release_sock (1 samples, 0.09%)</title><rect x="165.8" y="1173" width="1.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="168.83" y="1183.5" ></text>
</g>
<g >
<title>org/apache/solr/common/util/JavaBinCodec:::readArray (1 samples, 0.09%)</title><rect x="1125.5" y="901" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1128.52" y="911.5" ></text>
</g>
<g >
<title>org/dspace/servicemanager/DSpaceServiceManager:::getServicesByType (115 samples, 10.47%)</title><rect x="892.3" y="965" width="123.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="895.31" y="975.5" >org/dspace/serv..</text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (2 samples, 0.18%)</title><rect x="760.1" y="917" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="763.13" y="927.5" ></text>
</g>
<g >
<title>Interpreter (1 samples, 0.09%)</title><rect x="1121.2" y="949" width="1.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="1124.22" y="959.5" ></text>
</g>
<g >
<title>__send (213 samples, 19.40%)</title><rect x="142.2" y="1317" width="228.9" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="145.19" y="1327.5" >__send</text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingResultSet:::wasNull (1 samples, 0.09%)</title><rect x="809.6" y="885" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="812.56" y="895.5" ></text>
</g>
<g >
<title>java/text/DateFormatSymbols:::getProviderInstance (1 samples, 0.09%)</title><rect x="488.2" y="789" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="491.23" y="799.5" ></text>
</g>
<g >
<title>ip_finish_output (1 samples, 0.09%)</title><rect x="1078.2" y="517" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="1081.23" y="527.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::createMethod (7 samples, 0.64%)</title><rect x="1051.4" y="981" width="7.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1054.37" y="991.5" ></text>
</g>
<g >
<title>java/net/URI:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="465.7" y="917" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="468.66" y="927.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::processResults (4 samples, 0.36%)</title><rect x="1023.4" y="837" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1026.42" y="847.5" ></text>
</g>
<g >
<title>org/dspace/content/DSpaceObject:::getMetadata (3 samples, 0.27%)</title><rect x="618.3" y="949" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="621.27" y="959.5" ></text>
</g>
<g >
<title>com/atmire/dspace/discovery/AtmireSolrService:::indexContent (703 samples, 64.03%)</title><rect x="375.4" y="997" width="755.5" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text x="378.39" y="1007.5" >com/atmire/dspace/discovery/AtmireSolrService:::indexContent</text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::process (4 samples, 0.36%)</title><rect x="816.0" y="933" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="819.01" y="943.5" ></text>
</g>
<g >
<title>org/apache/http/impl/conn/ManagedClientConnectionImpl:::sendRequestEntity (31 samples, 2.82%)</title><rect x="425.9" y="885" width="33.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="428.90" y="895.5" >or..</text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeWithFlags (1 samples, 0.09%)</title><rect x="867.6" y="869" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="870.60" y="879.5" ></text>
</g>
<g >
<title>__hrtimer_get_next_event (1 samples, 0.09%)</title><rect x="1018.1" y="821" width="1.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="1021.05" y="831.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::processResults (1 samples, 0.09%)</title><rect x="827.8" y="821" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="830.83" y="831.5" ></text>
</g>
<g >
<title>blk_mq_complete_request (1 samples, 0.09%)</title><rect x="137.9" y="1093" width="1.1" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="140.89" y="1103.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/AbstractHttpClient:::doExecute (38 samples, 3.46%)</title><rect x="423.8" y="933" width="40.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="426.75" y="943.5" >org..</text>
</g>
<g >
<title>try_to_wake_up (1 samples, 0.09%)</title><rect x="137.9" y="677" width="1.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text x="140.89" y="687.5" ></text>
</g>
<g >
<title>Java_java_net_SocketInputStream_socketRead0 (1 samples, 0.09%)</title><rect x="884.8" y="789" width="1.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="887.79" y="799.5" ></text>
</g>
<g >
<title>sock_def_readable (23 samples, 2.09%)</title><rect x="250.7" y="741" width="24.7" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="253.73" y="751.5" >s..</text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (6 samples, 0.55%)</title><rect x="733.3" y="917" width="6.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="736.26" y="927.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (1 samples, 0.09%)</title><rect x="1078.2" y="293" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="1081.23" y="303.5" ></text>
</g>
<g >
<title>[libjvm.so] (747 samples, 68.03%)</title><rect x="372.2" y="1109" width="802.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="375.17" y="1119.5" >[libjvm.so]</text>
</g>
<g >
<title>org/apache/http/protocol/RequestContent:::process (1 samples, 0.09%)</title><rect x="558.1" y="869" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="561.09" y="879.5" ></text>
</g>
<g >
<title>do_IRQ (1 samples, 0.09%)</title><rect x="137.9" y="1189" width="1.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="140.89" y="1199.5" ></text>
</g>
<g >
<title>sockfd_lookup_light (1 samples, 0.09%)</title><rect x="136.8" y="1237" width="1.1" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="139.81" y="1247.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeQuery (4 samples, 0.36%)</title><rect x="811.7" y="837" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="814.71" y="847.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (1 samples, 0.09%)</title><rect x="873.0" y="917" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="875.97" y="927.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.09%)</title><rect x="964.3" y="885" width="1.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="967.32" y="895.5" ></text>
</g>
<g >
<title>[libjvm.so] (747 samples, 68.03%)</title><rect x="372.2" y="1253" width="802.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="375.17" y="1263.5" >[libjvm.so]</text>
</g>
<g >
<title>org/springframework/core/convert/support/ArrayToObjectConverter:::getConvertibleTypes (1 samples, 0.09%)</title><rect x="679.5" y="885" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="682.53" y="895.5" ></text>
</g>
<g >
<title>__netif_receive_skb (92 samples, 8.38%)</title><rect x="233.5" y="901" width="98.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="236.53" y="911.5" >__netif_rec..</text>
</g>
<g >
<title>ip_finish_output2 (108 samples, 9.84%)</title><rect x="228.2" y="1013" width="116.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="231.16" y="1023.5" >ip_finish_outp..</text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (3 samples, 0.27%)</title><rect x="832.1" y="917" width="3.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="835.13" y="927.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::tryExecute (33 samples, 3.01%)</title><rect x="425.9" y="901" width="35.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="428.90" y="911.5" >org..</text>
</g>
<g >
<title>__local_bh_enable_ip (1 samples, 0.09%)</title><rect x="1078.2" y="469" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="1081.23" y="479.5" ></text>
</g>
<g >
<title>_copy_to_iter (1 samples, 0.09%)</title><rect x="132.5" y="1141" width="1.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="135.51" y="1151.5" ></text>
</g>
<g >
<title>simple_copy_to_iter (1 samples, 0.09%)</title><rect x="132.5" y="1157" width="1.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="135.51" y="1167.5" ></text>
</g>
<g >
<title>[libjava.so] (3 samples, 0.27%)</title><rect x="409.8" y="789" width="3.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="412.78" y="799.5" ></text>
</g>
<g >
<title>org/dspace/content/Item:::getCollections (5 samples, 0.46%)</title><rect x="568.8" y="949" width="5.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="571.83" y="959.5" ></text>
</g>
<g >
<title>iptable_mangle_hook (2 samples, 0.18%)</title><rect x="291.6" y="821" width="2.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="294.57" y="831.5" ></text>
</g>
<g >
<title>__hrtimer_next_event_base (1 samples, 0.09%)</title><rect x="1018.1" y="805" width="1.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="1021.05" y="815.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (137 samples, 12.48%)</title><rect x="200.2" y="1093" width="147.2" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="203.22" y="1103.5" >__ip_queue_xmit</text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (8 samples, 0.73%)</title><rect x="1033.1" y="965" width="8.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1036.10" y="975.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (1 samples, 0.09%)</title><rect x="823.5" y="773" width="1.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="826.53" y="783.5" ></text>
</g>
<g >
<title>enqueue_entity (1 samples, 0.09%)</title><rect x="259.3" y="597" width="1.1" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="262.33" y="607.5" ></text>
</g>
<g >
<title>org/apache/solr/common/SolrInputDocument:::addField (2 samples, 0.18%)</title><rect x="890.2" y="949" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="893.16" y="959.5" ></text>
</g>
<g >
<title>ip_queue_xmit (1 samples, 0.09%)</title><rect x="134.7" y="1125" width="1.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="137.66" y="1135.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::setInt (1 samples, 0.09%)</title><rect x="1029.9" y="901" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1032.87" y="911.5" ></text>
</g>
<g >
<title>_register_finalizer_Java (1 samples, 0.09%)</title><rect x="1165.3" y="981" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="1168.28" y="991.5" ></text>
</g>
<g >
<title>tcp_v4_connect (1 samples, 0.09%)</title><rect x="1078.2" y="629" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="1081.23" y="639.5" ></text>
</g>
<g >
<title>ttwu_do_wakeup (2 samples, 0.18%)</title><rect x="271.1" y="613" width="2.2" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="274.15" y="623.5" ></text>
</g>
<g >
<title>org/springframework/beans/TypeConverterDelegate:::doConvertValue (1 samples, 0.09%)</title><rect x="722.5" y="917" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="725.51" y="927.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (1 samples, 0.09%)</title><rect x="1078.2" y="437" width="1.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="1081.23" y="447.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (1 samples, 0.09%)</title><rect x="1157.8" y="853" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1160.76" y="863.5" ></text>
</g>
<g >
<title>java/lang/String:::toLowerCase (1 samples, 0.09%)</title><rect x="1047.1" y="981" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1050.07" y="991.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::getColumnNames (1 samples, 0.09%)</title><rect x="868.7" y="933" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="871.67" y="943.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingResultSet:::getInt (1 samples, 0.09%)</title><rect x="866.5" y="917" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="869.52" y="927.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (3 samples, 0.27%)</title><rect x="832.1" y="933" width="3.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="835.13" y="943.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (2 samples, 0.18%)</title><rect x="457.1" y="805" width="2.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="460.07" y="815.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (1 samples, 0.09%)</title><rect x="1168.5" y="917" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1171.51" y="927.5" ></text>
</g>
<g >
<title>__poll (3 samples, 0.27%)</title><rect x="1109.4" y="869" width="3.2" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="1112.40" y="879.5" ></text>
</g>
<g >
<title>ipt_do_table (1 samples, 0.09%)</title><rect x="249.7" y="597" width="1.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="252.65" y="607.5" ></text>
</g>
<g >
<title>net_rx_action (1 samples, 0.09%)</title><rect x="1078.2" y="405" width="1.1" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="1081.23" y="415.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (1 samples, 0.09%)</title><rect x="163.7" y="1189" width="1.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="166.68" y="1199.5" ></text>
</g>
<g >
<title>nft_ct_get_eval (1 samples, 0.09%)</title><rect x="296.9" y="773" width="1.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="299.94" y="783.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (1 samples, 0.09%)</title><rect x="813.9" y="741" width="1.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="816.86" y="751.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::execute (1 samples, 0.09%)</title><rect x="838.6" y="853" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="841.58" y="863.5" ></text>
</g>
<g >
<title>nft_do_chain (1 samples, 0.09%)</title><rect x="1121.2" y="597" width="1.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="1124.22" y="607.5" ></text>
</g>
<g >
<title>_register_finalizer_Java (2 samples, 0.18%)</title><rect x="783.8" y="917" width="2.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="786.77" y="927.5" ></text>
</g>
<g >
<title>ctx_sched_out (2 samples, 0.18%)</title><rect x="100.3" y="1077" width="2.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="103.27" y="1087.5" ></text>
</g>
<g >
<title>org/apache/http/impl/conn/HttpPoolEntry:::close (1 samples, 0.09%)</title><rect x="1122.3" y="949" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1125.30" y="959.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.09%)</title><rect x="827.8" y="917" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="830.83" y="927.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::process (16 samples, 1.46%)</title><rect x="766.6" y="933" width="17.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="769.58" y="943.5" ></text>
</g>
<g >
<title>java/lang/ref/Finalizer:::register (1 samples, 0.09%)</title><rect x="1019.1" y="869" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1022.13" y="879.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$CharProperty:::match (1 samples, 0.09%)</title><rect x="716.1" y="709" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="719.07" y="719.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$CharProperty:::match (1 samples, 0.09%)</title><rect x="1144.9" y="933" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1147.86" y="943.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::loadParameters (1 samples, 0.09%)</title><rect x="839.7" y="933" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="842.65" y="943.5" ></text>
</g>
<g >
<title>org/dspace/content/Bundle:::getBitstreams (1 samples, 0.09%)</title><rect x="729.0" y="965" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="731.96" y="975.5" ></text>
</g>
<g >
<title>__tcp_push_pending_frames (1 samples, 0.09%)</title><rect x="1121.2" y="741" width="1.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="1124.22" y="751.5" ></text>
</g>
<g >
<title>[libjvm.so] (7 samples, 0.64%)</title><rect x="1101.9" y="677" width="7.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1104.88" y="687.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::process (1 samples, 0.09%)</title><rect x="851.5" y="901" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="854.48" y="911.5" ></text>
</g>
<g >
<title>__fget_light (2 samples, 0.18%)</title><rect x="364.6" y="1221" width="2.2" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="367.64" y="1231.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::execute (1 samples, 0.09%)</title><rect x="421.6" y="789" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="424.60" y="799.5" ></text>
</g>
<g >
<title>java/net/SocketOutputStream:::socketWrite0 (1 samples, 0.09%)</title><rect x="823.5" y="805" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="826.53" y="815.5" ></text>
</g>
<g >
<title>__fdget (1 samples, 0.09%)</title><rect x="136.8" y="1221" width="1.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="139.81" y="1231.5" ></text>
</g>
<g >
<title>dequeue_task_fair (7 samples, 0.64%)</title><rect x="102.4" y="1093" width="7.5" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="105.42" y="1103.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/DefaultSingletonBeanRegistry:::getSingleton (2 samples, 0.18%)</title><rect x="1012.7" y="901" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1015.68" y="911.5" ></text>
</g>
<g >
<title>[libjava.so] (2 samples, 0.18%)</title><rect x="1138.4" y="885" width="2.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1141.42" y="895.5" ></text>
</g>
<g >
<title>java/net/SocketOutputStream:::socketWrite0 (1 samples, 0.09%)</title><rect x="537.7" y="789" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="540.67" y="799.5" ></text>
</g>
<g >
<title>ipv4_conntrack_local (6 samples, 0.55%)</title><rect x="213.1" y="1029" width="6.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="216.11" y="1039.5" ></text>
</g>
<g >
<title>ip_finish_output2 (1 samples, 0.09%)</title><rect x="1078.2" y="485" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="1081.23" y="495.5" ></text>
</g>
<g >
<title>org/springframework/beans/TypeConverterDelegate:::convertIfNecessary (95 samples, 8.65%)</title><rect x="621.5" y="933" width="102.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="624.49" y="943.5" >org/springfr..</text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.18%)</title><rect x="825.7" y="885" width="2.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="828.68" y="895.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingResultSet:::getInt (1 samples, 0.09%)</title><rect x="1145.9" y="949" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1148.94" y="959.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.27%)</title><rect x="1017.0" y="917" width="3.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1019.98" y="927.5" ></text>
</g>
<g >
<title>tcp_v4_inbound_md5_hash (1 samples, 0.09%)</title><rect x="290.5" y="773" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="293.49" y="783.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (207 samples, 18.85%)</title><rect x="147.6" y="1301" width="222.4" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text x="150.56" y="1311.5" >entry_SYSCALL_64_after_hwframe</text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::processResults (1 samples, 0.09%)</title><rect x="821.4" y="821" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="824.38" y="831.5" ></text>
</g>
<g >
<title>ext4_lookup (1 samples, 0.09%)</title><rect x="11.1" y="1125" width="1.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="14.07" y="1135.5" ></text>
</g>
<g >
<title>[libjvm.so] (14 samples, 1.28%)</title><rect x="1175.0" y="1301" width="15.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1177.95" y="1311.5" ></text>
</g>
<g >
<title>org/dspace/discovery/SolrServiceImpl:::buildDocument (1 samples, 0.09%)</title><rect x="882.6" y="965" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="885.64" y="975.5" ></text>
</g>
<g >
<title>org/apache/http/impl/io/ChunkedOutputStream:::flushCacheWithAppend (3 samples, 0.27%)</title><rect x="536.6" y="821" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="539.59" y="831.5" ></text>
</g>
<g >
<title>ipv4_mtu (3 samples, 0.27%)</title><rect x="357.1" y="1157" width="3.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="360.12" y="1167.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (1 samples, 0.09%)</title><rect x="735.4" y="789" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="738.41" y="799.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (1 samples, 0.09%)</title><rect x="421.6" y="725" width="1.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="424.60" y="735.5" ></text>
</g>
<g >
<title>process_backlog (94 samples, 8.56%)</title><rect x="232.5" y="917" width="101.0" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="235.46" y="927.5" >process_back..</text>
</g>
<g >
<title>tick_sched_timer (1 samples, 0.09%)</title><rect x="436.6" y="741" width="1.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="439.65" y="751.5" ></text>
</g>
<g >
<title>org/dspace/core/Context:::cache (1 samples, 0.09%)</title><rect x="802.0" y="933" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="805.04" y="943.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.18%)</title><rect x="540.9" y="789" width="2.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="543.89" y="799.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (1 samples, 0.09%)</title><rect x="883.7" y="933" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="886.72" y="943.5" ></text>
</g>
<g >
<title>__generic_file_write_iter (1 samples, 0.09%)</title><rect x="1139.5" y="725" width="1.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="1142.49" y="735.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::find (1 samples, 0.09%)</title><rect x="745.1" y="949" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="748.08" y="959.5" ></text>
</g>
<g >
<title>blk_update_request (1 samples, 0.09%)</title><rect x="137.9" y="1029" width="1.1" height="15.0" fill="rgb(220,79,79)" rx="2" ry="2" />
<text x="140.89" y="1039.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.27%)</title><rect x="1106.2" y="629" width="3.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1109.17" y="639.5" ></text>
</g>
<g >
<title>handle_edge_irq (1 samples, 0.09%)</title><rect x="631.2" y="821" width="1.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="634.17" y="831.5" ></text>
</g>
<g >
<title>org/apache/solr/common/util/JavaBinCodec:::readVal (1 samples, 0.09%)</title><rect x="1125.5" y="917" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1128.52" y="927.5" ></text>
</g>
<g >
<title>java/net/SocketOutputStream:::socketWrite0 (3 samples, 0.27%)</title><rect x="452.8" y="821" width="3.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="455.77" y="831.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="1155.6" y="917" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1158.61" y="927.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::findByUnique (12 samples, 1.09%)</title><rect x="803.1" y="917" width="12.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="806.11" y="927.5" ></text>
</g>
<g >
<title>try_to_wake_up (20 samples, 1.82%)</title><rect x="252.9" y="645" width="21.5" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text x="255.88" y="655.5" >t..</text>
</g>
<g >
<title>org/apache/http/protocol/HttpRequestExecutor:::doReceiveResponse (2 samples, 0.18%)</title><rect x="459.2" y="885" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="462.22" y="895.5" ></text>
</g>
<g >
<title>__inet_lookup_established (1 samples, 0.09%)</title><rect x="244.3" y="773" width="1.1" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="247.28" y="783.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="1068.6" y="885" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1071.56" y="895.5" ></text>
</g>
<g >
<title>org/dspace/content/Item:::find (21 samples, 1.91%)</title><rect x="1141.6" y="997" width="22.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1144.64" y="1007.5" >o..</text>
</g>
<g >
<title>java/nio/charset/CharsetEncoder:::encode (9 samples, 0.82%)</title><rect x="437.7" y="805" width="9.7" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="440.72" y="815.5" ></text>
</g>
<g >
<title>queued_spin_lock_slowpath (1 samples, 0.09%)</title><rect x="164.8" y="1173" width="1.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="167.75" y="1183.5" ></text>
</g>
<g >
<title>ipt_do_table (3 samples, 0.27%)</title><rect x="205.6" y="1013" width="3.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="208.59" y="1023.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.18%)</title><rect x="1138.4" y="837" width="2.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="1141.42" y="847.5" ></text>
</g>
<g >
<title>org/dspace/content/DSpaceObject:::getMetadata (30 samples, 2.73%)</title><rect x="766.6" y="965" width="32.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="769.58" y="975.5" >or..</text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingResultSet:::getInt (1 samples, 0.09%)</title><rect x="777.3" y="917" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="780.32" y="927.5" ></text>
</g>
<g >
<title>org/springframework/context/annotation/CommonAnnotationBeanPostProcessor:::findResourceMetadata (1 samples, 0.09%)</title><rect x="934.2" y="869" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="937.23" y="879.5" ></text>
</g>
<g >
<title>java/net/URI:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="1067.5" y="933" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1070.49" y="943.5" ></text>
</g>
<g >
<title>java/lang/String:::equals (1 samples, 0.09%)</title><rect x="874.0" y="901" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="877.04" y="911.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.09%)</title><rect x="77.7" y="1125" width="1.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="80.70" y="1135.5" ></text>
</g>
<g >
<title>_register_finalizer_Java (1 samples, 0.09%)</title><rect x="877.3" y="917" width="1.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="880.27" y="927.5" ></text>
</g>
<g >
<title>__libc_enable_asynccancel (1 samples, 0.09%)</title><rect x="1024.5" y="773" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="1027.50" y="783.5" ></text>
</g>
<g >
<title>__libc_disable_asynccancel (3 samples, 0.27%)</title><rect x="79.9" y="1317" width="3.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="82.85" y="1327.5" ></text>
</g>
<g >
<title>Interpreter (1 samples, 0.09%)</title><rect x="1078.2" y="821" width="1.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="1081.23" y="831.5" ></text>
</g>
<g >
<title>nf_hook_slow (1 samples, 0.09%)</title><rect x="249.7" y="613" width="1.0" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="252.65" y="623.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="461.4" y="805" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="464.37" y="815.5" ></text>
</g>
<g >
<title>Java_java_net_SocketOutputStream_socketWrite0 (1 samples, 0.09%)</title><rect x="1170.7" y="901" width="1.0" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="1173.66" y="911.5" ></text>
</g>
<g >
<title>handle_edge_irq (1 samples, 0.09%)</title><rect x="137.9" y="1173" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="140.89" y="1183.5" ></text>
</g>
<g >
<title>org/dspace/content/Item:::getCollections (30 samples, 2.73%)</title><rect x="840.7" y="965" width="32.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="843.73" y="975.5" >or..</text>
</g>
<g >
<title>__fdget (1 samples, 0.09%)</title><rect x="363.6" y="1221" width="1.0" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="366.57" y="1231.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="569.9" y="901" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="572.91" y="911.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="462.4" y="741" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="465.44" y="751.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="632.2" y="869" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="635.24" y="879.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (1 samples, 0.09%)</title><rect x="812.8" y="757" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="815.79" y="767.5" ></text>
</g>
<g >
<title>__hrtimer_init (1 samples, 0.09%)</title><rect x="1109.4" y="725" width="1.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="1112.40" y="735.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::setInt (1 samples, 0.09%)</title><rect x="1029.9" y="885" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1032.87" y="895.5" ></text>
</g>
<g >
<title>acpi_irq (1 samples, 0.09%)</title><rect x="132.5" y="1029" width="1.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="135.51" y="1039.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern:::clazz (1 samples, 0.09%)</title><rect x="928.9" y="757" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="931.85" y="767.5" ></text>
</g>
<g >
<title>java/lang/String:::split (3 samples, 0.27%)</title><rect x="578.5" y="965" width="3.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="581.51" y="975.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (9 samples, 0.82%)</title><rect x="783.8" y="933" width="9.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="786.77" y="943.5" ></text>
</g>
<g >
<title>org/apache/http/impl/conn/ManagedClientConnectionImpl:::flush (1 samples, 0.09%)</title><rect x="1079.3" y="917" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1082.31" y="927.5" ></text>
</g>
<g >
<title>ExceptionBlob (1 samples, 0.09%)</title><rect x="1062.1" y="949" width="1.1" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="1065.11" y="959.5" ></text>
</g>
<g >
<title>__vfprintf_internal (1 samples, 0.09%)</title><rect x="10.0" y="1269" width="1.1" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="13.00" y="1279.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="725.7" y="901" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="728.74" y="911.5" ></text>
</g>
<g >
<title>clone_endio (1 samples, 0.09%)</title><rect x="137.9" y="901" width="1.1" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="140.89" y="911.5" ></text>
</g>
<g >
<title>_register_finalizer_Java (1 samples, 0.09%)</title><rect x="748.3" y="933" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="751.31" y="943.5" ></text>
</g>
<g >
<title>org/dspace/content/DSpaceObject:::getMetadataByMetadataString (1 samples, 0.09%)</title><rect x="798.8" y="965" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="801.82" y="975.5" ></text>
</g>
<g >
<title>JVM_MonitorNotifyAll (1 samples, 0.09%)</title><rect x="739.7" y="853" width="1.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="742.71" y="863.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/request/QueryRequest:::getParams (1 samples, 0.09%)</title><rect x="1126.6" y="981" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1129.59" y="991.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeQuery (2 samples, 0.18%)</title><rect x="1151.3" y="885" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1154.31" y="895.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="1155.6" y="933" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1158.61" y="943.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.09%)</title><rect x="867.6" y="901" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="870.60" y="911.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (5 samples, 0.46%)</title><rect x="548.4" y="645" width="5.4" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="551.42" y="655.5" ></text>
</g>
<g >
<title>[libjvm.so] (8 samples, 0.73%)</title><rect x="1100.8" y="805" width="8.6" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1103.80" y="815.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern:::sequence (6 samples, 0.55%)</title><rect x="925.6" y="773" width="6.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="928.63" y="783.5" ></text>
</g>
<g >
<title>__handle_irq_event_percpu (1 samples, 0.09%)</title><rect x="132.5" y="1045" width="1.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="135.51" y="1055.5" ></text>
</g>
<g >
<title>__netif_receive_skb (1 samples, 0.09%)</title><rect x="1078.2" y="373" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1081.23" y="383.5" ></text>
</g>
<g >
<title>__sched_text_start (5 samples, 0.46%)</title><rect x="548.4" y="677" width="5.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="551.42" y="687.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method:::invoke (747 samples, 68.03%)</title><rect x="372.2" y="1189" width="802.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="375.17" y="1199.5" >java/lang/reflect/Method:::invoke</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="758.0" y="917" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="760.98" y="927.5" ></text>
</g>
<g >
<title>java/lang/AbstractStringBuilder:::append (1 samples, 0.09%)</title><rect x="802.0" y="917" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="805.04" y="927.5" ></text>
</g>
<g >
<title>java/lang/String:::toLowerCase (1 samples, 0.09%)</title><rect x="581.7" y="965" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="584.73" y="975.5" ></text>
</g>
<g >
<title>nft_hash_lookup_fast (2 samples, 0.18%)</title><rect x="298.0" y="773" width="2.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="301.01" y="783.5" ></text>
</g>
<g >
<title>jlong_disjoint_arraycopy (1 samples, 0.09%)</title><rect x="759.1" y="933" width="1.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="762.05" y="943.5" ></text>
</g>
<g >
<title>tcp_v4_send_synack (1 samples, 0.09%)</title><rect x="1078.2" y="165" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="1081.23" y="175.5" ></text>
</g>
<g >
<title>java/lang/String:::toLowerCase (8 samples, 0.73%)</title><rect x="393.7" y="901" width="8.6" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="396.66" y="911.5" ></text>
</g>
<g >
<title>java/lang/Class:::forName0 (3 samples, 0.27%)</title><rect x="723.6" y="917" width="3.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="726.59" y="927.5" ></text>
</g>
<g >
<title>org/dspace/eperson/Group:::find (20 samples, 1.82%)</title><rect x="841.8" y="949" width="21.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="844.80" y="959.5" >o..</text>
</g>
<g >
<title>itable stub (1 samples, 0.09%)</title><rect x="1014.8" y="885" width="1.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="1017.83" y="895.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::execute (24 samples, 2.19%)</title><rect x="533.4" y="901" width="25.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="536.37" y="911.5" >o..</text>
</g>
<g >
<title>org/apache/solr/client/solrj/request/RequestWriter$LazyContentStream:::getName (52 samples, 4.74%)</title><rect x="467.8" y="917" width="55.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="470.81" y="927.5" >org/a..</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="454.9" y="805" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="457.92" y="815.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.27%)</title><rect x="543.0" y="741" width="3.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="546.04" y="751.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingResultSet:::next (1 samples, 0.09%)</title><rect x="1030.9" y="933" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1033.95" y="943.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (3 samples, 0.27%)</title><rect x="337.8" y="965" width="3.2" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text x="340.78" y="975.5" ></text>
</g>
<g >
<title>Java_java_net_SocketOutputStream_socketWrite0 (1 samples, 0.09%)</title><rect x="537.7" y="773" width="1.0" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="540.67" y="783.5" ></text>
</g>
<g >
<title>org/dspace/content/DSpaceObject:::getMetadata (2 samples, 0.18%)</title><rect x="576.4" y="949" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="579.36" y="959.5" ></text>
</g>
<g >
<title>org/apache/solr/common/params/ModifiableSolrParams:::add (4 samples, 0.36%)</title><rect x="562.4" y="949" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="565.39" y="959.5" ></text>
</g>
<g >
<title>__sys_recvfrom (47 samples, 4.28%)</title><rect x="87.4" y="1253" width="50.5" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="90.38" y="1263.5" >__sys..</text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendBind (1 samples, 0.09%)</title><rect x="880.5" y="805" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="883.49" y="815.5" ></text>
</g>
<g >
<title>_register_finalizer_Java (1 samples, 0.09%)</title><rect x="758.0" y="933" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="760.98" y="943.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.09%)</title><rect x="1018.1" y="853" width="1.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="1021.05" y="863.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (4 samples, 0.36%)</title><rect x="811.7" y="885" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="814.71" y="895.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (3 samples, 0.27%)</title><rect x="1151.3" y="949" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1154.31" y="959.5" ></text>
</g>
<g >
<title>sun/nio/cs/UTF_8$Decoder:::decode (1 samples, 0.09%)</title><rect x="1150.2" y="885" width="1.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="1153.24" y="895.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (1 samples, 0.09%)</title><rect x="1168.5" y="901" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1171.51" y="911.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (2 samples, 0.18%)</title><rect x="837.5" y="917" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="840.50" y="927.5" ></text>
</g>
<g >
<title>handle_irq_event (1 samples, 0.09%)</title><rect x="132.5" y="1077" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="135.51" y="1087.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/FormBodyPart:::&lt;init&gt; (16 samples, 1.46%)</title><rect x="385.1" y="933" width="17.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="388.06" y="943.5" ></text>
</g>
<g >
<title>org/dspace/servicemanager/spring/SpringServiceManager:::getServicesByType (115 samples, 10.47%)</title><rect x="892.3" y="949" width="123.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="895.31" y="959.5" >org/dspace/serv..</text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (7 samples, 0.64%)</title><rect x="853.6" y="853" width="7.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="856.62" y="863.5" ></text>
</g>
<g >
<title>read_tsc (1 samples, 0.09%)</title><rect x="351.7" y="1125" width="1.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="354.75" y="1135.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.27%)</title><rect x="824.6" y="901" width="3.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="827.61" y="911.5" ></text>
</g>
<g >
<title>acpi_hw_read_port (1 samples, 0.09%)</title><rect x="421.6" y="533" width="1.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="424.60" y="543.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/PoolablePreparedStatement:::close (1 samples, 0.09%)</title><rect x="752.6" y="917" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="755.60" y="927.5" ></text>
</g>
<g >
<title>__vsnprintf_internal (1 samples, 0.09%)</title><rect x="10.0" y="1285" width="1.1" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="13.00" y="1295.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendOneQuery (1 samples, 0.09%)</title><rect x="867.6" y="837" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="870.60" y="847.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (2 samples, 0.18%)</title><rect x="837.5" y="901" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="840.50" y="911.5" ></text>
</g>
<g >
<title>java/lang/String:::toLowerCase (1 samples, 0.09%)</title><rect x="581.7" y="949" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="584.73" y="959.5" ></text>
</g>
<g >
<title>JVM_MonitorNotifyAll (1 samples, 0.09%)</title><rect x="850.4" y="853" width="1.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="853.40" y="863.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="755.8" y="837" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="758.83" y="847.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::study (2 samples, 0.18%)</title><rect x="921.3" y="725" width="2.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="924.33" y="735.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (1 samples, 0.09%)</title><rect x="134.7" y="1109" width="1.0" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="137.66" y="1119.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.09%)</title><rect x="726.8" y="917" width="1.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="729.81" y="927.5" ></text>
</g>
<g >
<title>__sched_text_start (1 samples, 0.09%)</title><rect x="366.8" y="1237" width="1.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="369.79" y="1247.5" ></text>
</g>
<g >
<title>Java_java_net_SocketInputStream_socketRead0 (1 samples, 0.09%)</title><rect x="460.3" y="837" width="1.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="463.29" y="847.5" ></text>
</g>
<g >
<title>nft_do_chain_inet (22 samples, 2.00%)</title><rect x="306.6" y="837" width="23.7" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="309.61" y="847.5" >n..</text>
</g>
<g >
<title>__vdso_gettimeofday (1 samples, 0.09%)</title><rect x="852.6" y="853" width="1.0" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="855.55" y="863.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::parseSql (1 samples, 0.09%)</title><rect x="1171.7" y="965" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1174.73" y="975.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::study (2 samples, 0.18%)</title><rect x="921.3" y="757" width="2.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="924.33" y="767.5" ></text>
</g>
<g >
<title>perf_pmu_enable.part.0 (1 samples, 0.09%)</title><rect x="436.6" y="661" width="1.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="439.65" y="671.5" ></text>
</g>
<g >
<title>org/springframework/core/convert/support/ObjectToArrayConverter:::getConvertibleTypes (1 samples, 0.09%)</title><rect x="703.2" y="885" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="706.17" y="895.5" ></text>
</g>
<g >
<title>__nf_conntrack_find_get (2 samples, 0.18%)</title><rect x="213.1" y="997" width="2.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="216.11" y="1007.5" ></text>
</g>
<g >
<title>tcp_rcv_established (39 samples, 3.55%)</title><rect x="248.6" y="757" width="41.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="251.58" y="767.5" >tcp..</text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::processResults (1 samples, 0.09%)</title><rect x="421.6" y="773" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="424.60" y="783.5" ></text>
</g>
<g >
<title>loopback_xmit (1 samples, 0.09%)</title><rect x="339.9" y="949" width="1.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="342.93" y="959.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::createMethod (61 samples, 5.56%)</title><rect x="465.7" y="933" width="65.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="468.66" y="943.5" >org/apa..</text>
</g>
<g >
<title>journal_end_buffer_io_sync (1 samples, 0.09%)</title><rect x="137.9" y="837" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="140.89" y="847.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (100 samples, 9.11%)</title><rect x="228.2" y="949" width="107.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="231.16" y="959.5" >__softirqentr..</text>
</g>
<g >
<title>tcp_shutdown (1 samples, 0.09%)</title><rect x="1121.2" y="773" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="1124.22" y="783.5" ></text>
</g>
<g >
<title>org/springframework/core/convert/support/GenericConversionService$ConverterAdapter:::getConvertibleTypes (1 samples, 0.09%)</title><rect x="701.0" y="869" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="704.02" y="879.5" ></text>
</g>
<g >
<title>java/lang/AbstractStringBuilder:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="1046.0" y="981" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1048.99" y="991.5" ></text>
</g>
<g >
<title>do_softirq.part.0 (1 samples, 0.09%)</title><rect x="1078.2" y="453" width="1.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="1081.23" y="463.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.09%)</title><rect x="839.7" y="917" width="1.0" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="842.65" y="927.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="878.3" y="757" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="881.34" y="767.5" ></text>
</g>
<g >
<title>bbr_cwnd_event (1 samples, 0.09%)</title><rect x="350.7" y="1125" width="1.0" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text x="353.67" y="1135.5" ></text>
</g>
<g >
<title>java/nio/charset/CharsetEncoder:::encode (1 samples, 0.09%)</title><rect x="867.6" y="789" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="870.60" y="799.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.09%)</title><rect x="571.0" y="917" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="573.98" y="927.5" ></text>
</g>
<g >
<title>bio_endio (1 samples, 0.09%)</title><rect x="137.9" y="1013" width="1.1" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="140.89" y="1023.5" ></text>
</g>
<g >
<title>nf_hook_slow (20 samples, 1.82%)</title><rect x="205.6" y="1045" width="21.5" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="208.59" y="1055.5" >n..</text>
</g>
<g >
<title>__tcp_transmit_skb (1 samples, 0.09%)</title><rect x="249.7" y="693" width="1.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="252.65" y="703.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (1 samples, 0.09%)</title><rect x="1083.6" y="885" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1086.61" y="895.5" ></text>
</g>
<g >
<title>[unknown] (64 samples, 5.83%)</title><rect x="10.0" y="1317" width="68.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="13.00" y="1327.5" >[unknown]</text>
</g>
<g >
<title>java/util/regex/Pattern:::escape (1 samples, 0.09%)</title><rect x="927.8" y="741" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="930.78" y="751.5" ></text>
</g>
<g >
<title>java/util/LinkedHashMap:::get (1 samples, 0.09%)</title><rect x="1015.9" y="949" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1018.90" y="959.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeQuery (3 samples, 0.27%)</title><rect x="878.3" y="869" width="3.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="881.34" y="879.5" ></text>
</g>
<g >
<title>iptable_filter_hook (1 samples, 0.09%)</title><rect x="202.4" y="1045" width="1.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="205.37" y="1055.5" ></text>
</g>
<g >
<title>nft_do_chain_inet (5 samples, 0.46%)</title><rect x="221.7" y="1029" width="5.4" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="224.71" y="1039.5" ></text>
</g>
<g >
<title>__errno_location (1 samples, 0.09%)</title><rect x="1079.3" y="869" width="1.1" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="1082.31" y="879.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeQuery (2 samples, 0.18%)</title><rect x="760.1" y="885" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="763.13" y="895.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (1 samples, 0.09%)</title><rect x="827.8" y="805" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="830.83" y="815.5" ></text>
</g>
<g >
<title>org/dspace/content/DSpaceObject:::getMetadata (2 samples, 0.18%)</title><rect x="873.0" y="949" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="875.97" y="959.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="1165.3" y="965" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1168.28" y="975.5" ></text>
</g>
<g >
<title>java/lang/String:::toLowerCase (1 samples, 0.09%)</title><rect x="568.8" y="917" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="571.83" y="927.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (1 samples, 0.09%)</title><rect x="964.3" y="853" width="1.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="967.32" y="863.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeWithFlags (5 samples, 0.46%)</title><rect x="785.9" y="853" width="5.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="788.92" y="863.5" ></text>
</g>
<g >
<title>com/atmire/dspace/discovery/HasBitstreamsSSIPlugin:::additionalIndex (1 samples, 0.09%)</title><rect x="567.8" y="965" width="1.0" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text x="570.76" y="975.5" ></text>
</g>
<g >
<title>tcp_recvmsg (44 samples, 4.01%)</title><rect x="89.5" y="1205" width="47.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="92.53" y="1215.5" >tcp_..</text>
</g>
<g >
<title>__local_bh_enable_ip (101 samples, 9.20%)</title><rect x="228.2" y="997" width="108.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="231.16" y="1007.5" >__local_bh_en..</text>
</g>
<g >
<title>org/postgresql/core/PGStream:::ReceiveTupleV3 (1 samples, 0.09%)</title><rect x="1158.8" y="853" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1161.83" y="863.5" ></text>
</g>
<g >
<title>bio_endio (1 samples, 0.09%)</title><rect x="137.9" y="965" width="1.1" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="140.89" y="975.5" ></text>
</g>
<g >
<title>java/lang/String:::equals (1 samples, 0.09%)</title><rect x="864.4" y="917" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="867.37" y="927.5" ></text>
</g>
<g >
<title>java/util/LinkedList$ListItr:::next (1 samples, 0.09%)</title><rect x="382.9" y="933" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="385.91" y="943.5" ></text>
</g>
<g >
<title>__sys_connect (1 samples, 0.09%)</title><rect x="1078.2" y="693" width="1.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="1081.23" y="703.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Begin:::match (1 samples, 0.09%)</title><rect x="1144.9" y="949" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1147.86" y="959.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::find (4 samples, 0.36%)</title><rect x="740.8" y="933" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="743.78" y="943.5" ></text>
</g>
<g >
<title>ext4_map_blocks (1 samples, 0.09%)</title><rect x="11.1" y="1061" width="1.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="14.07" y="1071.5" ></text>
</g>
<g >
<title>java/net/URI:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="466.7" y="901" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="469.74" y="911.5" ></text>
</g>
<g >
<title>tcp_ack (11 samples, 1.00%)</title><rect x="275.4" y="741" width="11.9" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="278.45" y="751.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/PoolingDataSource$PoolGuardConnectionWrapper:::prepareStatement (1 samples, 0.09%)</title><rect x="572.1" y="917" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="575.06" y="927.5" ></text>
</g>
<g >
<title>org/dspace/core/Context:::complete (2 samples, 0.18%)</title><rect x="1172.8" y="997" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1175.81" y="1007.5" ></text>
</g>
<g >
<title>org/dspace/discovery/BitstreamContentStream:::&lt;init&gt; (2 samples, 0.18%)</title><rect x="873.0" y="965" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="875.97" y="975.5" ></text>
</g>
<g >
<title>jshort_arraycopy (1 samples, 0.09%)</title><rect x="831.1" y="933" width="1.0" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="834.06" y="943.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::execute (48 samples, 4.37%)</title><rect x="1066.4" y="949" width="51.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1069.41" y="959.5" >org/a..</text>
</g>
<g >
<title>org/dspace/discovery/BitstreamContentStream:::getStream (14 samples, 1.28%)</title><rect x="408.7" y="933" width="15.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="411.71" y="943.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeWithFlags (5 samples, 0.46%)</title><rect x="1035.2" y="885" width="5.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1038.25" y="895.5" ></text>
</g>
<g >
<title>org/apache/http/impl/conn/PoolingClientConnectionManager:::releaseConnection (1 samples, 0.09%)</title><rect x="464.6" y="933" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="467.59" y="943.5" ></text>
</g>
<g >
<title>tcp_write_xmit (1 samples, 0.09%)</title><rect x="1121.2" y="725" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="1124.22" y="735.5" ></text>
</g>
<g >
<title>available_idle_cpu (2 samples, 0.18%)</title><rect x="255.0" y="613" width="2.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="258.03" y="623.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (6 samples, 0.55%)</title><rect x="1034.2" y="933" width="6.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1037.17" y="943.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendOneQuery (1 samples, 0.09%)</title><rect x="859.0" y="789" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="862.00" y="799.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.18%)</title><rect x="418.4" y="741" width="2.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="421.38" y="751.5" ></text>
</g>
<g >
<title>Interpreter (1 samples, 0.09%)</title><rect x="1078.2" y="885" width="1.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="1081.23" y="895.5" ></text>
</g>
<g >
<title>ext4_mark_inode_dirty (2 samples, 0.18%)</title><rect x="409.8" y="549" width="2.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="412.78" y="559.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (1 samples, 0.09%)</title><rect x="1098.7" y="773" width="1.0" height="15.0" fill="rgb(224,85,85)" rx="2" ry="2" />
<text x="1101.65" y="783.5" ></text>
</g>
<g >
<title>org/dspace/browse/BrowseIndex:::getBrowseIndices (26 samples, 2.37%)</title><rect x="905.2" y="853" width="28.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="908.21" y="863.5" >o..</text>
</g>
<g >
<title>schedule (61 samples, 5.56%)</title><rect x="13.2" y="1189" width="65.6" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="16.22" y="1199.5" >schedule</text>
</g>
<g >
<title>generic_perform_write (1 samples, 0.09%)</title><rect x="1139.5" y="709" width="1.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="1142.49" y="719.5" ></text>
</g>
<g >
<title>dequeue_entity (5 samples, 0.46%)</title><rect x="104.6" y="1077" width="5.3" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="107.57" y="1087.5" ></text>
</g>
<g >
<title>ExceptionBlob (1 samples, 0.09%)</title><rect x="1090.1" y="917" width="1.0" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="1093.05" y="927.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupHead:::match (5 samples, 0.46%)</title><rect x="914.9" y="821" width="5.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="917.88" y="831.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeQuery (3 samples, 0.27%)</title><rect x="740.8" y="837" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="743.78" y="847.5" ></text>
</g>
<g >
<title>__GI___shutdown (1 samples, 0.09%)</title><rect x="1121.2" y="869" width="1.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="1124.22" y="879.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.27%)</title><rect x="543.0" y="805" width="3.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="546.04" y="815.5" ></text>
</g>
<g >
<title>org/apache/solr/common/SolrInputDocument:::addField (1 samples, 0.09%)</title><rect x="575.3" y="949" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="578.28" y="959.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (1 samples, 0.09%)</title><rect x="696.7" y="853" width="1.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="699.72" y="863.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.09%)</title><rect x="799.9" y="933" width="1.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="802.89" y="943.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeQuery (2 samples, 0.18%)</title><rect x="833.2" y="885" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="836.21" y="895.5" ></text>
</g>
<g >
<title>vtable stub (1 samples, 0.09%)</title><rect x="1043.8" y="965" width="1.1" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text x="1046.84" y="975.5" ></text>
</g>
<g >
<title>schedule (5 samples, 0.46%)</title><rect x="548.4" y="693" width="5.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="551.42" y="703.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.09%)</title><rect x="735.4" y="693" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="738.41" y="703.5" ></text>
</g>
<g >
<title>_raw_spin_lock (1 samples, 0.09%)</title><rect x="251.8" y="645" width="1.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="254.80" y="655.5" ></text>
</g>
<g >
<title>nvme_irq (1 samples, 0.09%)</title><rect x="137.9" y="1109" width="1.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="140.89" y="1119.5" ></text>
</g>
<g >
<title>org/apache/log4j/Category:::info (8 samples, 0.73%)</title><rect x="1133.0" y="997" width="8.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1136.04" y="1007.5" ></text>
</g>
<g >
<title>JVM_FillInStackTrace (7 samples, 0.64%)</title><rect x="1101.9" y="709" width="7.5" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="1104.88" y="719.5" ></text>
</g>
<g >
<title>pollwake (1 samples, 0.09%)</title><rect x="274.4" y="693" width="1.0" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="277.37" y="703.5" ></text>
</g>
<g >
<title>__kmalloc_node_track_caller (3 samples, 0.27%)</title><rect x="175.5" y="1125" width="3.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="178.50" y="1135.5" ></text>
</g>
<g >
<title>__pthread_mutex_lock (1 samples, 0.09%)</title><rect x="860.1" y="741" width="1.0" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="863.07" y="751.5" ></text>
</g>
<g >
<title>ip_protocol_deliver_rcu (51 samples, 4.64%)</title><rect x="236.8" y="805" width="54.8" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="239.76" y="815.5" >ip_pr..</text>
</g>
<g >
<title>org/apache/http/protocol/HttpRequestExecutor:::doReceiveResponse (1 samples, 0.09%)</title><rect x="539.8" y="869" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="542.82" y="879.5" ></text>
</g>
<g >
<title>[libjvm.so] (5 samples, 0.46%)</title><rect x="646.2" y="821" width="5.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="649.21" y="831.5" ></text>
</g>
<g >
<title>java/lang/String:::equals (2 samples, 0.18%)</title><rect x="607.5" y="949" width="2.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="610.52" y="959.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/AbstractMultipartForm:::getTotalLength (1 samples, 0.09%)</title><rect x="463.5" y="853" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="466.52" y="863.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (2 samples, 0.18%)</title><rect x="461.4" y="885" width="2.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="464.37" y="895.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::execute (4 samples, 0.36%)</title><rect x="820.3" y="837" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="823.31" y="847.5" ></text>
</g>
<g >
<title>do_syscall_64 (6 samples, 0.55%)</title><rect x="547.3" y="789" width="6.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="550.34" y="799.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeWithFlags (7 samples, 0.64%)</title><rect x="1021.3" y="869" width="7.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1024.28" y="879.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (61 samples, 5.56%)</title><rect x="13.2" y="1205" width="65.6" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="16.22" y="1215.5" >futex_w..</text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::setInt (1 samples, 0.09%)</title><rect x="1029.9" y="917" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1032.87" y="927.5" ></text>
</g>
<g >
<title>org/dspace/core/Context:::fromCache (1 samples, 0.09%)</title><rect x="1142.7" y="981" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1145.71" y="991.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::findByUnique (4 samples, 0.36%)</title><rect x="740.8" y="917" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="743.78" y="927.5" ></text>
</g>
<g >
<title>update_blocked_averages (1 samples, 0.09%)</title><rect x="220.6" y="901" width="1.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="223.64" y="911.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="834.3" y="805" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="837.28" y="815.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/RequestTargetHost:::process (1 samples, 0.09%)</title><rect x="1115.8" y="917" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1118.85" y="927.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::getColumnNames (1 samples, 0.09%)</title><rect x="738.6" y="901" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="741.63" y="911.5" ></text>
</g>
<g >
<title>org/apache/solr/common/SolrInputDocument:::getFieldValues (1 samples, 0.09%)</title><rect x="561.3" y="949" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="564.31" y="959.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::processResults (1 samples, 0.09%)</title><rect x="740.8" y="789" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="743.78" y="799.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::processResults (2 samples, 0.18%)</title><rect x="735.4" y="805" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="738.41" y="815.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupHead:::match (3 samples, 0.27%)</title><rect x="917.0" y="661" width="3.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="920.03" y="671.5" ></text>
</g>
<g >
<title>org/apache/http/client/utils/URLEncodedUtils:::parse (1 samples, 0.09%)</title><rect x="1077.2" y="917" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1080.16" y="927.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::execute (3 samples, 0.27%)</title><rect x="812.8" y="805" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="815.79" y="815.5" ></text>
</g>
<g >
<title>inet_stream_connect (1 samples, 0.09%)</title><rect x="1078.2" y="677" width="1.1" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="1081.23" y="687.5" ></text>
</g>
<g >
<title>org/apache/http/message/BasicHeaderValueParser:::parseNameValuePair (1 samples, 0.09%)</title><rect x="1123.4" y="949" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1126.37" y="959.5" ></text>
</g>
<g >
<title>ipt_do_table (2 samples, 0.18%)</title><rect x="209.9" y="1013" width="2.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="212.89" y="1023.5" ></text>
</g>
<g >
<title>java/io/BufferedReader:::readLine (1 samples, 0.09%)</title><rect x="413.0" y="821" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="416.01" y="831.5" ></text>
</g>
<g >
<title>tick_sched_timer (1 samples, 0.09%)</title><rect x="177.7" y="1045" width="1.0" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="180.65" y="1055.5" ></text>
</g>
<g >
<title>org/apache/solr/common/params/ModifiableSolrParams:::set (1 samples, 0.09%)</title><rect x="1127.7" y="981" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1130.67" y="991.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::findByUnique (17 samples, 1.55%)</title><rect x="845.0" y="917" width="18.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="848.03" y="927.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (2 samples, 0.18%)</title><rect x="591.4" y="965" width="2.2" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="594.40" y="975.5" ></text>
</g>
<g >
<title>java/lang/String:::getBytes (4 samples, 0.36%)</title><rect x="403.3" y="917" width="4.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="406.33" y="927.5" ></text>
</g>
<g >
<title>org/dspace/content/Item:::getBundles (38 samples, 3.46%)</title><rect x="799.9" y="965" width="40.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="802.89" y="975.5" >org..</text>
</g>
<g >
<title>refcount_dec_and_test_checked (2 samples, 0.18%)</title><rect x="92.8" y="1157" width="2.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="95.75" y="1167.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRow:::getIntColumn (1 samples, 0.09%)</title><rect x="620.4" y="917" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="623.42" y="927.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/ClientParamsStack:::getParameter (1 samples, 0.09%)</title><rect x="1073.9" y="917" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1076.93" y="927.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="462.4" y="805" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="465.44" y="815.5" ></text>
</g>
<g >
<title>call_stub (11 samples, 1.00%)</title><rect x="651.6" y="821" width="11.8" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="654.58" y="831.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$BmpCharProperty:::match (3 samples, 0.27%)</title><rect x="917.0" y="677" width="3.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="920.03" y="687.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (1 samples, 0.09%)</title><rect x="252.9" y="629" width="1.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="255.88" y="639.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (1 samples, 0.09%)</title><rect x="431.3" y="821" width="1.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="434.28" y="831.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (1 samples, 0.09%)</title><rect x="370.0" y="1301" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="373.02" y="1311.5" ></text>
</g>
<g >
<title>tcp_rearm_rto (1 samples, 0.09%)</title><rect x="356.0" y="1109" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="359.05" y="1119.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/HttpStrictMultipart:::formatMultipartHeader (19 samples, 1.73%)</title><rect x="427.0" y="837" width="20.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="429.98" y="847.5" ></text>
</g>
<g >
<title>[libjli.so] (747 samples, 68.03%)</title><rect x="372.2" y="1301" width="802.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="375.17" y="1311.5" >[libjli.so]</text>
</g>
<g >
<title>handle_irq_event (1 samples, 0.09%)</title><rect x="790.2" y="741" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="793.22" y="751.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.18%)</title><rect x="544.1" y="629" width="2.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="547.12" y="639.5" ></text>
</g>
<g >
<title>sun/reflect/GeneratedConstructorAccessor22:::newInstance (28 samples, 2.55%)</title><rect x="903.1" y="869" width="30.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="906.06" y="879.5" >su..</text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.09%)</title><rect x="421.6" y="837" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="424.60" y="847.5" ></text>
</g>
<g >
<title>__generic_file_write_iter (2 samples, 0.18%)</title><rect x="409.8" y="629" width="2.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="412.78" y="639.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingStatement:::executeQuery (4 samples, 0.36%)</title><rect x="1167.4" y="965" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1170.43" y="975.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.27%)</title><rect x="1109.4" y="837" width="3.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="1112.40" y="847.5" ></text>
</g>
<g >
<title>org/apache/http/client/protocol/RequestTargetAuthentication:::process (1 samples, 0.09%)</title><rect x="557.0" y="869" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="560.01" y="879.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.09%)</title><rect x="827.8" y="885" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="830.83" y="895.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (91 samples, 8.29%)</title><rect x="233.5" y="885" width="97.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="236.53" y="895.5" >__netif_rec..</text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendBind (1 samples, 0.09%)</title><rect x="790.2" y="805" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="793.22" y="815.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match0 (3 samples, 0.27%)</title><rect x="917.0" y="709" width="3.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="920.03" y="719.5" ></text>
</g>
<g >
<title>org/dspace/eperson/Group:::find (1 samples, 0.09%)</title><rect x="755.8" y="949" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="758.83" y="959.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeWithFlags (4 samples, 0.36%)</title><rect x="811.7" y="821" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="814.71" y="831.5" ></text>
</g>
<g >
<title>java/lang/Integer:::toString (1 samples, 0.09%)</title><rect x="1130.9" y="997" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1133.89" y="1007.5" ></text>
</g>
<g >
<title>org/dspace/discovery/SolrServiceSpellIndexingPlugin:::additionalIndex (3 samples, 0.27%)</title><rect x="889.1" y="965" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="892.09" y="975.5" ></text>
</g>
<g >
<title>java/lang/StringCoding:::decode (1 samples, 0.09%)</title><rect x="1150.2" y="901" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1153.24" y="911.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (1 samples, 0.09%)</title><rect x="366.8" y="1269" width="1.1" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="369.79" y="1279.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.09%)</title><rect x="631.2" y="853" width="1.0" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="634.17" y="863.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.18%)</title><rect x="783.8" y="885" width="2.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="786.77" y="895.5" ></text>
</g>
<g >
<title>ipt_do_table (1 samples, 0.09%)</title><rect x="293.7" y="789" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="296.72" y="799.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (6 samples, 0.55%)</title><rect x="1034.2" y="949" width="6.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1037.17" y="959.5" ></text>
</g>
<g >
<title>java/util/HashMap:::get (1 samples, 0.09%)</title><rect x="694.6" y="869" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="697.57" y="879.5" ></text>
</g>
<g >
<title>Interpreter (1 samples, 0.09%)</title><rect x="1078.2" y="837" width="1.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="1081.23" y="847.5" ></text>
</g>
<g >
<title>read_tsc (1 samples, 0.09%)</title><rect x="288.3" y="725" width="1.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="291.34" y="735.5" ></text>
</g>
<g >
<title>tcp_rbtree_insert (1 samples, 0.09%)</title><rect x="355.0" y="1109" width="1.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="357.97" y="1119.5" ></text>
</g>
<g >
<title>nvme_pci_complete_rq (1 samples, 0.09%)</title><rect x="137.9" y="1077" width="1.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="140.89" y="1087.5" ></text>
</g>
<g >
<title>org/postgresql/core/PGStream:::SendInteger4 (1 samples, 0.09%)</title><rect x="1167.4" y="933" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1170.43" y="943.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (5 samples, 0.46%)</title><rect x="758.0" y="949" width="5.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="760.98" y="959.5" ></text>
</g>
<g >
<title>crypt_dec_pending (1 samples, 0.09%)</title><rect x="137.9" y="981" width="1.1" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="140.89" y="991.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendOneQuery (2 samples, 0.18%)</title><rect x="741.9" y="789" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="744.86" y="799.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (1 samples, 0.09%)</title><rect x="1078.2" y="421" width="1.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="1081.23" y="431.5" ></text>
</g>
<g >
<title>java/lang/Class:::getDeclaringClass0 (1 samples, 0.09%)</title><rect x="631.2" y="885" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="634.17" y="895.5" ></text>
</g>
<g >
<title>schedule (1 samples, 0.09%)</title><rect x="366.8" y="1253" width="1.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="369.79" y="1263.5" ></text>
</g>
<g >
<title>org/apache/http/impl/io/SocketInputBuffer:::isDataAvailable (13 samples, 1.18%)</title><rect x="540.9" y="885" width="14.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="543.89" y="895.5" ></text>
</g>
<g >
<title>Interpreter (1 samples, 0.09%)</title><rect x="1121.2" y="917" width="1.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="1124.22" y="927.5" ></text>
</g>
<g >
<title>org/apache/solr/common/util/XML:::escape (32 samples, 2.91%)</title><rect x="489.3" y="837" width="34.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="492.31" y="847.5" >or..</text>
</g>
<g >
<title>skb_page_frag_refill (1 samples, 0.09%)</title><rect x="173.4" y="1157" width="1.0" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="176.35" y="1167.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (3 samples, 0.27%)</title><rect x="622.6" y="901" width="3.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="625.57" y="911.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::process (1 samples, 0.09%)</title><rect x="883.7" y="949" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="886.72" y="959.5" ></text>
</g>
<g >
<title>perf_pmu_enable.part.0 (60 samples, 5.46%)</title><rect x="13.2" y="1125" width="64.5" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="16.22" y="1135.5" >perf_pm..</text>
</g>
<g >
<title>ip_rcv_finish (62 samples, 5.65%)</title><rect x="236.8" y="853" width="66.6" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="239.76" y="863.5" >ip_rcv_..</text>
</g>
<g >
<title>finish_task_switch (5 samples, 0.46%)</title><rect x="548.4" y="661" width="5.4" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="551.42" y="671.5" ></text>
</g>
<g >
<title>org/apache/commons/pool/impl/GenericKeyedObjectPool:::borrowObject (1 samples, 0.09%)</title><rect x="791.3" y="901" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="794.29" y="911.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/PoolingConnection$PStmtKey:::hashCode (1 samples, 0.09%)</title><rect x="861.1" y="853" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="864.15" y="863.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::process (4 samples, 0.36%)</title><rect x="806.3" y="901" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="809.34" y="911.5" ></text>
</g>
<g >
<title>update_blocked_averages (1 samples, 0.09%)</title><rect x="735.4" y="645" width="1.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="738.41" y="655.5" ></text>
</g>
<g >
<title>nf_conntrack_in (1 samples, 0.09%)</title><rect x="1078.2" y="69" width="1.1" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="1081.23" y="79.5" ></text>
</g>
<g >
<title>release_sock (2 samples, 0.18%)</title><rect x="96.0" y="1189" width="2.1" height="15.0" fill="rgb(244,115,115)" rx="2" ry="2" />
<text x="98.97" y="1199.5" ></text>
</g>
<g >
<title>acpi_ev_detect_gpe (1 samples, 0.09%)</title><rect x="421.6" y="565" width="1.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="424.60" y="575.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/util/ClientUtils:::writeVal (38 samples, 3.46%)</title><rect x="482.9" y="853" width="40.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="485.86" y="863.5" >org..</text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::execute (1 samples, 0.09%)</title><rect x="873.0" y="821" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="875.97" y="831.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match0 (4 samples, 0.36%)</title><rect x="916.0" y="789" width="4.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="918.96" y="799.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingResultSet:::getLong (1 samples, 0.09%)</title><rect x="828.9" y="933" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="831.91" y="943.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingStatement:::close (2 samples, 0.18%)</title><rect x="764.4" y="933" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="767.43" y="943.5" ></text>
</g>
<g >
<title>org/apache/log4j/helpers/PatternParser$DatePatternConverter:::convert (1 samples, 0.09%)</title><rect x="1140.6" y="917" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1143.56" y="927.5" ></text>
</g>
<g >
<title>Java_java_lang_Throwable_fillInStackTrace (7 samples, 0.64%)</title><rect x="1101.9" y="725" width="7.5" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="1104.88" y="735.5" ></text>
</g>
<g >
<title>org/dspace/content/Bundle:::getBitstreamsInternal (26 samples, 2.37%)</title><rect x="801.0" y="949" width="27.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="803.97" y="959.5" >o..</text>
</g>
<g >
<title>[libjvm.so] (747 samples, 68.03%)</title><rect x="372.2" y="1077" width="802.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="375.17" y="1087.5" >[libjvm.so]</text>
</g>
<g >
<title>org/apache/commons/dbcp/PoolingConnection$PStmtKey:::hashCode (1 samples, 0.09%)</title><rect x="1153.5" y="901" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1156.46" y="911.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::process (1 samples, 0.09%)</title><rect x="568.8" y="933" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="571.83" y="943.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1 samples, 0.09%)</title><rect x="1078.2" y="741" width="1.1" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text x="1081.23" y="751.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeQuery (1 samples, 0.09%)</title><rect x="873.0" y="853" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="875.97" y="863.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeQuery (2 samples, 0.18%)</title><rect x="749.4" y="885" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="752.38" y="895.5" ></text>
</g>
<g >
<title>tcp_clean_rtx_queue (4 samples, 0.36%)</title><rect x="283.0" y="725" width="4.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="285.97" y="735.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/PoolablePreparedStatement:::close (1 samples, 0.09%)</title><rect x="850.4" y="869" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="853.40" y="879.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::getColumnNames (1 samples, 0.09%)</title><rect x="422.7" y="869" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="425.68" y="879.5" ></text>
</g>
<g >
<title>__handle_irq_event_percpu (1 samples, 0.09%)</title><rect x="421.6" y="629" width="1.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="424.60" y="639.5" ></text>
</g>
<g >
<title>acpi_os_read_port (1 samples, 0.09%)</title><rect x="421.6" y="517" width="1.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="424.60" y="527.5" ></text>
</g>
<g >
<title>ipv4_dst_check (1 samples, 0.09%)</title><rect x="134.7" y="1093" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="137.66" y="1103.5" ></text>
</g>
<g >
<title>_register_finalizer_Java (1 samples, 0.09%)</title><rect x="569.9" y="917" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="572.91" y="927.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupHead:::match (3 samples, 0.27%)</title><rect x="715.0" y="805" width="3.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="717.99" y="815.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (1 samples, 0.09%)</title><rect x="134.7" y="1141" width="1.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="137.66" y="1151.5" ></text>
</g>
<g >
<title>org/dspace/content/Item:::getID (1 samples, 0.09%)</title><rect x="620.4" y="933" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="623.42" y="943.5" ></text>
</g>
<g >
<title>set_task_cpu (1 samples, 0.09%)</title><rect x="257.2" y="629" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="260.18" y="639.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.09%)</title><rect x="423.8" y="901" width="1.0" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="426.75" y="911.5" ></text>
</g>
<g >
<title>handle_irq_event_percpu (1 samples, 0.09%)</title><rect x="137.9" y="1141" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="140.89" y="1151.5" ></text>
</g>
<g >
<title>do_futex (61 samples, 5.56%)</title><rect x="13.2" y="1237" width="65.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="16.22" y="1247.5" >do_futex</text>
</g>
<g >
<title>java/util/ArrayList:::contains (1 samples, 0.09%)</title><rect x="588.2" y="965" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="591.18" y="975.5" ></text>
</g>
<g >
<title>bbr_lt_bw_sampling.isra.0 (2 samples, 0.18%)</title><rect x="277.6" y="709" width="2.1" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text x="280.60" y="719.5" ></text>
</g>
<g >
<title>java/io/FileOutputStream:::writeBytes (3 samples, 0.27%)</title><rect x="409.8" y="821" width="3.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="412.78" y="831.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (3 samples, 0.27%)</title><rect x="884.8" y="901" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="887.79" y="911.5" ></text>
</g>
<g >
<title>java/net/URI$Parser:::at (1 samples, 0.09%)</title><rect x="424.8" y="901" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="427.83" y="911.5" ></text>
</g>
<g >
<title>java/util/HashMap:::get (1 samples, 0.09%)</title><rect x="634.4" y="885" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="637.39" y="895.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::findByUnique (15 samples, 1.37%)</title><rect x="1017.0" y="965" width="16.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1019.98" y="975.5" ></text>
</g>
<g >
<title>java/lang/Throwable:::fillInStackTrace (3 samples, 0.27%)</title><rect x="543.0" y="693" width="3.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="546.04" y="703.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="884.8" y="773" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="887.79" y="783.5" ></text>
</g>
<g >
<title>Interpreter (1 samples, 0.09%)</title><rect x="1121.2" y="933" width="1.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="1124.22" y="943.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeWithFlags (1 samples, 0.09%)</title><rect x="873.0" y="837" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="875.97" y="847.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (6 samples, 0.55%)</title><rect x="1034.2" y="917" width="6.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1037.17" y="927.5" ></text>
</g>
<g >
<title>perf_pmu_enable.part.0 (12 samples, 1.09%)</title><rect x="117.5" y="1077" width="12.9" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="120.47" y="1087.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match (4 samples, 0.36%)</title><rect x="916.0" y="805" width="4.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="918.96" y="815.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::find (10 samples, 0.91%)</title><rect x="1143.8" y="981" width="10.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1146.79" y="991.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingStatement:::close (1 samples, 0.09%)</title><rect x="850.4" y="901" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="853.40" y="911.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="1098.7" y="789" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1101.65" y="799.5" ></text>
</g>
<g >
<title>Java_java_net_SocketInputStream_socketRead0 (2 samples, 0.18%)</title><rect x="1024.5" y="789" width="2.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="1027.50" y="799.5" ></text>
</g>
<g >
<title>org/apache/log4j/Category:::error (10 samples, 0.91%)</title><rect x="409.8" y="917" width="10.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="412.78" y="927.5" ></text>
</g>
<g >
<title>ip_queue_xmit (1 samples, 0.09%)</title><rect x="1078.2" y="581" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="1081.23" y="591.5" ></text>
</g>
<g >
<title>org/apache/http/conn/routing/HttpRoute:::equals (1 samples, 0.09%)</title><rect x="1070.7" y="933" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1073.71" y="943.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (1 samples, 0.09%)</title><rect x="1083.6" y="821" width="1.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="1086.61" y="831.5" ></text>
</g>
<g >
<title>org/dspace/core/PluginManager:::getNamedPlugin (4 samples, 0.36%)</title><rect x="723.6" y="933" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="726.59" y="943.5" ></text>
</g>
<g >
<title>[libjvm.so] (747 samples, 68.03%)</title><rect x="372.2" y="1093" width="802.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="375.17" y="1103.5" >[libjvm.so]</text>
</g>
<g >
<title>org/apache/commons/dbcp/PoolablePreparedStatement:::close (1 samples, 0.09%)</title><rect x="1163.1" y="949" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1166.13" y="959.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="837.5" y="885" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="840.50" y="895.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.09%)</title><rect x="709.6" y="853" width="1.1" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="712.62" y="863.5" ></text>
</g>
<g >
<title>Java_java_io_FileOutputStream_writeBytes (3 samples, 0.27%)</title><rect x="409.8" y="805" width="3.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="412.78" y="815.5" ></text>
</g>
<g >
<title>ip_finish_output (109 samples, 9.93%)</title><rect x="227.1" y="1045" width="117.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="230.09" y="1055.5" >ip_finish_output</text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.27%)</title><rect x="409.8" y="741" width="3.2" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="412.78" y="751.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (4 samples, 0.36%)</title><rect x="884.8" y="949" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="887.79" y="959.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="877.3" y="885" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="880.27" y="895.5" ></text>
</g>
<g >
<title>I2C/C2I adapters (2 samples, 0.18%)</title><rect x="372.2" y="1013" width="2.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="375.17" y="1023.5" ></text>
</g>
<g >
<title>ipt_do_table (1 samples, 0.09%)</title><rect x="212.0" y="1013" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="215.04" y="1023.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.18%)</title><rect x="835.4" y="901" width="2.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="838.36" y="911.5" ></text>
</g>
<g >
<title>org/apache/http/client/protocol/RequestAddCookies:::process (2 samples, 0.18%)</title><rect x="1112.6" y="917" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1115.62" y="927.5" ></text>
</g>
<g >
<title>java/util/concurrent/ConcurrentHashMap:::putVal (1 samples, 0.09%)</title><rect x="554.9" y="869" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="557.86" y="879.5" ></text>
</g>
<g >
<title>__x64_sys_poll (3 samples, 0.27%)</title><rect x="1109.4" y="821" width="3.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="1112.40" y="831.5" ></text>
</g>
<g >
<title>nft_do_chain_inet (1 samples, 0.09%)</title><rect x="302.3" y="821" width="1.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="305.31" y="831.5" ></text>
</g>
<g >
<title>Java_java_net_SocketInputStream_socketRead0 (1 samples, 0.09%)</title><rect x="827.8" y="773" width="1.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="830.83" y="783.5" ></text>
</g>
<g >
<title>__x64_sys_futex (61 samples, 5.56%)</title><rect x="13.2" y="1253" width="65.6" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="16.22" y="1263.5" >__x64_s..</text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendBind (1 samples, 0.09%)</title><rect x="761.2" y="821" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="764.20" y="831.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingStatement:::close (1 samples, 0.09%)</title><rect x="739.7" y="901" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="742.71" y="911.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::processResults (2 samples, 0.18%)</title><rect x="1168.5" y="933" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1171.51" y="943.5" ></text>
</g>
<g >
<title>__hrtimer_init (1 samples, 0.09%)</title><rect x="547.3" y="677" width="1.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="550.34" y="687.5" ></text>
</g>
<g >
<title>default_wake_function (1 samples, 0.09%)</title><rect x="137.9" y="693" width="1.1" height="15.0" fill="rgb(247,119,119)" rx="2" ry="2" />
<text x="140.89" y="703.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Single:::isSatisfiedBy (1 samples, 0.09%)</title><rect x="718.2" y="853" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="721.21" y="863.5" ></text>
</g>
<g >
<title>ip_local_out (1 samples, 0.09%)</title><rect x="1078.2" y="549" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="1081.23" y="559.5" ></text>
</g>
<g >
<title>poll_schedule_timeout.constprop.0 (6 samples, 0.55%)</title><rect x="547.3" y="741" width="6.5" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="550.34" y="751.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Ques:::study (1 samples, 0.09%)</title><rect x="922.4" y="693" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="925.40" y="703.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingStatement:::close (1 samples, 0.09%)</title><rect x="804.2" y="901" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="807.19" y="911.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.09%)</title><rect x="220.6" y="981" width="1.1" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="223.64" y="991.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.18%)</title><rect x="540.9" y="757" width="2.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="543.89" y="767.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (10 samples, 0.91%)</title><rect x="852.6" y="901" width="10.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="855.55" y="911.5" ></text>
</g>
<g >
<title>handle_irq_event (1 samples, 0.09%)</title><rect x="631.2" y="805" width="1.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="634.17" y="815.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::execute (2 samples, 0.18%)</title><rect x="833.2" y="853" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="836.21" y="863.5" ></text>
</g>
<g >
<title>unlock_buffer (1 samples, 0.09%)</title><rect x="137.9" y="821" width="1.1" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="140.89" y="831.5" ></text>
</g>
<g >
<title>perf_event_update_userpage (1 samples, 0.09%)</title><rect x="1111.5" y="565" width="1.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="1114.55" y="575.5" ></text>
</g>
<g >
<title>enqueue_task_fair (3 samples, 0.27%)</title><rect x="260.4" y="597" width="3.2" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="263.40" y="607.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingConnection:::commit (2 samples, 0.18%)</title><rect x="1172.8" y="981" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1175.81" y="991.5" ></text>
</g>
<g >
<title>[libjvm.so] (13 samples, 1.18%)</title><rect x="1176.0" y="1253" width="14.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1179.03" y="1263.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (4 samples, 0.36%)</title><rect x="820.3" y="917" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="823.31" y="927.5" ></text>
</g>
<g >
<title>ip_queue_xmit (1 samples, 0.09%)</title><rect x="249.7" y="677" width="1.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="252.65" y="687.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (60 samples, 5.46%)</title><rect x="13.2" y="1077" width="64.5" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="16.22" y="1087.5" >__intel..</text>
</g>
<g >
<title>java/net/SocketOutputStream:::socketWrite0 (1 samples, 0.09%)</title><rect x="1079.3" y="901" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1082.31" y="911.5" ></text>
</g>
<g >
<title>do_sys_open (1 samples, 0.09%)</title><rect x="11.1" y="1237" width="1.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="14.07" y="1247.5" ></text>
</g>
<g >
<title>org/apache/commons/logging/LogFactory:::getFactory (27 samples, 2.46%)</title><rect x="635.5" y="885" width="29.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="638.46" y="895.5" >or..</text>
</g>
<g >
<title>[libjvm.so] (6 samples, 0.55%)</title><rect x="1093.3" y="837" width="6.4" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1096.28" y="847.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeQuery (5 samples, 0.46%)</title><rect x="1035.2" y="901" width="5.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1038.25" y="911.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="1155.6" y="949" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1158.61" y="959.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/AbstractHttpClient:::doExecute (54 samples, 4.92%)</title><rect x="1062.1" y="965" width="58.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1065.11" y="975.5" >org/ap..</text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.18%)</title><rect x="783.8" y="901" width="2.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="786.77" y="911.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Branch:::match (2 samples, 0.18%)</title><rect x="716.1" y="725" width="2.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="719.07" y="735.5" ></text>
</g>
<g >
<title>Java_java_net_SocketInputStream_socketRead0 (2 samples, 0.18%)</title><rect x="855.8" y="741" width="2.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="858.77" y="751.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (1 samples, 0.09%)</title><rect x="1025.6" y="773" width="1.0" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="1028.57" y="783.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::execute (2 samples, 0.18%)</title><rect x="1157.8" y="885" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1160.76" y="895.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$5:::isSatisfiedBy (1 samples, 0.09%)</title><rect x="849.3" y="821" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="852.33" y="831.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/PoolingDataSource$PoolGuardConnectionWrapper:::prepareStatement (1 samples, 0.09%)</title><rect x="1153.5" y="933" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1156.46" y="943.5" ></text>
</g>
<g >
<title>itable stub (1 samples, 0.09%)</title><rect x="630.1" y="885" width="1.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="633.09" y="895.5" ></text>
</g>
<g >
<title>handle_fasteoi_irq (1 samples, 0.09%)</title><rect x="790.2" y="757" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="793.22" y="767.5" ></text>
</g>
<g >
<title>acpi_ev_detect_gpe (1 samples, 0.09%)</title><rect x="790.2" y="645" width="1.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="793.22" y="655.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.09%)</title><rect x="177.7" y="1109" width="1.0" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="180.65" y="1119.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (4 samples, 0.36%)</title><rect x="748.3" y="949" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="751.31" y="959.5" ></text>
</g>
<g >
<title>__tcp_ack_snd_check (1 samples, 0.09%)</title><rect x="249.7" y="741" width="1.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="252.65" y="751.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.09%)</title><rect x="436.6" y="805" width="1.1" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="439.65" y="815.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (3 samples, 0.27%)</title><rect x="740.8" y="869" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="743.78" y="879.5" ></text>
</g>
<g >
<title>_register_finalizer_Java (1 samples, 0.09%)</title><rect x="1155.6" y="965" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="1158.61" y="975.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (2 samples, 0.18%)</title><rect x="1024.5" y="821" width="2.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1027.50" y="831.5" ></text>
</g>
<g >
<title>memset_erms (1 samples, 0.09%)</title><rect x="189.5" y="1141" width="1.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="192.47" y="1151.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::process (1 samples, 0.09%)</title><rect x="876.2" y="933" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="879.19" y="943.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="1069.6" y="917" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1072.64" y="927.5" ></text>
</g>
<g >
<title>skb_release_data (1 samples, 0.09%)</title><rect x="285.1" y="677" width="1.1" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="288.12" y="687.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (1 samples, 0.09%)</title><rect x="827.8" y="757" width="1.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="830.83" y="767.5" ></text>
</g>
<g >
<title>org/apache/solr/common/SolrInputDocument:::addField (1 samples, 0.09%)</title><rect x="616.1" y="949" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="619.12" y="959.5" ></text>
</g>
<g >
<title>nf_ct_seq_offset (1 samples, 0.09%)</title><rect x="1078.2" y="37" width="1.1" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="1081.23" y="47.5" ></text>
</g>
<g >
<title>irq_enter (1 samples, 0.09%)</title><rect x="77.7" y="1109" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="80.70" y="1119.5" ></text>
</g>
<g >
<title>java/lang/StringCoding:::decode (1 samples, 0.09%)</title><rect x="807.4" y="885" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="810.41" y="895.5" ></text>
</g>
<g >
<title>ext4_dirty_inode (2 samples, 0.18%)</title><rect x="409.8" y="565" width="2.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="412.78" y="575.5" ></text>
</g>
<g >
<title>java/util/AbstractCollection:::toArray (1 samples, 0.09%)</title><rect x="892.3" y="933" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="895.31" y="943.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.18%)</title><rect x="540.9" y="773" width="2.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="543.89" y="783.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeWithFlags (3 samples, 0.27%)</title><rect x="735.4" y="837" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="738.41" y="847.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::getColumnNames (1 samples, 0.09%)</title><rect x="792.4" y="917" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="795.37" y="927.5" ></text>
</g>
<g >
<title>ext4_inode_table (1 samples, 0.09%)</title><rect x="410.9" y="517" width="1.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="413.86" y="527.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/request/RequestWriter$LazyContentStream:::getDelegate (52 samples, 4.74%)</title><rect x="467.8" y="901" width="55.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="470.81" y="911.5" >org/a..</text>
</g>
<g >
<title>jshort_arraycopy (1 samples, 0.09%)</title><rect x="906.3" y="837" width="1.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="909.28" y="847.5" ></text>
</g>
<g >
<title>Java_java_net_PlainSocketImpl_socketConnect (1 samples, 0.09%)</title><rect x="1078.2" y="773" width="1.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="1081.23" y="783.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/RequestContent:::process (1 samples, 0.09%)</title><rect x="463.5" y="885" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="466.52" y="895.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/AbstractMultipartForm:::doWriteTo (31 samples, 2.82%)</title><rect x="425.9" y="853" width="33.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="428.90" y="863.5" >or..</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="748.3" y="869" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="751.31" y="879.5" ></text>
</g>
<g >
<title>java/net/URI:::&lt;init&gt; (2 samples, 0.18%)</title><rect x="1075.0" y="917" width="2.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1078.01" y="927.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (1 samples, 0.09%)</title><rect x="537.7" y="757" width="1.0" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="540.67" y="767.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (1 samples, 0.09%)</title><rect x="460.3" y="869" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="463.29" y="879.5" ></text>
</g>
<g >
<title>java/lang/reflect/Proxy:::newProxyInstance (1 samples, 0.09%)</title><rect x="532.3" y="901" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="535.30" y="911.5" ></text>
</g>
<g >
<title>nf_conntrack_tcp_packet (1 samples, 0.09%)</title><rect x="1078.2" y="53" width="1.1" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="1081.23" y="63.5" ></text>
</g>
<g >
<title>[libjvm.so] (8 samples, 0.73%)</title><rect x="1100.8" y="853" width="8.6" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1103.80" y="863.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::clearParameters (1 samples, 0.09%)</title><rect x="1040.6" y="933" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1043.62" y="943.5" ></text>
</g>
<g >
<title>rcu_note_context_switch (1 samples, 0.09%)</title><rect x="131.4" y="1109" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="134.44" y="1119.5" ></text>
</g>
<g >
<title>validate_xmit_skb (2 samples, 0.18%)</title><rect x="342.1" y="965" width="2.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="345.08" y="975.5" ></text>
</g>
<g >
<title>acpi_ev_detect_gpe (1 samples, 0.09%)</title><rect x="132.5" y="981" width="1.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="135.51" y="991.5" ></text>
</g>
<g >
<title>tcp_mstamp_refresh (1 samples, 0.09%)</title><rect x="288.3" y="741" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="291.34" y="751.5" ></text>
</g>
<g >
<title>__pthread_getspecific (1 samples, 0.09%)</title><rect x="661.3" y="725" width="1.0" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="664.26" y="735.5" ></text>
</g>
<g >
<title>[[vdso]] (1 samples, 0.09%)</title><rect x="837.5" y="869" width="1.1" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="840.50" y="879.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::findByUnique (1 samples, 0.09%)</title><rect x="745.1" y="933" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="748.08" y="943.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (1 samples, 0.09%)</title><rect x="696.7" y="837" width="1.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="699.72" y="847.5" ></text>
</g>
<g >
<title>__ext4_find_entry (1 samples, 0.09%)</title><rect x="11.1" y="1109" width="1.0" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="14.07" y="1119.5" ></text>
</g>
<g >
<title>_register_finalizer_Java (1 samples, 0.09%)</title><rect x="733.3" y="901" width="1.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="736.26" y="911.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeWithFlags (3 samples, 0.27%)</title><rect x="884.8" y="869" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="887.79" y="879.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendBind (1 samples, 0.09%)</title><rect x="742.9" y="773" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="745.93" y="783.5" ></text>
</g>
<g >
<title>__x64_sys_sendto (193 samples, 17.58%)</title><rect x="159.4" y="1269" width="207.4" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="162.38" y="1279.5" >__x64_sys_sendto</text>
</g>
<g >
<title>org/dspace/eperson/Group:::find (4 samples, 0.36%)</title><rect x="740.8" y="949" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="743.78" y="959.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (1 samples, 0.09%)</title><rect x="1078.2" y="357" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1081.23" y="367.5" ></text>
</g>
<g >
<title>ipv4_dst_check (2 samples, 0.18%)</title><rect x="345.3" y="1077" width="2.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="348.30" y="1087.5" ></text>
</g>
<g >
<title>__mark_inode_dirty (2 samples, 0.18%)</title><rect x="409.8" y="581" width="2.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="412.78" y="591.5" ></text>
</g>
<g >
<title>tcp_event_new_data_sent (3 samples, 0.27%)</title><rect x="353.9" y="1125" width="3.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="356.90" y="1135.5" ></text>
</g>
<g >
<title>org/apache/http/message/BasicLineParser:::parseStatusLine (1 samples, 0.09%)</title><rect x="1087.9" y="901" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1090.91" y="911.5" ></text>
</g>
<g >
<title>org/apache/log4j/helpers/AppenderAttachableImpl:::appendLoopOnAppenders (8 samples, 0.73%)</title><rect x="1133.0" y="981" width="8.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1136.04" y="991.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.18%)</title><rect x="418.4" y="725" width="2.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="421.38" y="735.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.09%)</title><rect x="177.7" y="1093" width="1.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="180.65" y="1103.5" ></text>
</g>
<g >
<title>__x64_sys_write (2 samples, 0.18%)</title><rect x="409.8" y="725" width="2.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="412.78" y="735.5" ></text>
</g>
<g >
<title>irqtime_account_irq (1 samples, 0.09%)</title><rect x="229.2" y="933" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="232.23" y="943.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendSync (2 samples, 0.18%)</title><rect x="822.5" y="821" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="825.46" y="831.5" ></text>
</g>
<g >
<title>Interpreter (1 samples, 0.09%)</title><rect x="1078.2" y="901" width="1.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="1081.23" y="911.5" ></text>
</g>
<g >
<title>Java_java_net_SocketOutputStream_socketWrite0 (1 samples, 0.09%)</title><rect x="823.5" y="789" width="1.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="826.53" y="799.5" ></text>
</g>
<g >
<title>tcp_check_space (2 samples, 0.18%)</title><rect x="246.4" y="757" width="2.2" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="249.43" y="767.5" ></text>
</g>
<g >
<title>__skb_datagram_iter (1 samples, 0.09%)</title><rect x="94.9" y="1189" width="1.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="97.90" y="1199.5" ></text>
</g>
<g >
<title>__skb_clone (1 samples, 0.09%)</title><rect x="348.5" y="1093" width="1.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="351.52" y="1103.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (19 samples, 1.73%)</title><rect x="1092.2" y="901" width="20.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1095.20" y="911.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRow:::resetChanged (1 samples, 0.09%)</title><rect x="851.5" y="885" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="854.48" y="895.5" ></text>
</g>
<g >
<title>org/dspace/browse/SolrBrowseCreateDAO:::additionalIndex (110 samples, 10.02%)</title><rect x="610.7" y="965" width="118.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="613.75" y="975.5" >org/dspace/bro..</text>
</g>
<g >
<title>org/apache/solr/client/solrj/util/ClientUtils:::writeXML (49 samples, 4.46%)</title><rect x="471.0" y="869" width="52.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="474.04" y="879.5" >org/a..</text>
</g>
<g >
<title>java/util/HashMap:::put (2 samples, 0.18%)</title><rect x="695.6" y="869" width="2.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="698.65" y="879.5" ></text>
</g>
<g >
<title>bio_endio (1 samples, 0.09%)</title><rect x="137.9" y="917" width="1.1" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="140.89" y="927.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (4 samples, 0.36%)</title><rect x="740.8" y="901" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="743.78" y="911.5" ></text>
</g>
<g >
<title>Java_java_lang_Throwable_fillInStackTrace (3 samples, 0.27%)</title><rect x="543.0" y="677" width="3.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="546.04" y="687.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/DefaultListableBeanFactory:::getBeanNamesForType (74 samples, 6.74%)</title><rect x="936.4" y="917" width="79.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="939.38" y="927.5" >org/sprin..</text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.09%)</title><rect x="579.6" y="933" width="1.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="582.58" y="943.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeQuery (1 samples, 0.09%)</title><rect x="867.6" y="885" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="870.60" y="895.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Node:::study (1 samples, 0.09%)</title><rect x="921.3" y="661" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="924.33" y="671.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (1 samples, 0.09%)</title><rect x="755.8" y="901" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="758.83" y="911.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="733.3" y="885" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="736.26" y="895.5" ></text>
</g>
<g >
<title>java/net/URLEncoder:::encode (2 samples, 0.18%)</title><rect x="1056.7" y="965" width="2.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1059.74" y="975.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::process (4 samples, 0.36%)</title><rect x="863.3" y="949" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="866.30" y="959.5" ></text>
</g>
<g >
<title>JNU_ThrowByName (2 samples, 0.18%)</title><rect x="540.9" y="821" width="2.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="543.89" y="831.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Connection$TransactionCommandHandler:::handleCompletion (1 samples, 0.09%)</title><rect x="1173.9" y="965" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1176.88" y="975.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (2 samples, 0.18%)</title><rect x="1151.3" y="901" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1154.31" y="911.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (4 samples, 0.36%)</title><rect x="734.3" y="901" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="737.34" y="911.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (5 samples, 0.46%)</title><rect x="548.4" y="581" width="5.4" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="551.42" y="591.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (5 samples, 0.46%)</title><rect x="835.4" y="949" width="5.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="838.36" y="959.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="877.3" y="901" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="880.27" y="911.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendOneQuery (2 samples, 0.18%)</title><rect x="885.9" y="837" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="888.87" y="847.5" ></text>
</g>
<g >
<title>Interpreter (1 samples, 0.09%)</title><rect x="1078.2" y="789" width="1.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="1081.23" y="799.5" ></text>
</g>
<g >
<title>swake_up_locked.part.0 (1 samples, 0.09%)</title><rect x="964.3" y="757" width="1.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="967.32" y="767.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="836.4" y="885" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="839.43" y="895.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeQuery (5 samples, 0.46%)</title><rect x="785.9" y="869" width="5.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="788.92" y="879.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::execute (4 samples, 0.36%)</title><rect x="1167.4" y="949" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1170.43" y="959.5" ></text>
</g>
<g >
<title>update_min_vruntime (2 samples, 0.18%)</title><rect x="107.8" y="1061" width="2.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="110.80" y="1071.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="531.2" y="885" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="534.22" y="895.5" ></text>
</g>
<g >
<title>java/util/GregorianCalendar:::computeFields (1 samples, 0.09%)</title><rect x="1042.8" y="917" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1045.77" y="927.5" ></text>
</g>
<g >
<title>tcp_queue_rcv (1 samples, 0.09%)</title><rect x="289.4" y="741" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="292.42" y="751.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="663.4" y="853" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="666.41" y="863.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="748.3" y="917" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="751.31" y="927.5" ></text>
</g>
<g >
<title>ext4_mark_inode_dirty (1 samples, 0.09%)</title><rect x="1139.5" y="629" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="1142.49" y="639.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendBind (1 samples, 0.09%)</title><rect x="814.9" y="789" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="817.94" y="799.5" ></text>
</g>
<g >
<title>org/apache/http/conn/routing/HttpRoute:::hashCode (1 samples, 0.09%)</title><rect x="464.6" y="917" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="467.59" y="927.5" ></text>
</g>
<g >
<title>org/postgresql/core/PGStream:::Receive (1 samples, 0.09%)</title><rect x="421.6" y="741" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="424.60" y="751.5" ></text>
</g>
<g >
<title>vtable stub (2 samples, 0.18%)</title><rect x="918.1" y="565" width="2.2" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text x="921.11" y="575.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendSync (1 samples, 0.09%)</title><rect x="860.1" y="789" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="863.07" y="799.5" ></text>
</g>
<g >
<title>sched_clock_cpu (1 samples, 0.09%)</title><rect x="334.6" y="933" width="1.0" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="337.55" y="943.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (1 samples, 0.09%)</title><rect x="98.1" y="1157" width="1.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="101.12" y="1167.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeWithFlags (2 samples, 0.18%)</title><rect x="760.1" y="869" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="763.13" y="879.5" ></text>
</g>
<g >
<title>nf_hook_slow (1 samples, 0.09%)</title><rect x="344.2" y="1045" width="1.1" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="347.23" y="1055.5" ></text>
</g>
<g >
<title>org/apache/commons/lang/time/FastDateFormat$TwoDigitMonthField:::appendTo (1 samples, 0.09%)</title><rect x="594.6" y="965" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="597.63" y="975.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (1 samples, 0.09%)</title><rect x="1172.8" y="933" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1175.81" y="943.5" ></text>
</g>
<g >
<title>handle_irq_event_percpu (1 samples, 0.09%)</title><rect x="421.6" y="645" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="424.60" y="655.5" ></text>
</g>
<g >
<title>nft_do_chain (5 samples, 0.46%)</title><rect x="295.9" y="789" width="5.3" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="298.87" y="799.5" ></text>
</g>
<g >
<title>fput_many (2 samples, 0.18%)</title><rect x="159.4" y="1237" width="2.1" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="162.38" y="1247.5" ></text>
</g>
<g >
<title>java/text/SimpleDateFormat:::subFormat (2 samples, 0.18%)</title><rect x="487.2" y="805" width="2.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="490.16" y="815.5" ></text>
</g>
<g >
<title>org/dspace/storage/bitstore/BitstreamStorageManager:::getFile (1 samples, 0.09%)</title><rect x="420.5" y="917" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="423.53" y="927.5" ></text>
</g>
<g >
<title>[libjvm.so] (7 samples, 0.64%)</title><rect x="1101.9" y="661" width="7.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1104.88" y="671.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::execute (3 samples, 0.27%)</title><rect x="740.8" y="805" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="743.78" y="815.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (101 samples, 9.20%)</title><rect x="228.2" y="965" width="108.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="231.16" y="975.5" >do_softirq_ow..</text>
</g>
<g >
<title>pthread_cond_wait@@GLIBC_2.3.2 (61 samples, 5.56%)</title><rect x="13.2" y="1301" width="65.6" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="16.22" y="1311.5" >pthread..</text>
</g>
<g >
<title>sk_reset_timer (1 samples, 0.09%)</title><rect x="356.0" y="1093" width="1.1" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="359.05" y="1103.5" ></text>
</g>
<g >
<title>__ip_local_out (1 samples, 0.09%)</title><rect x="249.7" y="629" width="1.0" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="252.65" y="639.5" ></text>
</g>
<g >
<title>__ip_local_out (1 samples, 0.09%)</title><rect x="1121.2" y="645" width="1.1" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="1124.22" y="655.5" ></text>
</g>
<g >
<title>copy_user_enhanced_fast_string (2 samples, 0.18%)</title><rect x="170.1" y="1157" width="2.2" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="173.13" y="1167.5" ></text>
</g>
<g >
<title>jbyte_arraycopy (1 samples, 0.09%)</title><rect x="750.5" y="805" width="1.0" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="753.46" y="815.5" ></text>
</g>
<g >
<title>acpi_hw_read (1 samples, 0.09%)</title><rect x="421.6" y="549" width="1.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="424.60" y="559.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (13 samples, 1.18%)</title><rect x="540.9" y="869" width="14.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="543.89" y="879.5" ></text>
</g>
<g >
<title>org/apache/solr/common/params/ModifiableSolrParams:::getParams (1 samples, 0.09%)</title><rect x="566.7" y="949" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="569.68" y="959.5" ></text>
</g>
<g >
<title>org/dspace/content/DSpaceObject$MetadataCache:::get (30 samples, 2.73%)</title><rect x="766.6" y="949" width="32.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="769.58" y="959.5" >or..</text>
</g>
<g >
<title>org/dspace/core/Context:::cache (1 samples, 0.09%)</title><rect x="844.0" y="933" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="846.95" y="943.5" ></text>
</g>
<g >
<title>java (1,098 samples, 100.00%)</title><rect x="10.0" y="1333" width="1180.0" height="15.0" fill="rgb(224,86,86)" rx="2" ry="2" />
<text x="13.00" y="1343.5" >java</text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::query (4 samples, 0.36%)</title><rect x="820.3" y="933" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="823.31" y="943.5" ></text>
</g>
<g >
<title>hrtimer_init_sleeper (1 samples, 0.09%)</title><rect x="1109.4" y="741" width="1.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="1112.40" y="751.5" ></text>
</g>
<g >
<title>com/atmire/dspace/discovery/LnRSolrServiceIndexPlugin:::additionalIndex (4 samples, 0.36%)</title><rect x="574.2" y="965" width="4.3" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text x="577.21" y="975.5" ></text>
</g>
<g >
<title>__sys_sendto (193 samples, 17.58%)</title><rect x="159.4" y="1253" width="207.4" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="162.38" y="1263.5" >__sys_sendto</text>
</g>
<g >
<title>org/apache/commons/dbcp/PoolablePreparedStatement:::close (1 samples, 0.09%)</title><rect x="1032.0" y="917" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1035.02" y="927.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupTail:::match (2 samples, 0.18%)</title><rect x="918.1" y="613" width="2.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="921.11" y="623.5" ></text>
</g>
<g >
<title>ip_rcv (89 samples, 8.11%)</title><rect x="235.7" y="869" width="95.6" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="238.68" y="879.5" >ip_rcv</text>
</g>
<g >
<title>nf_conntrack_in (2 samples, 0.18%)</title><rect x="304.5" y="821" width="2.1" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="307.46" y="831.5" ></text>
</g>
<g >
<title>__ip_local_out (1 samples, 0.09%)</title><rect x="1078.2" y="117" width="1.1" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="1081.23" y="127.5" ></text>
</g>
<g >
<title>schedule (2 samples, 0.18%)</title><rect x="1110.5" y="741" width="2.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="1113.47" y="751.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/PoolablePreparedStatement:::close (1 samples, 0.09%)</title><rect x="1147.0" y="917" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1150.01" y="927.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingStatement:::close (1 samples, 0.09%)</title><rect x="797.7" y="917" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="800.74" y="927.5" ></text>
</g>
<g >
<title>java/lang/Object:::notifyAll (1 samples, 0.09%)</title><rect x="764.4" y="901" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="767.43" y="911.5" ></text>
</g>
<g >
<title>__kfree_skb (2 samples, 0.18%)</title><rect x="92.8" y="1189" width="2.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="95.75" y="1199.5" ></text>
</g>
<g >
<title>ksys_write (2 samples, 0.18%)</title><rect x="409.8" y="709" width="2.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="412.78" y="719.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match0 (3 samples, 0.27%)</title><rect x="917.0" y="629" width="3.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="920.03" y="639.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::process (2 samples, 0.18%)</title><rect x="731.1" y="917" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="734.11" y="927.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (1 samples, 0.09%)</title><rect x="1078.2" y="597" width="1.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="1081.23" y="607.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingStatement:::close (1 samples, 0.09%)</title><rect x="1166.4" y="965" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1169.36" y="975.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (6 samples, 0.55%)</title><rect x="547.3" y="725" width="6.5" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="550.34" y="735.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.09%)</title><rect x="798.8" y="885" width="1.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="801.82" y="895.5" ></text>
</g>
<g >
<title>org/apache/solr/common/SolrInputDocument:::addField (14 samples, 1.28%)</title><rect x="595.7" y="965" width="15.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="598.70" y="975.5" ></text>
</g>
<g >
<title>[libjvm.so] (4 samples, 0.36%)</title><rect x="658.0" y="741" width="4.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="661.03" y="751.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupHead:::match (3 samples, 0.27%)</title><rect x="917.0" y="741" width="3.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="920.03" y="751.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/HttpRequestExecutor:::preProcess (4 samples, 0.36%)</title><rect x="1112.6" y="933" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1115.62" y="943.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.09%)</title><rect x="802.0" y="901" width="1.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="805.04" y="911.5" ></text>
</g>
<g >
<title>__skb_clone (1 samples, 0.09%)</title><rect x="199.1" y="1109" width="1.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="202.14" y="1119.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingResultSet:::getBoolean (1 samples, 0.09%)</title><rect x="1150.2" y="933" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1153.24" y="943.5" ></text>
</g>
<g >
<title>___slab_alloc.isra.0 (1 samples, 0.09%)</title><rect x="188.4" y="1109" width="1.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="191.40" y="1119.5" ></text>
</g>
<g >
<title>java/util/HashMap:::put (1 samples, 0.09%)</title><rect x="753.7" y="949" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="756.68" y="959.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.09%)</title><rect x="132.5" y="1125" width="1.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="135.51" y="1135.5" ></text>
</g>
<g >
<title>ip_local_out (133 samples, 12.11%)</title><rect x="202.4" y="1077" width="142.9" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="205.37" y="1087.5" >ip_local_out</text>
</g>
<g >
<title>__perf_event_task_sched_in (60 samples, 5.46%)</title><rect x="13.2" y="1141" width="64.5" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="16.22" y="1151.5" >__perf_..</text>
</g>
<g >
<title>tcp_small_queue_check.isra.0 (1 samples, 0.09%)</title><rect x="191.6" y="1141" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="194.62" y="1151.5" ></text>
</g>
<g >
<title>org/apache/http/impl/io/AbstractSessionOutputBuffer:::write (2 samples, 0.18%)</title><rect x="537.7" y="805" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="540.67" y="815.5" ></text>
</g>
<g >
<title>all (1,098 samples, 100%)</title><rect x="10.0" y="1349" width="1180.0" height="15.0" fill="rgb(255,130,130)" rx="2" ry="2" />
<text x="13.00" y="1359.5" ></text>
</g>
<g >
<title>do_syscall_64 (53 samples, 4.83%)</title><rect x="85.2" y="1285" width="57.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="88.23" y="1295.5" >do_sys..</text>
</g>
<g >
<title>java/util/regex/Pattern:::closure (2 samples, 0.18%)</title><rect x="929.9" y="757" width="2.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="932.93" y="767.5" ></text>
</g>
<g >
<title>Java_java_net_SocketInputStream_socketRead0 (12 samples, 1.09%)</title><rect x="540.9" y="837" width="12.9" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="543.89" y="847.5" ></text>
</g>
<g >
<title>try_to_wake_up (1 samples, 0.09%)</title><rect x="964.3" y="725" width="1.1" height="15.0" fill="rgb(237,105,105)" rx="2" ry="2" />
<text x="967.32" y="735.5" ></text>
</g>
<g >
<title>java/lang/Throwable:::fillInStackTrace (7 samples, 0.64%)</title><rect x="1101.9" y="741" width="7.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1104.88" y="751.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (7 samples, 0.64%)</title><rect x="853.6" y="869" width="7.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="856.62" y="879.5" ></text>
</g>
<g >
<title>sun/nio/cs/UTF_8$Decoder:::decode (1 samples, 0.09%)</title><rect x="776.2" y="901" width="1.1" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="779.25" y="911.5" ></text>
</g>
<g >
<title>JVM_FillInStackTrace (3 samples, 0.27%)</title><rect x="543.0" y="661" width="3.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="546.04" y="671.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="744.0" y="869" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="747.01" y="879.5" ></text>
</g>
<g >
<title>nft_immediate_eval (1 samples, 0.09%)</title><rect x="324.9" y="805" width="1.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="327.88" y="815.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/request/AbstractUpdateRequest:::process (88 samples, 8.01%)</title><rect x="465.7" y="949" width="94.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="468.66" y="959.5" >org/apache/..</text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeWithFlags (2 samples, 0.18%)</title><rect x="1151.3" y="869" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1154.31" y="879.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::execute (2 samples, 0.18%)</title><rect x="1151.3" y="853" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1154.31" y="863.5" ></text>
</g>
<g >
<title>ext4_data_block_valid_rcu.isra.0 (1 samples, 0.09%)</title><rect x="11.1" y="1029" width="1.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="14.07" y="1039.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRow:::getIntColumn (3 samples, 0.27%)</title><rect x="793.4" y="933" width="3.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="796.44" y="943.5" ></text>
</g>
<g >
<title>org/apache/http/impl/conn/PoolingClientConnectionManager:::releaseConnection (1 samples, 0.09%)</title><rect x="559.2" y="917" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="562.16" y="927.5" ></text>
</g>
<g >
<title>java/util/ArrayList$SubList$1:::hasNext (1 samples, 0.09%)</title><rect x="580.7" y="949" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="583.66" y="959.5" ></text>
</g>
<g >
<title>edu/sdsc/grid/io/FileFactory:::newFileInputStream (1 samples, 0.09%)</title><rect x="408.7" y="917" width="1.1" height="15.0" fill="rgb(219,219,66)" rx="2" ry="2" />
<text x="411.71" y="927.5" ></text>
</g>
<g >
<title>tcp_update_skb_after_send (1 samples, 0.09%)</title><rect x="349.6" y="1109" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="352.60" y="1119.5" ></text>
</g>
<g >
<title>org/springframework/core/convert/support/GenericConversionService$ConverterAdapter:::getConvertibleTypes (2 samples, 0.18%)</title><rect x="680.6" y="885" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="683.60" y="895.5" ></text>
</g>
<g >
<title>tcp_sendmsg (185 samples, 16.85%)</title><rect x="163.7" y="1205" width="198.8" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="166.68" y="1215.5" >tcp_sendmsg</text>
</g>
<g >
<title>org/dspace/browse/BrowseIndex:::&lt;init&gt; (24 samples, 2.19%)</title><rect x="907.4" y="837" width="25.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="910.36" y="847.5" >o..</text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.09%)</title><rect x="932.1" y="821" width="1.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="935.08" y="831.5" ></text>
</g>
<g >
<title>tcp_send_ack (1 samples, 0.09%)</title><rect x="249.7" y="725" width="1.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="252.65" y="735.5" ></text>
</g>
<g >
<title>java/util/GregorianCalendar:::computeTime (1 samples, 0.09%)</title><rect x="1042.8" y="933" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1045.77" y="943.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="462.4" y="757" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="465.44" y="767.5" ></text>
</g>
<g >
<title>__kmalloc_reserve.isra.0 (5 samples, 0.46%)</title><rect x="175.5" y="1141" width="5.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="178.50" y="1151.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/AbstractHttpClient:::doExecute (26 samples, 2.37%)</title><rect x="531.2" y="917" width="28.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="534.22" y="927.5" >o..</text>
</g>
<g >
<title>pick_next_task_fair (1 samples, 0.09%)</title><rect x="366.8" y="1221" width="1.1" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="369.79" y="1231.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.27%)</title><rect x="543.0" y="773" width="3.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="546.04" y="783.5" ></text>
</g>
<g >
<title>dec_pending (1 samples, 0.09%)</title><rect x="137.9" y="933" width="1.1" height="15.0" fill="rgb(250,123,123)" rx="2" ry="2" />
<text x="140.89" y="943.5" ></text>
</g>
<g >
<title>java/util/HashMap:::resize (1 samples, 0.09%)</title><rect x="609.7" y="949" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="612.67" y="959.5" ></text>
</g>
<g >
<title>acpi_hw_read_port (1 samples, 0.09%)</title><rect x="132.5" y="949" width="1.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="135.51" y="959.5" ></text>
</g>
<g >
<title>ext4_file_write_iter (1 samples, 0.09%)</title><rect x="1139.5" y="741" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="1142.49" y="751.5" ></text>
</g>
<g >
<title>Interpreter (1 samples, 0.09%)</title><rect x="559.2" y="869" width="1.0" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="562.16" y="879.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeWithFlags (2 samples, 0.18%)</title><rect x="749.4" y="869" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="752.38" y="879.5" ></text>
</g>
<g >
<title>ip_rcv_core.isra.0 (1 samples, 0.09%)</title><rect x="235.7" y="853" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="238.68" y="863.5" ></text>
</g>
<g >
<title>arrayof_jint_fill (1 samples, 0.09%)</title><rect x="905.2" y="837" width="1.1" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="908.21" y="847.5" ></text>
</g>
<g >
<title>java/util/HashMap:::resize (1 samples, 0.09%)</title><rect x="616.1" y="933" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="619.12" y="943.5" ></text>
</g>
<g >
<title>poll_schedule_timeout.constprop.0 (3 samples, 0.27%)</title><rect x="1109.4" y="789" width="3.2" height="15.0" fill="rgb(249,122,122)" rx="2" ry="2" />
<text x="1112.40" y="799.5" ></text>
</g>
<g >
<title>put_prev_entity (1 samples, 0.09%)</title><rect x="366.8" y="1205" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="369.79" y="1215.5" ></text>
</g>
<g >
<title>start_thread (761 samples, 69.31%)</title><rect x="372.2" y="1317" width="817.8" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="375.17" y="1327.5" >start_thread</text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::process (1 samples, 0.09%)</title><rect x="828.9" y="949" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="831.91" y="959.5" ></text>
</g>
<g >
<title>__x64_sys_recvfrom (47 samples, 4.28%)</title><rect x="87.4" y="1269" width="50.5" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="90.38" y="1279.5" >__x64..</text>
</g>
<g >
<title>__sched_text_start (61 samples, 5.56%)</title><rect x="13.2" y="1173" width="65.6" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="16.22" y="1183.5" >__sched..</text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendOneQuery (1 samples, 0.09%)</title><rect x="1027.7" y="837" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1030.72" y="847.5" ></text>
</g>
<g >
<title>org/apache/log4j/DefaultThrowableRenderer:::render (7 samples, 0.64%)</title><rect x="413.0" y="837" width="7.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="416.01" y="847.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendOneQuery (2 samples, 0.18%)</title><rect x="749.4" y="837" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="752.38" y="847.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1 samples, 0.09%)</title><rect x="709.6" y="821" width="1.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="712.62" y="831.5" ></text>
</g>
<g >
<title>__x64_sys_connect (1 samples, 0.09%)</title><rect x="1078.2" y="709" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="1081.23" y="719.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingStatement:::close (1 samples, 0.09%)</title><rect x="745.1" y="901" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="748.08" y="911.5" ></text>
</g>
<g >
<title>org/springframework/beans/BeanWrapperImpl:::getWrappedClass (1 samples, 0.09%)</title><rect x="897.7" y="885" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="900.69" y="895.5" ></text>
</g>
<g >
<title>org/apache/http/entity/InputStreamEntity:::writeTo (3 samples, 0.27%)</title><rect x="536.6" y="837" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="539.59" y="847.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::findByUnique (1 samples, 0.09%)</title><rect x="755.8" y="917" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="758.83" y="927.5" ></text>
</g>
<g >
<title>loopback_xmit (1 samples, 0.09%)</title><rect x="341.0" y="965" width="1.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="344.00" y="975.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::tryConnect (1 samples, 0.09%)</title><rect x="1078.2" y="933" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1081.23" y="943.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::clearParameters (1 samples, 0.09%)</title><rect x="869.7" y="901" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="872.74" y="911.5" ></text>
</g>
<g >
<title>org/apache/log4j/helpers/ISO8601DateFormat:::format (1 samples, 0.09%)</title><rect x="1140.6" y="901" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1143.56" y="911.5" ></text>
</g>
<g >
<title>__sched_text_start (1 samples, 0.09%)</title><rect x="137.9" y="1237" width="1.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="140.89" y="1247.5" ></text>
</g>
<g >
<title>java/lang/Integer:::toString (1 samples, 0.09%)</title><rect x="1029.9" y="869" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1032.87" y="879.5" ></text>
</g>
<g >
<title>vtable stub (1 samples, 0.09%)</title><rect x="633.3" y="869" width="1.1" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text x="636.32" y="879.5" ></text>
</g>
<g >
<title>org/dspace/content/Bundle:::getName (10 samples, 0.91%)</title><rect x="730.0" y="965" width="10.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="733.04" y="975.5" ></text>
</g>
<g >
<title>ExceptionBlob (1 samples, 0.09%)</title><rect x="531.2" y="901" width="1.1" height="15.0" fill="rgb(223,84,84)" rx="2" ry="2" />
<text x="534.22" y="911.5" ></text>
</g>
<g >
<title>__x64_sys_openat (1 samples, 0.09%)</title><rect x="11.1" y="1253" width="1.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="14.07" y="1263.5" ></text>
</g>
<g >
<title>update_rq_clock (1 samples, 0.09%)</title><rect x="273.3" y="629" width="1.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="276.30" y="639.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (47 samples, 4.28%)</title><rect x="241.1" y="789" width="50.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="244.06" y="799.5" >tcp_v..</text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (2 samples, 0.18%)</title><rect x="749.4" y="933" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="752.38" y="943.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (1 samples, 0.09%)</title><rect x="735.4" y="773" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="738.41" y="783.5" ></text>
</g>
<g >
<title>java/nio/charset/CharsetEncoder:::encode (1 samples, 0.09%)</title><rect x="886.9" y="789" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="889.94" y="799.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Ques:::study (2 samples, 0.18%)</title><rect x="921.3" y="709" width="2.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="924.33" y="719.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingResultSet:::getInt (1 samples, 0.09%)</title><rect x="876.2" y="917" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="879.19" y="927.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractAutowireCapableBeanFactory:::predictBeanType (13 samples, 1.18%)</title><rect x="994.4" y="885" width="14.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="997.41" y="895.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/SimpleParameterList:::getV3Length (1 samples, 0.09%)</title><rect x="867.6" y="805" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="870.60" y="815.5" ></text>
</g>
<g >
<title>org/postgresql/core/PGStream:::Receive (1 samples, 0.09%)</title><rect x="873.0" y="773" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="875.97" y="783.5" ></text>
</g>
<g >
<title>sun/nio/cs/UTF_8$Encoder:::encode (5 samples, 0.46%)</title><rect x="525.8" y="885" width="5.4" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="528.85" y="895.5" ></text>
</g>
<g >
<title>acpi_ev_sci_xrupt_handler (1 samples, 0.09%)</title><rect x="132.5" y="1013" width="1.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="135.51" y="1023.5" ></text>
</g>
<g >
<title>_register_finalizer_Java (1 samples, 0.09%)</title><rect x="755.8" y="885" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="758.83" y="895.5" ></text>
</g>
<g >
<title>handle_irq_event (1 samples, 0.09%)</title><rect x="137.9" y="1157" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="140.89" y="1167.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::processResults (1 samples, 0.09%)</title><rect x="1151.3" y="837" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1154.31" y="847.5" ></text>
</g>
<g >
<title>jshort_arraycopy (1 samples, 0.09%)</title><rect x="388.3" y="917" width="1.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="391.29" y="927.5" ></text>
</g>
<g >
<title>tcp_push (154 samples, 14.03%)</title><rect x="191.6" y="1173" width="165.5" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="194.62" y="1183.5" >tcp_push</text>
</g>
<g >
<title>Interpreter (1 samples, 0.09%)</title><rect x="1122.3" y="885" width="1.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="1125.30" y="895.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="462.4" y="773" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="465.44" y="783.5" ></text>
</g>
<g >
<title>java/util/Collections$SynchronizedCollection:::add (1 samples, 0.09%)</title><rect x="894.5" y="901" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="897.46" y="911.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingStatement:::close (1 samples, 0.09%)</title><rect x="850.4" y="885" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="853.40" y="895.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.27%)</title><rect x="543.0" y="757" width="3.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="546.04" y="767.5" ></text>
</g>
<g >
<title>org/dspace/discovery/configuration/DiscoverySearchFilter:::getMetadataFields (1 samples, 0.09%)</title><rect x="1128.7" y="981" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1131.74" y="991.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeWithFlags (1 samples, 0.09%)</title><rect x="838.6" y="869" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="841.58" y="879.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="1090.1" y="885" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1093.05" y="895.5" ></text>
</g>
<g >
<title>java/lang/String:::getBytes (7 samples, 0.64%)</title><rect x="523.7" y="901" width="7.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="526.70" y="911.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::execute (5 samples, 0.46%)</title><rect x="785.9" y="837" width="5.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="788.92" y="847.5" ></text>
</g>
<g >
<title>Interpreter (747 samples, 68.03%)</title><rect x="372.2" y="1221" width="802.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="375.17" y="1231.5" >Interpreter</text>
</g>
<g >
<title>org/springframework/beans/PropertyEditorRegistrySupport:::createDefaultEditors (94 samples, 8.56%)</title><rect x="621.5" y="917" width="101.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="624.49" y="927.5" >org/springfr..</text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::execute (5 samples, 0.46%)</title><rect x="1023.4" y="853" width="5.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1026.42" y="863.5" ></text>
</g>
<g >
<title>__GI___libc_write (2 samples, 0.18%)</title><rect x="1138.4" y="869" width="2.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="1141.42" y="879.5" ></text>
</g>
<g >
<title>org/apache/commons/logging/impl/SLF4JLogFactory:::getInstance (2 samples, 0.18%)</title><rect x="664.5" y="885" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="667.48" y="895.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="758.0" y="901" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="760.98" y="911.5" ></text>
</g>
<g >
<title>vtable stub (1 samples, 0.09%)</title><rect x="923.5" y="757" width="1.1" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text x="926.48" y="767.5" ></text>
</g>
<g >
<title>__sys_shutdown (1 samples, 0.09%)</title><rect x="1121.2" y="805" width="1.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="1124.22" y="815.5" ></text>
</g>
<g >
<title>process_backlog (1 samples, 0.09%)</title><rect x="1078.2" y="389" width="1.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="1081.23" y="399.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/RequestWrapper:::resetHeaders (1 samples, 0.09%)</title><rect x="1118.0" y="949" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1121.00" y="959.5" ></text>
</g>
<g >
<title>flexible_sched_in (1 samples, 0.09%)</title><rect x="1111.5" y="629" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="1114.55" y="639.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingResultSet:::getMetaData (1 samples, 0.09%)</title><rect x="1164.2" y="981" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1167.21" y="991.5" ></text>
</g>
<g >
<title>org/springframework/core/env/MutablePropertySources:::addLast (17 samples, 1.55%)</title><rect x="704.2" y="885" width="18.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="707.24" y="895.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (1 samples, 0.09%)</title><rect x="878.3" y="789" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="881.34" y="799.5" ></text>
</g>
<g >
<title>__ksize (4 samples, 0.36%)</title><rect x="180.9" y="1141" width="4.3" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="183.87" y="1151.5" ></text>
</g>
<g >
<title>ext4_da_write_end (1 samples, 0.09%)</title><rect x="1139.5" y="693" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="1142.49" y="703.5" ></text>
</g>
<g >
<title>inet6_sendmsg (185 samples, 16.85%)</title><rect x="163.7" y="1221" width="198.8" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="166.68" y="1231.5" >inet6_sendmsg</text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeQuery (1 samples, 0.09%)</title><rect x="827.8" y="869" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="830.83" y="879.5" ></text>
</g>
<g >
<title>org/dspace/content/DSpaceObject:::getMetadata (10 samples, 0.91%)</title><rect x="730.0" y="949" width="10.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="733.04" y="959.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (3 samples, 0.27%)</title><rect x="832.1" y="901" width="3.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="835.13" y="911.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (2 samples, 0.18%)</title><rect x="1151.3" y="917" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1154.31" y="927.5" ></text>
</g>
<g >
<title>Interpreter (747 samples, 68.03%)</title><rect x="372.2" y="1045" width="802.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="375.17" y="1055.5" >Interpreter</text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="826.8" y="869" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="829.76" y="879.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (1 samples, 0.09%)</title><rect x="220.6" y="933" width="1.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="223.64" y="943.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (2 samples, 0.18%)</title><rect x="760.1" y="933" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="763.13" y="943.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRow:::setColumn (5 samples, 0.46%)</title><rect x="778.4" y="917" width="5.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="781.40" y="927.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::study (1 samples, 0.09%)</title><rect x="921.3" y="693" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="924.33" y="703.5" ></text>
</g>
<g >
<title>tcp_in_window (2 samples, 0.18%)</title><rect x="215.3" y="981" width="2.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="218.26" y="991.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeWithFlags (2 samples, 0.18%)</title><rect x="833.2" y="869" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="836.21" y="879.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendOneQuery (1 samples, 0.09%)</title><rect x="761.2" y="837" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="764.20" y="847.5" ></text>
</g>
<g >
<title>irq_exit (1 samples, 0.09%)</title><rect x="964.3" y="869" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="967.32" y="879.5" ></text>
</g>
<g >
<title>java/lang/Object:::notifyAll (1 samples, 0.09%)</title><rect x="745.1" y="869" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="748.08" y="879.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractAutowireCapableBeanFactory:::instantiateBean (31 samples, 2.82%)</title><rect x="899.8" y="885" width="33.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="902.84" y="895.5" >or..</text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (1 samples, 0.09%)</title><rect x="735.4" y="741" width="1.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="738.41" y="751.5" ></text>
</g>
<g >
<title>org/apache/solr/common/util/JavaBinCodec:::readSolrDocument (1 samples, 0.09%)</title><rect x="1125.5" y="885" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1128.52" y="895.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc4/Jdbc4Statement:::createResultSet (1 samples, 0.09%)</title><rect x="879.4" y="805" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="882.42" y="815.5" ></text>
</g>
<g >
<title>sock_recvmsg (44 samples, 4.01%)</title><rect x="89.5" y="1237" width="47.3" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="92.53" y="1247.5" >sock..</text>
</g>
<g >
<title>java/util/regex/Pattern:::compile (11 samples, 1.00%)</title><rect x="920.3" y="821" width="11.8" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="923.26" y="831.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$BranchConn:::match (1 samples, 0.09%)</title><rect x="715.0" y="773" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="717.99" y="783.5" ></text>
</g>
<g >
<title>x86_pmu_enable (60 samples, 5.46%)</title><rect x="13.2" y="1109" width="64.5" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="16.22" y="1119.5" >x86_pmu..</text>
</g>
<g >
<title>org/dspace/content/Community:::&lt;init&gt; (12 samples, 1.09%)</title><rect x="740.8" y="965" width="12.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="743.78" y="975.5" ></text>
</g>
<g >
<title>add_interrupt_randomness (1 samples, 0.09%)</title><rect x="631.2" y="789" width="1.0" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="634.17" y="799.5" ></text>
</g>
<g >
<title>java/util/ArrayList$Itr:::hasNext (1 samples, 0.09%)</title><rect x="1048.1" y="981" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1051.14" y="991.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (1 samples, 0.09%)</title><rect x="1172.8" y="917" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1175.81" y="927.5" ></text>
</g>
<g >
<title>org/dspace/servicemanager/spring/DSpaceBeanPostProcessor:::postProcessBeforeInitialization (1 samples, 0.09%)</title><rect x="895.5" y="901" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="898.54" y="911.5" ></text>
</g>
<g >
<title>ktime_get (1 samples, 0.09%)</title><rect x="135.7" y="1157" width="1.1" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="138.74" y="1167.5" ></text>
</g>
<g >
<title>call_stub (747 samples, 68.03%)</title><rect x="372.2" y="1237" width="802.8" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="375.17" y="1247.5" >call_stub</text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractBeanFactory:::isTypeMatch (22 samples, 2.00%)</title><rect x="989.0" y="901" width="23.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="992.03" y="911.5" >o..</text>
</g>
<g >
<title>__cgroup_bpf_run_filter_skb (1 samples, 0.09%)</title><rect x="227.1" y="1029" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="230.09" y="1039.5" ></text>
</g>
<g >
<title>__ip_queue_xmit (1 samples, 0.09%)</title><rect x="1121.2" y="677" width="1.1" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="1124.22" y="687.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$GroupTail:::match (3 samples, 0.27%)</title><rect x="917.0" y="693" width="3.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="920.03" y="703.5" ></text>
</g>
<g >
<title>tcp_send_fin (1 samples, 0.09%)</title><rect x="1121.2" y="757" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="1124.22" y="767.5" ></text>
</g>
<g >
<title>java/net/SocketTimeoutException:::&lt;init&gt; (3 samples, 0.27%)</title><rect x="543.0" y="709" width="3.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="546.04" y="719.5" ></text>
</g>
<g >
<title>org/apache/log4j/WriterAppender:::subAppend (10 samples, 0.91%)</title><rect x="409.8" y="853" width="10.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="412.78" y="863.5" ></text>
</g>
<g >
<title>__tcp_push_pending_frames (154 samples, 14.03%)</title><rect x="191.6" y="1157" width="165.5" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="194.62" y="1167.5" >__tcp_push_pending_fr..</text>
</g>
<g >
<title>__lookup_slow (1 samples, 0.09%)</title><rect x="11.1" y="1141" width="1.0" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="14.07" y="1151.5" ></text>
</g>
<g >
<title>handle_fasteoi_irq (1 samples, 0.09%)</title><rect x="421.6" y="677" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="424.60" y="687.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeWithFlags (7 samples, 0.64%)</title><rect x="853.6" y="821" width="7.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="856.62" y="831.5" ></text>
</g>
<g >
<title>org/postgresql/core/PGStream:::Receive (1 samples, 0.09%)</title><rect x="813.9" y="757" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="816.86" y="767.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.27%)</title><rect x="1017.0" y="885" width="3.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1019.98" y="895.5" ></text>
</g>
<g >
<title>[libjvm.so] (7 samples, 0.64%)</title><rect x="1092.2" y="853" width="7.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1095.20" y="863.5" ></text>
</g>
<g >
<title>do_softirq.part.0 (101 samples, 9.20%)</title><rect x="228.2" y="981" width="108.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="231.16" y="991.5" >do_softirq.pa..</text>
</g>
<g >
<title>org/apache/http/impl/conn/PoolingClientConnectionManager:::releaseConnection (2 samples, 0.18%)</title><rect x="1121.2" y="965" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1124.22" y="975.5" ></text>
</g>
<g >
<title>irq_enter (1 samples, 0.09%)</title><rect x="798.8" y="869" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="801.82" y="879.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (7 samples, 0.64%)</title><rect x="336.7" y="981" width="7.5" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="339.70" y="991.5" ></text>
</g>
<g >
<title>wake_up_process (1 samples, 0.09%)</title><rect x="964.3" y="741" width="1.1" height="15.0" fill="rgb(218,76,76)" rx="2" ry="2" />
<text x="967.32" y="751.5" ></text>
</g>
<g >
<title>finish_task_switch (14 samples, 1.28%)</title><rect x="115.3" y="1109" width="15.1" height="15.0" fill="rgb(242,111,111)" rx="2" ry="2" />
<text x="118.32" y="1119.5" ></text>
</g>
<g >
<title>java/lang/String:::hashCode (1 samples, 0.09%)</title><rect x="589.3" y="949" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="592.25" y="959.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (7 samples, 0.64%)</title><rect x="1021.3" y="901" width="7.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1024.28" y="911.5" ></text>
</g>
<g >
<title>nf_ct_get_tuple (1 samples, 0.09%)</title><rect x="217.4" y="997" width="1.1" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="220.41" y="1007.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2ResultSet:::getString (1 samples, 0.09%)</title><rect x="1150.2" y="917" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1153.24" y="927.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (2 samples, 0.18%)</title><rect x="100.3" y="1109" width="2.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="103.27" y="1119.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (2 samples, 0.18%)</title><rect x="1037.4" y="837" width="2.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1040.40" y="847.5" ></text>
</g>
<g >
<title>nft_do_chain_inet (7 samples, 0.64%)</title><rect x="294.8" y="805" width="7.5" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="297.79" y="815.5" ></text>
</g>
<g >
<title>x86_pmu_disable (1 samples, 0.09%)</title><rect x="101.3" y="1061" width="1.1" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="104.35" y="1071.5" ></text>
</g>
<g >
<title>__mark_inode_dirty (1 samples, 0.09%)</title><rect x="1139.5" y="661" width="1.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="1142.49" y="671.5" ></text>
</g>
<g >
<title>inet_ehashfn (1 samples, 0.09%)</title><rect x="245.4" y="773" width="1.0" height="15.0" fill="rgb(241,110,110)" rx="2" ry="2" />
<text x="248.36" y="783.5" ></text>
</g>
<g >
<title>org/springframework/core/env/AbstractEnvironment:::&lt;init&gt; (89 samples, 8.11%)</title><rect x="626.9" y="901" width="95.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="629.87" y="911.5" >org/springf..</text>
</g>
<g >
<title>org/postgresql/core/PGStream:::Receive (3 samples, 0.27%)</title><rect x="787.0" y="789" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="789.99" y="799.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="462.4" y="821" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="465.44" y="831.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (3 samples, 0.27%)</title><rect x="878.3" y="885" width="3.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="881.34" y="895.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match (3 samples, 0.27%)</title><rect x="917.0" y="645" width="3.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="920.03" y="655.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (1 samples, 0.09%)</title><rect x="460.3" y="853" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="463.29" y="863.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (19 samples, 1.73%)</title><rect x="1092.2" y="917" width="20.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1095.20" y="927.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (1 samples, 0.09%)</title><rect x="740.8" y="757" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="743.78" y="767.5" ></text>
</g>
<g >
<title>java/util/LinkedList:::add (1 samples, 0.09%)</title><rect x="384.0" y="933" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="386.99" y="943.5" ></text>
</g>
<g >
<title>get_random_u32 (1 samples, 0.09%)</title><rect x="188.4" y="1093" width="1.1" height="15.0" fill="rgb(240,109,109)" rx="2" ry="2" />
<text x="191.40" y="1103.5" ></text>
</g>
<g >
<title>java/lang/String:::toLowerCase (1 samples, 0.09%)</title><rect x="818.2" y="917" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="821.16" y="927.5" ></text>
</g>
<g >
<title>org/apache/http/client/methods/HttpPost:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="379.7" y="949" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="382.69" y="959.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="452.8" y="789" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="455.77" y="799.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/AbstractMultipartForm:::encode (14 samples, 1.28%)</title><rect x="432.3" y="821" width="15.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="435.35" y="831.5" ></text>
</g>
<g >
<title>kmem_cache_free (1 samples, 0.09%)</title><rect x="284.0" y="677" width="1.1" height="15.0" fill="rgb(225,87,87)" rx="2" ry="2" />
<text x="287.04" y="687.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeQuery (1 samples, 0.09%)</title><rect x="421.6" y="821" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="424.60" y="831.5" ></text>
</g>
<g >
<title>do_IRQ (1 samples, 0.09%)</title><rect x="421.6" y="693" width="1.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="424.60" y="703.5" ></text>
</g>
<g >
<title>path_openat (1 samples, 0.09%)</title><rect x="11.1" y="1205" width="1.0" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="14.07" y="1215.5" ></text>
</g>
<g >
<title>org/apache/http/protocol/BasicHttpContext:::setAttribute (1 samples, 0.09%)</title><rect x="1119.1" y="949" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1122.07" y="959.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.09%)</title><rect x="1018.1" y="869" width="1.0" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="1021.05" y="879.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Branch:::match (3 samples, 0.27%)</title><rect x="715.0" y="837" width="3.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="717.99" y="847.5" ></text>
</g>
<g >
<title>visit_groups_merge (1 samples, 0.09%)</title><rect x="116.4" y="1045" width="1.1" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="119.39" y="1055.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRowIterator:::hasNext (2 samples, 0.18%)</title><rect x="796.7" y="933" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="799.67" y="943.5" ></text>
</g>
<g >
<title>perf_pmu_enable.part.0 (5 samples, 0.46%)</title><rect x="548.4" y="629" width="5.4" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="551.42" y="639.5" ></text>
</g>
<g >
<title>nft_meta_get_eval (1 samples, 0.09%)</title><rect x="326.0" y="805" width="1.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="328.96" y="815.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (3 samples, 0.27%)</title><rect x="1156.7" y="965" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1159.68" y="975.5" ></text>
</g>
<g >
<title>com/atmire/dspace/discovery/AtmireSolrService:::buildDocument (622 samples, 56.65%)</title><rect x="376.5" y="981" width="668.4" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text x="379.47" y="991.5" >com/atmire/dspace/discovery/AtmireSolrService:::buildDocument</text>
</g>
<g >
<title>swake_up_one (1 samples, 0.09%)</title><rect x="964.3" y="773" width="1.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="967.32" y="783.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (4 samples, 0.36%)</title><rect x="820.3" y="901" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="823.31" y="911.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingResultSet:::getInt (1 samples, 0.09%)</title><rect x="876.2" y="901" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="879.19" y="911.5" ></text>
</g>
<g >
<title>x86_pmu_enable (5 samples, 0.46%)</title><rect x="548.4" y="613" width="5.4" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="551.42" y="623.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRow:::getIntColumn (1 samples, 0.09%)</title><rect x="798.8" y="917" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="801.82" y="927.5" ></text>
</g>
<g >
<title>__libc_recv (1 samples, 0.09%)</title><rect x="856.8" y="725" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="859.85" y="735.5" ></text>
</g>
<g >
<title>java/lang/String:::toLowerCase (3 samples, 0.27%)</title><rect x="771.9" y="917" width="3.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="774.95" y="927.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (2 samples, 0.18%)</title><rect x="1157.8" y="933" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1160.76" y="943.5" ></text>
</g>
<g >
<title>__handle_irq_event_percpu (1 samples, 0.09%)</title><rect x="137.9" y="1125" width="1.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="140.89" y="1135.5" ></text>
</g>
<g >
<title>[libjvm.so] (14 samples, 1.28%)</title><rect x="1175.0" y="1285" width="15.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1177.95" y="1295.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Branch:::match (3 samples, 0.27%)</title><rect x="715.0" y="821" width="3.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="717.99" y="831.5" ></text>
</g>
<g >
<title>__slab_alloc.isra.0 (1 samples, 0.09%)</title><rect x="188.4" y="1125" width="1.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="191.40" y="1135.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (1 samples, 0.09%)</title><rect x="332.4" y="901" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="335.40" y="911.5" ></text>
</g>
<g >
<title>skb_release_all (1 samples, 0.09%)</title><rect x="286.2" y="709" width="1.1" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="289.19" y="719.5" ></text>
</g>
<g >
<title>__GI___libc_write (3 samples, 0.27%)</title><rect x="409.8" y="773" width="3.2" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="412.78" y="783.5" ></text>
</g>
<g >
<title>iptable_raw_hook (3 samples, 0.27%)</title><rect x="208.8" y="1029" width="3.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="211.82" y="1039.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeWithFlags (1 samples, 0.09%)</title><rect x="421.6" y="805" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="424.60" y="815.5" ></text>
</g>
<g >
<title>tcp_conn_request (1 samples, 0.09%)</title><rect x="1078.2" y="181" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="1081.23" y="191.5" ></text>
</g>
<g >
<title>org/dspace/content/DSpaceObject$MetadataCache:::get (2 samples, 0.18%)</title><rect x="873.0" y="933" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="875.97" y="943.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendOneQuery (1 samples, 0.09%)</title><rect x="1152.4" y="837" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1155.39" y="847.5" ></text>
</g>
<g >
<title>_register_finalizer_Java (3 samples, 0.27%)</title><rect x="824.6" y="917" width="3.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="827.61" y="927.5" ></text>
</g>
<g >
<title>nft_do_chain_inet (1 samples, 0.09%)</title><rect x="330.3" y="853" width="1.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="333.26" y="863.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/PoolablePreparedStatement:::close (1 samples, 0.09%)</title><rect x="739.7" y="885" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="742.71" y="895.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::find (2 samples, 0.18%)</title><rect x="421.6" y="917" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="424.60" y="927.5" ></text>
</g>
<g >
<title>x86_pmu_enable (12 samples, 1.09%)</title><rect x="117.5" y="1061" width="12.9" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="120.47" y="1071.5" ></text>
</g>
<g >
<title>Java_java_net_SocketInputStream_socketRead0 (1 samples, 0.09%)</title><rect x="735.4" y="757" width="1.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="738.41" y="767.5" ></text>
</g>
<g >
<title>__alloc_skb (14 samples, 1.28%)</title><rect x="175.5" y="1157" width="15.0" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="178.50" y="1167.5" ></text>
</g>
<g >
<title>Interpreter (747 samples, 68.03%)</title><rect x="372.2" y="1205" width="802.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="375.17" y="1215.5" >Interpreter</text>
</g>
<g >
<title>skb_push (1 samples, 0.09%)</title><rect x="352.8" y="1125" width="1.1" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="355.82" y="1135.5" ></text>
</g>
<g >
<title>call_stub (747 samples, 68.03%)</title><rect x="372.2" y="1061" width="802.8" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="375.17" y="1071.5" >call_stub</text>
</g>
<g >
<title>exit_to_usermode_loop (1 samples, 0.09%)</title><rect x="696.7" y="821" width="1.1" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="699.72" y="831.5" ></text>
</g>
<g >
<title>nf_hook_slow (24 samples, 2.19%)</title><rect x="304.5" y="853" width="25.8" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="307.46" y="863.5" >n..</text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::processResults (1 samples, 0.09%)</title><rect x="1172.8" y="949" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1175.81" y="959.5" ></text>
</g>
<g >
<title>Java_java_net_SocketInputStream_socketRead0 (19 samples, 1.73%)</title><rect x="1092.2" y="885" width="20.4" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="1095.20" y="895.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.18%)</title><rect x="1138.4" y="853" width="2.2" height="15.0" fill="rgb(246,118,118)" rx="2" ry="2" />
<text x="1141.42" y="863.5" ></text>
</g>
<g >
<title>java/lang/Object:::notifyAll (1 samples, 0.09%)</title><rect x="739.7" y="869" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="742.71" y="879.5" ></text>
</g>
<g >
<title>__poll (7 samples, 0.64%)</title><rect x="546.3" y="821" width="7.5" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="549.27" y="831.5" ></text>
</g>
<g >
<title>[libjvm.so] (8 samples, 0.73%)</title><rect x="1100.8" y="837" width="8.6" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1103.80" y="847.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/SimpleParameterList:::getV3Length (1 samples, 0.09%)</title><rect x="886.9" y="805" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="889.94" y="815.5" ></text>
</g>
<g >
<title>org/dspace/content/ItemIdIterator:::next (1 samples, 0.09%)</title><rect x="1164.2" y="997" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1167.21" y="1007.5" ></text>
</g>
<g >
<title>[libjvm.so] (25 samples, 2.28%)</title><rect x="636.5" y="837" width="26.9" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="639.54" y="847.5" >[..</text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::process (2 samples, 0.18%)</title><rect x="746.2" y="949" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="749.16" y="959.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.27%)</title><rect x="543.0" y="821" width="3.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="546.04" y="831.5" ></text>
</g>
<g >
<title>event_sched_in.isra.0 (1 samples, 0.09%)</title><rect x="1111.5" y="597" width="1.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="1114.55" y="607.5" ></text>
</g>
<g >
<title>__x64_sys_write (2 samples, 0.18%)</title><rect x="1138.4" y="821" width="2.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="1141.42" y="831.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/EntityEnclosingRequestWrapper$EntityWrapper:::writeTo (31 samples, 2.82%)</title><rect x="425.9" y="869" width="33.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="428.90" y="879.5" >or..</text>
</g>
<g >
<title>iptable_raw_hook (1 samples, 0.09%)</title><rect x="303.4" y="853" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="306.39" y="863.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendBind (1 samples, 0.09%)</title><rect x="886.9" y="821" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="889.94" y="831.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeQuery (1 samples, 0.09%)</title><rect x="1028.8" y="901" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1031.80" y="911.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/DefaultSingletonBeanRegistry:::getSingleton (4 samples, 0.36%)</title><rect x="1008.4" y="885" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1011.38" y="895.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendSync (1 samples, 0.09%)</title><rect x="834.3" y="837" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="837.28" y="847.5" ></text>
</g>
<g >
<title>new_sync_write (2 samples, 0.18%)</title><rect x="409.8" y="661" width="2.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="412.78" y="671.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (2 samples, 0.18%)</title><rect x="461.4" y="869" width="2.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="464.37" y="879.5" ></text>
</g>
<g >
<title>net_rx_action (96 samples, 8.74%)</title><rect x="230.3" y="933" width="103.2" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="233.31" y="943.5" >net_rx_action</text>
</g>
<g >
<title>org/dspace/content/DSpaceObject$MetadataCache:::get (10 samples, 0.91%)</title><rect x="730.0" y="933" width="10.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="733.04" y="943.5" ></text>
</g>
<g >
<title>[libjvm.so] (7 samples, 0.64%)</title><rect x="1101.9" y="789" width="7.5" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1104.88" y="799.5" ></text>
</g>
<g >
<title>schedule_timeout (30 samples, 2.73%)</title><rect x="100.3" y="1157" width="32.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="103.27" y="1167.5" >sc..</text>
</g>
<g >
<title>Java_java_net_SocketOutputStream_socketWrite0 (1 samples, 0.09%)</title><rect x="860.1" y="757" width="1.0" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="863.07" y="767.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (13 samples, 1.18%)</title><rect x="1017.0" y="949" width="13.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1019.98" y="959.5" ></text>
</g>
<g >
<title>sun/nio/cs/UTF_8$Encoder:::encode (1 samples, 0.09%)</title><rect x="406.6" y="901" width="1.0" height="15.0" fill="rgb(88,235,88)" rx="2" ry="2" />
<text x="409.56" y="911.5" ></text>
</g>
<g >
<title>java/net/SocketOutputStream:::socketWrite0 (1 samples, 0.09%)</title><rect x="860.1" y="773" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="863.07" y="783.5" ></text>
</g>
<g >
<title>__check_block_validity.constprop.0 (1 samples, 0.09%)</title><rect x="11.1" y="1045" width="1.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="14.07" y="1055.5" ></text>
</g>
<g >
<title>java/text/DateFormatSymbols:::initializeData (1 samples, 0.09%)</title><rect x="488.2" y="773" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="491.23" y="783.5" ></text>
</g>
<g >
<title>JVM_DoPrivileged (26 samples, 2.37%)</title><rect x="635.5" y="853" width="27.9" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="638.46" y="863.5" >J..</text>
</g>
<g >
<title>org/apache/http/impl/conn/DefaultClientConnection:::close (1 samples, 0.09%)</title><rect x="559.2" y="885" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="562.16" y="895.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::rewriteRequestURI (3 samples, 0.27%)</title><rect x="1075.0" y="933" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1078.01" y="943.5" ></text>
</g>
<g >
<title>Java_java_net_SocketInputStream_socketRead0 (1 samples, 0.09%)</title><rect x="878.3" y="773" width="1.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="881.34" y="783.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/PoolingDataSource$PoolGuardConnectionWrapper:::prepareStatement (1 samples, 0.09%)</title><rect x="881.6" y="917" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="884.57" y="927.5" ></text>
</g>
<g >
<title>org/dspace/content/Community:::getParentCommunity (12 samples, 1.09%)</title><rect x="753.7" y="965" width="12.9" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="756.68" y="975.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core (2 samples, 0.18%)</title><rect x="233.5" y="869" width="2.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="236.53" y="879.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::getColumnNames (1 samples, 0.09%)</title><rect x="762.3" y="933" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="765.28" y="943.5" ></text>
</g>
<g >
<title>tcp_send_ack (1 samples, 0.09%)</title><rect x="134.7" y="1173" width="1.0" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="137.66" y="1183.5" ></text>
</g>
<g >
<title>[libjvm.so] (747 samples, 68.03%)</title><rect x="372.2" y="1269" width="802.8" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="375.17" y="1279.5" >[libjvm.so]</text>
</g>
<g >
<title>java/text/DateFormat:::format (2 samples, 0.18%)</title><rect x="487.2" y="837" width="2.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="490.16" y="847.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="877.3" y="853" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="880.27" y="863.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::findByUnique (1 samples, 0.09%)</title><rect x="1129.8" y="981" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1132.82" y="991.5" ></text>
</g>
<g >
<title>org/dspace/util/MultiFormatDateParser:::parse (1 samples, 0.09%)</title><rect x="1042.8" y="965" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1045.77" y="975.5" ></text>
</g>
<g >
<title>netif_skb_features (1 samples, 0.09%)</title><rect x="343.2" y="949" width="1.0" height="15.0" fill="rgb(246,117,117)" rx="2" ry="2" />
<text x="346.15" y="959.5" ></text>
</g>
<g >
<title>acpi_hw_read (1 samples, 0.09%)</title><rect x="132.5" y="965" width="1.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="135.51" y="975.5" ></text>
</g>
<g >
<title>Interpreter (1 samples, 0.09%)</title><rect x="1122.3" y="901" width="1.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="1125.30" y="911.5" ></text>
</g>
<g >
<title>call_stub (3 samples, 0.27%)</title><rect x="543.0" y="725" width="3.3" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="546.04" y="735.5" ></text>
</g>
<g >
<title>java/lang/String:::toLowerCase (1 samples, 0.09%)</title><rect x="792.4" y="901" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="795.37" y="911.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::processResults (4 samples, 0.36%)</title><rect x="1035.2" y="853" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1038.25" y="863.5" ></text>
</g>
<g >
<title>org/apache/log4j/Category:::callAppenders (10 samples, 0.91%)</title><rect x="409.8" y="901" width="10.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="412.78" y="911.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="1090.1" y="901" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1093.05" y="911.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::executeMethod (63 samples, 5.74%)</title><rect x="1058.9" y="981" width="67.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1061.89" y="991.5" >org/apa..</text>
</g>
<g >
<title>psi_task_change (4 samples, 0.36%)</title><rect x="109.9" y="1093" width="4.3" height="15.0" fill="rgb(238,105,105)" rx="2" ry="2" />
<text x="112.95" y="1103.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRow:::resetChanged (1 samples, 0.09%)</title><rect x="819.2" y="917" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="822.23" y="927.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (1 samples, 0.09%)</title><rect x="1111.5" y="693" width="1.1" height="15.0" fill="rgb(233,99,99)" rx="2" ry="2" />
<text x="1114.55" y="703.5" ></text>
</g>
<g >
<title>ip_rcv_finish (1 samples, 0.09%)</title><rect x="1078.2" y="325" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="1081.23" y="335.5" ></text>
</g>
<g >
<title>eth_type_trans (1 samples, 0.09%)</title><rect x="339.9" y="933" width="1.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="342.93" y="943.5" ></text>
</g>
<g >
<title>acpi_irq (1 samples, 0.09%)</title><rect x="790.2" y="693" width="1.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="793.22" y="703.5" ></text>
</g>
<g >
<title>org/dspace/content/DSpaceObject:::getMetadata (1 samples, 0.09%)</title><rect x="567.8" y="949" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="570.76" y="959.5" ></text>
</g>
<g >
<title>java/lang/Throwable:::getStackTraceElement (5 samples, 0.46%)</title><rect x="415.2" y="805" width="5.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="418.15" y="815.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.27%)</title><rect x="1106.2" y="645" width="3.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1109.17" y="655.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/DefaultRequestDirector:::tryExecute (4 samples, 0.36%)</title><rect x="536.6" y="885" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="539.59" y="895.5" ></text>
</g>
<g >
<title>_register_finalizer_Java (3 samples, 0.27%)</title><rect x="1017.0" y="933" width="3.2" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="1019.98" y="943.5" ></text>
</g>
<g >
<title>Java_java_net_SocketInputStream_socketRead0 (1 samples, 0.09%)</title><rect x="1168.5" y="885" width="1.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="1171.51" y="895.5" ></text>
</g>
<g >
<title>crypt_endio (1 samples, 0.09%)</title><rect x="137.9" y="997" width="1.1" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="140.89" y="1007.5" ></text>
</g>
<g >
<title>org/apache/http/entity/mime/content/StringBody:::writeTo (11 samples, 1.00%)</title><rect x="447.4" y="837" width="11.8" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="450.40" y="847.5" ></text>
</g>
<g >
<title>ip_output (110 samples, 10.02%)</title><rect x="227.1" y="1061" width="118.2" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="230.09" y="1071.5" >ip_output</text>
</g>
<g >
<title>java/net/SocketInputStream:::read (1 samples, 0.09%)</title><rect x="740.8" y="773" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="743.78" y="783.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (1 samples, 0.09%)</title><rect x="436.6" y="757" width="1.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="439.65" y="767.5" ></text>
</g>
<g >
<title>org/apache/solr/common/util/JavaBinCodec:::readSolrDocumentList (1 samples, 0.09%)</title><rect x="1125.5" y="933" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1128.52" y="943.5" ></text>
</g>
<g >
<title>__remove_hrtimer (1 samples, 0.09%)</title><rect x="709.6" y="789" width="1.1" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="712.62" y="799.5" ></text>
</g>
<g >
<title>java/text/SimpleDateFormat:::parse (1 samples, 0.09%)</title><rect x="1042.8" y="949" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1045.77" y="959.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (1 samples, 0.09%)</title><rect x="371.1" y="1317" width="1.1" height="15.0" fill="rgb(237,104,104)" rx="2" ry="2" />
<text x="374.09" y="1327.5" ></text>
</g>
<g >
<title>tcp_mstamp_refresh (1 samples, 0.09%)</title><rect x="135.7" y="1173" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="138.74" y="1183.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeWithFlags (1 samples, 0.09%)</title><rect x="827.8" y="853" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="830.83" y="863.5" ></text>
</g>
<g >
<title>org/apache/http/impl/io/AbstractSessionOutputBuffer:::write (2 samples, 0.18%)</title><rect x="457.1" y="821" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="460.07" y="831.5" ></text>
</g>
<g >
<title>__ip_local_out (23 samples, 2.09%)</title><rect x="202.4" y="1061" width="24.7" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="205.37" y="1071.5" >_..</text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (2 samples, 0.18%)</title><rect x="1024.5" y="805" width="2.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1027.50" y="815.5" ></text>
</g>
<g >
<title>do_syscall_64 (61 samples, 5.56%)</title><rect x="13.2" y="1269" width="65.6" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="16.22" y="1279.5" >do_sysc..</text>
</g>
<g >
<title>_raw_spin_lock (1 samples, 0.09%)</title><rect x="231.4" y="917" width="1.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="234.38" y="927.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.09%)</title><rect x="709.6" y="837" width="1.1" height="15.0" fill="rgb(230,94,94)" rx="2" ry="2" />
<text x="712.62" y="847.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingStatement:::close (1 samples, 0.09%)</title><rect x="1147.0" y="949" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1150.01" y="959.5" ></text>
</g>
<g >
<title>Java_java_net_SocketInputStream_socketRead0 (1 samples, 0.09%)</title><rect x="821.4" y="773" width="1.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="824.38" y="783.5" ></text>
</g>
<g >
<title>__sched_text_start (2 samples, 0.18%)</title><rect x="1110.5" y="725" width="2.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="1113.47" y="735.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::getColumnNames (1 samples, 0.09%)</title><rect x="862.2" y="885" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="865.22" y="895.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.09%)</title><rect x="735.4" y="725" width="1.1" height="15.0" fill="rgb(232,96,96)" rx="2" ry="2" />
<text x="738.41" y="735.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::execute (3 samples, 0.27%)</title><rect x="884.8" y="853" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="887.79" y="863.5" ></text>
</g>
<g >
<title>[libjvm.so] (2 samples, 0.18%)</title><rect x="540.9" y="805" width="2.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="543.89" y="815.5" ></text>
</g>
<g >
<title>java/util/HashMap:::get (1 samples, 0.09%)</title><rect x="1149.2" y="933" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1152.16" y="943.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (1 samples, 0.09%)</title><rect x="1078.2" y="245" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="1081.23" y="255.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="755.8" y="869" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="758.83" y="879.5" ></text>
</g>
<g >
<title>intel_tfa_pmu_enable_all (1 samples, 0.09%)</title><rect x="436.6" y="629" width="1.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="439.65" y="639.5" ></text>
</g>
<g >
<title>org/dspace/servicemanager/config/DSpaceConfigurationService:::getProperty (1 samples, 0.09%)</title><rect x="1015.9" y="965" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1018.90" y="975.5" ></text>
</g>
<g >
<title>__sched_text_start (1 samples, 0.09%)</title><rect x="696.7" y="789" width="1.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="699.72" y="799.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/PoolablePreparedStatement:::close (1 samples, 0.09%)</title><rect x="745.1" y="885" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="748.08" y="895.5" ></text>
</g>
<g >
<title>__vsnprintf_internal (1 samples, 0.09%)</title><rect x="12.1" y="1301" width="1.1" height="15.0" fill="rgb(229,92,92)" rx="2" ry="2" />
<text x="15.15" y="1311.5" ></text>
</g>
<g >
<title>org/dspace/content/Item:::getCollections (6 samples, 0.55%)</title><rect x="876.2" y="949" width="6.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="879.19" y="959.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::execute (1 samples, 0.09%)</title><rect x="827.8" y="837" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="830.83" y="847.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$BmpCharProperty:::match (7 samples, 0.64%)</title><rect x="710.7" y="853" width="7.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="713.69" y="863.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match (2 samples, 0.18%)</title><rect x="918.1" y="581" width="2.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="921.11" y="591.5" ></text>
</g>
<g >
<title>process_backlog (1 samples, 0.09%)</title><rect x="333.5" y="933" width="1.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="336.48" y="943.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (1 samples, 0.09%)</title><rect x="873.0" y="885" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="875.97" y="895.5" ></text>
</g>
<g >
<title>vtable stub (1 samples, 0.09%)</title><rect x="719.3" y="853" width="1.1" height="15.0" fill="rgb(231,96,96)" rx="2" ry="2" />
<text x="722.29" y="863.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::study (4 samples, 0.36%)</title><rect x="920.3" y="789" width="4.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="923.26" y="799.5" ></text>
</g>
<g >
<title>tcp_cleanup_rbuf (2 samples, 0.18%)</title><rect x="133.6" y="1189" width="2.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="136.59" y="1199.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendOneQuery (1 samples, 0.09%)</title><rect x="790.2" y="821" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="793.22" y="831.5" ></text>
</g>
<g >
<title>java/lang/StringBuilder:::toString (1 samples, 0.09%)</title><rect x="586.0" y="965" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="589.03" y="975.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::findByUnique (2 samples, 0.18%)</title><rect x="421.6" y="901" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="424.60" y="911.5" ></text>
</g>
<g >
<title>[libjvm.so] (4 samples, 0.36%)</title><rect x="1185.7" y="1237" width="4.3" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1188.70" y="1247.5" ></text>
</g>
<g >
<title>kfree_skbmem (2 samples, 0.18%)</title><rect x="92.8" y="1173" width="2.1" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="95.75" y="1183.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::clearParameters (1 samples, 0.09%)</title><rect x="869.7" y="917" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="872.74" y="927.5" ></text>
</g>
<g >
<title>check_preempt_curr (2 samples, 0.18%)</title><rect x="271.1" y="597" width="2.2" height="15.0" fill="rgb(227,90,90)" rx="2" ry="2" />
<text x="274.15" y="607.5" ></text>
</g>
<g >
<title>[libnet.so] (1 samples, 0.09%)</title><rect x="553.8" y="837" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="556.79" y="847.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match0 (3 samples, 0.27%)</title><rect x="847.2" y="885" width="3.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="850.18" y="895.5" ></text>
</g>
<g >
<title>ext4_dirty_inode (1 samples, 0.09%)</title><rect x="1139.5" y="645" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="1142.49" y="655.5" ></text>
</g>
<g >
<title>sk_stream_alloc_skb (16 samples, 1.46%)</title><rect x="174.4" y="1173" width="17.2" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="177.43" y="1183.5" ></text>
</g>
<g >
<title>ip_local_deliver (1 samples, 0.09%)</title><rect x="1078.2" y="309" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="1081.23" y="319.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Curly:::match (3 samples, 0.27%)</title><rect x="715.0" y="789" width="3.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="717.99" y="799.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1 samples, 0.09%)</title><rect x="177.7" y="1077" width="1.0" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="180.65" y="1087.5" ></text>
</g>
<g >
<title>rb_insert_color (1 samples, 0.09%)</title><rect x="366.8" y="1189" width="1.1" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="369.79" y="1199.5" ></text>
</g>
<g >
<title>org/apache/http/client/protocol/RequestAuthenticationBase:::process (1 samples, 0.09%)</title><rect x="557.0" y="853" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="560.01" y="863.5" ></text>
</g>
<g >
<title>java/lang/StringBuilder:::append (3 samples, 0.27%)</title><rect x="582.8" y="965" width="3.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="585.81" y="975.5" ></text>
</g>
<g >
<title>nf_nat_ipv4_fn (1 samples, 0.09%)</title><rect x="220.6" y="1013" width="1.1" height="15.0" fill="rgb(242,112,112)" rx="2" ry="2" />
<text x="223.64" y="1023.5" ></text>
</g>
<g >
<title>tcp_write_xmit (153 samples, 13.93%)</title><rect x="192.7" y="1141" width="164.4" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="195.70" y="1151.5" >tcp_write_xmit</text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendBind (1 samples, 0.09%)</title><rect x="867.6" y="821" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="870.60" y="831.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::read (4 samples, 0.36%)</title><rect x="853.6" y="773" width="4.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="856.62" y="783.5" ></text>
</g>
<g >
<title>_register_finalizer_Java (1 samples, 0.09%)</title><rect x="810.6" y="885" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="813.64" y="895.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeQuery (2 samples, 0.18%)</title><rect x="1157.8" y="917" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1160.76" y="927.5" ></text>
</g>
<g >
<title>call_stub (1 samples, 0.09%)</title><rect x="755.8" y="821" width="1.1" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="758.83" y="831.5" ></text>
</g>
<g >
<title>org/dspace/app/util/DailyFileAppender:::subAppend (7 samples, 0.64%)</title><rect x="1134.1" y="965" width="7.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1137.12" y="975.5" ></text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeWithFlags (4 samples, 0.36%)</title><rect x="820.3" y="853" width="4.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="823.31" y="863.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="1165.3" y="949" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1168.28" y="959.5" ></text>
</g>
<g >
<title>rcu_report_qs_rnp (1 samples, 0.09%)</title><rect x="964.3" y="805" width="1.1" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="967.32" y="815.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::processResults (2 samples, 0.18%)</title><rect x="812.8" y="789" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="815.79" y="799.5" ></text>
</g>
<g >
<title>org/apache/http/impl/client/RequestWrapper:::resetHeaders (1 samples, 0.09%)</title><rect x="1089.0" y="933" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1091.98" y="943.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendBind (2 samples, 0.18%)</title><rect x="749.4" y="821" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="752.38" y="831.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern:::atom (2 samples, 0.18%)</title><rect x="926.7" y="757" width="2.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="929.70" y="767.5" ></text>
</g>
<g >
<title>java/lang/String:::toLowerCase (1 samples, 0.09%)</title><rect x="407.6" y="917" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="410.63" y="927.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Ques:::match (2 samples, 0.18%)</title><rect x="918.1" y="597" width="2.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="921.11" y="607.5" ></text>
</g>
<g >
<title>org/postgresql/core/PGStream:::Receive (1 samples, 0.09%)</title><rect x="857.9" y="773" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="860.92" y="783.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRowIterator:::hasNext (2 samples, 0.18%)</title><rect x="870.8" y="949" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="873.82" y="959.5" ></text>
</g>
<g >
<title>__fget (1 samples, 0.09%)</title><rect x="363.6" y="1205" width="1.0" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="366.57" y="1215.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::loadParameters (1 samples, 0.09%)</title><rect x="805.3" y="901" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="808.26" y="911.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="1068.6" y="869" width="1.0" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1071.56" y="879.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::findByUnique (9 samples, 0.82%)</title><rect x="1144.9" y="965" width="9.6" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1147.86" y="975.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (2 samples, 0.18%)</title><rect x="421.6" y="885" width="2.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="424.60" y="895.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::query (5 samples, 0.46%)</title><rect x="830.0" y="949" width="5.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="832.98" y="959.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$BmpCharProperty:::match (2 samples, 0.18%)</title><rect x="720.4" y="869" width="2.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="723.36" y="879.5" ></text>
</g>
<g >
<title>org/postgresql/core/PGStream:::ReceiveTupleV3 (1 samples, 0.09%)</title><rect x="736.5" y="789" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="739.48" y="799.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (3 samples, 0.27%)</title><rect x="569.9" y="933" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="572.91" y="943.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (2 samples, 0.18%)</title><rect x="855.8" y="757" width="2.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="858.77" y="767.5" ></text>
</g>
<g >
<title>org/apache/log4j/WriterAppender:::subAppend (5 samples, 0.46%)</title><rect x="1136.3" y="949" width="5.3" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1139.27" y="959.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/request/ContentStreamUpdateRequest:::getContentStreams (1 samples, 0.09%)</title><rect x="560.2" y="949" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="563.24" y="959.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/annotation/RequiredAnnotationBeanPostProcessor:::postProcessPropertyValues (1 samples, 0.09%)</title><rect x="898.8" y="885" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="901.76" y="895.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (9 samples, 0.82%)</title><rect x="1020.2" y="933" width="9.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1023.20" y="943.5" ></text>
</g>
<g >
<title>__sk_dst_check (1 samples, 0.09%)</title><rect x="201.3" y="1077" width="1.1" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="204.29" y="1087.5" ></text>
</g>
<g >
<title>java/net/SocketOutputStream:::socketWrite0 (1 samples, 0.09%)</title><rect x="1170.7" y="917" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1173.66" y="927.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (3 samples, 0.27%)</title><rect x="735.4" y="869" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="738.41" y="879.5" ></text>
</g>
<g >
<title>tcp_send_mss (4 samples, 0.36%)</title><rect x="357.1" y="1173" width="4.3" height="15.0" fill="rgb(240,108,108)" rx="2" ry="2" />
<text x="360.12" y="1183.5" ></text>
</g>
<g >
<title>acpi_ev_sci_xrupt_handler (1 samples, 0.09%)</title><rect x="421.6" y="597" width="1.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="424.60" y="607.5" ></text>
</g>
<g >
<title>rb_first (1 samples, 0.09%)</title><rect x="353.9" y="1109" width="1.1" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="356.90" y="1119.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/TableRowIterator:::hasNext (1 samples, 0.09%)</title><rect x="739.7" y="917" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="742.71" y="927.5" ></text>
</g>
<g >
<title>Interpreter (747 samples, 68.03%)</title><rect x="372.2" y="1029" width="802.8" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="375.17" y="1039.5" >Interpreter</text>
</g>
<g >
<title>java/lang/String:::toLowerCase (1 samples, 0.09%)</title><rect x="1033.1" y="949" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1036.10" y="959.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingStatement:::close (1 samples, 0.09%)</title><rect x="745.1" y="917" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="748.08" y="927.5" ></text>
</g>
<g >
<title>__inet_stream_connect (1 samples, 0.09%)</title><rect x="1078.2" y="661" width="1.1" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="1081.23" y="671.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::queryTable (5 samples, 0.46%)</title><rect x="1154.5" y="981" width="5.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1157.54" y="991.5" ></text>
</g>
<g >
<title>jshort_disjoint_arraycopy (1 samples, 0.09%)</title><rect x="801.0" y="933" width="1.0" height="15.0" fill="rgb(231,95,95)" rx="2" ry="2" />
<text x="803.97" y="943.5" ></text>
</g>
<g >
<title>handle_irq_event_percpu (1 samples, 0.09%)</title><rect x="132.5" y="1061" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="135.51" y="1071.5" ></text>
</g>
<g >
<title>memcg_kmem_put_cache (1 samples, 0.09%)</title><rect x="178.7" y="1125" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="181.72" y="1135.5" ></text>
</g>
<g >
<title>java/net/SocketInputStream:::socketRead0 (1 samples, 0.09%)</title><rect x="1157.8" y="837" width="1.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1160.76" y="847.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (3 samples, 0.27%)</title><rect x="1109.4" y="757" width="3.2" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="1112.40" y="767.5" ></text>
</g>
<g >
<title>java/util/AbstractCollection:::addAll (1 samples, 0.09%)</title><rect x="633.3" y="885" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="636.32" y="895.5" ></text>
</g>
<g >
<title>dequeue_task_fair (1 samples, 0.09%)</title><rect x="114.2" y="1109" width="1.1" height="15.0" fill="rgb(248,120,120)" rx="2" ry="2" />
<text x="117.24" y="1119.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingResultSet:::getInt (1 samples, 0.09%)</title><rect x="866.5" y="933" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="869.52" y="943.5" ></text>
</g>
<g >
<title>sched_clock (1 samples, 0.09%)</title><rect x="964.3" y="693" width="1.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="967.32" y="703.5" ></text>
</g>
<g >
<title>bbr_main (4 samples, 0.36%)</title><rect x="277.6" y="725" width="4.3" height="15.0" fill="rgb(222,83,83)" rx="2" ry="2" />
<text x="280.60" y="735.5" ></text>
</g>
<g >
<title>__entry_text_start (5 samples, 0.46%)</title><rect x="142.2" y="1301" width="5.4" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="145.19" y="1311.5" ></text>
</g>
<g >
<title>Java_java_lang_Class_forName0 (2 samples, 0.18%)</title><rect x="723.6" y="901" width="2.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="726.59" y="911.5" ></text>
</g>
<g >
<title>[libjvm.so] (3 samples, 0.27%)</title><rect x="1017.0" y="901" width="3.2" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="1019.98" y="911.5" ></text>
</g>
<g >
<title>java/lang/Throwable:::printStackTrace (6 samples, 0.55%)</title><rect x="414.1" y="821" width="6.4" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="417.08" y="831.5" ></text>
</g>
<g >
<title>ip_output (1 samples, 0.09%)</title><rect x="1078.2" y="533" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="1081.23" y="543.5" ></text>
</g>
<g >
<title>Interpreter (1 samples, 0.09%)</title><rect x="1078.2" y="853" width="1.1" height="15.0" fill="rgb(243,112,112)" rx="2" ry="2" />
<text x="1081.23" y="863.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::process (3 samples, 0.27%)</title><rect x="1148.1" y="949" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1151.09" y="959.5" ></text>
</g>
<g >
<title>java/io/FileOutputStream:::writeBytes (3 samples, 0.27%)</title><rect x="1137.3" y="917" width="3.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1140.34" y="927.5" ></text>
</g>
<g >
<title>perf_swevent_add (1 samples, 0.09%)</title><rect x="1111.5" y="581" width="1.1" height="15.0" fill="rgb(244,114,114)" rx="2" ry="2" />
<text x="1114.55" y="591.5" ></text>
</g>
<g >
<title>intel_tfa_pmu_enable_all (5 samples, 0.46%)</title><rect x="548.4" y="597" width="5.4" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="551.42" y="607.5" ></text>
</g>
<g >
<title>Java_java_net_SocketInputStream_socketRead0 (1 samples, 0.09%)</title><rect x="1083.6" y="869" width="1.1" height="15.0" fill="rgb(228,91,91)" rx="2" ry="2" />
<text x="1086.61" y="879.5" ></text>
</g>
<g >
<title>com/atmire/dspace/discovery/AtmireSolrService:::writeDocument (175 samples, 15.94%)</title><rect x="379.7" y="965" width="188.1" height="15.0" fill="rgb(89,235,89)" rx="2" ry="2" />
<text x="382.69" y="975.5" >com/atmire/dspace/discov..</text>
</g>
<g >
<title>kfree_skbmem (1 samples, 0.09%)</title><rect x="284.0" y="693" width="1.1" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="287.04" y="703.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern:::group0 (6 samples, 0.55%)</title><rect x="925.6" y="789" width="6.5" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="928.63" y="799.5" ></text>
</g>
<g >
<title>java/lang/ref/Finalizer:::register (1 samples, 0.09%)</title><rect x="755.8" y="805" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="758.83" y="815.5" ></text>
</g>
<g >
<title>org/apache/http/message/BasicHeaderValueParser:::parseNameValuePair (1 samples, 0.09%)</title><rect x="1077.2" y="901" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1080.16" y="911.5" ></text>
</g>
<g >
<title>nft_do_chain_inet (1 samples, 0.09%)</title><rect x="1121.2" y="613" width="1.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="1124.22" y="623.5" ></text>
</g>
<g >
<title>end_bio_bh_io_sync (1 samples, 0.09%)</title><rect x="137.9" y="853" width="1.1" height="15.0" fill="rgb(250,122,122)" rx="2" ry="2" />
<text x="140.89" y="863.5" ></text>
</g>
<g >
<title>java/lang/String:::split (2 samples, 0.18%)</title><rect x="578.5" y="949" width="2.2" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="581.51" y="959.5" ></text>
</g>
<g >
<title>org/dspace/servicemanager/config/DSpaceConfigurationService:::getPropertyAsType (95 samples, 8.65%)</title><rect x="621.5" y="949" width="102.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="624.49" y="959.5" >org/dspace/s..</text>
</g>
<g >
<title>org/springframework/beans/propertyeditors/CustomMapEditor:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="625.8" y="901" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="628.79" y="911.5" ></text>
</g>
<g >
<title>visit_groups_merge (1 samples, 0.09%)</title><rect x="1111.5" y="645" width="1.1" height="15.0" fill="rgb(227,89,89)" rx="2" ry="2" />
<text x="1114.55" y="655.5" ></text>
</g>
<g >
<title>org/postgresql/core/PGStream:::Receive (1 samples, 0.09%)</title><rect x="1158.8" y="837" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1161.83" y="847.5" ></text>
</g>
<g >
<title>nft_ct_get_eval (1 samples, 0.09%)</title><rect x="294.8" y="789" width="1.1" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="297.79" y="799.5" ></text>
</g>
<g >
<title>org/dspace/storage/rdbms/DatabaseManager:::getColumnNames (1 samples, 0.09%)</title><rect x="751.5" y="933" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="754.53" y="943.5" ></text>
</g>
<g >
<title>acpi_ev_gpe_detect (1 samples, 0.09%)</title><rect x="132.5" y="997" width="1.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="135.51" y="1007.5" ></text>
</g>
<g >
<title>java/io/FileOutputStream:::write (3 samples, 0.27%)</title><rect x="1137.3" y="933" width="3.3" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="1140.34" y="943.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (12 samples, 1.09%)</title><rect x="117.5" y="1029" width="12.9" height="15.0" fill="rgb(230,93,93)" rx="2" ry="2" />
<text x="120.47" y="1039.5" ></text>
</g>
<g >
<title>ext4_getblk (1 samples, 0.09%)</title><rect x="11.1" y="1077" width="1.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="14.07" y="1087.5" ></text>
</g>
<g >
<title>java/util/ArrayList$SubList$1:::hasNext (1 samples, 0.09%)</title><rect x="913.8" y="821" width="1.1" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="916.81" y="831.5" ></text>
</g>
<g >
<title>org/apache/solr/common/util/JavaBinCodec:::readVal (1 samples, 0.09%)</title><rect x="1125.5" y="949" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1128.52" y="959.5" ></text>
</g>
<g >
<title>x86_pmu_enable (1 samples, 0.09%)</title><rect x="436.6" y="645" width="1.1" height="15.0" fill="rgb(249,121,121)" rx="2" ry="2" />
<text x="439.65" y="655.5" ></text>
</g>
<g >
<title>[libjvm.so] (1 samples, 0.09%)</title><rect x="810.6" y="853" width="1.1" height="15.0" fill="rgb(235,101,101)" rx="2" ry="2" />
<text x="813.64" y="863.5" ></text>
</g>
<g >
<title>strncpy (3 samples, 0.27%)</title><rect x="327.0" y="805" width="3.3" height="15.0" fill="rgb(233,98,98)" rx="2" ry="2" />
<text x="330.03" y="815.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::execute (3 samples, 0.27%)</title><rect x="735.4" y="821" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="738.41" y="831.5" ></text>
</g>
<g >
<title>skb_release_all (1 samples, 0.09%)</title><rect x="285.1" y="693" width="1.1" height="15.0" fill="rgb(234,99,99)" rx="2" ry="2" />
<text x="288.12" y="703.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::processResults (5 samples, 0.46%)</title><rect x="853.6" y="789" width="5.4" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="856.62" y="799.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendBind (1 samples, 0.09%)</title><rect x="1027.7" y="821" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1030.72" y="831.5" ></text>
</g>
<g >
<title>memcmp (1 samples, 0.09%)</title><rect x="323.8" y="805" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="326.81" y="815.5" ></text>
</g>
<g >
<title>file_update_time (2 samples, 0.18%)</title><rect x="409.8" y="613" width="2.1" height="15.0" fill="rgb(243,113,113)" rx="2" ry="2" />
<text x="412.78" y="623.5" ></text>
</g>
<g >
<title>org/apache/solr/client/solrj/impl/HttpSolrServer:::executeMethod (27 samples, 2.46%)</title><rect x="531.2" y="933" width="29.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="534.22" y="943.5" >or..</text>
</g>
<g >
<title>org/dspace/discovery/SearchUtils:::getAllDiscoveryConfigurations (7 samples, 0.64%)</title><rect x="875.1" y="965" width="7.5" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="878.12" y="975.5" ></text>
</g>
<g >
<title>org/apache/http/impl/conn/ManagedClientConnectionImpl:::receiveResponseEntity (3 samples, 0.27%)</title><rect x="1084.7" y="901" width="3.2" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1087.68" y="911.5" ></text>
</g>
<g >
<title>org/apache/commons/dbcp/DelegatingPreparedStatement:::executeQuery (2 samples, 0.18%)</title><rect x="1157.8" y="949" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1160.76" y="959.5" ></text>
</g>
<g >
<title>rb_next (1 samples, 0.09%)</title><rect x="709.6" y="773" width="1.1" height="15.0" fill="rgb(226,89,89)" rx="2" ry="2" />
<text x="712.62" y="783.5" ></text>
</g>
<g >
<title>__x64_sys_shutdown (1 samples, 0.09%)</title><rect x="1121.2" y="821" width="1.1" height="15.0" fill="rgb(236,103,103)" rx="2" ry="2" />
<text x="1124.22" y="831.5" ></text>
</g>
<g >
<title>ret_from_intr (1 samples, 0.09%)</title><rect x="790.2" y="789" width="1.1" height="15.0" fill="rgb(238,106,106)" rx="2" ry="2" />
<text x="793.22" y="799.5" ></text>
</g>
<g >
<title>java/security/AccessController:::doPrivileged (27 samples, 2.46%)</title><rect x="635.5" y="869" width="29.0" height="15.0" fill="rgb(77,224,77)" rx="2" ry="2" />
<text x="638.46" y="879.5" >ja..</text>
</g>
<g >
<title>update_rq_clock (1 samples, 0.09%)</title><rect x="964.3" y="709" width="1.1" height="15.0" fill="rgb(236,102,102)" rx="2" ry="2" />
<text x="967.32" y="719.5" ></text>
</g>
<g >
<title>wait_woken (31 samples, 2.82%)</title><rect x="99.2" y="1173" width="33.3" height="15.0" fill="rgb(219,79,79)" rx="2" ry="2" />
<text x="102.20" y="1183.5" >wa..</text>
</g>
<g >
<title>org/apache/commons/pool/impl/GenericKeyedObjectPool:::borrowObject (1 samples, 0.09%)</title><rect x="1153.5" y="917" width="1.0" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1156.46" y="927.5" ></text>
</g>
<g >
<title>sched_clock (1 samples, 0.09%)</title><rect x="229.2" y="917" width="1.1" height="15.0" fill="rgb(239,107,107)" rx="2" ry="2" />
<text x="232.23" y="927.5" ></text>
</g>
<g >
<title>handle_fasteoi_irq (1 samples, 0.09%)</title><rect x="132.5" y="1093" width="1.1" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="135.51" y="1103.5" ></text>
</g>
<g >
<title>org/springframework/beans/factory/support/AbstractAutowireCapableBeanFactory:::doCreateBean (36 samples, 3.28%)</title><rect x="896.6" y="901" width="38.7" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="899.61" y="911.5" >org..</text>
</g>
<g >
<title>org/postgresql/jdbc2/AbstractJdbc2Statement:::executeWithFlags (2 samples, 0.18%)</title><rect x="1157.8" y="901" width="2.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1160.76" y="911.5" ></text>
</g>
<g >
<title>JNU_ThrowByName (1 samples, 0.09%)</title><rect x="461.4" y="837" width="1.0" height="15.0" fill="rgb(245,115,115)" rx="2" ry="2" />
<text x="464.37" y="847.5" ></text>
</g>
<g >
<title>org/apache/http/client/methods/HttpPost:::&lt;init&gt; (1 samples, 0.09%)</title><rect x="466.7" y="917" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="469.74" y="927.5" ></text>
</g>
<g >
<title>org/postgresql/core/v3/QueryExecutorImpl:::sendSync (1 samples, 0.09%)</title><rect x="1039.5" y="853" width="1.1" height="15.0" fill="rgb(96,242,96)" rx="2" ry="2" />
<text x="1042.54" y="863.5" ></text>
</g>
<g >
<title>JVM_GetStackTraceElement (5 samples, 0.46%)</title><rect x="415.2" y="789" width="5.3" height="15.0" fill="rgb(232,97,97)" rx="2" ry="2" />
<text x="418.15" y="799.5" ></text>
</g>
<g >
<title>ext4_bread_batch (1 samples, 0.09%)</title><rect x="11.1" y="1093" width="1.0" height="15.0" fill="rgb(234,100,100)" rx="2" ry="2" />
<text x="14.07" y="1103.5" ></text>
</g>
</g>
</svg>