Skip to content

Instantly share code, notes, and snippets.

@gingerwizard
Created May 24, 2021 14:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gingerwizard/e02cfcf8bdba35cc8c7267021db8f06b to your computer and use it in GitHub Desktop.
Save gingerwizard/e02cfcf8bdba35cc8c7267021db8f06b to your computer and use it in GitHub Desktop.
high-load-replica
Display the source blob
Display the rendered blob
Raw
<?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="2460" height="6310" onload="init(evt)" viewBox="0 0 2460 6310" 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="2460.0" height="6310.0" fill="url(#background)" />
<text id="title" x="1230.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="6293" > </text>
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
<text id="search" x="2350.00" y="24" >Search</text>
<text id="ignorecase" x="2434.00" y="24" >ic</text>
<text id="matched" x="2350.00" y="6293" > </text>
<g id="frames">
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.authorizeIndexActionName (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="2853" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="2863.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.field (41 samples, 0.00%; 0.00%)</title><rect x="1712.5" y="4453" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1715.46" y="4463.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.radixSort (66 samples, 0.01%; 0.00%)</title><rect x="1890.5" y="5605" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1893.46" y="5615.5" ></text>
</g>
<g >
<title>java/util/HashMap.putMapEntries (3,975 samples, 0.44%; +0.09%)</title><rect x="1389.6" y="5637" width="10.8" height="15.0" fill="rgb(255,203,203)" rx="2" ry="2" />
<text x="1392.63" y="5647.5" ></text>
</g>
<g >
<title>alloc_pages_current (44 samples, 0.00%; 0.00%)</title><rect x="2171.6" y="5525" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2174.59" y="5535.5" ></text>
</g>
<g >
<title>org/elasticsearch/bootstrap/ESPolicy.implies (62 samples, 0.01%; 0.00%)</title><rect x="1715.4" y="4485" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1718.44" y="4495.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ConditionalProcessor.execute (7,658 samples, 0.85%; +0.00%)</title><rect x="1722.6" y="4437" width="20.7" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1725.59" y="4447.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/geoip/DatabaseReaderLazyLoader.getResponse (746 samples, 0.08%; 0.00%)</title><rect x="1718.2" y="4965" width="2.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1721.22" y="4975.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamOutput.writeInt (140 samples, 0.02%; +0.00%)</title><rect x="1106.0" y="5941" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1108.97" y="5951.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeFormatterBuilder$NumberPrinterParser.parse (40 samples, 0.00%; +0.00%)</title><rect x="1752.6" y="4965" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1755.65" y="4975.5" ></text>
</g>
<g >
<title>java/util/HashMap.getNode (37 samples, 0.00%; +0.00%)</title><rect x="1722.1" y="5445" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1725.13" y="5455.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/OutputStreamIndexOutput.writeByte (6,704 samples, 0.74%; 0.00%)</title><rect x="2287.2" y="5909" width="18.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2290.17" y="5919.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/NotifyOnceListener.onResponse (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="1749" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="1759.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/TransportReplicationAction$AsyncReplicaAction$$Lambda$5808.0x000000080199de80.accept (128 samples, 0.01%; 0.00%)</title><rect x="508.2" y="5877" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="511.22" y="5887.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/UnicodeUtil.UTF16toUTF8 (145 samples, 0.02%; +0.00%)</title><rect x="1209.1" y="5717" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1212.06" y="5727.5" ></text>
</g>
<g >
<title>jbd2_journal_stop (55 samples, 0.01%; +0.00%)</title><rect x="514.1" y="5541" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="517.14" y="5551.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.computeCommonPrefixLengthAndBuildHistogram (213 samples, 0.02%; +0.00%)</title><rect x="1862.0" y="5685" width="0.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1865.01" y="5695.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.getBucket (49 samples, 0.01%; +0.00%)</title><rect x="1866.3" y="5589" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1869.29" y="5599.5" ></text>
</g>
<g >
<title>sun/nio/fs/UnixNativeDispatcher.unlink (164 samples, 0.02%; 0.00%)</title><rect x="1901.2" y="5909" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1904.19" y="5919.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/util/TextBuffer.buf (124 samples, 0.01%; +0.01%)</title><rect x="1153.4" y="5717" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1156.36" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.notifyListener (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="2277" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="2287.5" ></text>
</g>
<g >
<title>java/lang/invoke/Invokers$Holder.linkToTargetMethod (99 samples, 0.01%; 0.00%)</title><rect x="1772.8" y="5781" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1775.76" y="5791.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8JsonGenerator.writeString (229 samples, 0.03%; +0.01%)</title><rect x="1657.4" y="5141" width="0.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1660.36" y="5151.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/PriorityQueue.updateTop (4,208 samples, 0.47%; +0.00%)</title><rect x="2431.1" y="6021" width="11.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2434.05" y="6031.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$$Lambda$4893.0x00000008017ed008.accept (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="2677" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="2687.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.radixSort (134 samples, 0.01%; -0.00%)</title><rect x="1890.3" y="5685" width="0.4" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1893.29" y="5695.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/AttributeSource.getCurrentState (179 samples, 0.02%; +0.01%)</title><rect x="841.8" y="5749" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="844.78" y="5759.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/bkd/BKDWriter.writeHighCardinalityLeafBlockPackedValues (758 samples, 0.08%; +0.00%)</title><rect x="2202.8" y="6021" width="2.0" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2205.79" y="6031.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.findName (439 samples, 0.05%; -0.07%)</title><rect x="435.8" y="5781" width="1.2" height="15.0" fill="rgb(204,204,255)" rx="2" ry="2" />
<text x="438.77" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.handleIndexActionAuthorizationResult (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="3781" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="3791.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.notifyListener (11,965 samples, 1.33%; 0.00%)</title><rect x="1589.5" y="3509" width="32.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.47" y="3519.5" >or..</text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundHandler.internalSend (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="1941" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="1951.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/DocWriteRequest.writeDocumentRequestThin (165 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="1381" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="1391.5" ></text>
</g>
<g >
<title>unmap_vmas (44 samples, 0.00%; 0.00%)</title><rect x="1848.0" y="5317" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.96" y="5327.5" ></text>
</g>
<g >
<title>java/util/Arrays.compareUnsigned (50 samples, 0.01%; 0.00%)</title><rect x="616.3" y="5589" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="619.34" y="5599.5" ></text>
</g>
<g >
<title>java/util/HashMap.hash (310 samples, 0.03%; 0.00%)</title><rect x="433.0" y="5733" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="435.97" y="5743.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="4245" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="4255.5" ></text>
</g>
<g >
<title>sun/nio/ch/FileDispatcherImpl.write0 (444 samples, 0.05%; +0.00%)</title><rect x="620.3" y="5573" width="1.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="623.27" y="5583.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/DocumentParser.containsDisabledObjectMapper (112 samples, 0.01%; +0.01%)</title><rect x="1201.4" y="5813" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1204.37" y="5823.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/action/filter/SecurityActionFilter$$Lambda$5025.0x00000008016b7bb0.accept (714 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="773" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="783.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/bytes/BytesReferenceStreamInput.readBytes (180 samples, 0.02%; 0.00%)</title><rect x="254.9" y="5269" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="257.92" y="5279.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5976.0x0000000801983068.getAsync (49 samples, 0.01%; 0.00%)</title><rect x="271.6" y="4373" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.57" y="4383.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamInput.readString (38 samples, 0.00%; +0.00%)</title><rect x="251.0" y="5365" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="254.04" y="5375.5" ></text>
</g>
<g >
<title>java/util/stream/ReduceOps$ReduceOp.evaluateSequential (467 samples, 0.05%; 0.00%)</title><rect x="1753.4" y="4997" width="1.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1756.39" y="5007.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/DocumentParser.parseDocument (121,286 samples, 13.44%; +0.01%)</title><rect x="1124.7" y="5957" width="327.9" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1127.72" y="5967.5" >org/elasticsearch/index/mapper/DocumentParse..</text>
</g>
<g >
<title>org/elasticsearch/common/lease/Releasables.close (97 samples, 0.01%; 0.00%)</title><rect x="1103.9" y="5845" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1106.85" y="5855.5" ></text>
</g>
<g >
<title>java/lang/Exception.&lt;init&gt; (345 samples, 0.04%; 0.00%)</title><rect x="1637.7" y="4917" width="0.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1640.70" y="4927.5" ></text>
</g>
<g >
<title>io/netty/buffer/PooledHeapByteBuf.setBytes (81 samples, 0.01%; 0.00%)</title><rect x="226.2" y="5941" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="229.23" y="5951.5" ></text>
</g>
<g >
<title>java/util/HashMap$ValueIterator.next (66 samples, 0.01%; +0.00%)</title><rect x="1727.5" y="3637" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1730.48" y="3647.5" ></text>
</g>
<g >
<title>ext4_evict_inode (93 samples, 0.01%; 0.00%)</title><rect x="1847.7" y="5477" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.66" y="5487.5" ></text>
</g>
<g >
<title>java/util/HashMap.&lt;init&gt; (109 samples, 0.01%; 0.00%)</title><rect x="1721.4" y="5477" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1724.40" y="5487.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Processor.execute (5,662 samples, 0.63%; 0.00%)</title><rect x="1625.5" y="5525" width="15.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.51" y="5535.5" ></text>
</g>
<g >
<title>do_fsync (549 samples, 0.06%; 0.00%)</title><rect x="516.6" y="5765" width="1.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="519.57" y="5775.5" ></text>
</g>
<g >
<title>BacktraceBuilder::push(Method*, int, Thread*) (84 samples, 0.01%; +0.01%)</title><rect x="1642.3" y="5429" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1645.26" y="5439.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/packed/DirectWriter.add (174 samples, 0.02%; 0.00%)</title><rect x="1859.8" y="5701" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1862.76" y="5711.5" ></text>
</g>
<g >
<title>org/apache/lucene/document/LongPoint.&lt;init&gt; (82 samples, 0.01%; 0.00%)</title><rect x="492.7" y="5765" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="495.72" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5977.0x0000000801983290.accept (11,982 samples, 1.33%; 0.00%)</title><rect x="1589.4" y="4373" width="32.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.42" y="4383.5" >or..</text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundHandler$SendContext.get (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="1797" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="1807.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser._parseName (561 samples, 0.06%; 0.00%)</title><rect x="435.8" y="5813" width="1.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="438.77" y="5823.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundHandler$SendContext.get (212 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="869" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="879.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/DataOutput.writeShort (41 samples, 0.00%; 0.00%)</title><rect x="527.3" y="5701" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="530.25" y="5711.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/TokenStream.end (46 samples, 0.01%; 0.00%)</title><rect x="787.7" y="5749" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="790.72" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/rest/action/RestActionListener.onResponse (185 samples, 0.02%; 0.00%)</title><rect x="284.6" y="4981" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="287.57" y="4991.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (1,709 samples, 0.19%; 0.00%)</title><rect x="1535.1" y="5941" width="4.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1538.07" y="5951.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/time/DateFormatter$$Lambda$58.0x0000000800bc8248.apply (75 samples, 0.01%; 0.00%)</title><rect x="1539.2" y="5653" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1542.19" y="5663.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/EsExecutors$DirectExecutorService.execute (486 samples, 0.05%; 0.00%)</title><rect x="274.8" y="2261" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.84" y="2271.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/collect/CopyOnWriteHashMap$InnerNode.get (179 samples, 0.02%; 0.00%)</title><rect x="427.0" y="5845" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="429.96" y="5855.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/CloseableThreadLocal.get (1,035 samples, 0.11%; 0.00%)</title><rect x="1257.3" y="5621" width="2.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1260.29" y="5631.5" ></text>
</g>
<g >
<title>java/util/TreeMap.getEntry (45 samples, 0.00%; +0.00%)</title><rect x="276.0" y="1957" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="279.03" y="1967.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/Analyzer.tokenStream (529 samples, 0.06%; +0.01%)</title><rect x="1153.8" y="5781" width="1.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1156.83" y="5791.5" ></text>
</g>
<g >
<title>itable stub (94 samples, 0.01%; +0.01%)</title><rect x="1731.7" y="3637" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1734.74" y="3647.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5977.0x0000000801983290.accept (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="2677" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="2687.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/lucene/store/FilterIndexOutput.writeBytes (41 samples, 0.00%; 0.00%)</title><rect x="539.0" y="5765" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="541.97" y="5775.5" ></text>
</g>
<g >
<title>java/security/Permissions$1.apply (47 samples, 0.01%; 0.00%)</title><rect x="623.5" y="5781" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="626.54" y="5791.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.getText (399 samples, 0.04%; +0.00%)</title><rect x="1481.8" y="5941" width="1.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1484.81" y="5951.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/DocValuesConsumer$SortedSetDocValuesSub.nextDoc (2,170 samples, 0.24%; -0.00%)</title><rect x="1960.8" y="5973" width="5.9" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1963.81" y="5983.5" ></text>
</g>
<g >
<title>java/security/AccessController.checkPermission (315 samples, 0.03%; 0.00%)</title><rect x="1628.6" y="4229" width="0.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1631.62" y="4239.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (279 samples, 0.03%; 0.00%)</title><rect x="1630.5" y="4469" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.53" y="4479.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/FlushPolicy.onUpdate (55 samples, 0.01%; +0.01%)</title><rect x="623.8" y="5861" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="626.85" y="5871.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/FilterDirectory.fileLength (43 samples, 0.00%; 0.00%)</title><rect x="621.7" y="5781" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="624.70" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (127 samples, 0.01%; 0.00%)</title><rect x="1531.4" y="5573" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1534.44" y="5583.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (2,157 samples, 0.24%; 0.00%)</title><rect x="1625.6" y="4997" width="5.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.56" y="5007.5" ></text>
</g>
<g >
<title>java/io/BufferedOutputStream.write (572 samples, 0.06%; 0.00%)</title><rect x="574.1" y="5605" width="1.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="577.14" y="5615.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestService$$Lambda$6065.0x00000008019e1ac0.accept (167 samples, 0.02%; 0.00%)</title><rect x="1629.5" y="4165" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.47" y="4175.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Pipeline.lambda$execute$0 (167 samples, 0.02%; 0.00%)</title><rect x="1629.5" y="4213" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.47" y="4223.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.setFieldValue (79 samples, 0.01%; 0.00%)</title><rect x="1773.2" y="5877" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1776.21" y="5887.5" ></text>
</g>
<g >
<title>evict (93 samples, 0.01%; 0.00%)</title><rect x="1847.7" y="5493" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.66" y="5503.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene80/IndexedDISI.writeBitSet (566 samples, 0.06%; -0.00%)</title><rect x="1852.7" y="5701" width="1.5" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1855.70" y="5711.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/compressing/CompressingStoredFieldsWriter.finish (42 samples, 0.00%; 0.00%)</title><rect x="1457.1" y="5861" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1460.12" y="5871.5" ></text>
</g>
<g >
<title>vfs_write (61 samples, 0.01%; +0.00%)</title><rect x="2405.7" y="5637" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2408.74" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$$Lambda$4893.0x00000008017ed008.accept (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="3285" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="3295.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.unknownValue (672 samples, 0.07%; +0.00%)</title><rect x="1712.6" y="4453" width="1.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1715.59" y="4463.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/ObjectMapper.getMapper (214 samples, 0.02%; 0.00%)</title><rect x="1216.4" y="5797" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1219.42" y="5807.5" ></text>
</g>
<g >
<title>java/lang/String.split (41 samples, 0.00%; +0.00%)</title><rect x="1430.1" y="5861" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1433.14" y="5871.5" ></text>
</g>
<g >
<title>com/maxmind/geoip2/exception/GeoIp2Exception.&lt;init&gt; (149 samples, 0.02%; 0.00%)</title><rect x="1746.4" y="4549" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1749.35" y="4559.5" ></text>
</g>
<g >
<title>do_syscall_64 (164 samples, 0.02%; 0.00%)</title><rect x="1901.2" y="5845" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1904.19" y="5855.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene84/Lucene84PostingsReader.prefixSum (85 samples, 0.01%; +0.00%)</title><rect x="2372.1" y="5957" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2375.06" y="5967.5" ></text>
</g>
<g >
<title>sun/nio/ch/FileDispatcherImpl.write (298 samples, 0.03%; +0.00%)</title><rect x="1118.4" y="5845" width="0.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1121.42" y="5855.5" ></text>
</g>
<g >
<title>java/lang/StringLatin1.hashCode (732 samples, 0.08%; +0.08%)</title><rect x="1034.0" y="5797" width="2.0" height="15.0" fill="rgb(255,204,204)" rx="2" ry="2" />
<text x="1037.01" y="5807.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/base/ParserBase.getCurrentName (87 samples, 0.01%; +0.01%)</title><rect x="1222.2" y="5765" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1225.23" y="5775.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene80/Lucene80DocValuesConsumer.addTermsDict (230 samples, 0.03%; +0.00%)</title><rect x="1854.5" y="5701" width="0.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1857.49" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5967.0x0000000801981a88.accept (934 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="4133" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.83" y="4143.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/TransportReplicationAction$ReroutePhase.performAction (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="1061" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="1071.5" ></text>
</g>
<g >
<title>org/elasticsearch/grok/GrokCaptureConfig$1$$Lambda$6079.0x00000008018560a0.accept (43 samples, 0.00%; 0.00%)</title><rect x="1784.4" y="5909" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1787.38" y="5919.5" ></text>
</g>
<g >
<title>InterpreterRuntime::exception_handler_for_exception(JavaThread*, oopDesc*) (98 samples, 0.01%; 0.00%)</title><rect x="1631.5" y="4981" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1634.54" y="4991.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorizeAction$8 (723 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="3029" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.77" y="3039.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/translog/BufferedChecksumStreamOutput.writeBytes (593 samples, 0.07%; +0.00%)</title><rect x="1110.1" y="5877" width="1.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1113.10" y="5887.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (1,166 samples, 0.13%; 0.00%)</title><rect x="1527.5" y="5189" width="3.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1530.51" y="5199.5" ></text>
</g>
<g >
<title>clear_page_erms (58 samples, 0.01%; +0.01%)</title><rect x="620.6" y="5253" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="623.60" y="5263.5" ></text>
</g>
<g >
<title>__generic_file_write_iter (243 samples, 0.03%; 0.00%)</title><rect x="2171.5" y="5621" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2174.50" y="5631.5" ></text>
</g>
<g >
<title>java/util/ArrayList.forEach (78 samples, 0.01%; 0.00%)</title><rect x="1640.6" y="5493" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1643.61" y="5503.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/DocumentParser.getMapper (1,419 samples, 0.16%; -0.00%)</title><rect x="450.8" y="5749" width="3.8" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="453.79" y="5759.5" ></text>
</g>
<g >
<title>java/lang/Throwable.&lt;init&gt; (440 samples, 0.05%; 0.00%)</title><rect x="1707.6" y="5557" width="1.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1710.61" y="5567.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (489 samples, 0.05%; 0.00%)</title><rect x="274.8" y="3765" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.84" y="3775.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (57 samples, 0.01%; +0.00%)</title><rect x="1118.6" y="5541" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1121.59" y="5551.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/StepListener.innerOnResponse (715 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="2005" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="2015.5" ></text>
</g>
<g >
<title>java/util/stream/AbstractPipeline.copyInto (55 samples, 0.01%; 0.00%)</title><rect x="1624.9" y="5637" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.93" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/BaseFuture.set (302 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="2773" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="2783.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/lucene/store/FilterIndexOutput.writeByte (931 samples, 0.10%; 0.00%)</title><rect x="583.4" y="5637" width="2.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="586.42" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/BaseFuture.set (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="2229" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="2239.5" ></text>
</g>
<g >
<title>com/github/mustachejava/reflect/guards/MapGuard.apply (66 samples, 0.01%; 0.00%)</title><rect x="1830.9" y="5685" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1833.95" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/store/Store.stats (190 samples, 0.02%; 0.00%)</title><rect x="1846.1" y="5349" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1849.06" y="5359.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/action/filter/SecurityActionFilter.authorizeRequest (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="3605" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="3615.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.computeCommonPrefixLengthAndBuildHistogram (108 samples, 0.01%; +0.00%)</title><rect x="537.6" y="5717" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="540.64" y="5727.5" ></text>
</g>
<g >
<title>java/util/Arrays.copyOf (441 samples, 0.05%; +0.05%)</title><rect x="1451.4" y="5861" width="1.2" height="15.0" fill="rgb(255,206,206)" rx="2" ry="2" />
<text x="1454.40" y="5871.5" ></text>
</g>
<g >
<title>java/util/zip/CRC32.update (65 samples, 0.01%; 0.00%)</title><rect x="2442.9" y="5925" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2445.91" y="5935.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene84/Lucene84PostingsWriter.encodeTerm (877 samples, 0.10%; 0.00%)</title><rect x="2400.8" y="6005" width="2.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2403.75" y="6015.5" ></text>
</g>
<g >
<title>vtable stub (43 samples, 0.00%; +0.00%)</title><rect x="2202.5" y="5989" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2205.48" y="5999.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamOutput.writeBytes (69 samples, 0.01%; +0.00%)</title><rect x="416.2" y="5893" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="419.17" y="5903.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5973.0x00000008019829d0.accept (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="3653" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="3663.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ValueSource$TemplatedValue.copyAndResolve (789 samples, 0.09%; 0.00%)</title><rect x="1740.6" y="4133" width="2.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1743.61" y="4143.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (51 samples, 0.01%; 0.00%)</title><rect x="2200.5" y="5765" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2203.48" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder$$Lambda$49.0x0000000800bc0480.write (688 samples, 0.08%; 0.00%)</title><rect x="1583.7" y="5749" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1586.73" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.map (219 samples, 0.02%; +0.00%)</title><rect x="1623.4" y="5173" width="0.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1626.42" y="5183.5" ></text>
</g>
<g >
<title>get_page_from_freelist (55 samples, 0.01%; 0.00%)</title><rect x="1118.6" y="5525" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1121.60" y="5535.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.lambda$done$0 (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="3013" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="3023.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/action/filter/SecurityActionFilter.applyInternal (308 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="5141" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.19" y="5151.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/MergeState$1.get (860 samples, 0.10%; 0.00%)</title><rect x="2193.0" y="6069" width="2.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2195.99" y="6079.5" ></text>
</g>
<g >
<title>java/lang/invoke/DirectMethodHandle$Holder.newInvokeSpecial (40 samples, 0.00%; 0.00%)</title><rect x="1778.0" y="5861" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1781.00" y="5871.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.resolveAuthorizationInfo (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="3717" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="3727.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (355 samples, 0.04%; 0.00%)</title><rect x="1532.1" y="5189" width="1.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.10" y="5199.5" ></text>
</g>
<g >
<title>com/github/mustachejava/reflect/guards/MapGuard.apply (96 samples, 0.01%; 0.00%)</title><rect x="1684.3" y="5429" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1687.30" y="5439.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/BigByteArray.set (92 samples, 0.01%; +0.00%)</title><rect x="1106.1" y="5893" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1109.10" y="5903.5" ></text>
</g>
<g >
<title>java/util/LinkedHashMap.newNode (52 samples, 0.01%; +0.00%)</title><rect x="1526.7" y="6037" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1529.68" y="6047.5" ></text>
</g>
<g >
<title>org/apache/lucene/document/LongPoint.&lt;init&gt; (152 samples, 0.02%; 0.00%)</title><rect x="1367.7" y="5829" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1370.71" y="5839.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/lucene/store/FilterIndexOutput.writeByte (171 samples, 0.02%; 0.00%)</title><rect x="546.0" y="5669" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="548.96" y="5679.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/NotifyOnceListener.onResponse (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="1765" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="1775.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/Sorter.binarySort (257 samples, 0.03%; +0.01%)</title><rect x="2348.2" y="5957" width="0.7" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2351.19" y="5967.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$runRequestInterceptors$14 (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="2117" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="2127.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/action/filter/SecurityActionFilter$$Lambda$5025.0x00000008016b7bb0.accept (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="1525" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="1535.5" ></text>
</g>
<g >
<title>java/util/HashMap.hash (138 samples, 0.02%; 0.00%)</title><rect x="537.2" y="5701" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="540.21" y="5711.5" ></text>
</g>
<g >
<title>java/io/BufferedOutputStream.write (78 samples, 0.01%; 0.00%)</title><rect x="588.5" y="5605" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="591.55" y="5615.5" ></text>
</g>
<g >
<title>iput (254 samples, 0.03%; 0.00%)</title><rect x="508.7" y="5685" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="511.68" y="5695.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser._finishAndReturnString (133 samples, 0.01%; +0.01%)</title><rect x="282.5" y="4117" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="285.47" y="4127.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/TransportService.sendRequestInternal (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="1269" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="1279.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/EsExecutors$DirectExecutorService.execute (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="1973" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="1983.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/CompressibleBytesOutputStream.writeBytes (243 samples, 0.03%; 0.00%)</title><rect x="1617.1" y="2309" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1620.11" y="2319.5" ></text>
</g>
<g >
<title>truncate_inode_pages_final (254 samples, 0.03%; 0.00%)</title><rect x="508.7" y="5637" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="511.68" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ValueSource$TemplatedValue.copyAndResolve (916 samples, 0.10%; +0.00%)</title><rect x="1662.9" y="5413" width="2.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1665.94" y="5423.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.field (57 samples, 0.01%; 0.00%)</title><rect x="1535.7" y="4773" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1538.68" y="4783.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8JsonGenerator._writeStringSegment (182 samples, 0.02%; +0.02%)</title><rect x="287.0" y="5013" width="0.5" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="289.97" y="5023.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/OutputStreamIndexOutput.writeByte (48 samples, 0.01%; 0.00%)</title><rect x="2250.9" y="5957" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2253.95" y="5967.5" ></text>
</g>
<g >
<title>org/apache/lucene/document/Field.name (145 samples, 0.02%; -0.03%)</title><rect x="507.1" y="5909" width="0.4" height="15.0" fill="rgb(207,207,255)" rx="2" ry="2" />
<text x="510.08" y="5919.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/base/ParserBase.getCurrentName (57 samples, 0.01%; +0.01%)</title><rect x="1180.6" y="5813" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1183.60" y="5823.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5287.0x0000000801824588.accept (174 samples, 0.02%; +0.00%)</title><rect x="1536.1" y="4309" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1539.14" y="4319.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/TransportReplicationAction.handleReplicaRequest (47 samples, 0.01%; 0.00%)</title><rect x="1845.3" y="5781" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1848.30" y="5791.5" ></text>
</g>
<g >
<title>sun/nio/ch/IOUtil.write (47 samples, 0.01%; 0.00%)</title><rect x="2262.8" y="5813" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2265.81" y="5823.5" ></text>
</g>
<g >
<title>mpage_process_page_bufs (42 samples, 0.00%; +0.00%)</title><rect x="517.7" y="5637" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="520.66" y="5647.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/IntroSorter.quicksort (164 samples, 0.02%; +0.00%)</title><rect x="614.2" y="5637" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="617.23" y="5647.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/packed/DirectWriter.add (78 samples, 0.01%; 0.00%)</title><rect x="1849.5" y="5685" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1852.51" y="5695.5" ></text>
</g>
<g >
<title>frame::frame(long*, long*, long*, unsigned char*) (135 samples, 0.01%; +0.00%)</title><rect x="1664.9" y="5285" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1667.94" y="5295.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/IndicesAndAliasesResolver.resolve (85 samples, 0.01%; 0.00%)</title><rect x="1621.9" y="4965" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1624.86" y="4975.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ConditionalProcessor.execute (1,791 samples, 0.20%; 0.00%)</title><rect x="1625.6" y="4789" width="4.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.58" y="4799.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/interceptor/ResizeRequestInterceptor.intercept (38 samples, 0.00%; 0.00%)</title><rect x="271.6" y="3797" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.58" y="3807.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/TransportService$6.handleResponse (2,293 samples, 0.25%; 0.00%)</title><rect x="284.5" y="5621" width="6.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="287.52" y="5631.5" ></text>
</g>
<g >
<title>java/util/HashMap$EntryIterator.next (198 samples, 0.02%; 0.00%)</title><rect x="1384.2" y="5589" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1387.19" y="5599.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator.authenticateAsync (936 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="5061" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.82" y="5071.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/interceptor/FieldAndDocumentLevelSecurityRequestInterceptor.intercept (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="1685" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="1695.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamOutput.writeOptionalWriteable (250 samples, 0.03%; 0.00%)</title><rect x="322.7" y="5493" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="325.68" y="5503.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/engine/InternalEngine.ensureTranslogSynced (3,486 samples, 0.39%; 0.00%)</title><rect x="508.6" y="5941" width="9.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="511.63" y="5951.5" ></text>
</g>
<g >
<title>java/io/BufferedOutputStream.flushBuffer (70 samples, 0.01%; 0.00%)</title><rect x="2200.5" y="5973" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2203.46" y="5983.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/DocumentParser.parseObjectOrField (25,493 samples, 2.82%; +0.01%)</title><rect x="1293.7" y="5813" width="68.9" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1296.71" y="5823.5" >org/ela..</text>
</g>
<g >
<title>java/lang/Throwable.fillInStackTrace (63 samples, 0.01%; 0.00%)</title><rect x="1531.9" y="5701" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1534.89" y="5711.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/IntroSorter.quicksort (228 samples, 0.03%; +0.00%)</title><rect x="615.7" y="5621" width="0.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="618.66" y="5631.5" ></text>
</g>
<g >
<title>add_to_page_cache_lru (108 samples, 0.01%; +0.00%)</title><rect x="324.8" y="5461" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="327.82" y="5471.5" ></text>
</g>
<g >
<title>java/lang/Throwable.fillInStackTrace (180 samples, 0.02%; +0.00%)</title><rect x="1717.1" y="4709" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1720.10" y="4719.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.ensureNoSelfReferences (53 samples, 0.01%; 0.00%)</title><rect x="1535.4" y="4757" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1538.42" y="4767.5" ></text>
</g>
<g >
<title>java/util/HashMap.hash (97 samples, 0.01%; 0.00%)</title><rect x="1171.8" y="5733" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1174.77" y="5743.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.authorizeAction (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="4453" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="4463.5" ></text>
</g>
<g >
<title>java/lang/SecurityManager.checkPermission (650 samples, 0.07%; 0.00%)</title><rect x="1738.5" y="3909" width="1.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1741.50" y="3919.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/json/JsonXContentParser.nextToken (209 samples, 0.02%; +0.00%)</title><rect x="1203.3" y="5797" width="0.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1206.29" y="5807.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser._parseName (1,188 samples, 0.13%; 0.00%)</title><rect x="1142.8" y="5861" width="3.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1145.79" y="5871.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/ContextPreservingActionListener.onResponse (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="3429" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="3439.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (419 samples, 0.05%; 0.00%)</title><rect x="1722.6" y="3957" width="1.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1725.62" y="3967.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine$$Lambda$5289.0x00000008018249e8.accept (12,191 samples, 1.35%; 0.00%)</title><rect x="1589.2" y="5397" width="33.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.20" y="5407.5" >or..</text>
</g>
<g >
<title>java/util/HashMap.hash (60 samples, 0.01%; 0.00%)</title><rect x="873.1" y="5685" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="876.12" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/BulkShardRequest.lambda$writeTo$3 (5,457 samples, 0.60%; 0.00%)</title><rect x="308.6" y="5525" width="14.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="311.64" y="5535.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.map (145 samples, 0.02%; +0.00%)</title><rect x="1694.2" y="5013" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1697.17" y="5023.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/TransportReplicationAction.doExecute (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="709" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="719.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/JsonGenerator.writeNumberField (286 samples, 0.03%; +0.00%)</title><rect x="287.6" y="5109" width="0.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="290.62" y="5119.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator.lambda$lookForExistingAuthentication$6 (145 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="4821" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="4831.5" ></text>
</g>
<g >
<title>itable stub (223 samples, 0.02%; +0.02%)</title><rect x="1371.6" y="5701" width="0.6" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1374.60" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/TransportRequest.writeTo (142 samples, 0.02%; 0.00%)</title><rect x="1618.5" y="2325" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1621.52" y="2335.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamInput.readArray (519 samples, 0.06%; 0.00%)</title><rect x="250.9" y="5541" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="253.93" y="5551.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorizeBulkItems$21 (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="3557" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="3567.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/StringHelper.murmurhash3_x86_32 (68 samples, 0.01%; 0.00%)</title><rect x="2396.4" y="5909" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2399.40" y="5919.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/json/JsonXContentParser.currentName (89 samples, 0.01%; +0.00%)</title><rect x="1465.4" y="6005" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1468.40" y="6015.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern.compile (97 samples, 0.01%; +0.00%)</title><rect x="1765.3" y="5765" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1768.27" y="5775.5" ></text>
</g>
<g >
<title>java/lang/ThreadLocal$ThreadLocalMap.getEntry (38 samples, 0.00%; +0.00%)</title><rect x="1460.3" y="5957" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1463.32" y="5967.5" ></text>
</g>
<g >
<title>generic_write_end (124 samples, 0.01%; 0.00%)</title><rect x="325.2" y="5493" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="328.16" y="5503.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/index/IndexRequest.writeBody (162 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="1349" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="1359.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8JsonGenerator.writeFieldName (44 samples, 0.00%; +0.00%)</title><rect x="1699.1" y="5253" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1702.15" y="5263.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/MultiTermsEnum.postings (78 samples, 0.01%; +0.01%)</title><rect x="2337.6" y="5989" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2340.60" y="5999.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/IOUtils.applyToAll (55 samples, 0.01%; 0.00%)</title><rect x="1847.9" y="5909" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.93" y="5919.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$runRequestInterceptors$14 (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="1445" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="1455.5" ></text>
</g>
<g >
<title>java/security/Permissions.getUnresolvedPermissions (108 samples, 0.01%; +0.00%)</title><rect x="1834.6" y="5717" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1837.63" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.lambda$executePipeline$0 (2,174 samples, 0.24%; 0.00%)</title><rect x="1697.2" y="5381" width="5.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1700.15" y="5391.5" ></text>
</g>
<g >
<title>java/util/HashMap$HashIterator.nextNode (104 samples, 0.01%; +0.01%)</title><rect x="1759.1" y="5477" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1762.09" y="5487.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/AbstractRunnable.run (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="2309" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="2319.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser._nextAfterName (331 samples, 0.04%; +0.00%)</title><rect x="1494.3" y="5941" width="0.9" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1497.29" y="5951.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/Tokenizer.correctOffset (78 samples, 0.01%; -0.01%)</title><rect x="463.5" y="5685" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="466.53" y="5695.5" ></text>
</g>
<g >
<title>java/lang/invoke/LambdaForm$DMH.0x0000000800b8c440.invokeSpecial (57 samples, 0.01%; 0.00%)</title><rect x="1893.8" y="5573" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1896.84" y="5583.5" ></text>
</g>
<g >
<title>java/lang/SecurityManager.checkPermission (700 samples, 0.08%; 0.00%)</title><rect x="1740.9" y="4085" width="1.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1743.85" y="4095.5" ></text>
</g>
<g >
<title>itable stub (220 samples, 0.02%; +0.02%)</title><rect x="887.0" y="5797" width="0.6" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="889.96" y="5807.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene84/PForUtil.encode (209 samples, 0.02%; +0.00%)</title><rect x="1872.8" y="5685" width="0.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1875.80" y="5695.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/DataOutput.writeShort (38 samples, 0.00%; 0.00%)</title><rect x="561.3" y="5605" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="564.27" y="5615.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/StepListener.innerOnResponse (230 samples, 0.03%; 0.00%)</title><rect x="271.7" y="4325" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.72" y="4335.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ConditionalProcessor.execute (292 samples, 0.03%; 0.00%)</title><rect x="1630.5" y="4581" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.53" y="4591.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.getBucket (45 samples, 0.00%; -0.00%)</title><rect x="1890.7" y="5669" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1893.70" y="5679.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/blocktree/BlockTreeTermsWriter$TermsWriter.write (14,117 samples, 1.56%; +0.00%)</title><rect x="570.1" y="5765" width="38.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="573.13" y="5775.5" >org..</text>
</g>
<g >
<title>org/apache/lucene/util/BytesRefHash.sort (367 samples, 0.04%; 0.00%)</title><rect x="537.6" y="5781" width="1.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="540.60" y="5791.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/blocktree/SegmentTermsEnumFrame.loadBlock (300 samples, 0.03%; -0.01%)</title><rect x="2428.3" y="6005" width="0.8" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2431.33" y="6015.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/time/JavaDateFormatter.&lt;init&gt; (42 samples, 0.00%; 0.00%)</title><rect x="1667.9" y="5637" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1670.93" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.map (3,304 samples, 0.37%; 0.00%)</title><rect x="1724.7" y="3733" width="9.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1727.72" y="3743.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/BaseFuture.set (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="1317" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="1327.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/AttributeFactory$1.createInstance (57 samples, 0.01%; 0.00%)</title><rect x="376.0" y="5781" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="379.01" y="5791.5" ></text>
</g>
<g >
<title>[unknown] (271 samples, 0.03%; 0.00%)</title><rect x="2171.4" y="5781" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2174.44" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/translog/BufferedChecksumStreamOutput.writeBytes (95 samples, 0.01%; -0.00%)</title><rect x="415.6" y="5893" width="0.3" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="418.62" y="5903.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/store/ByteSizeCachingDirectory$2.writeByte (98 samples, 0.01%; +0.01%)</title><rect x="2256.4" y="5973" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2259.38" y="5983.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.introSort (63 samples, 0.01%; 0.00%)</title><rect x="1868.2" y="5541" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1871.19" y="5551.5" ></text>
</g>
<g >
<title>org/joni/StackMachine.popDefault (48 samples, 0.01%; -0.00%)</title><rect x="1820.5" y="5845" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1823.55" y="5855.5" ></text>
</g>
<g >
<title>java/lang/String.getChars (80 samples, 0.01%; 0.00%)</title><rect x="1419.8" y="5781" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1422.75" y="5791.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/fst/Builder.freezeTail (1,069 samples, 0.12%; -0.01%)</title><rect x="2395.3" y="5989" width="2.9" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2398.29" y="5999.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (1,397 samples, 0.15%; 0.00%)</title><rect x="1527.5" y="5461" width="3.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1530.50" y="5471.5" ></text>
</g>
<g >
<title>frame::frame(long*, long*, long*, unsigned char*) (51 samples, 0.01%; 0.00%)</title><rect x="1638.5" y="4773" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1641.48" y="4783.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$$Lambda$4893.0x00000008017ed008.accept (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="2165" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="2175.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/DataInput.readVInt (45 samples, 0.00%; 0.00%)</title><rect x="2195.3" y="6021" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2198.32" y="6031.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene80/Lucene80DocValuesProducer$22.nextDoc (47 samples, 0.01%; +0.01%)</title><rect x="1896.1" y="6181" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1899.13" y="6191.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/TransportShardBulkAction$$Lambda$5986.0x00000008019cd958.get (346,234 samples, 38.36%; 0.00%)</title><rect x="518.1" y="6101" width="935.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="521.05" y="6111.5" >org/elasticsearch/action/bulk/TransportShardBulkAction$$Lambda$5986.0x00000008019cd958.get</text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$1.doRun (715 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="805" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="815.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/IndexWriter.addDocument (211,128 samples, 23.39%; 0.00%)</title><rect x="525.1" y="5941" width="570.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="528.07" y="5951.5" >org/apache/lucene/index/IndexWriter.addDocument</text>
</g>
<g >
<title>sun/nio/ch/IOUtil.writeFromNativeBuffer (42 samples, 0.00%; 0.00%)</title><rect x="2262.8" y="5797" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2265.82" y="5807.5" ></text>
</g>
<g >
<title>java/util/HashMap.forEach (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="3621" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="3631.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene80/Lucene80DocValuesProducer$TermsDict.next (296 samples, 0.03%; 0.00%)</title><rect x="2044.2" y="6021" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2047.17" y="6031.5" ></text>
</g>
<g >
<title>java/util/HashSet.add (72 samples, 0.01%; 0.00%)</title><rect x="1474.7" y="5909" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1477.69" y="5919.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/NumericDocValuesWriter$BufferedNumericDocValues.nextDoc (37 samples, 0.00%; +0.00%)</title><rect x="539.8" y="5717" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="542.82" y="5727.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/packed/AbstractPagedMutable.get (77 samples, 0.01%; 0.00%)</title><rect x="2397.7" y="5941" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2400.74" y="5951.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator.lookForExistingAuthentication (575 samples, 0.06%; 0.00%)</title><rect x="1845.3" y="6053" width="1.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1848.30" y="6063.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.execute (117,793 samples, 13.05%; 0.00%)</title><rect x="1526.9" y="6069" width="318.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1529.87" y="6079.5" >org/elasticsearch/ingest/CompoundProcessor..</text>
</g>
<g >
<title>org/apache/lucene/codecs/blocktree/BlockTreeTermsWriter$TermsWriter.finish (277 samples, 0.03%; +0.00%)</title><rect x="569.4" y="5765" width="0.7" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="572.38" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/shard/IndexShard$7.write (672 samples, 0.07%; 0.00%)</title><rect x="324.1" y="5893" width="1.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="327.12" y="5903.5" ></text>
</g>
<g >
<title>org/joni/StackMachine.pushRepeatInc (238 samples, 0.03%; 0.00%)</title><rect x="1822.5" y="5861" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1825.51" y="5871.5" ></text>
</g>
<g >
<title>java/util/HashMap.putAll (377 samples, 0.04%; 0.00%)</title><rect x="496.4" y="5637" width="1.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="499.44" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/action/filter/SecurityActionFilter$$Lambda$5025.0x00000008016b7bb0.accept (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="1909" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="1919.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/CollectionUtils.ensureNoSelfReferences (257 samples, 0.03%; +0.00%)</title><rect x="1762.1" y="5493" width="0.7" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1765.06" y="5503.5" ></text>
</g>
<g >
<title>sun/nio/ch/IOUtil.write (470 samples, 0.05%; 0.00%)</title><rect x="758.3" y="5557" width="1.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="761.26" y="5567.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (380 samples, 0.04%; +0.04%)</title><rect x="1284.0" y="5765" width="1.0" height="15.0" fill="rgb(255,207,207)" rx="2" ry="2" />
<text x="1286.96" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.onResponse (486 samples, 0.05%; 0.00%)</title><rect x="274.8" y="3413" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.84" y="3423.5" ></text>
</g>
<g >
<title>java/util/ArrayList.grow (84 samples, 0.01%; 0.00%)</title><rect x="1362.1" y="5717" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1365.08" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.lambda$executePipeline$0 (195 samples, 0.02%; 0.00%)</title><rect x="1630.5" y="4037" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.53" y="4047.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/store/Store$StoreDirectory.deleteFile (164 samples, 0.02%; 0.00%)</title><rect x="1901.2" y="6053" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1904.19" y="6063.5" ></text>
</g>
<g >
<title>jdk/internal/util/ArraysSupport.mismatch (779 samples, 0.09%; +0.03%)</title><rect x="2438.7" y="5925" width="2.1" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="2441.72" y="5935.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/BaseFuture.set (486 samples, 0.05%; 0.00%)</title><rect x="274.8" y="3397" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.84" y="3407.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/TransportService.sendRequestInternal (11,954 samples, 1.32%; 0.00%)</title><rect x="1589.5" y="2645" width="32.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.50" y="2655.5" >or..</text>
</g>
<g >
<title>java/util/HashMap$ValueIterator.next (90 samples, 0.01%; 0.00%)</title><rect x="1759.4" y="5493" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1762.37" y="5503.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/RetryableAction.run (5,713 samples, 0.63%; 0.00%)</title><rect x="308.6" y="5957" width="15.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="311.64" y="5967.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/ByteBufferGuard.getBytes (49 samples, 0.01%; +0.00%)</title><rect x="2050.1" y="5989" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2053.13" y="5999.5" ></text>
</g>
<g >
<title>__page_cache_alloc (83 samples, 0.01%; 0.00%)</title><rect x="620.6" y="5317" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="623.56" y="5327.5" ></text>
</g>
<g >
<title>vtable stub (40 samples, 0.00%; +0.00%)</title><rect x="1438.3" y="5797" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1441.30" y="5807.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/IndexWriter.updateDocuments (211,128 samples, 23.39%; +0.00%)</title><rect x="525.1" y="5909" width="570.7" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="528.07" y="5919.5" >org/apache/lucene/index/IndexWriter.updateDocuments</text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.findName (132 samples, 0.01%; 0.00%)</title><rect x="1145.6" y="5813" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1148.63" y="5823.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/TransportBulkAction.executeBulk (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="4053" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="4063.5" ></text>
</g>
<g >
<title>java/util/HashMap.resize (409 samples, 0.05%; +0.05%)</title><rect x="1139.7" y="5765" width="1.1" height="15.0" fill="rgb(255,206,206)" rx="2" ry="2" />
<text x="1142.73" y="5775.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/BytesRefBuilder.copyChars (2,655 samples, 0.29%; +0.04%)</title><rect x="850.1" y="5797" width="7.2" height="15.0" fill="rgb(255,207,207)" rx="2" ry="2" />
<text x="853.12" y="5807.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (3,057 samples, 0.34%; 0.00%)</title><rect x="274.7" y="4389" width="8.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.67" y="4399.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/bytes/ReleasableBytesReference.length (40 samples, 0.00%; +0.00%)</title><rect x="258.8" y="5253" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="261.80" y="5263.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.done (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="2405" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="2415.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (6,822 samples, 0.76%; 0.00%)</title><rect x="1724.3" y="4245" width="18.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1727.32" y="4255.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.lambda$done$0 (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="1653" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="1663.5" ></text>
</g>
<g >
<title>java/nio/channels/Channels$1.write (44 samples, 0.00%; 0.00%)</title><rect x="2175.9" y="5973" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2178.94" y="5983.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.lambda$authorizeIndexAction$5 (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="2757" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="2767.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/bkd/BKDWriter.writeField1Dim (55 samples, 0.01%; 0.00%)</title><rect x="1454.8" y="5925" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1457.82" y="5935.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (1,435 samples, 0.16%; 0.00%)</title><rect x="1625.6" y="4421" width="3.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.59" y="4431.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="2597" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="2607.5" ></text>
</g>
<g >
<title>pread64 (77 samples, 0.01%; +0.00%)</title><rect x="2174.6" y="5925" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2177.57" y="5935.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5633.0x00000008018272d0.accept (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="3061" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="3071.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.notifyListener (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="1765" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="1775.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/FilteringTokenFilter.incrementToken (1,634 samples, 0.18%; +0.02%)</title><rect x="360.9" y="5829" width="4.4" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="363.90" y="5839.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/fst/Builder.&lt;init&gt; (85 samples, 0.01%; +0.00%)</title><rect x="536.2" y="5701" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="539.18" y="5711.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/StringHelper.murmurhash3_x86_32 (624 samples, 0.07%; -0.18%)</title><rect x="392.0" y="5765" width="1.7" height="15.0" fill="rgb(197,197,255)" rx="2" ry="2" />
<text x="395.05" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (1,785 samples, 0.20%; 0.00%)</title><rect x="1625.6" y="4757" width="4.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.58" y="4767.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.authorize (936 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="4901" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.82" y="4911.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/DataOutput.writeInt (55 samples, 0.01%; 0.00%)</title><rect x="527.1" y="5685" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="530.11" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/TcpTransport$NodeChannels.sendRequest (714 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="501" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="511.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/FilterDirectory.fileLength (43 samples, 0.00%; 0.00%)</title><rect x="621.7" y="5797" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="624.70" y="5807.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/collect/Iterators$ConcatenatedIterator.next (169 samples, 0.02%; +0.00%)</title><rect x="1770.0" y="5829" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1772.97" y="5839.5" ></text>
</g>
<g >
<title>__generic_file_write_iter (44 samples, 0.00%; -0.00%)</title><rect x="2200.5" y="5637" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2203.50" y="5647.5" ></text>
</g>
<g >
<title>java/util/HashMap.putMapEntries (123 samples, 0.01%; +0.00%)</title><rect x="1751.8" y="4885" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1754.84" y="4895.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (38 samples, 0.00%; -0.00%)</title><rect x="306.0" y="5829" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="308.99" y="5839.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.done (227 samples, 0.03%; 0.00%)</title><rect x="271.7" y="4021" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.72" y="4031.5" ></text>
</g>
<g >
<title>java/util/concurrent/ConcurrentHashMap.putVal (298 samples, 0.03%; +0.00%)</title><rect x="1098.3" y="5909" width="0.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1101.29" y="5919.5" ></text>
</g>
<g >
<title>java/util/ArrayDeque.clear (75 samples, 0.01%; 0.00%)</title><rect x="2321.0" y="5957" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2324.00" y="5967.5" ></text>
</g>
<g >
<title>java/lang/Exception.&lt;init&gt; (1,355 samples, 0.15%; 0.00%)</title><rect x="1670.2" y="5621" width="3.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1673.24" y="5631.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/DocumentParser.parseObjectOrNested (31,266 samples, 3.46%; -0.00%)</title><rect x="419.0" y="5941" width="84.5" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="422.00" y="5951.5" >org/elast..</text>
</g>
<g >
<title>org/elasticsearch/action/admin/indices/stats/CommonStats.&lt;init&gt; (477 samples, 0.05%; 0.00%)</title><rect x="1845.4" y="5381" width="1.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1848.43" y="5391.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.done (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="2341" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="2351.5" ></text>
</g>
<g >
<title>__schedule (163 samples, 0.02%; -0.00%)</title><rect x="305.0" y="5941" width="0.5" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="308.02" y="5951.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="3189" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="3199.5" ></text>
</g>
<g >
<title>CompressedReadStream::read_int() (98 samples, 0.01%; +0.01%)</title><rect x="1678.0" y="5429" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1681.03" y="5439.5" ></text>
</g>
<g >
<title>frame::frame(long*, long*, long*, unsigned char*) (39 samples, 0.00%; +0.00%)</title><rect x="1717.0" y="4549" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1719.99" y="4559.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/CollectionUtils.ensureNoSelfReferences (73 samples, 0.01%; 0.00%)</title><rect x="1538.7" y="5349" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1541.69" y="5359.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ConditionalProcessor.execute (6,821 samples, 0.76%; +0.00%)</title><rect x="1724.3" y="4197" width="18.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1727.32" y="4207.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/interceptor/FieldAndDocumentLevelSecurityRequestInterceptor.intercept (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="2549" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="2559.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/time/DateFormatter$$Lambda$58.0x0000000800bc8248.apply (92 samples, 0.01%; +0.00%)</title><rect x="1534.0" y="5477" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1536.97" y="5487.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/ContextPreservingActionListener.onResponse (302 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="3717" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="3727.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument$$Lambda$6067.0x00000008019e1f30.accept (1,618 samples, 0.18%; 0.00%)</title><rect x="1710.8" y="4565" width="4.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1713.82" y="4575.5" ></text>
</g>
<g >
<title>java/util/HashMap.get (239 samples, 0.03%; 0.00%)</title><rect x="427.4" y="5829" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="430.44" y="5839.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/SingleObjectCache.getOrRefresh (190 samples, 0.02%; 0.00%)</title><rect x="1846.1" y="5301" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1849.06" y="5311.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/Sorter.binarySort (42 samples, 0.00%; 0.00%)</title><rect x="616.0" y="5589" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="618.96" y="5599.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/FilterStreamInput.readBytes (180 samples, 0.02%; 0.00%)</title><rect x="254.9" y="5285" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="257.92" y="5295.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene84/Lucene84SkipWriter.writeImpacts (275 samples, 0.03%; -0.00%)</title><rect x="1879.7" y="5637" width="0.8" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1882.74" y="5647.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.getText (105 samples, 0.01%; 0.00%)</title><rect x="440.8" y="5717" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="443.81" y="5727.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.parseMediumName2 (523 samples, 0.06%; +0.00%)</title><rect x="1196.5" y="5765" width="1.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1199.45" y="5775.5" ></text>
</g>
<g >
<title>java/lang/invoke/LambdaForm$DMH.0x00000008019bbc40.newInvokeSpecial (165 samples, 0.02%; +0.01%)</title><rect x="1458.3" y="6101" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1461.27" y="6111.5" ></text>
</g>
<g >
<title>java/lang/SecurityManager.checkPermission (198 samples, 0.02%; 0.00%)</title><rect x="1717.6" y="4869" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1720.59" y="4879.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/ContentPath.pathAsText (1,041 samples, 0.12%; +0.01%)</title><rect x="1161.1" y="5861" width="2.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1164.09" y="5871.5" ></text>
</g>
<g >
<title>java/nio/ByteBuffer.put (49 samples, 0.01%; 0.00%)</title><rect x="2176.1" y="5893" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2179.08" y="5903.5" ></text>
</g>
<g >
<title>java/security/ProtectionDomain.impliesWithAltFilePerm (218 samples, 0.02%; 0.00%)</title><rect x="1663.3" y="5317" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1666.28" y="5327.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/BytesRef.bytesEquals (1,301 samples, 0.14%; 0.00%)</title><rect x="2420.8" y="5989" width="3.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2423.80" y="5999.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/BytesRef.compareTo (37 samples, 0.00%; 0.00%)</title><rect x="616.2" y="5589" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="619.18" y="5599.5" ></text>
</g>
<g >
<title>java/time/format/Parsed.isSupported (102 samples, 0.01%; +0.00%)</title><rect x="1369.9" y="5733" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1372.95" y="5743.5" ></text>
</g>
<g >
<title>java/util/ArrayList.grow (48 samples, 0.01%; 0.00%)</title><rect x="1481.3" y="5925" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1484.34" y="5935.5" ></text>
</g>
<g >
<title>java/time/chrono/ChronoZonedDateTime.toEpochSecond (39 samples, 0.00%; 0.00%)</title><rect x="1674.1" y="5573" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1677.07" y="5583.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/transport/SecurityServerTransportInterceptor.sendWithUser (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="1845" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="1855.5" ></text>
</g>
<g >
<title>add_to_page_cache_lru (76 samples, 0.01%; +0.00%)</title><rect x="620.8" y="5317" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="623.78" y="5327.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/CompressibleBytesOutputStream.writeByte (78 samples, 0.01%; 0.00%)</title><rect x="1617.9" y="2309" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1620.90" y="2319.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.done (931 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="3253" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.83" y="3263.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/AnalyzerWrapper.getOffsetGap (88 samples, 0.01%; 0.00%)</title><rect x="786.4" y="5813" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="789.38" y="5823.5" ></text>
</g>
<g >
<title>java/lang/Exception.&lt;init&gt; (377 samples, 0.04%; 0.00%)</title><rect x="1763.5" y="5669" width="1.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1766.48" y="5679.5" ></text>
</g>
<g >
<title>java/util/ArrayList.grow (149 samples, 0.02%; 0.00%)</title><rect x="1159.2" y="5733" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1162.18" y="5743.5" ></text>
</g>
<g >
<title>java/util/HashMap.putMapEntries (44 samples, 0.00%; -0.00%)</title><rect x="475.9" y="5621" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="478.95" y="5631.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/PushPostingsWriterBase.writeTerm (56 samples, 0.01%; +0.00%)</title><rect x="1456.9" y="5813" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1459.92" y="5823.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/core/KeywordTokenizer.end (70 samples, 0.01%; 0.00%)</title><rect x="441.5" y="5733" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="444.48" y="5743.5" ></text>
</g>
<g >
<title>get_page_from_freelist (163 samples, 0.02%; +0.00%)</title><rect x="1898.4" y="5589" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1901.39" y="5599.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (55,656 samples, 6.17%; 0.00%)</title><rect x="1622.8" y="5941" width="150.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1625.75" y="5951.5" >org/elasticsearch/i..</text>
</g>
<g >
<title>JVM_FillInStackTrace (149 samples, 0.02%; 0.00%)</title><rect x="1746.4" y="4453" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1749.35" y="4463.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/perfield/PerFieldDocValuesFormat$FieldsWriter.addSortedSetField (392 samples, 0.04%; 0.00%)</title><rect x="327.3" y="5797" width="1.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="330.29" y="5807.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$runRequestInterceptors$14 (11,965 samples, 1.33%; 0.00%)</title><rect x="1589.5" y="3413" width="32.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.47" y="3423.5" >or..</text>
</g>
<g >
<title>org/apache/lucene/index/DefaultIndexingChain.writeDocValues (5,531 samples, 0.61%; +0.00%)</title><rect x="1848.2" y="5781" width="14.9" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1851.16" y="5791.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/IntroSorter.sort (42 samples, 0.00%; 0.00%)</title><rect x="617.7" y="5589" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="620.66" y="5599.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/BytesStreamOutput.writeBytes (38 samples, 0.00%; +0.00%)</title><rect x="1103.6" y="5941" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1106.63" y="5951.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.nextToken (249 samples, 0.03%; -0.01%)</title><rect x="445.6" y="5781" width="0.7" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="448.58" y="5791.5" ></text>
</g>
<g >
<title>org/apache/lucene/document/LongPoint.getType (415 samples, 0.05%; 0.00%)</title><rect x="1357.0" y="5733" width="1.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1359.98" y="5743.5" ></text>
</g>
<g >
<title>java/time/format/Parsed.crossCheck (104 samples, 0.01%; 0.00%)</title><rect x="1410.4" y="5733" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1413.35" y="5743.5" ></text>
</g>
<g >
<title>java/util/ArrayList.add (174 samples, 0.02%; 0.00%)</title><rect x="1886.0" y="5621" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1889.04" y="5631.5" ></text>
</g>
<g >
<title>__memset_avx2_erms (96 samples, 0.01%; -0.00%)</title><rect x="2068.6" y="6021" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2071.56" y="6031.5" ></text>
</g>
<g >
<title>java/util/HashMap$TreeNode.getTreeNode (161 samples, 0.02%; +0.02%)</title><rect x="1166.0" y="5781" width="0.5" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1169.02" y="5791.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene84/PForUtil.encode (1,474 samples, 0.16%; +0.03%)</title><rect x="2322.4" y="6021" width="4.0" height="15.0" fill="rgb(255,207,207)" rx="2" ry="2" />
<text x="2325.42" y="6031.5" ></text>
</g>
<g >
<title>java/util/HashMap.resize (70 samples, 0.01%; +0.01%)</title><rect x="1780.9" y="5893" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1783.87" y="5903.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="2645" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="2655.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundHandler$MessageSerializer.get (5,708 samples, 0.63%; 0.00%)</title><rect x="308.6" y="5653" width="15.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="311.64" y="5663.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene87/DeflateWithPresetDictCompressionMode$DeflateWithPresetDictCompressor.doCompress (165 samples, 0.02%; 0.00%)</title><rect x="2067.7" y="6053" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2070.73" y="6063.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/MappingMultiPostingsEnum.reset (920 samples, 0.10%; +0.07%)</title><rect x="2335.3" y="6021" width="2.5" height="15.0" fill="rgb(255,205,205)" rx="2" ry="2" />
<text x="2338.33" y="6031.5" ></text>
</g>
<g >
<title>com/maxmind/geoip2/exception/AddressNotFoundException.&lt;init&gt; (224 samples, 0.02%; 0.00%)</title><rect x="1718.3" y="4789" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1721.29" y="4799.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/common/DateProcessor.execute (214 samples, 0.02%; 0.00%)</title><rect x="1530.7" y="5365" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1533.69" y="5375.5" ></text>
</g>
<g >
<title>javax/net/ssl/SSLEngine.unwrap (3,132 samples, 0.35%; 0.00%)</title><rect x="293.0" y="5893" width="8.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="295.95" y="5903.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$3.onResponse (185 samples, 0.02%; 0.00%)</title><rect x="284.6" y="5077" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="287.57" y="5087.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/StepListener.innerOnResponse (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="2245" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="2255.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/FilteringTokenFilter.incrementToken (165 samples, 0.02%; +0.02%)</title><rect x="902.7" y="5781" width="0.5" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="905.71" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.onResponse (486 samples, 0.05%; 0.00%)</title><rect x="274.8" y="2373" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.84" y="2383.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (1,773 samples, 0.20%; 0.00%)</title><rect x="1625.6" y="4613" width="4.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.58" y="4623.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundMessage.serialize (37 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="629" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="639.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.sort (785 samples, 0.09%; +0.00%)</title><rect x="1889.5" y="5733" width="2.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1892.54" y="5743.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/Analyzer$1.getReusableComponents (3,840 samples, 0.43%; 0.00%)</title><rect x="873.4" y="5765" width="10.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="876.38" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.handleIndexActionAuthorizationResult (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="2885" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="2895.5" ></text>
</g>
<g >
<title>org/elasticsearch/bootstrap/ESPolicy.implies (97 samples, 0.01%; 0.00%)</title><rect x="1846.1" y="5013" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1849.14" y="5023.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/base/ParserMinimalBase.getCurrentToken (58 samples, 0.01%; -0.00%)</title><rect x="1502.5" y="5941" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1505.47" y="5951.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/FieldNamesFieldMapper$1$1.next (65 samples, 0.01%; +0.00%)</title><rect x="1428.9" y="5797" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1431.91" y="5807.5" ></text>
</g>
<g >
<title>java/util/Arrays.sort (267 samples, 0.03%; 0.00%)</title><rect x="1861.0" y="5701" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1864.03" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$CachingAsyncSupplier.lambda$getAsync$0 (936 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="4469" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.82" y="4479.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorizeAction$6 (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="3973" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="3983.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/shard/IndexShard.translogStats (53 samples, 0.01%; 0.00%)</title><rect x="1846.6" y="5365" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1849.58" y="5375.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.lambda$resolveAuthorizationInfo$1 (12,191 samples, 1.35%; 0.00%)</title><rect x="1589.2" y="5381" width="33.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.20" y="5391.5" >or..</text>
</g>
<g >
<title>org/elasticsearch/common/time/DateFormatter.forPattern (1,648 samples, 0.18%; +0.00%)</title><rect x="1679.5" y="5653" width="4.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1682.50" y="5663.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (12,727 samples, 1.41%; 0.00%)</title><rect x="1722.3" y="5477" width="34.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1725.27" y="5487.5" >or..</text>
</g>
<g >
<title>com/fasterxml/jackson/core/base/ParserBase.getLongValue (320 samples, 0.04%; +0.00%)</title><rect x="1358.4" y="5701" width="0.9" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1361.42" y="5711.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/ArrayUtil.grow (186 samples, 0.02%; 0.00%)</title><rect x="1979.0" y="5925" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1982.00" y="5935.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/common/AbstractStringProcessor.execute (47 samples, 0.01%; +0.00%)</title><rect x="1742.8" y="4245" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1745.76" y="4255.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/time/DateFormatters.forPattern (75 samples, 0.01%; +0.00%)</title><rect x="1539.2" y="5637" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1542.19" y="5647.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene87/DeflateWithPresetDictCompressionMode$DeflateWithPresetDictCompressor.compress (7,338 samples, 0.81%; +0.00%)</title><rect x="334.0" y="5797" width="19.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="337.01" y="5807.5" ></text>
</g>
<g >
<title>java/util/HashMap.containsKey (68 samples, 0.01%; 0.00%)</title><rect x="895.5" y="5765" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="898.52" y="5775.5" ></text>
</g>
<g >
<title>java/util/ArrayList.forEach (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="3429" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="3439.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="4389" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="4399.5" ></text>
</g>
<g >
<title>org/elasticsearch/rest/RestController.dispatchRequest (3,074 samples, 0.34%; 0.00%)</title><rect x="274.6" y="5269" width="8.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.63" y="5279.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/MMapDirectory.lambda$newBufferCleaner$1 (54 samples, 0.01%; 0.00%)</title><rect x="1847.9" y="5653" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.93" y="5663.5" ></text>
</g>
<g >
<title>java/util/Arrays.sort (232 samples, 0.03%; 0.00%)</title><rect x="1857.2" y="5669" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1860.17" y="5679.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/PointValuesWriter$1.intersect (135 samples, 0.01%; +0.00%)</title><rect x="529.3" y="5733" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="532.27" y="5743.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/DataOutput.writeVInt (67 samples, 0.01%; +0.00%)</title><rect x="2400.8" y="5989" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2403.75" y="5999.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/translog/Translog.deleteReaderFiles (254 samples, 0.03%; 0.00%)</title><rect x="508.7" y="5893" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="511.68" y="5903.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/collect/CopyOnWriteHashMap.get (88 samples, 0.01%; 0.00%)</title><rect x="1202.6" y="5765" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1205.61" y="5775.5" ></text>
</g>
<g >
<title>java/util/HashMap.get (294 samples, 0.03%; 0.00%)</title><rect x="1366.4" y="5797" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1369.39" y="5807.5" ></text>
</g>
<g >
<title>java/util/HashMap.put (37 samples, 0.00%; -0.00%)</title><rect x="1829.1" y="5973" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1832.07" y="5983.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/FieldInfo.setPointDimensions (381 samples, 0.04%; +0.01%)</title><rect x="1090.5" y="5813" width="1.0" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1093.50" y="5823.5" ></text>
</g>
<g >
<title>org/joni/MatcherFactory$1.create (107 samples, 0.01%; 0.00%)</title><rect x="1824.7" y="5957" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1827.65" y="5967.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/BulkItemRequest.writeThin (165 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="1397" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="1407.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/DocumentParser.innerParseObject (23,854 samples, 2.64%; -0.12%)</title><rect x="430.0" y="5861" width="64.5" height="15.0" fill="rgb(201,201,255)" rx="2" ry="2" />
<text x="433.00" y="5871.5" >org/ela..</text>
</g>
<g >
<title>__x64_sys_fsync (136 samples, 0.02%; 0.00%)</title><rect x="1456.4" y="5845" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1459.37" y="5855.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeParseContext.&lt;init&gt; (214 samples, 0.02%; 0.00%)</title><rect x="1409.6" y="5749" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1412.58" y="5759.5" ></text>
</g>
<g >
<title>java/util/Arrays.copyOf (67 samples, 0.01%; +0.01%)</title><rect x="1870.9" y="5573" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1873.91" y="5583.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/RateLimitedIndexOutput.writeByte (169 samples, 0.02%; +0.00%)</title><rect x="1986.4" y="6005" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1989.40" y="6015.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$AuthorizationResultListener.onResponse (292 samples, 0.03%; 0.00%)</title><rect x="271.6" y="4709" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.55" y="4719.5" ></text>
</g>
<g >
<title>java/util/regex/Matcher.search (47 samples, 0.01%; 0.00%)</title><rect x="1765.5" y="5765" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1768.54" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.notifyListener (715 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="1109" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="1119.5" ></text>
</g>
<g >
<title>java/util/HashMap.putMapEntries (1,469 samples, 0.16%; +0.01%)</title><rect x="1521.9" y="6069" width="3.9" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1524.87" y="6079.5" ></text>
</g>
<g >
<title>clear_page_erms (112 samples, 0.01%; +0.00%)</title><rect x="1898.5" y="5573" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1901.51" y="5583.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.parseMediumName2 (50 samples, 0.01%; -0.00%)</title><rect x="1514.0" y="5877" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1517.00" y="5887.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene84/ForUtil.decode (86 samples, 0.01%; +0.01%)</title><rect x="2372.8" y="5941" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2375.79" y="5951.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/interceptor/UpdateRequestInterceptor.intercept (227 samples, 0.03%; 0.00%)</title><rect x="271.7" y="3845" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.72" y="3855.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$handleIndexActionAuthorizationResult$13 (38 samples, 0.00%; 0.00%)</title><rect x="271.6" y="4101" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.58" y="4111.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/json/JsonXContentParser.currentToken (103 samples, 0.01%; +0.01%)</title><rect x="1249.2" y="5685" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1252.23" y="5695.5" ></text>
</g>
<g >
<title>java/util/HashMap$KeyIterator.next (48 samples, 0.01%; 0.00%)</title><rect x="1771.7" y="5797" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1774.74" y="5807.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService.authenticate (284 samples, 0.03%; 0.00%)</title><rect x="1846.9" y="6101" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1849.86" y="6111.5" ></text>
</g>
<g >
<title>java/lang/String.hashCode (38 samples, 0.00%; 0.00%)</title><rect x="1229.7" y="5557" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1232.67" y="5567.5" ></text>
</g>
<g >
<title>java/util/ArrayList.add (63 samples, 0.01%; 0.00%)</title><rect x="533.7" y="5621" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="536.66" y="5631.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/TransportBulkAction$BulkOperation.doRun (175 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="4741" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="4751.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamInput.readVInt (50 samples, 0.01%; +0.00%)</title><rect x="292.8" y="5445" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="295.80" y="5455.5" ></text>
</g>
<g >
<title>org/joni/Matcher.matchCheck (52 samples, 0.01%; 0.00%)</title><rect x="1721.7" y="5509" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1724.73" y="5519.5" ></text>
</g>
<g >
<title>java/lang/String.split (46 samples, 0.01%; +0.00%)</title><rect x="1766.5" y="5829" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1769.54" y="5839.5" ></text>
</g>
<g >
<title>free_unref_page_list (56 samples, 0.01%; +0.00%)</title><rect x="508.8" y="5573" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="511.77" y="5583.5" ></text>
</g>
<g >
<title>java/lang/AbstractStringBuilder.append (71 samples, 0.01%; +0.00%)</title><rect x="1833.0" y="5717" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1836.05" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorizeBulkItems$18 (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="3285" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="3295.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/tokenattributes/PackedTokenAttributeImpl.clear (68 samples, 0.01%; -0.01%)</title><rect x="464.0" y="5669" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="467.00" y="5679.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/interceptor/IndicesAliasesRequestInterceptor.intercept (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="1909" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="1919.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8JsonGenerator.writeFieldName (65 samples, 0.01%; +0.00%)</title><rect x="1701.5" y="5189" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1704.55" y="5199.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/BufferedIndexInput.readShort (70 samples, 0.01%; +0.01%)</title><rect x="1911.6" y="5973" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1914.61" y="5983.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/StepListener.innerOnResponse (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="2325" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="2335.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorizeAction$9 (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="3765" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="3775.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/Mapping.getMetadataMapper (157 samples, 0.02%; 0.00%)</title><rect x="444.6" y="5797" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="447.63" y="5807.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser._skipWS (123 samples, 0.01%; +0.00%)</title><rect x="1476.2" y="5957" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1479.18" y="5967.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (597 samples, 0.07%; +0.00%)</title><rect x="1722.6" y="4389" width="1.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1725.61" y="4399.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/IntroSorter.sort (312 samples, 0.03%; 0.00%)</title><rect x="615.6" y="5653" width="0.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="618.63" y="5663.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/ByteBufferIndexInput.readShort (63 samples, 0.01%; 0.00%)</title><rect x="1877.7" y="5621" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1880.72" y="5631.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/ContextPreservingActionListener.onResponse (1,025 samples, 0.11%; 0.00%)</title><rect x="271.5" y="5253" width="2.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.52" y="5263.5" ></text>
</g>
<g >
<title>ext4_block_write_begin (281 samples, 0.03%; +0.00%)</title><rect x="510.9" y="5557" width="0.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="513.92" y="5567.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/ReplicationOperation.handlePrimaryResult (6,399 samples, 0.71%; 0.00%)</title><rect x="308.6" y="6005" width="17.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="311.64" y="6015.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/Analyzer$TokenStreamComponents.setReader (71 samples, 0.01%; +0.00%)</title><rect x="872.8" y="5765" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="875.76" y="5775.5" ></text>
</g>
<g >
<title>java/lang/Throwable.fillInStackTrace (125 samples, 0.01%; 0.00%)</title><rect x="1533.6" y="5477" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1536.62" y="5487.5" ></text>
</g>
<g >
<title>java/lang/SecurityManager.checkPermission (194 samples, 0.02%; 0.00%)</title><rect x="1534.3" y="5573" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1537.25" y="5583.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.nextToken (2,778 samples, 0.31%; -0.00%)</title><rect x="1466.0" y="5989" width="7.5" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1469.03" y="5999.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/CollectionUtils.ensureNoSelfReferences (264 samples, 0.03%; +0.00%)</title><rect x="1772.3" y="5813" width="0.7" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1775.32" y="5823.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/shard/IndexShard.applyIndexOperation (345,454 samples, 38.27%; +0.03%)</title><rect x="520.1" y="6021" width="933.9" height="15.0" fill="rgb(255,207,207)" rx="2" ry="2" />
<text x="523.11" y="6031.5" >org/elasticsearch/index/shard/IndexShard.applyIndexOperation</text>
</g>
<g >
<title>org/apache/lucene/store/ChecksumIndexInput.seek (615 samples, 0.07%; 0.00%)</title><rect x="2048.6" y="6069" width="1.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2051.63" y="6079.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/KeywordFieldMapper.normalizeValue (3,466 samples, 0.38%; -0.11%)</title><rect x="482.5" y="5781" width="9.4" height="15.0" fill="rgb(202,202,255)" rx="2" ry="2" />
<text x="485.55" y="5791.5" ></text>
</g>
<g >
<title>java/time/ZoneOffset.ofTotalSeconds (91 samples, 0.01%; +0.00%)</title><rect x="1387.9" y="5653" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1390.90" y="5663.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/packed/DirectWriter.add (100 samples, 0.01%; 0.00%)</title><rect x="1903.0" y="6005" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1906.00" y="6015.5" ></text>
</g>
<g >
<title>java/lang/String.hashCode (45 samples, 0.00%; 0.00%)</title><rect x="1220.0" y="5653" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1222.97" y="5663.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (93 samples, 0.01%; 0.00%)</title><rect x="1847.7" y="5573" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.66" y="5583.5" ></text>
</g>
<g >
<title>java/util/HashSet.add (45 samples, 0.00%; 0.00%)</title><rect x="1220.0" y="5701" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1222.97" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.unknownValue (611 samples, 0.07%; +0.00%)</title><rect x="1700.4" y="5253" width="1.7" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1703.43" y="5263.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$1.doRun (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="2293" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="2303.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/Sorter.binarySort (149 samples, 0.02%; +0.00%)</title><rect x="617.2" y="5573" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="620.17" y="5583.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/FilterDirectory.deleteFile (101 samples, 0.01%; 0.00%)</title><rect x="1847.7" y="5717" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.66" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/action/filter/SecurityActionFilter$$Lambda$5023.0x00000008016b7750.accept (724 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="3397" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.77" y="3407.5" ></text>
</g>
<g >
<title>java/util/HashMap$Node.getKey (61 samples, 0.01%; +0.01%)</title><rect x="1571.7" y="5797" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1574.75" y="5807.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene84/Lucene84PostingsReader$BlockDocsEnum.nextDoc (333 samples, 0.04%; +0.01%)</title><rect x="2360.9" y="6005" width="0.9" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2363.95" y="6015.5" ></text>
</g>
<g >
<title>org/joni/ByteCodeMachine.matchAt (77 samples, 0.01%; 0.00%)</title><rect x="1534.9" y="5829" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1537.86" y="5839.5" ></text>
</g>
<g >
<title>sun/nio/ch/FileDispatcherImpl.write (192 samples, 0.02%; 0.00%)</title><rect x="1894.1" y="5557" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1897.11" y="5567.5" ></text>
</g>
<g >
<title>com/sun/crypto/provider/CounterMode.crypt (1,046 samples, 0.12%; 0.00%)</title><rect x="295.1" y="5541" width="2.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="298.09" y="5551.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamInput.readEnum (100 samples, 0.01%; 0.00%)</title><rect x="260.6" y="5333" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="263.58" y="5343.5" ></text>
</g>
<g >
<title>CodeCache::find_blob(void*) (249 samples, 0.03%; +0.01%)</title><rect x="1691.7" y="5525" width="0.7" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1694.72" y="5535.5" ></text>
</g>
<g >
<title>java/util/HashMap.putVal (201 samples, 0.02%; +0.01%)</title><rect x="1767.7" y="5813" width="0.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1770.72" y="5823.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer._findSecondary (88 samples, 0.01%; +0.01%)</title><rect x="1197.5" y="5701" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1200.52" y="5711.5" ></text>
</g>
<g >
<title>java/security/ProtectionDomain.implies (97 samples, 0.01%; 0.00%)</title><rect x="1846.1" y="5029" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1849.14" y="5039.5" ></text>
</g>
<g >
<title>org/elasticsearch/watcher/ResourceWatcherService$ResourceMonitor.run (37 samples, 0.00%; 0.00%)</title><rect x="308.4" y="6101" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="311.37" y="6111.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/DataOutput.writeSignedVLong (76 samples, 0.01%; 0.00%)</title><rect x="2322.0" y="5957" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2324.99" y="5967.5" ></text>
</g>
<g >
<title>java/util/HashMap.put (111 samples, 0.01%; -0.00%)</title><rect x="1848.7" y="5685" width="0.3" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1851.68" y="5695.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/RAMFile.addBuffer (45 samples, 0.00%; 0.00%)</title><rect x="2400.4" y="5941" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2403.43" y="5951.5" ></text>
</g>
<g >
<title>Java_java_lang_Throwable_fillInStackTrace (377 samples, 0.04%; 0.00%)</title><rect x="1763.5" y="5605" width="1.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1766.48" y="5615.5" ></text>
</g>
<g >
<title>ksys_write (2,122 samples, 0.24%; 0.00%)</title><rect x="510.5" y="5685" width="5.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="513.45" y="5695.5" ></text>
</g>
<g >
<title>org/joni/ByteCodeMachine.opAnyCharStar (59 samples, 0.01%; +0.00%)</title><rect x="1795.4" y="5893" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1798.42" y="5903.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/core/KeywordTokenizer.incrementToken (610 samples, 0.07%; +0.03%)</title><rect x="1155.9" y="5781" width="1.7" height="15.0" fill="rgb(255,207,207)" rx="2" ry="2" />
<text x="1158.94" y="5791.5" ></text>
</g>
<g >
<title>updateBytesCRC32 (92 samples, 0.01%; -0.00%)</title><rect x="1896.3" y="6053" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1899.29" y="6063.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (5,674 samples, 0.63%; 0.00%)</title><rect x="1625.5" y="5573" width="15.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.48" y="5583.5" ></text>
</g>
<g >
<title>java/util/DualPivotQuicksort.sort (127 samples, 0.01%; 0.00%)</title><rect x="1857.5" y="5637" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1860.45" y="5647.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/LongValues$1.get (40 samples, 0.00%; +0.00%)</title><rect x="2041.0" y="6053" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2043.96" y="6063.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/json/JsonXContentParser.nextToken (5,220 samples, 0.58%; +0.02%)</title><rect x="1133.5" y="5893" width="14.1" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1136.52" y="5903.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/AbstractRunnable.run (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="917" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="927.5" ></text>
</g>
<g >
<title>java/lang/SecurityManager.checkPermission (55 samples, 0.01%; 0.00%)</title><rect x="1095.3" y="5589" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1098.28" y="5599.5" ></text>
</g>
<g >
<title>java/util/zip/Deflater.deflateBytesBytes (9,107 samples, 1.01%; 0.00%)</title><rect x="1590.2" y="2197" width="24.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1593.23" y="2207.5" >j..</text>
</g>
<g >
<title>java/util/ArrayList.forEach (931 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="2709" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.83" y="2719.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/time/DateFormatter$$Lambda$58.0x0000000800bc8248.apply (418 samples, 0.05%; +0.00%)</title><rect x="1753.5" y="4917" width="1.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1756.47" y="4927.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/BaseFuture.set (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="3013" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="3023.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ValueSource$TemplatedValue.copyAndResolve (38 samples, 0.00%; 0.00%)</title><rect x="1533.1" y="5157" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1536.06" y="5167.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorizeBulkItems$19 (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="2773" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="2783.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/StringMSBRadixSorter.byteAt (41 samples, 0.00%; 0.00%)</title><rect x="612.7" y="5669" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="615.73" y="5679.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.done (11,965 samples, 1.33%; 0.00%)</title><rect x="1589.5" y="3045" width="32.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.47" y="3055.5" >or..</text>
</g>
<g >
<title>BacktraceBuilder::push(Method*, int, Thread*) (47 samples, 0.01%; +0.00%)</title><rect x="1719.2" y="4677" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1722.16" y="4687.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/TransportAction.execute (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="3605" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="3615.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/ContextPreservingActionListener.onResponse (3,058 samples, 0.34%; 0.00%)</title><rect x="274.7" y="4533" width="8.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.66" y="4543.5" ></text>
</g>
<g >
<title>java/util/ArrayList.clear (319 samples, 0.04%; +0.00%)</title><rect x="2337.0" y="6005" width="0.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2339.95" y="6015.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/AbstractRunnable.run (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="1605" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="1615.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.value (106 samples, 0.01%; 0.00%)</title><rect x="1701.8" y="5173" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1704.77" y="5183.5" ></text>
</g>
<g >
<title>Java_java_lang_Throwable_fillInStackTrace (353 samples, 0.04%; +0.00%)</title><rect x="1632.5" y="4789" width="1.0" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1635.52" y="4799.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene84/Lucene84PostingsWriter.addPosition (200 samples, 0.02%; +0.01%)</title><rect x="531.1" y="5733" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="534.07" y="5743.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/SortedSetDocValuesWriter.finishCurrentDoc (5,638 samples, 0.62%; +0.15%)</title><rect x="1071.8" y="5797" width="15.2" height="15.0" fill="rgb(255,199,199)" rx="2" ry="2" />
<text x="1074.76" y="5807.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/SortedSetDocValuesWriter$BufferedSortedSetDocValues.docID (37 samples, 0.00%; +0.00%)</title><rect x="547.5" y="5685" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="550.53" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/TransportReplicationAction$AsyncReplicaAction.onResponse (47 samples, 0.01%; 0.00%)</title><rect x="1845.3" y="5557" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1848.30" y="5567.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (168 samples, 0.02%; +0.00%)</title><rect x="1629.5" y="4277" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1632.47" y="4287.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene80/Lucene80DocValuesProducer$20.get (98 samples, 0.01%; -0.00%)</title><rect x="1929.3" y="5973" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1932.28" y="5983.5" ></text>
</g>
<g >
<title>java/util/zip/Deflater.deflateBytesBytes (131 samples, 0.01%; +0.00%)</title><rect x="1702.5" y="1653" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1705.53" y="1663.5" ></text>
</g>
<g >
<title>com/maxmind/geoip2/exception/AddressNotFoundException.&lt;init&gt; (55 samples, 0.01%; 0.00%)</title><rect x="1536.9" y="4949" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.89" y="4959.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/similarity/SimilarityService$PerFieldSimilarity.get (79 samples, 0.01%; 0.00%)</title><rect x="635.1" y="5813" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="638.06" y="5823.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.execute (1,445 samples, 0.16%; 0.00%)</title><rect x="1535.1" y="5717" width="3.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1538.07" y="5727.5" ></text>
</g>
<g >
<title>java/lang/Thread.isAlive (86 samples, 0.01%; +0.00%)</title><rect x="1328.4" y="5637" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1331.42" y="5647.5" ></text>
</g>
<g >
<title>new_sync_write (42 samples, 0.00%; 0.00%)</title><rect x="2262.8" y="5621" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2265.82" y="5631.5" ></text>
</g>
<g >
<title>com/maxmind/geoip2/exception/AddressNotFoundException.&lt;init&gt; (68 samples, 0.01%; 0.00%)</title><rect x="1537.4" y="5013" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1540.37" y="5023.5" ></text>
</g>
<g >
<title>java/lang/Exception.&lt;init&gt; (440 samples, 0.05%; 0.00%)</title><rect x="1707.6" y="5573" width="1.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1710.61" y="5583.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (11,022 samples, 1.22%; 0.00%)</title><rect x="1722.4" y="5093" width="29.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1725.40" y="5103.5" >or..</text>
</g>
<g >
<title>java/util/zip/CheckedOutputStream.write (69 samples, 0.01%; +0.01%)</title><rect x="2179.0" y="5957" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2182.03" y="5967.5" ></text>
</g>
<g >
<title>java/util/TreeMap.get (41 samples, 0.00%; 0.00%)</title><rect x="1588.1" y="5733" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1591.10" y="5743.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$5.onResponse (600 samples, 0.07%; 0.00%)</title><rect x="284.5" y="5429" width="1.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="287.53" y="5439.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.sort (53 samples, 0.01%; 0.00%)</title><rect x="613.2" y="5621" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="616.18" y="5631.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/time/DateFormatter$$Lambda$58.0x0000000800bc8248.apply (1,349 samples, 0.15%; +0.00%)</title><rect x="1679.8" y="5525" width="3.7" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1682.81" y="5535.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/time/JavaDateFormatter.parse (1,046 samples, 0.12%; 0.00%)</title><rect x="473.6" y="5765" width="2.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="476.59" y="5775.5" ></text>
</g>
<g >
<title>[unknown] (42 samples, 0.00%; 0.00%)</title><rect x="2262.8" y="5749" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2265.82" y="5759.5" ></text>
</g>
<g >
<title>vtable stub (168 samples, 0.02%; +0.02%)</title><rect x="921.3" y="5781" width="0.4" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="924.28" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.ensureNoSelfReferences (524 samples, 0.06%; 0.00%)</title><rect x="1711.0" y="4437" width="1.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1714.05" y="4447.5" ></text>
</g>
<g >
<title>vfs_write (49 samples, 0.01%; +0.00%)</title><rect x="2200.5" y="5701" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2203.48" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/CollectionUtils$$Lambda$6125.0x0000000801a244a0.iterator (225 samples, 0.02%; 0.00%)</title><rect x="1777.4" y="5893" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1780.40" y="5903.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/time/JavaDateFormatter.&lt;init&gt; (434 samples, 0.05%; +0.00%)</title><rect x="1682.3" y="5477" width="1.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1685.29" y="5487.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeFormatterBuilder$CompositePrinterParser.parse (291 samples, 0.03%; +0.00%)</title><rect x="1668.2" y="5541" width="0.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1671.25" y="5551.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.radixSort (2,006 samples, 0.22%; 0.00%)</title><rect x="562.2" y="5685" width="5.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="565.25" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamOutput.writeBytesReference (77 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="229" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="239.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/tokenattributes/CharTermAttributeImpl.growTermBuffer (38 samples, 0.00%; +0.00%)</title><rect x="850.0" y="5765" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="853.02" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Pipeline$$Lambda$6068.0x00000008019e2168.accept (601 samples, 0.07%; +0.00%)</title><rect x="1622.8" y="5333" width="1.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1625.75" y="5343.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/json/JsonXContentParser.currentToken (97 samples, 0.01%; +0.01%)</title><rect x="1358.1" y="5717" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1361.10" y="5727.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/FSDirectory.deleteFile (164 samples, 0.02%; 0.00%)</title><rect x="1901.2" y="5989" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1904.19" y="5999.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator$$Lambda$5266.0x0000000801822098.accept (3,063 samples, 0.34%; 0.00%)</title><rect x="274.7" y="4853" width="8.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.65" y="4863.5" ></text>
</g>
<g >
<title>java/util/zip/Deflater.deflate (231 samples, 0.03%; 0.00%)</title><rect x="323.4" y="5525" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="326.43" y="5535.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/RateLimitedIndexOutput.writeByte (51 samples, 0.01%; +0.00%)</title><rect x="2263.1" y="6021" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2266.13" y="6031.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/TransportAction$RequestFilterChain.proceed (11,955 samples, 1.32%; 0.00%)</title><rect x="1589.5" y="2869" width="32.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.50" y="2879.5" >or..</text>
</g>
<g >
<title>__block_commit_write.isra.41 (68 samples, 0.01%; +0.00%)</title><rect x="1900.4" y="5637" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1903.40" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5648.0x0000000801980b40.accept (931 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="2853" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.83" y="2863.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/core/KeywordTokenizer.end (165 samples, 0.02%; 0.00%)</title><rect x="1418.6" y="5813" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1421.62" y="5823.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.notifyListener (38 samples, 0.00%; 0.00%)</title><rect x="271.6" y="3125" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.58" y="3135.5" ></text>
</g>
<g >
<title>java/util/stream/AbstractPipeline.wrapAndCopyInto (173 samples, 0.02%; 0.00%)</title><rect x="271.8" y="3093" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.77" y="3103.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/BytesRef.bytesEquals (200 samples, 0.02%; 0.00%)</title><rect x="2045.0" y="6021" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2048.04" y="6031.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeParseContext.toResolved (100 samples, 0.01%; 0.00%)</title><rect x="476.1" y="5717" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="479.15" y="5727.5" ></text>
</g>
<g >
<title>unmap_region (53 samples, 0.01%; 0.00%)</title><rect x="1893.8" y="5365" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1896.84" y="5375.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/compress/LZ4.compressWithDictionary (117 samples, 0.01%; +0.00%)</title><rect x="536.8" y="5685" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="539.83" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.authorizeIndexActionName (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="4613" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="4623.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.&lt;init&gt; (120 samples, 0.01%; 0.00%)</title><rect x="1586.9" y="5797" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1589.86" y="5807.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/transport/SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$1.doRun (64 samples, 0.01%; 0.00%)</title><rect x="1846.9" y="5813" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1849.86" y="5823.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser._nextAfterName (56 samples, 0.01%; -0.00%)</title><rect x="1473.3" y="5957" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1476.26" y="5967.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/support/AbstractXContentParser.textOrNull (2,219 samples, 0.25%; 0.00%)</title><rect x="1249.2" y="5701" width="6.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1252.23" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/action/filter/SecurityActionFilter.lambda$applyInternal$3 (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="757" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="767.5" ></text>
</g>
<g >
<title>org/elasticsearch/http/AbstractHttpServerTransport.handleIncomingRequest (3,081 samples, 0.34%; 0.00%)</title><rect x="274.6" y="5333" width="8.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.62" y="5343.5" ></text>
</g>
<g >
<title>java/lang/String.hashCode (114 samples, 0.01%; 0.00%)</title><rect x="1587.3" y="5829" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1590.26" y="5839.5" ></text>
</g>
<g >
<title>java_lang_Throwable::fill_in_stack_trace(Handle, methodHandle const&amp;, Thread*) (171 samples, 0.02%; +0.01%)</title><rect x="1719.0" y="4693" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1721.97" y="4703.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.onResponse (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="1381" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="1391.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/SingleObjectCache.getOrRefresh (66 samples, 0.01%; 0.00%)</title><rect x="1847.3" y="5301" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.32" y="5311.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/TermsHashPerField.positionStreamSlice (12,254 samples, 1.36%; +0.25%)</title><rect x="927.6" y="5797" width="33.1" height="15.0" fill="rgb(255,192,192)" rx="2" ry="2" />
<text x="930.56" y="5807.5" >or..</text>
</g>
<g >
<title>java/lang/String.hashCode (278 samples, 0.03%; 0.00%)</title><rect x="453.9" y="5637" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="456.87" y="5647.5" ></text>
</g>
<g >
<title>java/util/HashMap.putMapEntries (683 samples, 0.08%; +0.02%)</title><rect x="1407.2" y="5669" width="1.9" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1410.24" y="5679.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/NotifyOnceListener.onResponse (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="1989" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="1999.5" ></text>
</g>
<g >
<title>pagecache_get_page (432 samples, 0.05%; +0.00%)</title><rect x="1898.4" y="5653" width="1.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1901.35" y="5663.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5287.0x0000000801824588.accept (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="4501" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="4511.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5975.0x0000000801982e30.accept (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="2709" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="2719.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/BytesRefHash$1.get (44 samples, 0.00%; +0.00%)</title><rect x="529.1" y="5685" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="532.07" y="5695.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene84/Lucene84SkipWriter.bufferSkip (506 samples, 0.06%; 0.00%)</title><rect x="1879.2" y="5685" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1882.21" y="5695.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (55 samples, 0.01%; +0.01%)</title><rect x="416.9" y="5909" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="419.87" y="5919.5" ></text>
</g>
<g >
<title>java/util/zip/Deflater.deflate (43 samples, 0.00%; 0.00%)</title><rect x="1629.8" y="485" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="495.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/NormsConsumer.mergeNormsField (221 samples, 0.02%; 0.00%)</title><rect x="2178.7" y="6101" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2181.69" y="6111.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/StandardDirectoryReader.doOpenFromWriter (17,563 samples, 1.95%; 0.00%)</title><rect x="1848.1" y="5877" width="47.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1851.09" y="5887.5" >org/..</text>
</g>
<g >
<title>java/util/ArrayList.add (48 samples, 0.01%; 0.00%)</title><rect x="506.9" y="5893" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="509.95" y="5903.5" ></text>
</g>
<g >
<title>java/util/HashMap$ValueIterator.next (40 samples, 0.00%; 0.00%)</title><rect x="1778.4" y="5861" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1781.44" y="5871.5" ></text>
</g>
<g >
<title>sun/nio/ch/FileChannelImpl.read (373 samples, 0.04%; 0.00%)</title><rect x="2049.1" y="5957" width="1.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2052.10" y="5967.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/FilterStreamInput.readBytes (54 samples, 0.01%; 0.00%)</title><rect x="253.1" y="5237" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="256.14" y="5247.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/base/ParserMinimalBase.getCurrentToken (47 samples, 0.01%; +0.01%)</title><rect x="1310.1" y="5733" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1313.13" y="5743.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/common/DateFormat$5.lambda$getFunction$0 (234 samples, 0.03%; 0.00%)</title><rect x="1533.3" y="5637" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1536.33" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/translog/Translog$Index.write (3,020 samples, 0.33%; +0.00%)</title><rect x="1107.1" y="5909" width="8.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1110.13" y="5919.5" ></text>
</g>
<g >
<title>java/lang/invoke/DirectMethodHandle.allocateInstance (40 samples, 0.00%; +0.00%)</title><rect x="1778.0" y="5845" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1781.00" y="5855.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (283 samples, 0.03%; +0.00%)</title><rect x="2182.1" y="6085" width="0.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2185.12" y="6095.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (306 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="3765" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="3775.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$1.doRun (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="3333" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="3343.5" ></text>
</g>
<g >
<title>java/lang/Throwable.fillInStackTrace (377 samples, 0.04%; 0.00%)</title><rect x="1763.5" y="5621" width="1.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1766.48" y="5631.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/AbstractRunnable.run (38 samples, 0.00%; 0.00%)</title><rect x="308.4" y="6149" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="311.37" y="6159.5" ></text>
</g>
<g >
<title>__filemap_fdatawrite_range (129 samples, 0.01%; 0.00%)</title><rect x="1456.4" y="5765" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1459.39" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/RequestHandlerRegistry.processMessageReceived (1,067 samples, 0.12%; 0.00%)</title><rect x="271.4" y="5589" width="2.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.45" y="5599.5" ></text>
</g>
<g >
<title>java/lang/String.hashCode (67 samples, 0.01%; 0.00%)</title><rect x="1417.6" y="5685" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1420.61" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="3429" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="3439.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.onResponse (38 samples, 0.00%; 0.00%)</title><rect x="271.6" y="4005" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.58" y="4015.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/Sorter.binarySort (89 samples, 0.01%; 0.00%)</title><rect x="566.4" y="5541" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="569.36" y="5551.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/ContextPreservingActionListener.onResponse (215 samples, 0.02%; 0.00%)</title><rect x="1627.8" y="3669" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="3679.5" ></text>
</g>
<g >
<title>java/lang/StringBuilder.setLength (70 samples, 0.01%; 0.00%)</title><rect x="439.1" y="5749" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="442.13" y="5759.5" ></text>
</g>
<g >
<title>java/security/AccessControlContext.checkPermission (83 samples, 0.01%; 0.00%)</title><rect x="1736.2" y="3781" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1739.16" y="3791.5" ></text>
</g>
<g >
<title>/lib/x86_64-linux-gnu/libz.so.1.2.11 (149 samples, 0.02%; +0.02%)</title><rect x="1735.1" y="37" width="0.4" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1738.14" y="47.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$1.doRun (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="2597" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="2607.5" ></text>
</g>
<g >
<title>java/lang/String.hashCode (48 samples, 0.01%; 0.00%)</title><rect x="1621.9" y="4853" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1624.92" y="4863.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/settings/Setting.exists (146 samples, 0.02%; 0.00%)</title><rect x="275.4" y="2085" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="278.36" y="2095.5" ></text>
</g>
<g >
<title>org/apache/lucene/document/Field$StringTokenStream.reset (59 samples, 0.01%; +0.01%)</title><rect x="911.5" y="5781" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="914.53" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/bytes/BytesArray.get (51 samples, 0.01%; +0.01%)</title><rect x="1125.4" y="5893" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1128.35" y="5903.5" ></text>
</g>
<g >
<title>java/util/HashMap.hash (225 samples, 0.02%; 0.00%)</title><rect x="1888.8" y="5669" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1891.79" y="5679.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/KeywordFieldMapper.parseCreateField (3,430 samples, 0.38%; +0.02%)</title><rect x="1150.3" y="5813" width="9.3" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1153.31" y="5823.5" ></text>
</g>
<g >
<title>java/util/HashMap.hash (67 samples, 0.01%; 0.00%)</title><rect x="1417.6" y="5701" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1420.61" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine$$Lambda$5635.0x0000000801827740.accept (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="3093" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="3103.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/Tokenizer.close (37 samples, 0.00%; -0.01%)</title><rect x="365.4" y="5781" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="368.39" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator.authenticateAsync (215 samples, 0.02%; 0.00%)</title><rect x="1627.8" y="3941" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="3951.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/EsExecutors$DirectExecutorService.execute (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="2373" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="2383.5" ></text>
</g>
<g >
<title>deflateSetDictionary (1,422 samples, 0.16%; +0.16%)</title><rect x="636.1" y="5685" width="3.8" height="15.0" fill="rgb(255,198,198)" rx="2" ry="2" />
<text x="639.07" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/watcher/FileWatcher$FileObserver.checkAndNotify (37 samples, 0.00%; 0.00%)</title><rect x="308.4" y="6053" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="311.37" y="6063.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.computeCommonPrefixLengthAndBuildHistogram (50 samples, 0.01%; 0.00%)</title><rect x="529.1" y="5717" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="532.05" y="5727.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/IntroSorter.quicksort (68 samples, 0.01%; +0.00%)</title><rect x="616.9" y="5573" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="619.85" y="5583.5" ></text>
</g>
<g >
<title>java/util/HashMap$EntryIterator.next (326 samples, 0.04%; 0.00%)</title><rect x="1522.9" y="6037" width="0.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1525.95" y="6047.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (11,020 samples, 1.22%; 0.00%)</title><rect x="1722.4" y="5045" width="29.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1725.40" y="5055.5" >or..</text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/json/JsonXContentParser.nextToken (109 samples, 0.01%; -0.00%)</title><rect x="1481.5" y="5973" width="0.3" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1484.47" y="5983.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/DocumentsWriter.doFlush (186 samples, 0.02%; 0.00%)</title><rect x="1456.7" y="5925" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1459.74" y="5935.5" ></text>
</g>
<g >
<title>java/util/HashMap.getNode (40 samples, 0.00%; 0.00%)</title><rect x="1831.0" y="5653" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1834.02" y="5663.5" ></text>
</g>
<g >
<title>pagecache_get_page (206 samples, 0.02%; 0.00%)</title><rect x="324.6" y="5477" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="327.56" y="5487.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/action/filter/SecurityActionFilter.authorizeRequest (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="4853" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="4863.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (971 samples, 0.11%; 0.00%)</title><rect x="1693.1" y="5717" width="2.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1696.13" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/json/JsonXContentParser.currentName (140 samples, 0.02%; +0.00%)</title><rect x="431.3" y="5845" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="434.32" y="5855.5" ></text>
</g>
<g >
<title>vtable stub (117 samples, 0.01%; +0.00%)</title><rect x="1920.2" y="6021" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1923.17" y="6031.5" ></text>
</g>
<g >
<title>java/util/HashMap.resize (219 samples, 0.02%; +0.00%)</title><rect x="1469.2" y="5877" width="0.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1472.16" y="5887.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (580 samples, 0.06%; 0.00%)</title><rect x="1722.6" y="4293" width="1.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1725.62" y="4303.5" ></text>
</g>
<g >
<title>vtable stub (84 samples, 0.01%; +0.01%)</title><rect x="551.2" y="5685" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="554.19" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ConditionalProcessor.lambda$execute$1 (1,098 samples, 0.12%; 0.00%)</title><rect x="1535.1" y="5397" width="2.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1538.08" y="5407.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/BytesRefHash.doHash (236 samples, 0.03%; 0.00%)</title><rect x="1071.1" y="5749" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1074.12" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$CachingAsyncSupplier.getAsync (936 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="4565" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.82" y="4575.5" ></text>
</g>
<g >
<title>java/util/HashMap.putMapEntries (96 samples, 0.01%; +0.00%)</title><rect x="1295.7" y="5541" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1298.71" y="5551.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (10,867 samples, 1.20%; 0.00%)</title><rect x="1722.4" y="4981" width="29.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1725.40" y="4991.5" >or..</text>
</g>
<g >
<title>com/sun/crypto/provider/GaloisCounterMode.doLastBlock (122 samples, 0.01%; 0.00%)</title><rect x="306.2" y="5685" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="309.23" y="5695.5" ></text>
</g>
<g >
<title>java/util/Arrays.copyOf (38 samples, 0.00%; +0.00%)</title><rect x="2322.1" y="5829" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2325.09" y="5839.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8JsonGenerator._writeStringSegment (59 samples, 0.01%; +0.01%)</title><rect x="1713.5" y="4325" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1716.47" y="4335.5" ></text>
</g>
<g >
<title>ksys_write (42 samples, 0.00%; 0.00%)</title><rect x="2262.8" y="5669" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2265.82" y="5679.5" ></text>
</g>
<g >
<title>java/util/HashMap$HashIterator.&lt;init&gt; (45 samples, 0.00%; +0.00%)</title><rect x="1771.0" y="5765" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1774.00" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/bytes/BytesReferenceStreamInput.readByte (74 samples, 0.01%; 0.00%)</title><rect x="271.2" y="5333" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.19" y="5343.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (2,709 samples, 0.30%; 0.00%)</title><rect x="1710.8" y="4997" width="7.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1713.80" y="5007.5" ></text>
</g>
<g >
<title>com/github/mustachejava/Mustache.execute (88 samples, 0.01%; 0.00%)</title><rect x="1740.6" y="4037" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1743.62" y="4047.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser._skipWS (158 samples, 0.02%; -0.01%)</title><rect x="448.7" y="5749" width="0.4" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="451.72" y="5759.5" ></text>
</g>
<g >
<title>org/joni/StackMachine.ensure1 (238 samples, 0.03%; +0.00%)</title><rect x="1822.5" y="5845" width="0.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1825.51" y="5855.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8JsonGenerator.writeString (679 samples, 0.08%; +0.01%)</title><rect x="1583.8" y="5685" width="1.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1586.75" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/MapperService.indexAnalyzer (458 samples, 0.05%; 0.00%)</title><rect x="1321.5" y="5701" width="1.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1324.52" y="5711.5" ></text>
</g>
<g >
<title>java_lang_Throwable::fill_in_stack_trace(Handle, methodHandle const&amp;, Thread*) (124 samples, 0.01%; +0.00%)</title><rect x="1533.6" y="5397" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1536.62" y="5407.5" ></text>
</g>
<g >
<title>io/netty/handler/ssl/SslHandler.decodeJdkCompatible (27,757 samples, 3.08%; 0.00%)</title><rect x="226.5" y="5941" width="75.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="229.49" y="5951.5" >io/netty..</text>
</g>
<g >
<title>com/sun/crypto/provider/CipherCore.doFinal (2,639 samples, 0.29%; +0.03%)</title><rect x="293.9" y="5669" width="7.1" height="15.0" fill="rgb(255,207,207)" rx="2" ry="2" />
<text x="296.90" y="5679.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/ContextPreservingActionListener.onResponse (715 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="2133" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="2143.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine$$Lambda$5635.0x0000000801827740.accept (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="3141" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="3151.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorize$1 (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="4677" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="4687.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/store/Store.stats (66 samples, 0.01%; 0.00%)</title><rect x="1847.3" y="5349" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.32" y="5359.5" ></text>
</g>
<g >
<title>io/netty/channel/AbstractChannelHandlerContext.invokeChannelRead (60 samples, 0.01%; +0.00%)</title><rect x="274.4" y="5573" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="277.38" y="5583.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/lucene/store/FilterIndexOutput.getFilePointer (141 samples, 0.02%; +0.01%)</title><rect x="1873.4" y="5685" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1876.36" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.onResponse (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="3477" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="3487.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeFormatter.parseResolved0 (268 samples, 0.03%; 0.00%)</title><rect x="1752.6" y="5013" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1755.64" y="5023.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/GroupedActionListener.onResponse (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="3557" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="3567.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/BulkRequest$$Lambda$6053.0x00000008019df4a0.accept (46 samples, 0.01%; +0.00%)</title><rect x="276.7" y="4149" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="279.67" y="4159.5" ></text>
</g>
<g >
<title>org/elasticsearch/rest/action/document/RestBulkAction.prepareRequest (2,503 samples, 0.28%; 0.00%)</title><rect x="276.2" y="4197" width="6.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="279.16" y="4207.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (48 samples, 0.01%; 0.00%)</title><rect x="271.6" y="4277" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.57" y="4287.5" ></text>
</g>
<g >
<title>java/util/zip/CheckedOutputStream.write (70 samples, 0.01%; -0.00%)</title><rect x="2403.1" y="5909" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2406.13" y="5919.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundHandler.sendMessage (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="709" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="719.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (215 samples, 0.02%; 0.00%)</title><rect x="1627.8" y="3717" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="3727.5" ></text>
</g>
<g >
<title>/lib/x86_64-linux-gnu/libz.so.1.2.11 (200 samples, 0.02%; +0.02%)</title><rect x="1714.4" y="805" width="0.6" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1717.45" y="815.5" ></text>
</g>
<g >
<title>alloc_pages_current (83 samples, 0.01%; +0.00%)</title><rect x="620.6" y="5301" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="623.56" y="5311.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.sort (81 samples, 0.01%; 0.00%)</title><rect x="613.5" y="5589" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="616.49" y="5599.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/ObjectMapper.getMapper (257 samples, 0.03%; 0.00%)</title><rect x="453.0" y="5733" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="455.97" y="5743.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/Tokenizer.setReader (58 samples, 0.01%; +0.01%)</title><rect x="1320.3" y="5685" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1323.31" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$handleIndexActionAuthorizationResult$13 (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="2517" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="2527.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/BufferedIndexInput.readVInt (75 samples, 0.01%; +0.01%)</title><rect x="2372.3" y="5941" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2375.33" y="5951.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/DocumentsWriterFlushControl.doAfterDocument (108 samples, 0.01%; 0.00%)</title><rect x="330.7" y="5893" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="333.66" y="5903.5" ></text>
</g>
<g >
<title>java/util/HashMap.hash (38 samples, 0.00%; 0.00%)</title><rect x="1663.8" y="5221" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1666.77" y="5231.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/support/AbstractXContentParser.readMapEntries (13,385 samples, 1.48%; -0.00%)</title><rect x="1483.0" y="5989" width="36.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1485.97" y="5999.5" >org..</text>
</g>
<g >
<title>org/apache/lucene/index/PointValuesWriter$1.getByteAt (44 samples, 0.00%; +0.00%)</title><rect x="1867.1" y="5541" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1870.13" y="5551.5" ></text>
</g>
<g >
<title>java/util/HashMap$HashIterator.&lt;init&gt; (219 samples, 0.02%; +0.02%)</title><rect x="1553.8" y="5749" width="0.6" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1556.80" y="5759.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/ByteBlockPool$DirectTrackingAllocator.getByteBlock (90 samples, 0.01%; +0.01%)</title><rect x="1051.6" y="5749" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1054.60" y="5759.5" ></text>
</g>
<g >
<title>java/lang/SecurityManager.checkPermission (846 samples, 0.09%; 0.00%)</title><rect x="1749.1" y="4773" width="2.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1752.07" y="4783.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$runRequestInterceptors$14 (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="2309" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="2319.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/blocktree/BlockTreeTermsWriter$TermsWriter.writeBlock (653 samples, 0.07%; 0.00%)</title><rect x="1886.7" y="5685" width="1.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1889.74" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/SpecialPermission.check (846 samples, 0.09%; 0.00%)</title><rect x="1749.1" y="4789" width="2.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1752.07" y="4799.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/packed/DirectWriter.add (1,252 samples, 0.14%; 0.00%)</title><rect x="2032.8" y="6037" width="3.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2035.76" y="6047.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.setFieldValue (95 samples, 0.01%; 0.00%)</title><rect x="1638.6" y="5093" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1641.65" y="5103.5" ></text>
</g>
<g >
<title>java/security/Permissions.getPermissionCollection (531 samples, 0.06%; +0.00%)</title><rect x="1834.5" y="5781" width="1.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1837.51" y="5791.5" ></text>
</g>
<g >
<title>/lib/x86_64-linux-gnu/libz.so.1.2.11 (16,379 samples, 1.81%; +1.81%)</title><rect x="713.1" y="5685" width="44.3" height="15.0" fill="rgb(255,82,82)" rx="2" ry="2" />
<text x="716.15" y="5695.5" >/lib..</text>
</g>
<g >
<title>org/elasticsearch/index/mapper/DocumentParser.parseObjectOrField (20,876 samples, 2.31%; 0.00%)</title><rect x="1217.9" y="5813" width="56.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1220.91" y="5823.5" >org/e..</text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5648.0x0000000801980b40.accept (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="2517" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="2527.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$1.doRun (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="1941" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="1951.5" ></text>
</g>
<g >
<title>java/util/HashSet.remove (43 samples, 0.00%; 0.00%)</title><rect x="1648.8" y="5333" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1651.84" y="5343.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeParseContext.setParsedField (44 samples, 0.00%; 0.00%)</title><rect x="501.2" y="5701" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="504.22" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/interceptor/ResizeRequestInterceptor.intercept (230 samples, 0.03%; 0.00%)</title><rect x="271.7" y="4357" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.72" y="4367.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/MMapDirectory$$Lambda$3159.0x00000008013da5a8.run (54 samples, 0.01%; 0.00%)</title><rect x="1847.9" y="5605" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.93" y="5615.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/packed/DirectMonotonicWriter.flush (107 samples, 0.01%; +0.00%)</title><rect x="2041.2" y="6037" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2044.23" y="6047.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/InboundHandler.messageReceived (3,121 samples, 0.35%; 0.00%)</title><rect x="284.5" y="5685" width="8.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="287.51" y="5695.5" ></text>
</g>
<g >
<title>java/util/HashMap.putAll (664 samples, 0.07%; 0.00%)</title><rect x="498.4" y="5669" width="1.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="501.41" y="5679.5" ></text>
</g>
<g >
<title>java/security/AccessControlContext.checkPermission (1,972 samples, 0.22%; +0.00%)</title><rect x="1833.6" y="5909" width="5.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1836.65" y="5919.5" ></text>
</g>
<g >
<title>do_page_fault (97 samples, 0.01%; 0.00%)</title><rect x="1632.2" y="4869" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1635.21" y="4879.5" ></text>
</g>
<g >
<title>java/lang/ThreadLocal$ThreadLocalMap.getEntry (260 samples, 0.03%; +0.03%)</title><rect x="884.0" y="5685" width="0.7" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="887.01" y="5695.5" ></text>
</g>
<g >
<title>/lib/x86_64-linux-gnu/libz.so.1.2.11 (176 samples, 0.02%; +0.00%)</title><rect x="226.8" y="5589" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="229.76" y="5599.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/EsExecutors$DirectExecutorService.execute (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="2197" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="2207.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/FilterDirectory.openInput (40 samples, 0.00%; 0.00%)</title><rect x="621.6" y="5733" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="624.58" y="5743.5" ></text>
</g>
<g >
<title>org/joni/Matcher.searchCommon (14,679 samples, 1.63%; +0.00%)</title><rect x="1785.0" y="5957" width="39.7" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1787.97" y="5967.5" >org..</text>
</g>
<g >
<title>org/apache/lucene/codecs/DocValuesConsumer$SortedSetDocValuesSub.nextDoc (4,827 samples, 0.53%; -0.00%)</title><rect x="1924.1" y="6021" width="13.0" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1927.08" y="6031.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/DataOutput.writeLong (643 samples, 0.07%; +0.00%)</title><rect x="2324.4" y="5989" width="1.7" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2327.40" y="5999.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.value (874 samples, 0.10%; +0.00%)</title><rect x="1577.9" y="5749" width="2.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1580.91" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/indices/IndexingMemoryController.recordOperationBytes (209 samples, 0.02%; 0.00%)</title><rect x="1121.6" y="5957" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1124.58" y="5967.5" ></text>
</g>
<g >
<title>java/util/HashMap.remove (79 samples, 0.01%; +0.00%)</title><rect x="1411.5" y="5621" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1414.51" y="5631.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/lucene/store/FilterIndexOutput.writeByte (100 samples, 0.01%; 0.00%)</title><rect x="1959.9" y="5957" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1962.90" y="5967.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene80/IndexedDISI.flush (606 samples, 0.07%; -0.00%)</title><rect x="1958.5" y="6021" width="1.7" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1961.54" y="6031.5" ></text>
</g>
<g >
<title>java/time/format/Parsed.copy (2,424 samples, 0.27%; 0.00%)</title><rect x="1376.3" y="5637" width="6.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1379.32" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/DocumentParser.getMapper (449 samples, 0.05%; +0.00%)</title><rect x="1201.9" y="5797" width="1.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1204.92" y="5807.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene84/Lucene84SkipWriter.bufferSkip (5,905 samples, 0.65%; -0.00%)</title><rect x="2306.5" y="6021" width="15.9" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2309.46" y="6031.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene84/ForDeltaUtil.decodeAndPrefixSum (296 samples, 0.03%; -0.01%)</title><rect x="2371.3" y="5957" width="0.8" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2374.26" y="5967.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/common/DateProcessor.execute (264 samples, 0.03%; 0.00%)</title><rect x="1539.0" y="5845" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1541.97" y="5855.5" ></text>
</g>
<g >
<title>irq_exit (47 samples, 0.01%; 0.00%)</title><rect x="712.9" y="5653" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="715.85" y="5663.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/ContextPreservingActionListener.onResponse (174 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="4341" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="4351.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService.authenticate (174 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="4645" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="4655.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (10,867 samples, 1.20%; 0.00%)</title><rect x="1722.4" y="4997" width="29.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1725.40" y="5007.5" >or..</text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (43 samples, 0.00%; +0.00%)</title><rect x="517.9" y="5653" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="520.86" y="5663.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/translog/BufferedChecksumStreamOutput.writeBytes (45 samples, 0.00%; +0.00%)</title><rect x="1114.7" y="5861" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1117.74" y="5871.5" ></text>
</g>
<g >
<title>java/util/HashMap.hash (47 samples, 0.01%; 0.00%)</title><rect x="276.5" y="4133" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="279.51" y="4143.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (90 samples, 0.01%; 0.00%)</title><rect x="1454.0" y="5749" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1457.04" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/TransportReplicationAction$ReroutePhase.performRemoteAction (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="1077" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="1087.5" ></text>
</g>
<g >
<title>java/util/HashSet.add (490 samples, 0.05%; 0.00%)</title><rect x="420.6" y="5829" width="1.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="423.60" y="5839.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5641.0x00000008019804a0.accept (306 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="4469" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="4479.5" ></text>
</g>
<g >
<title>java/util/concurrent/ScheduledThreadPoolExecutor$ScheduledFutureTask.run (41 samples, 0.00%; 0.00%)</title><rect x="308.4" y="6197" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="311.37" y="6207.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamInput.readString (393 samples, 0.04%; +0.01%)</title><rect x="291.2" y="5413" width="1.0" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="294.18" y="5423.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/common/SetProcessor.execute (830 samples, 0.09%; 0.00%)</title><rect x="1735.7" y="3893" width="2.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1738.75" y="3903.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/InboundDecoder.decompress (203 samples, 0.02%; 0.00%)</title><rect x="283.9" y="5717" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="286.91" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/index/IndexRequest.writeBody (139 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="1605" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="1615.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/interceptor/FieldAndDocumentLevelSecurityRequestInterceptor.intercept (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="3173" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="3183.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeFormatterBuilder$CompositePrinterParser.parse (548 samples, 0.06%; +0.00%)</title><rect x="1668.1" y="5557" width="1.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1671.13" y="5567.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (89 samples, 0.01%; -0.00%)</title><rect x="300.8" y="5637" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="303.76" y="5647.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/packed/DeltaPackedLongValues$Builder.pack (85 samples, 0.01%; +0.00%)</title><rect x="1047.5" y="5749" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1050.52" y="5759.5" ></text>
</g>
<g >
<title>com/github/mustachejava/Mustache.execute (147 samples, 0.02%; 0.00%)</title><rect x="1645.7" y="5509" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1648.67" y="5519.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamOutput.writeBytesReference (107 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="1717" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="1727.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/AbstractRunnable.run (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="3157" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="3167.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.lambda$done$0 (215 samples, 0.02%; 0.00%)</title><rect x="271.7" y="3445" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.75" y="3455.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorize$1 (145 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="4549" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="4559.5" ></text>
</g>
<g >
<title>sun/nio/fs/UnixFileAttributeViews$Basic.readAttributes (56 samples, 0.01%; 0.00%)</title><rect x="1095.3" y="5637" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1098.28" y="5647.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (48 samples, 0.01%; +0.01%)</title><rect x="560.0" y="5717" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="563.04" y="5727.5" ></text>
</g>
<g >
<title>java/util/HashMap.hash (223 samples, 0.02%; 0.00%)</title><rect x="1224.0" y="5653" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1227.05" y="5663.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener.completeWith (349,910 samples, 38.77%; 0.00%)</title><rect x="508.1" y="6117" width="945.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="511.12" y="6127.5" >org/elasticsearch/action/ActionListener.completeWith</text>
</g>
<g >
<title>org/elasticsearch/action/bulk/TransportBulkAction.executeBulk (39 samples, 0.00%; 0.00%)</title><rect x="1630.9" y="3909" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="3919.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (5,584 samples, 0.62%; 0.00%)</title><rect x="1625.5" y="5493" width="15.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.51" y="5503.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/DelegatingAnalyzerWrapper$DelegatingReuseStrategy.getReusableComponents (420 samples, 0.05%; 0.00%)</title><rect x="460.3" y="5685" width="1.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="463.25" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestService.lambda$innerExecute$6 (343 samples, 0.04%; 0.00%)</title><rect x="1722.6" y="3765" width="0.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1725.62" y="3775.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/IndexFileDeleter.decRef (106 samples, 0.01%; 0.00%)</title><rect x="1847.6" y="5845" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.65" y="5855.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/CompetitiveImpactAccumulator.addAll (100 samples, 0.01%; +0.00%)</title><rect x="1879.2" y="5669" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1882.21" y="5679.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/ByteSliceReader.readByte (80 samples, 0.01%; -0.00%)</title><rect x="1883.0" y="5669" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1886.02" y="5679.5" ></text>
</g>
<g >
<title>generic_perform_write (186 samples, 0.02%; 0.00%)</title><rect x="1894.1" y="5349" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1897.12" y="5359.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/TermsHashPerField.initReader (119 samples, 0.01%; +0.01%)</title><rect x="1884.4" y="5669" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1887.38" y="5679.5" ></text>
</g>
<g >
<title>vsnprintf (139 samples, 0.02%; 0.00%)</title><rect x="12.2" y="6213" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="15.22" y="6223.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/IndexWriter.finishCommit (106 samples, 0.01%; 0.00%)</title><rect x="1454.0" y="6069" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1457.02" y="6079.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene86/Lucene86PointsWriter$1.visit (37 samples, 0.00%; +0.00%)</title><rect x="2198.5" y="5989" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2201.48" y="5999.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/TransportReplicationAction.runReroutePhase (714 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="693" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="703.5" ></text>
</g>
<g >
<title>io/netty/channel/AbstractChannelHandlerContext.invokeChannelRead (80 samples, 0.01%; 0.00%)</title><rect x="274.4" y="5637" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.38" y="5647.5" ></text>
</g>
<g >
<title>ext4_file_write_iter (243 samples, 0.03%; 0.00%)</title><rect x="2171.5" y="5637" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2174.50" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$3.onResponse (47 samples, 0.01%; 0.00%)</title><rect x="1845.3" y="5621" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1848.30" y="5631.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="3173" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="3183.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/util/TextBuffer.emptyAndGetCurrentSegment (43 samples, 0.00%; 0.00%)</title><rect x="1198.5" y="5781" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1201.51" y="5791.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer.findName (159 samples, 0.02%; +0.02%)</title><rect x="1496.7" y="5893" width="0.4" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1499.71" y="5903.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/interceptor/UpdateRequestInterceptor.intercept (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="1701" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="1711.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/EsExecutors$DirectExecutorService.execute (931 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="2645" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.83" y="2655.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorizeAction$5 (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="3365" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="3375.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/DocumentsWriterPerThread.flush (185 samples, 0.02%; 0.00%)</title><rect x="1456.7" y="5909" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1459.74" y="5919.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="3285" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="3295.5" ></text>
</g>
<g >
<title>java/util/zip/CRC32.update (147 samples, 0.02%; 0.00%)</title><rect x="2048.6" y="5989" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2051.64" y="5999.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/ContextPreservingActionListener.onResponse (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="3621" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="3631.5" ></text>
</g>
<g >
<title>java/util/HashMap.putVal (350 samples, 0.04%; +0.02%)</title><rect x="1385.3" y="5605" width="1.0" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1388.34" y="5615.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/CollectionUtils.ensureNoSelfReferences (433 samples, 0.05%; +0.00%)</title><rect x="1778.1" y="5893" width="1.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1781.11" y="5903.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/common/ScriptProcessor.execute (2,684 samples, 0.30%; +0.00%)</title><rect x="1631.4" y="5013" width="7.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1634.39" y="5023.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/AbstractPointGeometryFieldMapper$PointParser.parse (94 samples, 0.01%; 0.00%)</title><rect x="449.6" y="5733" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="452.59" y="5743.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/StringMSBRadixSorter.byteAt (88 samples, 0.01%; +0.00%)</title><rect x="1889.6" y="5637" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1892.60" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/shard/IndexShard.innerAcquireReplicaOperationPermit (47 samples, 0.01%; 0.00%)</title><rect x="1845.3" y="5701" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1848.30" y="5711.5" ></text>
</g>
<g >
<title>sun/nio/ch/FileChannelImpl$Unmapper.run (54 samples, 0.01%; 0.00%)</title><rect x="1847.9" y="5477" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.93" y="5487.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (127 samples, 0.01%; 0.00%)</title><rect x="1531.4" y="5541" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1534.44" y="5551.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5641.0x00000008019804a0.accept (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="4181" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="4191.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.ensureNoSelfReferences (494 samples, 0.05%; +0.01%)</title><rect x="1711.1" y="4421" width="1.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1714.13" y="4431.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.lambda$authorizeIndexAction$5 (936 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="4629" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.82" y="4639.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (345 samples, 0.04%; +0.04%)</title><rect x="1092.5" y="5781" width="0.9" height="15.0" fill="rgb(255,207,207)" rx="2" ry="2" />
<text x="1095.47" y="5791.5" ></text>
</g>
<g >
<title>com/sun/crypto/provider/CounterMode.crypt (121 samples, 0.01%; 0.00%)</title><rect x="306.2" y="5621" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="309.23" y="5631.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/BaseFuture.set (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="2213" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="2223.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/action/filter/SecurityActionFilter.lambda$applyInternal$4 (724 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="3381" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.77" y="3391.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorizeBulkItems$23 (306 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="4149" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="4159.5" ></text>
</g>
<g >
<title>CodeHeap::find_blob_unsafe(void*) const (47 samples, 0.01%; +0.01%)</title><rect x="1764.3" y="5493" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1767.35" y="5503.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.authorizeIndexActionName (306 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="4005" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="4015.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.introSort (56 samples, 0.01%; 0.00%)</title><rect x="530.1" y="5605" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="533.13" y="5615.5" ></text>
</g>
<g >
<title>java/lang/StringLatin1.hashCode (77 samples, 0.01%; +0.01%)</title><rect x="1202.9" y="5669" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1205.93" y="5679.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator.lookForExistingAuthentication (489 samples, 0.05%; 0.00%)</title><rect x="274.8" y="3973" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.84" y="3983.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/transport/SecurityServerTransportInterceptor.sendWithUser (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="981" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="991.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (47 samples, 0.01%; 0.00%)</title><rect x="1845.3" y="5893" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1848.30" y="5903.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/BulkItemResponse.toXContent (184 samples, 0.02%; 0.00%)</title><rect x="284.6" y="4869" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="287.58" y="4879.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.getText (70 samples, 0.01%; 0.00%)</title><rect x="503.0" y="5813" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="506.03" y="5823.5" ></text>
</g>
<g >
<title>sun/security/ssl/SSLEngineOutputRecord.encode (243 samples, 0.03%; 0.00%)</title><rect x="307.6" y="5797" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="310.59" y="5807.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeParseContext.startOptional (96 samples, 0.01%; 0.00%)</title><rect x="501.3" y="5733" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="504.34" y="5743.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/DocWriteRequest.writeDocumentRequestThin (52 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="1413" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="1423.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.authorizeIndexAction (306 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="4021" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="4031.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser._nextAfterName (79 samples, 0.01%; -0.01%)</title><rect x="448.0" y="5749" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="450.95" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/collect/CopyOnWriteHashMap$InnerNode.get (155 samples, 0.02%; +0.02%)</title><rect x="1216.6" y="5749" width="0.4" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1219.58" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ConditionalProcessor.execute (991 samples, 0.11%; 0.00%)</title><rect x="1532.1" y="5765" width="2.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.10" y="5775.5" ></text>
</g>
<g >
<title>java/lang/StringLatin1.hashCode (174 samples, 0.02%; -0.03%)</title><rect x="427.6" y="5765" width="0.5" height="15.0" fill="rgb(208,208,255)" rx="2" ry="2" />
<text x="430.62" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/BulkRequest.ramBytesUsed (37 samples, 0.00%; 0.00%)</title><rect x="274.8" y="2117" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.84" y="2127.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.endObject (68 samples, 0.01%; 0.00%)</title><rect x="1572.1" y="5797" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1575.09" y="5807.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Pipeline$$Lambda$6068.0x00000008019e2168.accept (576 samples, 0.06%; 0.00%)</title><rect x="1527.5" y="4981" width="1.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1530.52" y="4991.5" ></text>
</g>
<g >
<title>java/util/ArrayList.grow (80 samples, 0.01%; 0.00%)</title><rect x="1429.7" y="5781" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1432.70" y="5791.5" ></text>
</g>
<g >
<title>java/util/Arrays.copyOf (2,442 samples, 0.27%; +0.27%)</title><rect x="2313.6" y="5877" width="6.6" height="15.0" fill="rgb(255,190,190)" rx="2" ry="2" />
<text x="2316.57" y="5887.5" ></text>
</g>
<g >
<title>java/security/AccessController.executePrivileged (41 samples, 0.00%; 0.00%)</title><rect x="1736.0" y="3813" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1739.05" y="3823.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/TransportWriteAction$2.doRun (349,910 samples, 38.77%; 0.00%)</title><rect x="508.1" y="6165" width="945.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="511.12" y="6175.5" >org/elasticsearch/action/support/replication/TransportWriteAction$2.doRun</text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5648.0x0000000801980b40.accept (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="1733" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="1743.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/ReusableStringReader.read (47 samples, 0.01%; +0.01%)</title><rect x="831.7" y="5717" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="834.75" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.ensureNoSelfReferences (43 samples, 0.00%; +0.00%)</title><rect x="1693.6" y="4997" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1696.60" y="5007.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/NotifyOnceListener.onResponse (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="1733" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="1743.5" ></text>
</g>
<g >
<title>java/util/Base64$Decoder.decode0 (153 samples, 0.02%; +0.02%)</title><rect x="1432.6" y="5845" width="0.4" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1435.59" y="5855.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="4197" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="4207.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/store/ByteSizeCachingDirectory$2.writeByte (103 samples, 0.01%; 0.00%)</title><rect x="1852.8" y="5637" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1855.79" y="5647.5" ></text>
</g>
<g >
<title>java/security/AccessController.checkPermission (71 samples, 0.01%; 0.00%)</title><rect x="1624.4" y="5285" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.42" y="5295.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/BytesRefHash$1.get (139 samples, 0.02%; +0.00%)</title><rect x="1862.2" y="5653" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1865.21" y="5663.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/time/DateFormatter.forPattern (205 samples, 0.02%; 0.00%)</title><rect x="1720.8" y="5365" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1723.84" y="5375.5" ></text>
</g>
<g >
<title>__vm_munmap (53 samples, 0.01%; 0.00%)</title><rect x="1847.9" y="5365" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.94" y="5375.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/AbstractRunnable.run (5,713 samples, 0.63%; 0.00%)</title><rect x="308.6" y="5925" width="15.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="311.64" y="5935.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/support/CachingUsernamePasswordRealm.lambda$authenticateWithCache$1 (3,060 samples, 0.34%; 0.00%)</title><rect x="274.7" y="4613" width="8.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.66" y="4623.5" ></text>
</g>
<g >
<title>java/util/ArrayList.forEach (530 samples, 0.06%; 0.00%)</title><rect x="1774.1" y="5941" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1777.09" y="5951.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$1.doRun (931 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="3141" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.83" y="3151.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/FreqProxFields.terms (138 samples, 0.02%; 0.00%)</title><rect x="537.2" y="5749" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="540.21" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.authorizeBulkItems (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="3733" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="3743.5" ></text>
</g>
<g >
<title>org/apache/lucene/document/LongPoint.getType (82 samples, 0.01%; 0.00%)</title><rect x="492.7" y="5749" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="495.72" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.map (118 samples, 0.01%; +0.00%)</title><rect x="1629.5" y="4101" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1632.47" y="4111.5" ></text>
</g>
<g >
<title>java/security/Permissions.getPermissionCollection (41 samples, 0.00%; -0.00%)</title><rect x="1833.9" y="5829" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1836.86" y="5839.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamOutput.write (191 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="629" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="639.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorizeAction$6 (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="3253" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="3263.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/blocktree/BlockTreeTermsWriter$TermsWriter.pushTerm (13,827 samples, 1.53%; +0.03%)</title><rect x="2380.7" y="6053" width="37.4" height="15.0" fill="rgb(255,207,207)" rx="2" ry="2" />
<text x="2383.71" y="6063.5" >org..</text>
</g>
<g >
<title>java/util/Collections$UnmodifiableMap.get (43 samples, 0.00%; 0.00%)</title><rect x="1728.8" y="3685" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1731.77" y="3695.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/JsonReadContext.setCurrentName (61 samples, 0.01%; +0.00%)</title><rect x="1501.0" y="5925" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1503.99" y="5935.5" ></text>
</g>
<g >
<title>vtable stub (118 samples, 0.01%; +0.01%)</title><rect x="1972.1" y="6005" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1975.06" y="6015.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/engine/ElasticsearchReaderManager.refreshIfNeeded (17,564 samples, 1.95%; 0.00%)</title><rect x="1848.1" y="5957" width="47.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1851.09" y="5967.5" >org/..</text>
</g>
<g >
<title>frame::frame(long*, long*, long*, unsigned char*) (74 samples, 0.01%; +0.00%)</title><rect x="1764.3" y="5525" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1767.30" y="5535.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.findName (309 samples, 0.03%; -0.06%)</title><rect x="422.3" y="5845" width="0.8" height="15.0" fill="rgb(205,205,255)" rx="2" ry="2" />
<text x="425.29" y="5855.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorizeBulkItems$19 (306 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="3925" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="3935.5" ></text>
</g>
<g >
<title>vectorizedMismatch (215 samples, 0.02%; -0.07%)</title><rect x="394.5" y="5781" width="0.6" height="15.0" fill="rgb(205,205,255)" rx="2" ry="2" />
<text x="397.48" y="5791.5" ></text>
</g>
<g >
<title>java/util/WeakHashMap.get (69 samples, 0.01%; +0.01%)</title><rect x="1749.4" y="4597" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1752.38" y="4607.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/DocumentParser.parseObject (25,448 samples, 2.82%; -0.01%)</title><rect x="425.7" y="5909" width="68.8" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="428.74" y="5919.5" >org/ela..</text>
</g>
<g >
<title>org/elasticsearch/ingest/Processor.execute (7,038 samples, 0.78%; 0.00%)</title><rect x="1724.3" y="4421" width="19.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1727.26" y="4431.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/lucene/store/FilterIndexOutput.getFilePointer (110 samples, 0.01%; +0.00%)</title><rect x="2330.6" y="6021" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2333.57" y="6031.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/ContentPath.pathAsText (80 samples, 0.01%; -0.00%)</title><rect x="494.5" y="5861" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="497.53" y="5871.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/compressing/CompressingStoredFieldsReader$BlockState.document (73 samples, 0.01%; -0.00%)</title><rect x="2050.3" y="6085" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2053.32" y="6095.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$1.doRun (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="2021" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="2031.5" ></text>
</g>
<g >
<title>org/joni/StackMachine.popDefault (127 samples, 0.01%; -0.56%)</title><rect x="1795.6" y="5845" width="0.3" height="15.0" fill="rgb(170,170,255)" rx="2" ry="2" />
<text x="1798.59" y="5855.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.lambda$authorizeIndexAction$4 (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="2533" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="2543.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/DefaultIndexingChain$PerField.invert (13,738 samples, 1.52%; -0.20%)</title><rect x="358.7" y="5845" width="37.1" height="15.0" fill="rgb(196,196,255)" rx="2" ry="2" />
<text x="361.66" y="5855.5" >org..</text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene84/Lucene84PostingsWriter.finishDoc (70 samples, 0.01%; 0.00%)</title><rect x="531.6" y="5733" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="534.61" y="5743.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/index/IndexRequest.writeThin (79 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="261" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="271.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (5,336 samples, 0.59%; 0.00%)</title><rect x="1625.5" y="5381" width="14.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.52" y="5391.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/store/Store$StoreDirectory.estimateSize (66 samples, 0.01%; 0.00%)</title><rect x="1847.3" y="5333" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.32" y="5343.5" ></text>
</g>
<g >
<title>counterMode_AESCrypt (121 samples, 0.01%; +0.00%)</title><rect x="306.2" y="5589" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="309.23" y="5599.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/IndicesAndAliasesResolver.containsWildcards (66 samples, 0.01%; 0.00%)</title><rect x="1621.9" y="4933" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1624.92" y="4943.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/CollectionUtils$$Lambda$6125.0x0000000801a244a0.iterator (77 samples, 0.01%; 0.00%)</title><rect x="1530.1" y="5029" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1533.06" y="5039.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.nextToken (93 samples, 0.01%; 0.00%)</title><rect x="1507.8" y="5925" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1510.84" y="5935.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/SegmentMerger.merge (200,340 samples, 22.20%; 0.00%)</title><rect x="1901.6" y="6149" width="541.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1904.64" y="6159.5" >org/apache/lucene/index/SegmentMerger.merge</text>
</g>
<g >
<title>org/elasticsearch/common/bytes/BytesReference.bytes (71 samples, 0.01%; +0.00%)</title><rect x="1724.5" y="3717" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1727.53" y="3727.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/AbstractRunnable.run (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="2741" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="2751.5" ></text>
</g>
<g >
<title>java/lang/Throwable.getOurStackTrace (1,489 samples, 0.16%; 0.00%)</title><rect x="1633.6" y="4949" width="4.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1636.63" y="4959.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/BytesRef.compareTo (37 samples, 0.00%; 0.00%)</title><rect x="1891.0" y="5573" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1894.03" y="5583.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (3,060 samples, 0.34%; 0.00%)</title><rect x="274.7" y="4597" width="8.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.66" y="4607.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="3893" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="3903.5" ></text>
</g>
<g >
<title>java/lang/invoke/DirectMethodHandle.allocateInstance (91 samples, 0.01%; +0.01%)</title><rect x="1779.0" y="5813" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1782.04" y="5823.5" ></text>
</g>
<g >
<title>java/util/ArrayList.shiftTailOverGap (56 samples, 0.01%; 0.00%)</title><rect x="2387.0" y="5973" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2390.05" y="5983.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (127 samples, 0.01%; 0.00%)</title><rect x="1531.4" y="5461" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1534.44" y="5471.5" ></text>
</g>
<g >
<title>java/util/HashMap.&lt;init&gt; (86 samples, 0.01%; 0.00%)</title><rect x="1639.1" y="5189" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1642.10" y="5199.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="3685" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="3695.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamOutput.writeVInt (49 samples, 0.01%; +0.00%)</title><rect x="322.2" y="5413" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="325.15" y="5423.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/ContextPreservingActionListener.onResponse (48 samples, 0.01%; 0.00%)</title><rect x="271.6" y="4229" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.57" y="4239.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/store/CompositeRolesStore.getRoles (723 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="3301" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.77" y="3311.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/OutputStreamIndexOutput.writeBytes (212 samples, 0.02%; 0.00%)</title><rect x="1894.1" y="5717" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1897.09" y="5727.5" ></text>
</g>
<g >
<title>java/lang/AbstractStringBuilder.setLength (201 samples, 0.02%; +0.01%)</title><rect x="1148.9" y="5781" width="0.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1151.93" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/geoip/DatabaseReaderLazyLoader$$Lambda$6112.0x0000000801a49ee8.apply (184 samples, 0.02%; 0.00%)</title><rect x="1716.6" y="4773" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1719.61" y="4783.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/SortedSetDocValuesWriter.flush (986 samples, 0.11%; +0.00%)</title><rect x="526.6" y="5797" width="2.7" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="529.60" y="5807.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.notifyListener (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="1285" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="1295.5" ></text>
</g>
<g >
<title>java/util/ArrayList.grow (166 samples, 0.02%; 0.00%)</title><rect x="466.5" y="5669" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="469.49" y="5679.5" ></text>
</g>
<g >
<title>java/util/HashMap$EntryIterator.next (42 samples, 0.00%; 0.00%)</title><rect x="1658.3" y="5173" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1661.34" y="5183.5" ></text>
</g>
<g >
<title>java/util/zip/CheckedOutputStream.write (350 samples, 0.04%; +0.04%)</title><rect x="1874.0" y="5589" width="1.0" height="15.0" fill="rgb(255,207,207)" rx="2" ry="2" />
<text x="1877.05" y="5599.5" ></text>
</g>
<g >
<title>io/netty/buffer/CompositeByteBuf.getBytes (38 samples, 0.00%; 0.00%)</title><rect x="306.0" y="5861" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="308.99" y="5871.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/tokenattributes/BytesTermAttributeImpl.clear (191 samples, 0.02%; +0.02%)</title><rect x="858.6" y="5797" width="0.5" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="861.60" y="5807.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/TransportReplicationAction.doExecute (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="1861" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="1871.5" ></text>
</g>
<g >
<title>java/lang/Character.codePointAt (212 samples, 0.02%; 0.00%)</title><rect x="363.8" y="5765" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="366.76" y="5775.5" ></text>
</g>
<g >
<title>java/util/zip/Deflater.deflate (131 samples, 0.01%; 0.00%)</title><rect x="1702.5" y="1669" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.53" y="1679.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.authorizeIndexActionName (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="3717" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="3727.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/action/filter/SecurityActionFilter.applyInternal (215 samples, 0.02%; 0.00%)</title><rect x="1627.8" y="3989" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="3999.5" ></text>
</g>
<g >
<title>truncate_cleanup_page (41 samples, 0.00%; 0.00%)</title><rect x="1095.6" y="5349" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1098.56" y="5359.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/CompressibleBytesOutputStream.writeBytes (106 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="1669" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="1679.5" ></text>
</g>
<g >
<title>java/util/Collections$UnmodifiableMap.get (178 samples, 0.02%; 0.00%)</title><rect x="1687.9" y="5525" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1690.88" y="5535.5" ></text>
</g>
<g >
<title>java/util/Arrays.fill (108 samples, 0.01%; +0.00%)</title><rect x="2311.9" y="5957" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2314.87" y="5967.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (145 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="3893" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="3903.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser._parsePosNumber (172 samples, 0.02%; +0.00%)</title><rect x="1497.8" y="5941" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1500.82" y="5951.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamOutput.write (77 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="197" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="207.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$runRequestInterceptors$14 (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="2229" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="2239.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorizeAction$6 (12,166 samples, 1.35%; 0.00%)</title><rect x="1589.2" y="4997" width="32.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.21" y="5007.5" >or..</text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$CachingAsyncSupplier.getAsync (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="4309" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="4319.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Pipeline.lambda$execute$0 (576 samples, 0.06%; 0.00%)</title><rect x="1527.5" y="4965" width="1.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1530.52" y="4975.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ConditionalProcessor$$Lambda$6085.0x00000008019e2fa0.accept (1,000 samples, 0.11%; 0.00%)</title><rect x="1693.1" y="5813" width="2.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1696.13" y="5823.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (716 samples, 0.08%; 0.00%)</title><rect x="1622.8" y="5541" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1625.75" y="5551.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/BulkShardRequest$$Lambda$5981.0x00000008019cc7c0.read (519 samples, 0.06%; 0.00%)</title><rect x="250.9" y="5525" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="253.93" y="5535.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/OrdinalMap$1.lessThan (542 samples, 0.06%; 0.00%)</title><rect x="2046.4" y="5989" width="1.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2049.43" y="5999.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/DocumentParser.getLeafMapper (460 samples, 0.05%; +0.00%)</title><rect x="1148.8" y="5845" width="1.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1151.77" y="5855.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/FieldInfo.setOmitsNorms (777 samples, 0.09%; +0.05%)</title><rect x="889.7" y="5813" width="2.1" height="15.0" fill="rgb(255,206,206)" rx="2" ry="2" />
<text x="892.72" y="5823.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene80/Lucene80DocValuesProducer$4.longValue (59 samples, 0.01%; -0.00%)</title><rect x="1913.6" y="5989" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1916.55" y="5999.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/NotifyOnceListener.onResponse (11,965 samples, 1.33%; 0.00%)</title><rect x="1589.5" y="3109" width="32.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.47" y="3119.5" >or..</text>
</g>
<g >
<title>org/apache/lucene/index/DefaultIndexingChain.indexDocValue (4,625 samples, 0.51%; -0.11%)</title><rect x="399.3" y="5845" width="12.5" height="15.0" fill="rgb(201,201,255)" rx="2" ry="2" />
<text x="402.32" y="5855.5" ></text>
</g>
<g >
<title>ext4_sync_file (115 samples, 0.01%; 0.00%)</title><rect x="325.6" y="5669" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="328.62" y="5679.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Pipeline$$Lambda$6068.0x00000008019e2168.accept (355 samples, 0.04%; 0.00%)</title><rect x="1532.1" y="5141" width="1.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.10" y="5151.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/Analyzer$TokenStreamComponents.access$000 (98 samples, 0.01%; 0.00%)</title><rect x="1255.9" y="5669" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1258.87" y="5679.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine$$Lambda$5289.0x00000008018249e8.accept (220 samples, 0.02%; 0.00%)</title><rect x="1847.0" y="5845" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.03" y="5855.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5965.0x0000000801981628.accept (931 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="3653" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.83" y="3663.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/IntroSorter.quicksort (278 samples, 0.03%; -0.00%)</title><rect x="1867.3" y="5541" width="0.8" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1870.32" y="5551.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (1,415 samples, 0.16%; 0.00%)</title><rect x="1535.1" y="5525" width="3.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1538.07" y="5535.5" ></text>
</g>
<g >
<title>jlong_disjoint_arraycopy (55 samples, 0.01%; +0.01%)</title><rect x="1216.0" y="5749" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1218.99" y="5759.5" ></text>
</g>
<g >
<title>java/util/TreeMap.get (52 samples, 0.01%; 0.00%)</title><rect x="1588.4" y="5717" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1591.41" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (971 samples, 0.11%; 0.00%)</title><rect x="1693.1" y="5701" width="2.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1696.13" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/core/internal/io/IOUtils.close (47 samples, 0.01%; 0.00%)</title><rect x="286.4" y="5141" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="289.37" y="5151.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine$$Lambda$5289.0x00000008018249e8.accept (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="4405" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="4415.5" ></text>
</g>
<g >
<title>java/util/TreeMap.getEntry (41 samples, 0.00%; +0.00%)</title><rect x="1588.1" y="5717" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1591.10" y="5727.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/perfield/PerFieldDocValuesFormat$FieldsWriter.addNumericField (114 samples, 0.01%; 0.00%)</title><rect x="1848.2" y="5749" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1851.17" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Processor.execute (654 samples, 0.07%; 0.00%)</title><rect x="1535.1" y="5077" width="1.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1538.09" y="5087.5" ></text>
</g>
<g >
<title>generic_perform_write (1,097 samples, 0.12%; +0.00%)</title><rect x="1897.8" y="5701" width="3.0" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1900.84" y="5711.5" ></text>
</g>
<g >
<title>java/util/HashMap.put (398 samples, 0.04%; +0.04%)</title><rect x="1375.2" y="5621" width="1.1" height="15.0" fill="rgb(255,207,207)" rx="2" ry="2" />
<text x="1378.22" y="5631.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/Sorter.comparePivot (88 samples, 0.01%; 0.00%)</title><rect x="2348.6" y="5941" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2351.65" y="5951.5" ></text>
</g>
<g >
<title>async_page_fault (97 samples, 0.01%; 0.00%)</title><rect x="1632.2" y="4901" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1635.21" y="4911.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/time/JavaDateFormatter.&lt;init&gt; (434 samples, 0.05%; 0.00%)</title><rect x="1682.3" y="5493" width="1.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1685.29" y="5503.5" ></text>
</g>
<g >
<title>sun/nio/fs/UnixFileSystemProvider.readAttributes (60 samples, 0.01%; 0.00%)</title><rect x="1847.3" y="5157" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.32" y="5167.5" ></text>
</g>
<g >
<title>com/github/mustachejava/reflect/GuardedBinding.get (346 samples, 0.04%; 0.00%)</title><rect x="1684.3" y="5477" width="0.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1687.26" y="5487.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/ContextPreservingActionListener.onResponse (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="4533" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="4543.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.lambda$authorizeIndexAction$5 (145 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="4437" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="4447.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/engine/InternalEngine$ExternalReaderManager.refreshIfNeeded (17,572 samples, 1.95%; 0.00%)</title><rect x="1848.1" y="6037" width="47.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1851.08" y="6047.5" >org/..</text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.authorizeIndexAction (11,985 samples, 1.33%; 0.00%)</title><rect x="1589.4" y="4565" width="32.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.42" y="4575.5" >or..</text>
</g>
<g >
<title>itable stub (106 samples, 0.01%; +0.01%)</title><rect x="1576.2" y="5781" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1579.22" y="5791.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/compressing/CompressingStoredFieldsWriter.finish (784 samples, 0.09%; 0.00%)</title><rect x="1891.7" y="5765" width="2.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1894.69" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/FilterStreamInput.readByte (56 samples, 0.01%; 0.00%)</title><rect x="292.1" y="5365" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="295.09" y="5375.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.ensureNoSelfReferences (177 samples, 0.02%; +0.01%)</title><rect x="1728.0" y="3637" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1730.99" y="3647.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (936 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="4501" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.82" y="4511.5" ></text>
</g>
<g >
<title>java/io/BufferedOutputStream.flushBuffer (350 samples, 0.04%; 0.00%)</title><rect x="1874.0" y="5605" width="1.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1877.05" y="5615.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5648.0x0000000801980b40.accept (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="2597" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="2607.5" ></text>
</g>
<g >
<title>java/lang/String.checkBoundsOffCount (45 samples, 0.00%; +0.00%)</title><rect x="441.9" y="5685" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="444.87" y="5695.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/OutputStreamIndexOutput.writeByte (78 samples, 0.01%; 0.00%)</title><rect x="588.5" y="5621" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="591.55" y="5631.5" ></text>
</g>
<g >
<title>java/util/Collections$UnmodifiableMap.get (88 samples, 0.01%; 0.00%)</title><rect x="1657.0" y="5205" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1659.99" y="5215.5" ></text>
</g>
<g >
<title>com/github/mustachejava/codes/ValueCode.execute (41 samples, 0.00%; +0.00%)</title><rect x="1736.0" y="3701" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1739.05" y="3711.5" ></text>
</g>
<g >
<title>Thread::call_run() (2,305 samples, 0.26%; 0.00%)</title><rect x="2443.8" y="6213" width="6.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2446.77" y="6223.5" ></text>
</g>
<g >
<title>com/github/mustachejava/reflect/GuardedWrapper.guardCall (48 samples, 0.01%; +0.00%)</title><rect x="1684.6" y="5381" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1687.56" y="5391.5" ></text>
</g>
<g >
<title>java/util/zip/Deflater.deflateBytesBytes (222 samples, 0.02%; 0.00%)</title><rect x="1619.2" y="2197" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1622.24" y="2207.5" ></text>
</g>
<g >
<title>CodeCache::find_blob(void*) (39 samples, 0.00%; +0.00%)</title><rect x="1704.4" y="5301" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1707.37" y="5311.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$AuthorizationResultListener.onResponse (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="4005" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="4015.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8JsonGenerator._writeStringSegment (273 samples, 0.03%; +0.03%)</title><rect x="1656.0" y="5173" width="0.8" height="15.0" fill="rgb(255,207,207)" rx="2" ry="2" />
<text x="1659.04" y="5183.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/BaseFuture.set (226 samples, 0.03%; 0.00%)</title><rect x="271.7" y="3509" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.72" y="3519.5" ></text>
</g>
<g >
<title>java/nio/Buffer.position (97 samples, 0.01%; -0.00%)</title><rect x="1977.8" y="5813" width="0.3" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1980.85" y="5823.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/TransportReplicationAction.doExecute (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="2213" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="2223.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/BulkShardRequest$$Lambda$5980.0x00000008019cc5a0.write (79 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="325" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="335.5" ></text>
</g>
<g >
<title>java/lang/System.identityHashCode (228 samples, 0.03%; +0.00%)</title><rect x="1557.3" y="5717" width="0.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1560.28" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$5.onResponse (1,607 samples, 0.18%; 0.00%)</title><rect x="286.4" y="5397" width="4.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="289.37" y="5407.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/TransportReplicationAction$ReroutePhase.doRun (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="1413" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="1423.5" ></text>
</g>
<g >
<title>java/security/Permissions.getPermissionCollection (102 samples, 0.01%; +0.00%)</title><rect x="1646.2" y="5397" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1649.23" y="5407.5" ></text>
</g>
<g >
<title>java/util/HashMap.getNode (559 samples, 0.06%; -0.00%)</title><rect x="1914.9" y="6005" width="1.5" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1917.92" y="6015.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene80/Lucene80DocValuesConsumer.doAddSortedField (596 samples, 0.07%; +0.00%)</title><rect x="527.1" y="5749" width="1.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="530.07" y="5759.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/DocumentsWriter.flushAllThreads (186 samples, 0.02%; 0.00%)</title><rect x="1456.7" y="5941" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1459.74" y="5951.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/BulkShardRequest$$Lambda$5984.0x00000008019cd290.applyAsLong (146 samples, 0.02%; +0.00%)</title><rect x="271.8" y="3029" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="274.81" y="3039.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/DataInput.readVInt (137 samples, 0.02%; -0.00%)</title><rect x="1882.9" y="5685" width="0.4" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1885.90" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$$Lambda$4893.0x00000008017ed008.accept (11,965 samples, 1.33%; 0.00%)</title><rect x="1589.5" y="3269" width="32.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.47" y="3279.5" >or..</text>
</g>
<g >
<title>org/apache/lucene/analysis/tokenattributes/PackedTokenAttributeImpl.clear (1,468 samples, 0.16%; +0.16%)</title><rect x="837.8" y="5749" width="4.0" height="15.0" fill="rgb(255,198,198)" rx="2" ry="2" />
<text x="840.81" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/ContextPreservingActionListener.onResponse (1,676 samples, 0.19%; 0.00%)</title><rect x="286.2" y="5509" width="4.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="289.19" y="5519.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/CollectionUtils.ensureNoSelfReferences (2,230 samples, 0.25%; +0.00%)</title><rect x="1756.7" y="5557" width="6.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1759.75" y="5567.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator.lambda$authenticateAsync$2 (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="4725" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="4735.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/DocumentsWriterFlushControl.updateStallState (108 samples, 0.01%; 0.00%)</title><rect x="330.7" y="5877" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="333.66" y="5887.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/FilterDirectory.deleteFile (164 samples, 0.02%; 0.00%)</title><rect x="1901.2" y="6005" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1904.19" y="6015.5" ></text>
</g>
<g >
<title>java/lang/StringLatin1.hashCode (105 samples, 0.01%; +0.01%)</title><rect x="1688.1" y="5445" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1691.08" y="5455.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/CompressibleBytesOutputStream.materializeBytes (83 samples, 0.01%; 0.00%)</title><rect x="285.9" y="5045" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="288.92" y="5055.5" ></text>
</g>
<g >
<title>org/elasticsearch/cluster/routing/Murmur3HashFunction.hash (50 samples, 0.01%; 0.00%)</title><rect x="1622.4" y="5669" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1625.41" y="5679.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/common/DateFormat$1.lambda$getFunction$0 (230 samples, 0.03%; 0.00%)</title><rect x="1641.1" y="5621" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1644.07" y="5631.5" ></text>
</g>
<g >
<title>__clock_gettime (45 samples, 0.00%; 0.00%)</title><rect x="1520.0" y="5989" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1523.04" y="5999.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/TransportReplicationAction$AsyncReplicaAction.lambda$onResponse$2 (3,653 samples, 0.40%; 0.00%)</title><rect x="508.2" y="6069" width="9.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="511.18" y="6079.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/GroupedActionListener.onResponse (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="2949" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="2959.5" ></text>
</g>
<g >
<title>__vfs_write (42 samples, 0.00%; 0.00%)</title><rect x="2262.8" y="5637" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2265.82" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/FieldMapper.createFieldNamesField (475 samples, 0.05%; +0.01%)</title><rect x="1241.7" y="5669" width="1.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1244.71" y="5679.5" ></text>
</g>
<g >
<title>java/security/Permissions.implies (65 samples, 0.01%; +0.00%)</title><rect x="1663.3" y="5221" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1666.34" y="5231.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (770 samples, 0.09%; 0.00%)</title><rect x="1622.8" y="5685" width="2.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1625.75" y="5695.5" ></text>
</g>
<g >
<title>sun/nio/ch/FileChannelImpl.read (88 samples, 0.01%; 0.00%)</title><rect x="2174.6" y="6037" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2177.55" y="6047.5" ></text>
</g>
<g >
<title>org/joni/ByteCodeMachine.opExact5 (7,201 samples, 0.80%; -0.02%)</title><rect x="1800.1" y="5893" width="19.5" height="15.0" fill="rgb(208,208,255)" rx="2" ry="2" />
<text x="1803.12" y="5903.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (5,584 samples, 0.62%; 0.00%)</title><rect x="1625.5" y="5509" width="15.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.51" y="5519.5" ></text>
</g>
<g >
<title>RegisterMap::pd_location(VMRegImpl*) const (99 samples, 0.01%; +0.01%)</title><rect x="10.7" y="6197" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="13.71" y="6207.5" ></text>
</g>
<g >
<title>java/util/zip/CheckedOutputStream.write (52 samples, 0.01%; +0.00%)</title><rect x="2034.3" y="5909" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2037.33" y="5919.5" ></text>
</g>
<g >
<title>skb_release_data (107 samples, 0.01%; +0.00%)</title><rect x="302.6" y="5749" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="305.62" y="5759.5" ></text>
</g>
<g >
<title>java/util/DualPivotQuicksort.insertionSort (235 samples, 0.03%; +0.01%)</title><rect x="2323.4" y="5957" width="0.7" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2326.42" y="5967.5" ></text>
</g>
<g >
<title>java/lang/String.hashCode (736 samples, 0.08%; +0.00%)</title><rect x="1034.0" y="5813" width="2.0" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1037.00" y="5823.5" ></text>
</g>
<g >
<title>java/security/ProtectionDomain.impliesWithAltFilePerm (86 samples, 0.01%; 0.00%)</title><rect x="1738.5" y="3861" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1741.51" y="3871.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.lambda$done$0 (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="1125" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="1135.5" ></text>
</g>
<g >
<title>java/lang/String.hashCode (38 samples, 0.00%; 0.00%)</title><rect x="1663.8" y="5205" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1666.77" y="5215.5" ></text>
</g>
<g >
<title>java/time/format/Parsed.query (54 samples, 0.01%; -0.00%)</title><rect x="495.3" y="5797" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="498.35" y="5807.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser._finishAndReturnString (748 samples, 0.08%; -0.20%)</title><rect x="480.4" y="5733" width="2.0" height="15.0" fill="rgb(195,195,255)" rx="2" ry="2" />
<text x="483.37" y="5743.5" ></text>
</g>
<g >
<title>java/util/HashMap.getNode (46 samples, 0.01%; 0.00%)</title><rect x="1654.6" y="5205" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1657.58" y="5215.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/interceptor/ResizeRequestInterceptor.intercept (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="2021" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="2031.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorizeBulkItems$18 (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="3445" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="3455.5" ></text>
</g>
<g >
<title>ext4_inode_csum_set (46 samples, 0.01%; 0.00%)</title><rect x="325.2" y="5397" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="328.21" y="5407.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/netty4/Netty4MessageChannelHandler.channelRead (17,672 samples, 1.96%; -0.00%)</title><rect x="226.6" y="5733" width="47.7" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="229.57" y="5743.5" >org/..</text>
</g>
<g >
<title>org/apache/lucene/store/BufferedChecksum.update (93 samples, 0.01%; 0.00%)</title><rect x="1896.3" y="6085" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1899.29" y="6095.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.removeField (150 samples, 0.02%; 0.00%)</title><rect x="1751.8" y="4949" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1754.77" y="4959.5" ></text>
</g>
<g >
<title>sun/nio/ch/FileChannelImpl.unmap0 (54 samples, 0.01%; 0.00%)</title><rect x="1847.9" y="5445" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.93" y="5455.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/bytes/BytesArray.writeTo (107 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="1701" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="1711.5" ></text>
</g>
<g >
<title>java/util/Base64$Decoder.decode (206 samples, 0.02%; +0.00%)</title><rect x="1432.4" y="5861" width="0.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1435.44" y="5871.5" ></text>
</g>
<g >
<title>org/joni/Matcher.search (191 samples, 0.02%; 0.00%)</title><rect x="1773.4" y="5909" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1776.44" y="5919.5" ></text>
</g>
<g >
<title>java/util/zip/Deflater.reset (122 samples, 0.01%; +0.00%)</title><rect x="2068.5" y="6037" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2071.49" y="6047.5" ></text>
</g>
<g >
<title>org/elasticsearch/indices/IndicesService.stats (478 samples, 0.05%; 0.00%)</title><rect x="1845.4" y="5429" width="1.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1848.43" y="5439.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8JsonGenerator._writeStringSegment (160 samples, 0.02%; +0.02%)</title><rect x="1700.0" y="5205" width="0.4" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1702.97" y="5215.5" ></text>
</g>
<g >
<title>java/util/zip/CheckedOutputStream.write (128 samples, 0.01%; +0.01%)</title><rect x="1853.1" y="5573" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1856.08" y="5583.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.map (1,754 samples, 0.19%; +0.00%)</title><rect x="1697.3" y="5301" width="4.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1700.34" y="5311.5" ></text>
</g>
<g >
<title>java/util/ArrayList$ArrayListSpliterator.forEachRemaining (38 samples, 0.00%; 0.00%)</title><rect x="1587.9" y="5717" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1590.87" y="5727.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene80/Lucene80DocValuesConsumer.addTermsDict (5,741 samples, 0.64%; -0.00%)</title><rect x="1972.7" y="6037" width="15.6" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1975.75" y="6047.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/TransportAction.execute (175 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="4725" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="4735.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeParseContext.startOptional (1,090 samples, 0.12%; 0.00%)</title><rect x="1383.3" y="5669" width="3.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1386.35" y="5679.5" ></text>
</g>
<g >
<title>com/sun/crypto/provider/GaloisCounterMode.encryptFinal (173 samples, 0.02%; +0.00%)</title><rect x="306.2" y="5701" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="309.23" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/shard/IndexShard$5.getWrappedAnalyzer (97 samples, 0.01%; 0.00%)</title><rect x="873.1" y="5765" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="876.12" y="5775.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene80/IndexedDISI.writeBitSet (1,328 samples, 0.15%; +0.01%)</title><rect x="544.7" y="5733" width="3.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="547.71" y="5743.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/perfield/PerFieldPostingsFormat$FieldsReader.ramBytesUsed (139 samples, 0.02%; 0.00%)</title><rect x="1845.6" y="5301" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1848.56" y="5311.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/common/DateProcessor.lambda$new$0 (531 samples, 0.06%; 0.00%)</title><rect x="1753.4" y="5077" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1756.36" y="5087.5" ></text>
</g>
<g >
<title>sun/security/ssl/SSLEngineImpl.encode (243 samples, 0.03%; 0.00%)</title><rect x="307.6" y="5829" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="310.59" y="5839.5" ></text>
</g>
<g >
<title>java/util/HashSet.add (804 samples, 0.09%; 0.00%)</title><rect x="432.9" y="5765" width="2.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="435.91" y="5775.5" ></text>
</g>
<g >
<title>java/lang/StringLatin1.hashCode (73 samples, 0.01%; 0.00%)</title><rect x="460.1" y="5557" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="463.05" y="5567.5" ></text>
</g>
<g >
<title>ObjectSynchronizer::FastHashCode(Thread*, oopDesc*) (130 samples, 0.01%; +0.01%)</title><rect x="1551.0" y="5701" width="0.4" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1554.01" y="5711.5" ></text>
</g>
<g >
<title>ext4_inode_csum.isra.62 (44 samples, 0.00%; +0.00%)</title><rect x="621.1" y="5237" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="624.12" y="5247.5" ></text>
</g>
<g >
<title>/lib/x86_64-linux-gnu/libz.so.1.2.11 (89 samples, 0.01%; +0.01%)</title><rect x="1702.2" y="1637" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1705.20" y="1647.5" ></text>
</g>
<g >
<title>ext4_do_update_inode (197 samples, 0.02%; +0.00%)</title><rect x="1899.8" y="5589" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1902.76" y="5599.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/store/CompositeRolesStore.getRoles (145 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="4661" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="4671.5" ></text>
</g>
<g >
<title>jdk/internal/ref/Cleaner.clean (57 samples, 0.01%; 0.00%)</title><rect x="1893.8" y="5525" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1896.84" y="5535.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (7,659 samples, 0.85%; 0.00%)</title><rect x="1722.6" y="4485" width="20.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1725.59" y="4495.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (400 samples, 0.04%; 0.00%)</title><rect x="1532.1" y="5349" width="1.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.10" y="5359.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (8,599 samples, 0.95%; 0.00%)</title><rect x="1625.4" y="5765" width="23.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.45" y="5775.5" >o..</text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.lambda$authorizeIndexAction$5 (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="3125" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="3135.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Processor.execute (253 samples, 0.03%; 0.00%)</title><rect x="1630.5" y="4149" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.53" y="4159.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Processor.execute (1,411 samples, 0.16%; 0.00%)</title><rect x="1535.1" y="5429" width="3.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1538.08" y="5439.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/TransportReplicationAction$ReroutePhase.performRemoteAction (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="2005" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="2015.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser._nextAfterName (38 samples, 0.00%; -0.01%)</title><rect x="438.1" y="5797" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="441.08" y="5807.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.getText (57 samples, 0.01%; +0.00%)</title><rect x="1241.5" y="5637" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1244.55" y="5647.5" ></text>
</g>
<g >
<title>java/util/WeakHashMap.put (48 samples, 0.01%; +0.00%)</title><rect x="1557.9" y="5749" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1560.90" y="5759.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/packed/DirectReader$DirectPackedReader2.get (97 samples, 0.01%; +0.00%)</title><rect x="1997.8" y="5941" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2000.84" y="5951.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/IntroSorter.quicksort (144 samples, 0.02%; -0.00%)</title><rect x="1890.8" y="5637" width="0.4" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1893.84" y="5647.5" ></text>
</g>
<g >
<title>java/util/zip/CheckedOutputStream.write (100 samples, 0.01%; +0.01%)</title><rect x="1959.9" y="5893" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1962.90" y="5903.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/action/filter/SecurityActionFilter.lambda$applyInternal$4 (489 samples, 0.05%; 0.00%)</title><rect x="274.8" y="3861" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.84" y="3871.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/DataOutput.writeVInt (613 samples, 0.07%; +0.00%)</title><rect x="2398.7" y="5973" width="1.7" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2401.74" y="5983.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/TextFieldMapper.parseCreateField (2,794 samples, 0.31%; +0.00%)</title><rect x="1422.5" y="5845" width="7.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1425.49" y="5855.5" ></text>
</g>
<g >
<title>org/apache/lucene/search/SortedSetSelector$MinValue.setOrd (676 samples, 0.07%; 0.00%)</title><rect x="1969.5" y="6005" width="1.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1972.46" y="6015.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/ContextPreservingActionListener.onResponse (12,070 samples, 1.34%; 0.00%)</title><rect x="1589.2" y="4853" width="32.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.21" y="4863.5" >or..</text>
</g>
<g >
<title>org/elasticsearch/action/NotifyOnceListener.onResponse (227 samples, 0.03%; 0.00%)</title><rect x="271.7" y="4085" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.72" y="4095.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/StringHelper.murmurhash3_x86_32 (55 samples, 0.01%; -0.02%)</title><rect x="408.4" y="5749" width="0.1" height="15.0" fill="rgb(208,208,255)" rx="2" ry="2" />
<text x="411.37" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.done (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="3317" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="3327.5" ></text>
</g>
<g >
<title>sun/nio/ch/FileDispatcherImpl.pread (330 samples, 0.04%; +0.00%)</title><rect x="2049.2" y="5893" width="0.9" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2052.16" y="5903.5" ></text>
</g>
<g >
<title>java/time/chrono/IsoChronology.resolveYMD (38 samples, 0.00%; 0.00%)</title><rect x="501.8" y="5669" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="504.76" y="5679.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (136 samples, 0.02%; 0.00%)</title><rect x="1456.4" y="5877" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1459.37" y="5887.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/store/ByteSizeCachingDirectory$2.writeByte (154 samples, 0.02%; 0.00%)</title><rect x="1986.4" y="5989" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1989.44" y="5999.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/time/JavaDateFormatter.doParse (2,489 samples, 0.28%; 0.00%)</title><rect x="495.5" y="5813" width="6.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="498.49" y="5823.5" ></text>
</g>
<g >
<title>java/util/TreeSet.iterator (101 samples, 0.01%; 0.00%)</title><rect x="2308.6" y="5989" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2311.63" y="5999.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$$Lambda$4893.0x00000008017ed008.accept (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="2773" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="2783.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/FieldMapper$MultiFields.parse (44 samples, 0.00%; 0.00%)</title><rect x="502.2" y="5861" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="505.24" y="5871.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/ParseContext$InternalParseContext.getMetadataMapper (157 samples, 0.02%; 0.00%)</title><rect x="444.6" y="5813" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="447.63" y="5823.5" ></text>
</g>
<g >
<title>java/time/format/Parsed.resolve (70 samples, 0.01%; 0.00%)</title><rect x="1297.3" y="5685" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1300.32" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine$$Lambda$5289.0x00000008018249e8.accept (489 samples, 0.05%; 0.00%)</title><rect x="274.8" y="3749" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.84" y="3759.5" ></text>
</g>
<g >
<title>[unknown] (173 samples, 0.02%; 0.00%)</title><rect x="1661.6" y="1605" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1664.56" y="1615.5" ></text>
</g>
<g >
<title>io/netty/buffer/AbstractByteBuf.writeBytes (38 samples, 0.00%; 0.00%)</title><rect x="306.0" y="5941" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="308.99" y="5951.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene80/IndexedDISI.advance (57 samples, 0.01%; +0.01%)</title><rect x="1930.9" y="5973" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1933.85" y="5983.5" ></text>
</g>
<g >
<title>java_lang_Throwable::fill_in_stack_trace(Handle, methodHandle const&amp;, Thread*) (187 samples, 0.02%; +0.01%)</title><rect x="1639.4" y="5093" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1642.43" y="5103.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/Analyzer.initReader (82 samples, 0.01%; +0.01%)</title><rect x="1320.5" y="5701" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1323.47" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Processor.execute (5,875 samples, 0.65%; 0.00%)</title><rect x="1724.4" y="4005" width="15.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1727.38" y="4015.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ConditionalProcessor.execute (292 samples, 0.03%; 0.00%)</title><rect x="1630.5" y="4517" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.53" y="4527.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.done (11,965 samples, 1.33%; 0.00%)</title><rect x="1589.5" y="3301" width="32.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.47" y="3311.5" >or..</text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.lambda$authorizeIndexAction$5 (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="4373" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="4383.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamInput.readZLong (39 samples, 0.00%; +0.00%)</title><rect x="255.6" y="5285" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="258.63" y="5295.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.lambda$static$13 (68 samples, 0.01%; 0.00%)</title><rect x="1659.4" y="5189" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.41" y="5199.5" ></text>
</g>
<g >
<title>java/util/concurrent/ConcurrentHashMap.computeIfAbsent (70 samples, 0.01%; 0.00%)</title><rect x="1646.3" y="5381" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1649.25" y="5391.5" ></text>
</g>
<g >
<title>java/net/InetAddress.getByAddress (54 samples, 0.01%; +0.00%)</title><rect x="1205.9" y="5701" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1208.90" y="5711.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/packed/DirectWriter.flush (43 samples, 0.00%; +0.00%)</title><rect x="528.6" y="5717" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="531.56" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/TransportAction$RequestFilterChain.proceed (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="3973" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="3983.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$3.onResponse (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="1541" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="1551.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.done (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="2085" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="2095.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/BulkShardRequest$$Lambda$5980.0x00000008019cc5a0.write (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="1621" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="1631.5" ></text>
</g>
<g >
<title>java/util/Arrays.mismatch (45 samples, 0.00%; 0.00%)</title><rect x="2200.3" y="6069" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2203.34" y="6079.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.done (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="2053" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="2063.5" ></text>
</g>
<g >
<title>itable stub (273 samples, 0.03%; +0.03%)</title><rect x="256.6" y="5253" width="0.7" height="15.0" fill="rgb(255,207,207)" rx="2" ry="2" />
<text x="259.60" y="5263.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/TransportAction$1.onResponse (1,673 samples, 0.19%; 0.00%)</title><rect x="286.2" y="5477" width="4.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="289.19" y="5487.5" ></text>
</g>
<g >
<title>iput (85 samples, 0.01%; 0.00%)</title><rect x="1454.0" y="5685" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1457.05" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/common/AppendProcessor.execute (119 samples, 0.01%; 0.00%)</title><rect x="1743.3" y="4485" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1746.29" y="4495.5" ></text>
</g>
<g >
<title>ext4_do_update_inode (52 samples, 0.01%; -0.00%)</title><rect x="2171.9" y="5493" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2174.87" y="5503.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/StepListener.innerOnResponse (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="2453" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="2463.5" ></text>
</g>
<g >
<title>ghash_processBlocks (42 samples, 0.00%; -0.00%)</title><rect x="308.0" y="5605" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="311.02" y="5615.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/fst/Builder.&lt;init&gt; (543 samples, 0.06%; +0.00%)</title><rect x="601.6" y="5701" width="1.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="604.57" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (1,166 samples, 0.13%; 0.00%)</title><rect x="1527.5" y="5221" width="3.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1530.51" y="5231.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.radixSort (101 samples, 0.01%; 0.00%)</title><rect x="613.4" y="5637" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="616.43" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/bytes/BytesArray.writeTo (77 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="213" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="223.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.maybeAuthorizeRunAs (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="4277" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="4287.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/TransportShardBulkAction.onComplete (63 samples, 0.01%; 0.00%)</title><rect x="326.2" y="6053" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="329.22" y="6063.5" ></text>
</g>
<g >
<title>java/lang/String.checkBoundsOffCount (41 samples, 0.00%; -0.02%)</title><rect x="364.6" y="5717" width="0.1" height="15.0" fill="rgb(208,208,255)" rx="2" ry="2" />
<text x="367.55" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (6,882 samples, 0.76%; 0.00%)</title><rect x="1724.3" y="4309" width="18.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1727.28" y="4319.5" ></text>
</g>
<g >
<title>java/util/Arrays.stream (84 samples, 0.01%; 0.00%)</title><rect x="1435.0" y="5909" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1437.96" y="5919.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/TransportBulkAction$$Lambda$6059.0x00000008019e04c0.accept (217 samples, 0.02%; 0.00%)</title><rect x="1627.8" y="4149" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.84" y="4159.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/PointValuesWriter.flush (378 samples, 0.04%; 0.00%)</title><rect x="529.3" y="5797" width="1.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="532.27" y="5807.5" ></text>
</g>
<g >
<title>java/util/concurrent/FutureTask.run (41 samples, 0.00%; 0.00%)</title><rect x="308.4" y="6181" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="311.37" y="6191.5" ></text>
</g>
<g >
<title>java/time/format/Parsed.copy (377 samples, 0.04%; 0.00%)</title><rect x="496.4" y="5653" width="1.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="499.44" y="5663.5" ></text>
</g>
<g >
<title>java/util/zip/CheckedOutputStream.write (332 samples, 0.04%; +0.04%)</title><rect x="1878.2" y="5541" width="0.9" height="15.0" fill="rgb(255,207,207)" rx="2" ry="2" />
<text x="1881.15" y="5551.5" ></text>
</g>
<g >
<title>java/lang/Exception.&lt;init&gt; (461 samples, 0.05%; 0.00%)</title><rect x="1643.0" y="5493" width="1.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1646.05" y="5503.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="4085" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="4095.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/MappingMultiPostingsEnum.nextDoc (81 samples, 0.01%; +0.00%)</title><rect x="2375.1" y="6005" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2378.12" y="6015.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/CompetitiveImpactAccumulator.clear (68 samples, 0.01%; 0.00%)</title><rect x="2280.1" y="6021" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2283.08" y="6031.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/translog/Translog.ensureSynced (3,214 samples, 0.36%; 0.00%)</title><rect x="509.4" y="5925" width="8.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="512.36" y="5935.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$CachingAsyncSupplier.lambda$getAsync$0 (214 samples, 0.02%; 0.00%)</title><rect x="1627.8" y="3237" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="3247.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/action/filter/SecurityActionFilter.lambda$applyInternal$2 (199 samples, 0.02%; 0.00%)</title><rect x="284.5" y="5221" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="287.53" y="5231.5" ></text>
</g>
<g >
<title>org/apache/lucene/search/SortedSetSelector$MinValue.docID (469 samples, 0.05%; 0.00%)</title><rect x="2030.8" y="6005" width="1.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2033.77" y="6015.5" ></text>
</g>
<g >
<title>java/util/Collections$UnmodifiableMap.get (40 samples, 0.00%; 0.00%)</title><rect x="494.9" y="5829" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="497.87" y="5839.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeFormatter.parseUnresolved0 (733 samples, 0.08%; +0.00%)</title><rect x="1295.3" y="5701" width="2.0" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1298.33" y="5711.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/IndexFileDeleter.deleteNewFiles (191 samples, 0.02%; 0.00%)</title><rect x="1095.3" y="5765" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1098.27" y="5775.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene80/Lucene80NormsProducer$DenseNormsIterator.advanceExact (39 samples, 0.00%; +0.00%)</title><rect x="2280.6" y="6021" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2283.56" y="6031.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (2,868 samples, 0.32%; +0.00%)</title><rect x="1697.1" y="5653" width="7.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1700.11" y="5663.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/CollectionUtils$$Lambda$6125.0x0000000801a244a0.iterator (61 samples, 0.01%; 0.00%)</title><rect x="1696.4" y="5749" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1699.44" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Processor.execute (60 samples, 0.01%; 0.00%)</title><rect x="1531.4" y="5109" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1534.44" y="5119.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/RateLimitedIndexOutput.writeBytes (52 samples, 0.01%; -0.00%)</title><rect x="2034.3" y="5989" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2037.33" y="5999.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$$Lambda$4893.0x00000008017ed008.accept (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="2501" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="2511.5" ></text>
</g>
<g >
<title>java/util/HashMap.getNode (48 samples, 0.01%; 0.00%)</title><rect x="1103.5" y="5813" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1106.49" y="5823.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorizeAction$9 (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="4149" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="4159.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/recycler/DequeRecycler$DV.close (97 samples, 0.01%; 0.00%)</title><rect x="1103.9" y="5797" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1106.85" y="5807.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (40 samples, 0.00%; +0.00%)</title><rect x="1899.3" y="5573" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1902.27" y="5583.5" ></text>
</g>
<g >
<title>__test_set_page_writeback (95 samples, 0.01%; +0.00%)</title><rect x="517.3" y="5605" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="520.26" y="5615.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/time/DateFormatters$1.queryFrom (245 samples, 0.03%; +0.01%)</title><rect x="1369.6" y="5749" width="0.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1372.56" y="5759.5" ></text>
</g>
<g >
<title>com/github/mustachejava/reflect/guards/WrappedGuard.apply (109 samples, 0.01%; +0.00%)</title><rect x="1684.6" y="5429" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1687.56" y="5439.5" ></text>
</g>
<g >
<title>java/util/HashMap.hash (69 samples, 0.01%; 0.00%)</title><rect x="1779.7" y="5893" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1782.74" y="5903.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/BytesRefHash.add (2,225 samples, 0.25%; +0.01%)</title><rect x="402.5" y="5797" width="6.0" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="405.51" y="5807.5" ></text>
</g>
<g >
<title>java/util/HashMap$HashIterator.nextNode (63 samples, 0.01%; +0.01%)</title><rect x="1698.0" y="5221" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1700.99" y="5231.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5632.0x00000008018270a8.getAsync (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="3429" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="3439.5" ></text>
</g>
<g >
<title>java/io/BufferedOutputStream.flushBuffer (800 samples, 0.09%; 0.00%)</title><rect x="577.5" y="5637" width="2.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="580.54" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (1,397 samples, 0.15%; 0.00%)</title><rect x="1527.5" y="5445" width="3.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1530.50" y="5455.5" ></text>
</g>
<g >
<title>truncate_inode_pages_range (162 samples, 0.02%; 0.00%)</title><rect x="1901.2" y="5733" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1904.20" y="5743.5" ></text>
</g>
<g >
<title>__generic_file_write_iter (59 samples, 0.01%; 0.00%)</title><rect x="2405.7" y="5573" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2408.74" y="5583.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/engine/InternalEngine.indexIntoLucene (211,614 samples, 23.44%; +0.02%)</title><rect x="524.6" y="5973" width="572.1" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="527.60" y="5983.5" >org/elasticsearch/index/engine/InternalEngine.indexIntoLucene</text>
</g>
<g >
<title>java/time/format/DateTimeFormatterBuilder$CompositePrinterParser.parse (833 samples, 0.09%; +0.00%)</title><rect x="473.6" y="5669" width="2.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="476.63" y="5679.5" ></text>
</g>
<g >
<title>frame::sender(RegisterMap*) const (109 samples, 0.01%; +0.00%)</title><rect x="1708.5" y="5445" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1711.50" y="5455.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (127 samples, 0.01%; 0.00%)</title><rect x="1531.4" y="5589" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1534.44" y="5599.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (2,758 samples, 0.31%; +0.00%)</title><rect x="1697.1" y="5589" width="7.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1700.13" y="5599.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.lambda$authorizeIndexAction$5 (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="4213" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="4223.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$$Lambda$4893.0x00000008017ed008.accept (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="1797" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="1807.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/network/InetAddresses.textToNumericFormatV4 (820 samples, 0.09%; +0.01%)</title><rect x="1206.1" y="5701" width="2.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1209.10" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/transport/SecurityServerTransportInterceptor$1.sendRequest (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="581" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="591.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/FilterDirectory.openInput (40 samples, 0.00%; 0.00%)</title><rect x="621.6" y="5701" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="624.58" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/script/ScriptException.&lt;init&gt; (355 samples, 0.04%; +0.00%)</title><rect x="1637.7" y="4965" width="0.9" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1640.67" y="4975.5" ></text>
</g>
<g >
<title>vtable stub (42 samples, 0.00%; +0.00%)</title><rect x="1856.5" y="5653" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1859.52" y="5663.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/fst/FST.readFirstRealTargetArc (43 samples, 0.00%; -0.00%)</title><rect x="2207.3" y="5925" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2210.30" y="5935.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (129 samples, 0.01%; +0.00%)</title><rect x="2176.8" y="5589" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2179.77" y="5599.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator$$Lambda$5262.0x0000000801821a10.accept (3,064 samples, 0.34%; 0.00%)</title><rect x="274.7" y="4901" width="8.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.65" y="4911.5" ></text>
</g>
<g >
<title>java/util/HashMap.entrySet (49 samples, 0.01%; +0.01%)</title><rect x="1404.9" y="5637" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1407.93" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ConditionalProcessor.lambda$execute$1 (5,036 samples, 0.56%; 0.00%)</title><rect x="1724.4" y="3973" width="13.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1727.38" y="3983.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundHandler.sendRequest (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="1237" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="1247.5" ></text>
</g>
<g >
<title>java/util/zip/DeflaterOutputStream.flush (77 samples, 0.01%; 0.00%)</title><rect x="285.9" y="4981" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="288.94" y="4991.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator.lambda$authenticateAsync$2 (1,035 samples, 0.11%; 0.00%)</title><rect x="271.5" y="5429" width="2.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.50" y="5439.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.onResponse (486 samples, 0.05%; 0.00%)</title><rect x="274.8" y="3157" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.84" y="3167.5" ></text>
</g>
<g >
<title>java/util/HashMap$HashIterator.&lt;init&gt; (260 samples, 0.03%; +0.03%)</title><rect x="1570.9" y="5765" width="0.7" height="15.0" fill="rgb(255,207,207)" rx="2" ry="2" />
<text x="1573.93" y="5775.5" ></text>
</g>
<g >
<title>sun/nio/ch/IOUtil.write (475 samples, 0.05%; 0.00%)</title><rect x="620.2" y="5621" width="1.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="623.21" y="5631.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeParseContext.startOptional (2,424 samples, 0.27%; 0.00%)</title><rect x="1376.3" y="5653" width="6.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1379.32" y="5663.5" ></text>
</g>
<g >
<title>java/util/zip/Inflater.inflateBytesBytes (6,134 samples, 0.68%; 0.00%)</title><rect x="2050.6" y="6005" width="16.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2053.64" y="6015.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ConditionalProcessor.lambda$execute$1 (1,445 samples, 0.16%; 0.00%)</title><rect x="1535.1" y="5781" width="3.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1538.07" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/support/AbstractXContentParser.readValueUnsafe (16,827 samples, 1.86%; -0.00%)</title><rect x="1473.7" y="6005" width="45.5" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1476.66" y="6015.5" >org/..</text>
</g>
<g >
<title>org/elasticsearch/index/mapper/Uid.isURLBase64WithoutPadding (199 samples, 0.02%; +0.02%)</title><rect x="1453.4" y="5973" width="0.6" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1456.43" y="5983.5" ></text>
</g>
<g >
<title>java/util/ArrayList.grow (111 samples, 0.01%; 0.00%)</title><rect x="604.9" y="5557" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="607.95" y="5567.5" ></text>
</g>
<g >
<title>java/util/HashMap.getNode (562 samples, 0.06%; -0.00%)</title><rect x="471.4" y="5733" width="1.5" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="474.41" y="5743.5" ></text>
</g>
<g >
<title>java/util/Arrays.sort (1,430 samples, 0.16%; 0.00%)</title><rect x="1075.5" y="5781" width="3.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1078.46" y="5791.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene80/IndexedDISI.writeBitSet (166 samples, 0.02%; +0.00%)</title><rect x="1912.3" y="6037" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1915.30" y="6047.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/compress/CompressorFactory.compressor (338 samples, 0.04%; +0.00%)</title><rect x="1125.0" y="5925" width="0.9" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1128.03" y="5935.5" ></text>
</g>
<g >
<title>ext4_mark_inode_dirty (53 samples, 0.01%; 0.00%)</title><rect x="1894.4" y="5269" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1897.41" y="5279.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundMessage.serialize (5,708 samples, 0.63%; 0.00%)</title><rect x="308.6" y="5637" width="15.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="311.64" y="5647.5" ></text>
</g>
<g >
<title>sun/security/provider/PolicySpiFile.engineImplies (152 samples, 0.02%; 0.00%)</title><rect x="1663.3" y="5253" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1666.34" y="5263.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/packed/DirectReader$DirectPackedReader2.get (113 samples, 0.01%; -0.00%)</title><rect x="2005.1" y="5941" width="0.3" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2008.07" y="5951.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.introSort (307 samples, 0.03%; 0.00%)</title><rect x="616.8" y="5637" width="0.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="619.82" y="5647.5" ></text>
</g>
<g >
<title>java/lang/String.rangeCheck (61 samples, 0.01%; 0.00%)</title><rect x="291.5" y="5365" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="294.47" y="5375.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/fst/NodeHash.hash (143 samples, 0.02%; 0.00%)</title><rect x="2396.9" y="5909" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2399.94" y="5919.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.authorize (145 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="4709" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="4719.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/settings/Setting.exists (117 samples, 0.01%; 0.00%)</title><rect x="275.4" y="2069" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="278.36" y="2079.5" ></text>
</g>
<g >
<title>io/netty/buffer/AbstractByteBufAllocator.heapBuffer (38 samples, 0.00%; 0.00%)</title><rect x="301.4" y="5845" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="304.42" y="5855.5" ></text>
</g>
<g >
<title>java/util/HashMap.getNode (163 samples, 0.02%; 0.00%)</title><rect x="884.7" y="5701" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="887.72" y="5711.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser._skipWS (531 samples, 0.06%; -0.01%)</title><rect x="1498.3" y="5941" width="1.4" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1501.28" y="5951.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.map (63 samples, 0.01%; +0.00%)</title><rect x="1630.8" y="3925" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1633.77" y="3935.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/support/AbstractXContentParser.readValueUnsafe (198 samples, 0.02%; 0.00%)</title><rect x="1509.0" y="5941" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1512.04" y="5951.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (936 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="4341" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.82" y="4351.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene84/Lucene84SkipWriter.writeImpacts (64 samples, 0.01%; 0.00%)</title><rect x="533.7" y="5669" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="536.66" y="5679.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5648.0x0000000801980b40.accept (931 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="3109" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.83" y="3119.5" ></text>
</g>
<g >
<title>java/security/AccessController.executePrivileged (77 samples, 0.01%; 0.00%)</title><rect x="1738.3" y="3909" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1741.29" y="3919.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/CollectionUtils.ensureNoSelfReferences (75 samples, 0.01%; 0.00%)</title><rect x="1696.8" y="5733" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1699.79" y="5743.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/FieldInfo.setDocValuesType (251 samples, 0.03%; -0.04%)</title><rect x="400.5" y="5829" width="0.7" height="15.0" fill="rgb(207,207,255)" rx="2" ry="2" />
<text x="403.50" y="5839.5" ></text>
</g>
<g >
<title>sun/security/ssl/OutputRecord.t13Encrypt (250 samples, 0.03%; 0.00%)</title><rect x="306.2" y="5845" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="309.22" y="5855.5" ></text>
</g>
<g >
<title>mark_buffer_dirty (89 samples, 0.01%; 0.00%)</title><rect x="515.5" y="5509" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="518.50" y="5519.5" ></text>
</g>
<g >
<title>Java_java_lang_Throwable_fillInStackTrace (149 samples, 0.02%; 0.00%)</title><rect x="1746.4" y="4469" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1749.35" y="4479.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.findName (46 samples, 0.01%; +0.00%)</title><rect x="1227.0" y="5669" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1229.97" y="5679.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/BytesRefHash.sort (392 samples, 0.04%; 0.00%)</title><rect x="1862.0" y="5749" width="1.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1864.98" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder$$Lambda$49.0x0000000800bc0480.write (106 samples, 0.01%; 0.00%)</title><rect x="1701.8" y="5205" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1704.77" y="5215.5" ></text>
</g>
<g >
<title>java/util/HashMap$Node.getKey (204 samples, 0.02%; +0.02%)</title><rect x="1395.7" y="5621" width="0.5" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1398.67" y="5631.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5291.0x00000008018252f0.accept (220 samples, 0.02%; 0.00%)</title><rect x="1847.0" y="5653" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.03" y="5663.5" ></text>
</g>
<g >
<title>java/security/ProtectionDomain$JavaSecurityAccessImpl$1.get (48 samples, 0.01%; +0.00%)</title><rect x="1741.0" y="3941" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1744.00" y="3951.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.ensureNoSelfReferences (150 samples, 0.02%; 0.00%)</title><rect x="1535.2" y="4805" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1538.16" y="4815.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/fst/NodeHash.addNew (246 samples, 0.03%; -0.00%)</title><rect x="2396.9" y="5925" width="0.7" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2399.94" y="5935.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/interceptor/UpdateRequestInterceptor.intercept (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="2565" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="2575.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8JsonGenerator._flushBuffer (153 samples, 0.02%; +0.02%)</title><rect x="1577.3" y="5685" width="0.4" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1580.33" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/index/IndexRequest.writeThin (121 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="1749" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="1759.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.map (109 samples, 0.01%; +0.00%)</title><rect x="1528.6" y="4789" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1531.60" y="4799.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamOutput.write (4,787 samples, 0.53%; +0.00%)</title><rect x="308.8" y="5413" width="12.9" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="311.75" y="5423.5" ></text>
</g>
<g >
<title>java/util/HashMap$TreeNode.getTreeNode (46 samples, 0.01%; +0.01%)</title><rect x="1654.6" y="5189" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1657.58" y="5199.5" ></text>
</g>
<g >
<title>java/io/BufferedOutputStream.flushBuffer (110 samples, 0.01%; 0.00%)</title><rect x="1616.1" y="2309" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1619.12" y="2319.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$AuthorizationResultListener.onResponse (292 samples, 0.03%; 0.00%)</title><rect x="271.6" y="4725" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.55" y="4735.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/index/IndexRequest.writeBody (52 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="1381" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="1391.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/BytesRefBuilder.append (67 samples, 0.01%; 0.00%)</title><rect x="548.9" y="5669" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="551.92" y="5679.5" ></text>
</g>
<g >
<title>java/io/BufferedOutputStream.flushBuffer (112 samples, 0.01%; 0.00%)</title><rect x="1987.1" y="5941" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1990.12" y="5951.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.done (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="1413" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="1423.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (5,692 samples, 0.63%; 0.00%)</title><rect x="1625.5" y="5637" width="15.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.46" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.convert (256 samples, 0.03%; +0.02%)</title><rect x="1558.9" y="5765" width="0.7" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1561.94" y="5775.5" ></text>
</g>
<g >
<title>JVM_GetStackAccessControlContext (497 samples, 0.06%; +0.03%)</title><rect x="1736.5" y="3765" width="1.4" height="15.0" fill="rgb(255,207,207)" rx="2" ry="2" />
<text x="1739.55" y="3775.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene84/Lucene84SkipWriter.writeSkipData (397 samples, 0.04%; -0.00%)</title><rect x="1879.5" y="5653" width="1.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1882.50" y="5663.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,166 samples, 0.13%; 0.00%)</title><rect x="1897.7" y="5845" width="3.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1900.66" y="5855.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.notifyListener (715 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="1381" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="1391.5" ></text>
</g>
<g >
<title>java/lang/String.split (41 samples, 0.00%; +0.00%)</title><rect x="1773.3" y="5813" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1776.31" y="5823.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/compress/LZ4.decompress (179 samples, 0.02%; +0.00%)</title><rect x="2428.4" y="5973" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2431.44" y="5983.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/IOUtils.close (54 samples, 0.01%; 0.00%)</title><rect x="1847.9" y="5781" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.93" y="5791.5" ></text>
</g>
<g >
<title>java/util/HashMap.putAll (351 samples, 0.04%; 0.00%)</title><rect x="474.7" y="5605" width="0.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="477.66" y="5615.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/TransportAction$RequestFilterChain.proceed (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="1877" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="1887.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/geoip/DatabaseReaderLazyLoader.lambda$getResponse$0 (133 samples, 0.01%; 0.00%)</title><rect x="1537.4" y="5077" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1540.37" y="5087.5" ></text>
</g>
<g >
<title>java/util/Arrays.copyOf (214 samples, 0.02%; +0.02%)</title><rect x="1409.6" y="5669" width="0.6" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1412.58" y="5679.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/util/TextBuffer.emptyAndGetCurrentSegment (100 samples, 0.01%; 0.00%)</title><rect x="1428.4" y="5765" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1431.43" y="5775.5" ></text>
</g>
<g >
<title>frame::sender(RegisterMap*) const (84 samples, 0.01%; +0.00%)</title><rect x="1715.9" y="4501" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1718.94" y="4511.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="3125" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="3135.5" ></text>
</g>
<g >
<title>com/sun/crypto/provider/GCTR.update (1,046 samples, 0.12%; 0.00%)</title><rect x="295.1" y="5573" width="2.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="298.09" y="5583.5" ></text>
</g>
<g >
<title>sun/nio/ch/FileChannelImpl.write (42 samples, 0.00%; 0.00%)</title><rect x="417.0" y="5909" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="420.04" y="5919.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (936 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="4965" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.82" y="4975.5" ></text>
</g>
<g >
<title>java/io/BufferedOutputStream.flushBuffer (101 samples, 0.01%; 0.00%)</title><rect x="531.3" y="5589" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="534.33" y="5599.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer.findName (147 samples, 0.02%; +0.02%)</title><rect x="1471.9" y="5925" width="0.4" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1474.86" y="5935.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/TransportAction.execute (275 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="4357" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="4367.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/AttributeSource.clearAttributes (523 samples, 0.06%; -0.08%)</title><rect x="368.3" y="5813" width="1.4" height="15.0" fill="rgb(204,204,255)" rx="2" ry="2" />
<text x="371.28" y="5823.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (81 samples, 0.01%; -0.00%)</title><rect x="226.2" y="5925" width="0.3" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="229.23" y="5935.5" ></text>
</g>
<g >
<title>java/util/concurrent/ConcurrentHashMap.get (194 samples, 0.02%; +0.01%)</title><rect x="1097.6" y="5941" width="0.5" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1100.59" y="5951.5" ></text>
</g>
<g >
<title>all (902,605 samples, 100%)</title><rect x="10.0" y="6261" width="2440.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="13.00" y="6271.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/DateFieldMapper.parseCreateField (2,677 samples, 0.30%; +0.00%)</title><rect x="495.0" y="5861" width="7.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="498.00" y="5871.5" ></text>
</g>
<g >
<title>java/lang/StringLatin1.hashCode (310 samples, 0.03%; -0.05%)</title><rect x="433.0" y="5701" width="0.8" height="15.0" fill="rgb(206,206,255)" rx="2" ry="2" />
<text x="435.97" y="5711.5" ></text>
</g>
<g >
<title>__x64_sys_unlink (89 samples, 0.01%; 0.00%)</title><rect x="1095.4" y="5461" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1098.44" y="5471.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/FilterDirectory.openInput (40 samples, 0.00%; 0.00%)</title><rect x="621.6" y="5749" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="624.58" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/BulkShardRequest.writeTo (199 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="789" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="799.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.ensureNoSelfReferences (120 samples, 0.01%; +0.01%)</title><rect x="1653.8" y="5189" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1656.78" y="5199.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene86/Lucene86PointsWriter.writeField (1,931 samples, 0.21%; +0.00%)</title><rect x="1863.3" y="5749" width="5.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1866.30" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.unknownValue (1,097 samples, 0.12%; +0.01%)</title><rect x="1730.6" y="3669" width="3.0" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1733.61" y="3679.5" ></text>
</g>
<g >
<title>java/util/zip/Deflater.deflate (157 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="1205" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.15" y="1215.5" ></text>
</g>
<g >
<title>java/util/ArrayList.grow (82 samples, 0.01%; 0.00%)</title><rect x="536.2" y="5605" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="539.19" y="5615.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.lambda$resolveAuthorizationInfo$1 (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="4741" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="4751.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene86/Lucene86PointsWriter.merge (9,927 samples, 1.10%; 0.00%)</title><rect x="2179.3" y="6117" width="26.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2182.29" y="6127.5" >o..</text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene80/IndexedDISI$Method$1.advanceWithinBlock (139 samples, 0.02%; 0.00%)</title><rect x="2001.0" y="5909" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2004.04" y="5919.5" ></text>
</g>
<g >
<title>java/util/ArrayList.forEach (931 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="2981" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.83" y="2991.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/ByteBlockPool.allocSlice (85 samples, 0.01%; +0.01%)</title><rect x="948.7" y="5717" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="951.71" y="5727.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/compress/LZ4$HighCompressionHashTable.get (73 samples, 0.01%; +0.01%)</title><rect x="536.9" y="5669" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="539.89" y="5679.5" ></text>
</g>
<g >
<title>java/lang/Throwable.&lt;init&gt; (99 samples, 0.01%; 0.00%)</title><rect x="1746.8" y="4565" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1749.76" y="4575.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/TransportReplicationAction$ReroutePhase.performRemoteAction (714 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="645" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="655.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/SegmentMerger.mergeTerms (87,704 samples, 9.72%; 0.00%)</title><rect x="2206.1" y="6133" width="237.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2209.13" y="6143.5" >org/apache/lucene/index/Segment..</text>
</g>
<g >
<title>block_write_end (45 samples, 0.00%; +0.00%)</title><rect x="2178.1" y="5637" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2181.10" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/TransportWriteAction$1.doRun (73,804 samples, 8.18%; 0.00%)</title><rect x="308.6" y="6165" width="199.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="311.60" y="6175.5" >org/elasticsearch/action/s..</text>
</g>
<g >
<title>java/nio/file/Files.readAttributes (60 samples, 0.01%; 0.00%)</title><rect x="1847.3" y="5189" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.32" y="5199.5" ></text>
</g>
<g >
<title>java/util/ArrayList.add (45 samples, 0.00%; 0.00%)</title><rect x="2400.4" y="5909" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2403.43" y="5919.5" ></text>
</g>
<g >
<title>java/util/DualPivotQuicksort.insertionSort (59 samples, 0.01%; -0.01%)</title><rect x="410.2" y="5749" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="413.18" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/ContextPreservingActionListener.onResponse (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="2645" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="2655.5" ></text>
</g>
<g >
<title>Method::line_number_from_bci(int) const (213 samples, 0.02%; +0.02%)</title><rect x="1636.9" y="4837" width="0.6" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1639.94" y="4847.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/constantkeyword/mapper/ConstantKeywordFieldMapper.parseCreateField (157 samples, 0.02%; +0.00%)</title><rect x="493.7" y="5797" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="496.72" y="5807.5" ></text>
</g>
<g >
<title>java/util/DualPivotQuicksort.insertionSort (127 samples, 0.01%; +0.00%)</title><rect x="1857.5" y="5621" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1860.45" y="5631.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/blocktree/SegmentTermsEnumFrame.nextNonLeaf (154 samples, 0.02%; 0.00%)</title><rect x="2430.3" y="5989" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2433.33" y="5999.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/CompressibleBytesOutputStream.writeBytes (40 samples, 0.00%; 0.00%)</title><rect x="1618.9" y="2309" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1621.93" y="2319.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.map (118 samples, 0.01%; +0.00%)</title><rect x="1733.0" y="3621" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1736.03" y="3631.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/fst/Builder.&lt;init&gt; (179 samples, 0.02%; -0.00%)</title><rect x="1886.0" y="5669" width="0.5" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1889.04" y="5679.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/automaton/CharacterRunAutomaton.run (59 samples, 0.01%; +0.01%)</title><rect x="274.1" y="4869" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="277.13" y="4879.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/TransportBulkAction.doInternalExecute (39 samples, 0.00%; 0.00%)</title><rect x="1630.9" y="3925" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="3935.5" ></text>
</g>
<g >
<title>sun/security/ssl/SSLEngineOutputRecord.encode (282 samples, 0.03%; 0.00%)</title><rect x="306.1" y="5893" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="309.13" y="5903.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (306 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="3989" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="3999.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.sort (127 samples, 0.01%; 0.00%)</title><rect x="1891.3" y="5653" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1894.32" y="5663.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/DataOutput.writeLong (487 samples, 0.05%; +0.00%)</title><rect x="1958.5" y="6005" width="1.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1961.54" y="6015.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/time/JavaDateFormatter.createRoundUpParser (96 samples, 0.01%; 0.00%)</title><rect x="1683.2" y="5461" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1686.20" y="5471.5" ></text>
</g>
<g >
<title>java/lang/String.hashCode (97 samples, 0.01%; 0.00%)</title><rect x="1171.8" y="5717" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1174.77" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/BulkShardRequest$$Lambda$5980.0x00000008019cc5a0.write (5,457 samples, 0.60%; 0.00%)</title><rect x="308.6" y="5541" width="14.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="311.64" y="5551.5" ></text>
</g>
<g >
<title>java/util/zip/CheckedOutputStream.write (120 samples, 0.01%; +0.01%)</title><rect x="1873.0" y="5541" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1876.04" y="5551.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/ObjectMapper.getMapper (44 samples, 0.00%; 0.00%)</title><rect x="438.6" y="5797" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="441.64" y="5807.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/ContentPath.pathAsText (2,025 samples, 0.22%; +0.09%)</title><rect x="1230.5" y="5717" width="5.5" height="15.0" fill="rgb(255,203,203)" rx="2" ry="2" />
<text x="1233.49" y="5727.5" ></text>
</g>
<g >
<title>java/util/HashMap$ValueIterator.next (169 samples, 0.02%; +0.00%)</title><rect x="1558.2" y="5765" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1561.19" y="5775.5" ></text>
</g>
<g >
<title>java/util/DualPivotQuicksort.sort (53 samples, 0.01%; +0.00%)</title><rect x="1850.9" y="5717" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1853.89" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.unknownValue (798 samples, 0.09%; +0.00%)</title><rect x="1583.4" y="5765" width="2.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1586.43" y="5775.5" ></text>
</g>
<g >
<title>ext4_do_update_inode (79 samples, 0.01%; +0.00%)</title><rect x="621.0" y="5269" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="624.04" y="5279.5" ></text>
</g>
<g >
<title>java/util/HashMap$EntrySet.iterator (144 samples, 0.02%; +0.00%)</title><rect x="1394.8" y="5621" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1397.77" y="5631.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/ParseContext$InternalParseContext.getMetadataMapper (780 samples, 0.09%; 0.00%)</title><rect x="1237.4" y="5717" width="2.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1240.40" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.lambda$authorizeIndexAction$5 (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="3477" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="3487.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/Sorter.binarySort (53 samples, 0.01%; +0.00%)</title><rect x="1891.0" y="5605" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1894.00" y="5615.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/FieldMapper.parse (170 samples, 0.02%; 0.00%)</title><rect x="1229.8" y="5669" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1232.78" y="5679.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/ReplicationOperation.execute (64 samples, 0.01%; 0.00%)</title><rect x="1846.9" y="5557" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1849.86" y="5567.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/StringHelper.murmurhash3_x86_32 (1,210 samples, 0.13%; +0.13%)</title><rect x="1011.7" y="5749" width="3.3" height="15.0" fill="rgb(255,200,200)" rx="2" ry="2" />
<text x="1014.73" y="5759.5" ></text>
</g>
<g >
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer.releaseShared (200 samples, 0.02%; 0.00%)</title><rect x="523.8" y="5941" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="526.84" y="5951.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator.lookForExistingAuthentication (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="3493" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="3503.5" ></text>
</g>
<g >
<title>itable stub (86 samples, 0.01%; +0.01%)</title><rect x="1544.7" y="5797" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1547.73" y="5807.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/AttributeSource.getCurrentState (45 samples, 0.00%; -0.00%)</title><rect x="366.5" y="5797" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="369.50" y="5807.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamOutput.writeLong (719 samples, 0.08%; +0.01%)</title><rect x="1109.8" y="5893" width="1.9" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1112.76" y="5903.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/TransportReplicationAction$ReroutePhase.performAction (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="1013" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="1023.5" ></text>
</g>
<g >
<title>java/util/HashMap$EntryIterator.&lt;init&gt; (46 samples, 0.01%; 0.00%)</title><rect x="500.8" y="5637" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="503.78" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/nodes/TransportNodesAction.nodeOperation (218 samples, 0.02%; 0.00%)</title><rect x="1847.0" y="5493" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.03" y="5503.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/ByteBuffersDataOutput.appendBlock (38 samples, 0.00%; 0.00%)</title><rect x="561.3" y="5573" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="564.27" y="5583.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/EsExecutors$DirectExecutorService.execute (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="1093" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="1103.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/CollectionUtils.ensureNoSelfReferences (46 samples, 0.01%; 0.00%)</title><rect x="1531.6" y="5141" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1534.61" y="5151.5" ></text>
</g>
<g >
<title>java_security_AccessControlContext::create(objArrayHandle, bool, Handle, Thread*) (41 samples, 0.00%; +0.00%)</title><rect x="1692.5" y="5557" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1695.53" y="5567.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (393 samples, 0.04%; 0.00%)</title><rect x="758.5" y="5461" width="1.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="761.45" y="5471.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$CachingAsyncSupplier$$Lambda$5639.0x0000000801980040.accept (310 samples, 0.03%; 0.00%)</title><rect x="271.5" y="4837" width="0.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.55" y="4847.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/ContextPreservingActionListener.onResponse (145 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="4597" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="4607.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/CompetitiveImpactAccumulator.addAll (79 samples, 0.01%; -0.00%)</title><rect x="1879.5" y="5637" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1882.50" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/TransportBulkAction.executeBulk (750 samples, 0.08%; 0.00%)</title><rect x="1733.7" y="3669" width="2.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.72" y="3679.5" ></text>
</g>
<g >
<title>java/util/HashMap$HashIterator.nextNode (70 samples, 0.01%; +0.01%)</title><rect x="1711.5" y="4389" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1714.54" y="4399.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/common/SetProcessor.execute (52 samples, 0.01%; 0.00%)</title><rect x="1629.9" y="4277" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.92" y="4287.5" ></text>
</g>
<g >
<title>java/util/ArrayList.add (460 samples, 0.05%; 0.00%)</title><rect x="601.7" y="5637" width="1.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="604.74" y="5647.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/DocValuesConsumer.mergeSortedNumericField (5,496 samples, 0.61%; 0.00%)</title><rect x="1906.3" y="6085" width="14.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1909.25" y="6095.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.value (68 samples, 0.01%; 0.00%)</title><rect x="1659.4" y="5173" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.41" y="5183.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/DataOutput.writeVInt (57 samples, 0.01%; -0.00%)</title><rect x="2400.4" y="5989" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2403.40" y="5999.5" ></text>
</g>
<g >
<title>java/util/stream/AbstractPipeline.evaluate (179 samples, 0.02%; +0.00%)</title><rect x="1682.6" y="5445" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1685.59" y="5455.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5291.0x00000008018252f0.accept (525 samples, 0.06%; 0.00%)</title><rect x="1845.4" y="5653" width="1.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1848.43" y="5663.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.nextToken (1,721 samples, 0.19%; +0.04%)</title><rect x="1170.4" y="5829" width="4.6" height="15.0" fill="rgb(255,207,207)" rx="2" ry="2" />
<text x="1173.39" y="5839.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamInput.readVInt (184 samples, 0.02%; +0.00%)</title><rect x="265.5" y="5285" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="268.55" y="5295.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/ContextPreservingActionListener.onResponse (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="3269" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="3279.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/compressing/CompressingStoredFieldsWriter.writeHeader (77 samples, 0.01%; 0.00%)</title><rect x="2068.3" y="6069" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2071.27" y="6079.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Processor.execute (879 samples, 0.10%; 0.00%)</title><rect x="1693.1" y="5269" width="2.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1696.14" y="5279.5" ></text>
</g>
<g >
<title>java/security/AccessControlContext.checkPermission (221 samples, 0.02%; +0.00%)</title><rect x="1663.3" y="5333" width="0.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1666.27" y="5343.5" ></text>
</g>
<g >
<title>com/github/mustachejava/codes/DefaultCode.get (103 samples, 0.01%; +0.00%)</title><rect x="1645.7" y="5429" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1648.73" y="5439.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/FreqProxFields$FreqProxPostingsEnum.nextDoc (977 samples, 0.11%; +0.05%)</title><rect x="591.7" y="5733" width="2.6" height="15.0" fill="rgb(255,206,206)" rx="2" ry="2" />
<text x="594.71" y="5743.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/DocumentsWriterFlushControl.obtainAndLock (547 samples, 0.06%; +0.02%)</title><rect x="624.0" y="5877" width="1.5" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="627.00" y="5887.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.notifyListener (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="2069" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="2079.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamOutput.writeBytesReference (191 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="661" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="671.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/seqno/LocalCheckpointTracker.updateCheckpoint (96 samples, 0.01%; -0.02%)</title><rect x="413.9" y="5957" width="0.3" height="15.0" fill="rgb(208,208,255)" rx="2" ry="2" />
<text x="416.91" y="5967.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundMessage.serialize (396 samples, 0.04%; 0.00%)</title><rect x="285.1" y="5077" width="1.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="288.07" y="5087.5" ></text>
</g>
<g >
<title>org/apache/lucene/search/SortedSetSelector$MinValue.nextDoc (4,112 samples, 0.46%; 0.00%)</title><rect x="1960.2" y="6021" width="11.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1963.18" y="6031.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamOutput.writeBytes (76 samples, 0.01%; +0.00%)</title><rect x="285.3" y="4917" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="288.32" y="4927.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.nextToken (69 samples, 0.01%; +0.00%)</title><rect x="1483.1" y="5973" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1486.08" y="5983.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/DocumentsWriterPerThread.flush (4,744 samples, 0.53%; 0.00%)</title><rect x="526.3" y="5845" width="12.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="529.27" y="5855.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/BaseFuture.set (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="2213" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="2223.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene80/IndexedDISI.advance (68 samples, 0.01%; +0.01%)</title><rect x="1962.7" y="5925" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1965.68" y="5935.5" ></text>
</g>
<g >
<title>java/util/zip/CheckedOutputStream.write (48 samples, 0.01%; +0.01%)</title><rect x="2250.9" y="5909" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2253.95" y="5919.5" ></text>
</g>
<g >
<title>java/lang/SecurityManager.checkPermission (86 samples, 0.01%; 0.00%)</title><rect x="1537.7" y="5157" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1540.73" y="5167.5" ></text>
</g>
<g >
<title>org/elasticsearch/script/mustache/MustacheScriptEngine$MustacheExecutableScript.execute (79 samples, 0.01%; 0.00%)</title><rect x="1630.1" y="4389" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.11" y="4399.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5631.0x0000000801826e80.getAsync (275 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="3749" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="3759.5" ></text>
</g>
<g >
<title>BacktraceBuilder::push(Method*, int, Thread*) (52 samples, 0.01%; +0.00%)</title><rect x="1718.6" y="4629" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1721.56" y="4639.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/base/ParserBase._parseNumericValue (49 samples, 0.01%; 0.00%)</title><rect x="493.0" y="5701" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="496.04" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.notifyListener (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="1109" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="1119.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/geoip/GeoIpProcessor.execute (224 samples, 0.02%; 0.00%)</title><rect x="1537.4" y="5253" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1540.35" y="5263.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/BytesRefHash.add (54 samples, 0.01%; -0.01%)</title><rect x="411.7" y="5829" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="414.67" y="5839.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$AuthorizationResultListener.onResponse (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="3077" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="3087.5" ></text>
</g>
<g >
<title>java/security/AccessController.checkPermission (112 samples, 0.01%; 0.00%)</title><rect x="1529.1" y="4933" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1532.15" y="4943.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/KeywordFieldMapper.parseCreateField (156 samples, 0.02%; +0.00%)</title><rect x="1229.8" y="5653" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1232.78" y="5663.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.lambda$done$0 (38 samples, 0.00%; 0.00%)</title><rect x="271.6" y="2885" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.58" y="2895.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.maybeAuthorizeRunAs (489 samples, 0.05%; 0.00%)</title><rect x="274.8" y="3653" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.84" y="3663.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/TransportReplicationAction.doExecute (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="2021" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="2031.5" ></text>
</g>
<g >
<title>BacktraceBuilder::BacktraceBuilder(Thread*) (139 samples, 0.02%; +0.00%)</title><rect x="1676.5" y="5429" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1679.53" y="5439.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (931 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="3669" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.83" y="3679.5" ></text>
</g>
<g >
<title>java/lang/Throwable.fillInStackTrace (231 samples, 0.03%; 0.00%)</title><rect x="1640.0" y="5269" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1642.98" y="5279.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/ByteBufferGuard.getShort (63 samples, 0.01%; +0.01%)</title><rect x="1877.7" y="5605" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1880.72" y="5615.5" ></text>
</g>
<g >
<title>inet6_sendmsg (92 samples, 0.01%; 0.00%)</title><rect x="307.1" y="5493" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="310.12" y="5503.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/core/security/support/Automatons$1.test (59 samples, 0.01%; 0.00%)</title><rect x="274.1" y="4885" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.13" y="4895.5" ></text>
</g>
<g >
<title>G1ParScanThreadState::copy_to_survivor_space(G1HeapRegionAttr, oopDesc*, markWord) (122 samples, 0.01%; +0.00%)</title><rect x="2444.1" y="6117" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2447.09" y="6127.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern$Ques.match (37 samples, 0.00%; +0.00%)</title><rect x="1765.6" y="5717" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1768.56" y="5727.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/TokenStream.end (70 samples, 0.01%; 0.00%)</title><rect x="441.5" y="5717" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="444.48" y="5727.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/fst/Builder.compileNode (112 samples, 0.01%; +0.00%)</title><rect x="2395.0" y="5989" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2397.98" y="5999.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/json/JsonXContentGenerator.writeString (64 samples, 0.01%; 0.00%)</title><rect x="1659.2" y="5125" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.16" y="5135.5" ></text>
</g>
<g >
<title>java/util/zip/Inflater.inflate (6,134 samples, 0.68%; 0.00%)</title><rect x="2050.6" y="6021" width="16.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2053.64" y="6031.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.nextToken (67 samples, 0.01%; -0.00%)</title><rect x="1481.6" y="5957" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1484.59" y="5967.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/LongValues$1.get (83 samples, 0.01%; -0.03%)</title><rect x="1952.7" y="6037" width="0.2" height="15.0" fill="rgb(207,207,255)" rx="2" ry="2" />
<text x="1955.65" y="6047.5" ></text>
</g>
<g >
<title>sun/nio/ch/SocketChannelImpl.write (106 samples, 0.01%; 0.00%)</title><rect x="307.1" y="5765" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="310.09" y="5775.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/DelegatingAnalyzerWrapper$DelegatingReuseStrategy.getReusableComponents (1,191 samples, 0.13%; 0.00%)</title><rect x="1257.0" y="5669" width="3.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1259.96" y="5679.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/RateLimitedIndexOutput.writeByte (3,907 samples, 0.43%; +0.02%)</title><rect x="2240.0" y="5957" width="10.6" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="2243.00" y="5967.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundHandler.sendRequest (5,713 samples, 0.63%; 0.00%)</title><rect x="308.6" y="5733" width="15.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="311.64" y="5743.5" ></text>
</g>
<g >
<title>G1ParScanThreadState::copy_to_survivor_space(G1HeapRegionAttr, oopDesc*, markWord) (55 samples, 0.01%; +0.00%)</title><rect x="2448.8" y="6037" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2451.84" y="6047.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$runRequestInterceptors$14 (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="1013" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="1023.5" ></text>
</g>
<g >
<title>java/lang/String.split (186 samples, 0.02%; +0.02%)</title><rect x="1362.6" y="5813" width="0.5" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1365.62" y="5823.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/BaseFuture.set (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="1941" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="1951.5" ></text>
</g>
<g >
<title>java/util/DualPivotQuicksort.sort (80 samples, 0.01%; +0.01%)</title><rect x="2238.0" y="6005" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2240.99" y="6015.5" ></text>
</g>
<g >
<title>java/security/ProtectionDomain.impliesWithAltFilePerm (97 samples, 0.01%; 0.00%)</title><rect x="1846.1" y="5045" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1849.14" y="5055.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/DefaultIndexingChain$PerField.finish (334 samples, 0.04%; -0.00%)</title><rect x="333.1" y="5861" width="0.9" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="336.09" y="5871.5" ></text>
</g>
<g >
<title>vectorizedMismatch (53 samples, 0.01%; +0.01%)</title><rect x="607.8" y="5669" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="610.80" y="5679.5" ></text>
</g>
<g >
<title>io/netty/buffer/PooledByteBufAllocator.newHeapBuffer (48 samples, 0.01%; 0.00%)</title><rect x="302.3" y="6037" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="305.31" y="6047.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/FieldMapper.parse (12,662 samples, 1.40%; 0.00%)</title><rect x="1239.8" y="5733" width="34.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1242.77" y="5743.5" >or..</text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.radixSort (932 samples, 0.10%; +0.00%)</title><rect x="565.1" y="5637" width="2.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="568.15" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine$$Lambda$5637.0x0000000801827ba0.accept (145 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="4133" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="4143.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/bkd/BKDWriter$OneDimensionBKDWriter.add (2,791 samples, 0.31%; +0.00%)</title><rect x="2198.6" y="6085" width="7.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2201.58" y="6095.5" ></text>
</g>
<g >
<title>java/util/ArrayList.grow (1,359 samples, 0.15%; 0.00%)</title><rect x="2390.7" y="5925" width="3.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2393.67" y="5935.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/cache/Cache.get (43 samples, 0.00%; 0.00%)</title><rect x="1748.9" y="4709" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1751.94" y="4719.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.introSort (293 samples, 0.03%; 0.00%)</title><rect x="1867.3" y="5573" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1870.32" y="5583.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/DocumentParser.innerParseObject (301 samples, 0.03%; -0.00%)</title><rect x="449.9" y="5733" width="0.9" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="452.94" y="5743.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5631.0x0000000801826e80.getAsync (145 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="4357" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="4367.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/blocktree/BlockTreeTermsWriter$TermsWriter.writeBlock (93 samples, 0.01%; +0.00%)</title><rect x="1871.1" y="5701" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1874.10" y="5711.5" ></text>
</g>
<g >
<title>java/lang/AbstractStringBuilder.setLength (271 samples, 0.03%; -0.03%)</title><rect x="426.1" y="5845" width="0.8" height="15.0" fill="rgb(207,207,255)" rx="2" ry="2" />
<text x="429.14" y="5855.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/base/ParserBase._parseSlowFloat (100 samples, 0.01%; 0.00%)</title><rect x="1358.7" y="5669" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1361.72" y="5679.5" ></text>
</g>
<g >
<title>java/lang/StackTraceElement.of (1,489 samples, 0.16%; +0.00%)</title><rect x="1633.6" y="4933" width="4.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1636.63" y="4943.5" ></text>
</g>
<g >
<title>java/util/ArrayList.grow (225 samples, 0.02%; 0.00%)</title><rect x="1879.8" y="5573" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1882.85" y="5583.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/bytes/ReleasableBytesReference.length (48 samples, 0.01%; +0.01%)</title><rect x="261.2" y="5269" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="264.24" y="5279.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/EsExecutors$DirectExecutorService.execute (715 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="837" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="847.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (1,997 samples, 0.22%; 0.00%)</title><rect x="1710.8" y="4821" width="5.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1713.82" y="4831.5" ></text>
</g>
<g >
<title>java/util/HashMap.putVal (127 samples, 0.01%; +0.01%)</title><rect x="1775.0" y="5829" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1778.03" y="5839.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/ContextPreservingActionListener.onResponse (936 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="4789" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.82" y="4799.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (931 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="3125" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.83" y="3135.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern.split (50 samples, 0.01%; 0.00%)</title><rect x="1765.5" y="5797" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1768.53" y="5807.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/interceptor/FieldAndDocumentLevelSecurityRequestInterceptor.intercept (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="1493" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="1503.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene80/IndexedDISI.advance (943 samples, 0.10%; -0.02%)</title><rect x="2000.2" y="5925" width="2.6" height="15.0" fill="rgb(208,208,255)" rx="2" ry="2" />
<text x="2003.22" y="5935.5" ></text>
</g>
<g >
<title>java/util/zip/DeflaterOutputStream.deflate (50 samples, 0.01%; 0.00%)</title><rect x="1620.3" y="2389" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1623.27" y="2399.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/geoip/GeoIpProcessor.getGeoData (1,035 samples, 0.11%; 0.00%)</title><rect x="1748.6" y="4853" width="2.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1751.56" y="4863.5" ></text>
</g>
<g >
<title>__vfs_write (142 samples, 0.02%; 0.00%)</title><rect x="2304.8" y="5589" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2307.84" y="5599.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/RAMOutputStream.writeByte (51 samples, 0.01%; -0.00%)</title><rect x="2400.8" y="5973" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2403.80" y="5983.5" ></text>
</g>
<g >
<title>new_sync_write (59 samples, 0.01%; 0.00%)</title><rect x="2405.7" y="5605" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2408.74" y="5615.5" ></text>
</g>
<g >
<title>java/util/concurrent/locks/ReentrantReadWriteLock$ReadLock.lock (363 samples, 0.04%; 0.00%)</title><rect x="522.5" y="5957" width="1.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="525.53" y="5967.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.done (302 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="2757" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="2767.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (279 samples, 0.03%; 0.00%)</title><rect x="1630.5" y="4501" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.53" y="4511.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser._skipWS (299 samples, 0.03%; -0.05%)</title><rect x="437.4" y="5813" width="0.8" height="15.0" fill="rgb(206,206,255)" rx="2" ry="2" />
<text x="440.37" y="5823.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/json/JsonXContentGenerator.writeFieldName (681 samples, 0.08%; +0.00%)</title><rect x="1560.5" y="5813" width="1.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1563.50" y="5823.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5633.0x00000008018272d0.accept (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="2917" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="2927.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (4,849 samples, 0.54%; 0.00%)</title><rect x="1625.5" y="5109" width="13.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.54" y="5119.5" ></text>
</g>
<g >
<title>java/util/stream/AbstractPipeline.copyInto (37 samples, 0.00%; 0.00%)</title><rect x="274.8" y="2021" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.84" y="2031.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/time/JavaDateFormatter.&lt;init&gt; (133 samples, 0.01%; 0.00%)</title><rect x="1645.2" y="5413" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1648.17" y="5423.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.map (1,754 samples, 0.19%; 0.00%)</title><rect x="1697.3" y="5317" width="4.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1700.34" y="5327.5" ></text>
</g>
<g >
<title>java/io/BufferedOutputStream.flushBuffer (44 samples, 0.00%; 0.00%)</title><rect x="1629.8" y="533" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="543.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/ParseContext$InternalParseContext.getMetadataMapper (40 samples, 0.00%; 0.00%)</title><rect x="494.9" y="5861" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="497.87" y="5871.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8JsonGenerator.writeFieldName (68 samples, 0.01%; 0.00%)</title><rect x="1627.1" y="4069" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.08" y="4079.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.unknownValue (108 samples, 0.01%; +0.00%)</title><rect x="1623.7" y="5157" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1626.72" y="5167.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/base/ParserMinimalBase.getCurrentToken (43 samples, 0.00%; +0.00%)</title><rect x="1255.0" y="5653" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1258.01" y="5663.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/SortedSetDocValuesWriter$BufferedSortedSetDocValues.&lt;init&gt; (93 samples, 0.01%; 0.00%)</title><rect x="1854.2" y="5669" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1857.24" y="5679.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Processor.execute (1,709 samples, 0.19%; +0.00%)</title><rect x="1527.5" y="5797" width="4.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1530.48" y="5807.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder$$Lambda$49.0x0000000800bc0480.write (98 samples, 0.01%; +0.00%)</title><rect x="1700.7" y="5237" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1703.72" y="5247.5" ></text>
</g>
<g >
<title>[unknown] (37 samples, 0.00%; 0.00%)</title><rect x="539.0" y="5557" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="541.97" y="5567.5" ></text>
</g>
<g >
<title>/lib/x86_64-linux-gnu/libz.so.1.2.11 (51 samples, 0.01%; +0.01%)</title><rect x="1662.2" y="1797" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1665.21" y="1807.5" ></text>
</g>
<g >
<title>sun/nio/ch/IOUtil.write (465 samples, 0.05%; 0.00%)</title><rect x="324.3" y="5765" width="1.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="327.34" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ConditionalProcessor.execute (2,143 samples, 0.24%; 0.00%)</title><rect x="1625.6" y="4917" width="5.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.58" y="4927.5" ></text>
</g>
<g >
<title>vectorizedMismatch (268 samples, 0.03%; +0.00%)</title><rect x="2423.6" y="5941" width="0.7" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2426.59" y="5951.5" ></text>
</g>
<g >
<title>jlong_disjoint_arraycopy (73 samples, 0.01%; +0.01%)</title><rect x="1541.1" y="5829" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1544.15" y="5839.5" ></text>
</g>
<g >
<title>java/security/ProtectionDomain.impliesWithAltFilePerm (238 samples, 0.03%; +0.00%)</title><rect x="1749.1" y="4725" width="0.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1752.10" y="4735.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (1,429 samples, 0.16%; 0.00%)</title><rect x="1535.1" y="5589" width="3.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1538.07" y="5599.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorize$1 (489 samples, 0.05%; 0.00%)</title><rect x="274.8" y="3669" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.84" y="3679.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.authorizeAction (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="3541" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="3551.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (4,849 samples, 0.54%; 0.00%)</title><rect x="1625.5" y="5077" width="13.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.54" y="5087.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/IndexWriter.access$600 (191 samples, 0.02%; 0.00%)</title><rect x="1095.3" y="5797" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1098.27" y="5807.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/Sorter.binarySort (149 samples, 0.02%; 0.00%)</title><rect x="617.2" y="5589" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="620.17" y="5599.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/fst/BytesStore.writeByte (67 samples, 0.01%; 0.00%)</title><rect x="569.8" y="5685" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="572.82" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/action/filter/SecurityActionFilter$$Lambda$5025.0x00000008016b7bb0.accept (302 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="2357" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="2367.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/GroupedActionListener.onResponse (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="3493" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="3503.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/BytesRef.&lt;init&gt; (1,841 samples, 0.20%; 0.00%)</title><rect x="1303.8" y="5765" width="5.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1306.78" y="5775.5" ></text>
</g>
<g >
<title>java/util/Arrays.copyOf (84 samples, 0.01%; +0.01%)</title><rect x="1362.1" y="5701" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1365.08" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (938 samples, 0.10%; 0.00%)</title><rect x="1693.1" y="5573" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1696.13" y="5583.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/base/ParserBase.getNumberValue (43 samples, 0.00%; +0.00%)</title><rect x="1510.0" y="5925" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1513.03" y="5935.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/base/ParserBase.getCurrentName (111 samples, 0.01%; +0.01%)</title><rect x="1132.5" y="5893" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1135.46" y="5903.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (11,965 samples, 1.33%; 0.00%)</title><rect x="1589.5" y="3173" width="32.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.47" y="3183.5" >or..</text>
</g>
<g >
<title>java/security/AccessController.getStackAccessControlContext (442 samples, 0.05%; 0.00%)</title><rect x="1747.3" y="4677" width="1.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1750.29" y="4687.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/RateLimitedIndexOutput.checkRate (98 samples, 0.01%; -0.23%)</title><rect x="2256.4" y="5989" width="0.2" height="15.0" fill="rgb(193,193,255)" rx="2" ry="2" />
<text x="2259.38" y="5999.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/json/JsonXContentGenerator.writeFieldName (50 samples, 0.01%; 0.00%)</title><rect x="1714.0" y="4373" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1716.97" y="4383.5" ></text>
</g>
<g >
<title>java/util/stream/ReduceOps$ReduceOp.evaluateSequential (53 samples, 0.01%; +0.00%)</title><rect x="1710.2" y="5413" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1713.15" y="5423.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/collect/CopyOnWriteHashMap$InnerNode.get (89 samples, 0.01%; -0.01%)</title><rect x="444.4" y="5765" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="447.39" y="5775.5" ></text>
</g>
<g >
<title>io/netty/handler/timeout/IdleStateHandler.channelRead (3,275 samples, 0.36%; 0.00%)</title><rect x="274.3" y="5797" width="8.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.34" y="5807.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/geoip/DatabaseReaderLazyLoader.lambda$getResponse$0 (91 samples, 0.01%; 0.00%)</title><rect x="1536.9" y="5013" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.88" y="5023.5" ></text>
</g>
<g >
<title>java/lang/ThreadLocal$ThreadLocalMap.cleanSomeSlots (74 samples, 0.01%; +0.00%)</title><rect x="522.9" y="5861" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="525.94" y="5871.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamInput.readBytesReference (764 samples, 0.08%; +0.00%)</title><rect x="258.5" y="5333" width="2.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="261.52" y="5343.5" ></text>
</g>
<g >
<title>java/lang/ThreadLocal.get (112 samples, 0.01%; 0.00%)</title><rect x="1210.2" y="5637" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1213.17" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/store/ByteSizeCachingDirectory$2.writeByte (3,436 samples, 0.38%; 0.00%)</title><rect x="2241.3" y="5941" width="9.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2244.28" y="5951.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/StringMSBRadixSorter.byteAt (282 samples, 0.03%; +0.00%)</title><rect x="610.9" y="5669" width="0.7" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="613.85" y="5679.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/bytes/CompositeBytesReference.length (64 samples, 0.01%; +0.01%)</title><rect x="257.3" y="5253" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="260.34" y="5263.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/support/AbstractXContentParser.textOrNull (58 samples, 0.01%; -0.00%)</title><rect x="495.1" y="5845" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="498.12" y="5855.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.sort (37 samples, 0.00%; 0.00%)</title><rect x="613.2" y="5541" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="616.23" y="5551.5" ></text>
</g>
<g >
<title>java/util/HashMap$TreeNode.getTreeNode (245 samples, 0.03%; +0.03%)</title><rect x="1576.5" y="5733" width="0.7" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1579.52" y="5743.5" ></text>
</g>
<g >
<title>sun/nio/fs/LinuxFileSystemProvider.readAttributes (60 samples, 0.01%; 0.00%)</title><rect x="1847.3" y="5173" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.32" y="5183.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (130 samples, 0.01%; 0.00%)</title><rect x="1531.4" y="5749" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1534.44" y="5759.5" ></text>
</g>
<g >
<title>java/util/RegularEnumSet.contains (41 samples, 0.00%; +0.00%)</title><rect x="520.8" y="5989" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="523.82" y="5999.5" ></text>
</g>
<g >
<title>java/util/Arrays.copyOf (80 samples, 0.01%; +0.01%)</title><rect x="1429.7" y="5749" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1432.70" y="5759.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/ByteBufferGuard.getBytes (585 samples, 0.06%; 0.00%)</title><rect x="2195.8" y="6005" width="1.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2198.83" y="6015.5" ></text>
</g>
<g >
<title>java/util/HashSet.add (1,254 samples, 0.14%; 0.00%)</title><rect x="1490.8" y="5893" width="3.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1493.78" y="5903.5" ></text>
</g>
<g >
<title>java/lang/ThreadLocal$ThreadLocalMap.getEntry (68 samples, 0.01%; +0.01%)</title><rect x="1126.1" y="5829" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1129.08" y="5839.5" ></text>
</g>
<g >
<title>ext4_file_write_iter (2,113 samples, 0.23%; 0.00%)</title><rect x="510.5" y="5621" width="5.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="513.47" y="5631.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (2,157 samples, 0.24%; 0.00%)</title><rect x="1625.6" y="5013" width="5.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.56" y="5023.5" ></text>
</g>
<g >
<title>org/elasticsearch/ElasticsearchException.&lt;init&gt; (345 samples, 0.04%; 0.00%)</title><rect x="1637.7" y="4949" width="0.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1640.70" y="4959.5" ></text>
</g>
<g >
<title>sun/nio/ch/FileDispatcherImpl.write0 (192 samples, 0.02%; 0.00%)</title><rect x="1894.1" y="5541" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1897.11" y="5551.5" ></text>
</g>
<g >
<title>org/elasticsearch/SpecialPermission.check (700 samples, 0.08%; 0.00%)</title><rect x="1740.9" y="4101" width="1.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1743.85" y="4111.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/ParseContext$Document.add (56 samples, 0.01%; +0.00%)</title><rect x="1434.4" y="5909" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1437.44" y="5919.5" ></text>
</g>
<g >
<title>org/joni/Matcher.searchCommon (191 samples, 0.02%; +0.00%)</title><rect x="1773.4" y="5893" width="0.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1776.44" y="5903.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.lambda$authorizeIndexAction$5 (307 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="4661" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="4671.5" ></text>
</g>
<g >
<title>/lib/x86_64-linux-gnu/libz.so.1.2.11 (150 samples, 0.02%; +0.02%)</title><rect x="1627.9" y="485" width="0.4" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1630.85" y="495.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene80/IndexedDISI.flush (242 samples, 0.03%; -0.00%)</title><rect x="1852.8" y="5685" width="0.6" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1855.77" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/time/DateFormatters.forPattern (1,342 samples, 0.15%; +0.05%)</title><rect x="1679.8" y="5509" width="3.7" height="15.0" fill="rgb(255,206,206)" rx="2" ry="2" />
<text x="1682.83" y="5519.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/DelegatingAnalyzerWrapper$DelegatingReuseStrategy.getReusableComponents (65 samples, 0.01%; +0.01%)</title><rect x="1321.3" y="5717" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1324.35" y="5727.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/fst/FSTEnum.doNext (97 samples, 0.01%; +0.00%)</title><rect x="2207.5" y="5989" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2210.50" y="5999.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/BulkShardRequest.lambda$writeTo$3 (693 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="309" width="1.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="319.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.lambda$authorizeIndexAction$5 (275 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="3829" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="3839.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamInput.readVInt (89 samples, 0.01%; 0.00%)</title><rect x="269.3" y="5285" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="272.32" y="5295.5" ></text>
</g>
<g >
<title>sun/nio/ch/FileDispatcherImpl.write (444 samples, 0.05%; 0.00%)</title><rect x="620.3" y="5589" width="1.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="623.27" y="5599.5" ></text>
</g>
<g >
<title>java/util/HashMap$TreeNode.getTreeNode (91 samples, 0.01%; +0.01%)</title><rect x="1411.7" y="5621" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1414.74" y="5631.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$1.doRun (38 samples, 0.00%; 0.00%)</title><rect x="271.6" y="3861" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.58" y="3871.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/support/AbstractXContentParser.readListUnsafe (610 samples, 0.07%; -0.00%)</title><rect x="1481.3" y="5989" width="1.7" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1484.32" y="5999.5" ></text>
</g>
<g >
<title>CodeHeap::find_blob_unsafe(void*) const (133 samples, 0.01%; +0.01%)</title><rect x="1673.4" y="5445" width="0.3" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1676.39" y="5455.5" ></text>
</g>
<g >
<title>java/util/ArrayList.grow (84 samples, 0.01%; 0.00%)</title><rect x="2321.8" y="5877" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2324.76" y="5887.5" ></text>
</g>
<g >
<title>java/nio/channels/Channels.writeFully (309 samples, 0.03%; 0.00%)</title><rect x="2171.4" y="5893" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2174.36" y="5903.5" ></text>
</g>
<g >
<title>ksys_pread64 (113 samples, 0.01%; +0.00%)</title><rect x="2049.7" y="5781" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2052.67" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.loadAuthorizedIndices (307 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="4549" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="4559.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8JsonGenerator._writeStringSegment (42 samples, 0.00%; +0.00%)</title><rect x="1699.2" y="5237" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1702.15" y="5247.5" ></text>
</g>
<g >
<title>java/lang/Enum.hashCode (51 samples, 0.01%; +0.01%)</title><rect x="1396.7" y="5605" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1399.72" y="5615.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.handleIndexActionAuthorizationResult (292 samples, 0.03%; 0.00%)</title><rect x="271.6" y="4661" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.55" y="4671.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser._finishAndReturnString (1,535 samples, 0.17%; -0.01%)</title><rect x="1476.9" y="5957" width="4.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1479.86" y="5967.5" ></text>
</g>
<g >
<title>generic_file_read_iter (55 samples, 0.01%; -0.00%)</title><rect x="2174.6" y="5781" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2177.62" y="5791.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/IndexFileDeleter.decRef (98 samples, 0.01%; 0.00%)</title><rect x="1454.0" y="6021" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1457.02" y="6031.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.getText (188 samples, 0.02%; +0.00%)</title><rect x="1509.1" y="5909" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1512.05" y="5919.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (25,018 samples, 2.77%; 0.00%)</title><rect x="1625.4" y="5813" width="67.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.41" y="5823.5" >org/ela..</text>
</g>
<g >
<title>org/elasticsearch/common/util/AbstractArray.close (58 samples, 0.01%; -0.00%)</title><rect x="414.6" y="5893" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="417.59" y="5903.5" ></text>
</g>
<g >
<title>java/lang/StringLatin1.hashCode (597 samples, 0.07%; +0.06%)</title><rect x="1166.5" y="5749" width="1.6" height="15.0" fill="rgb(255,206,206)" rx="2" ry="2" />
<text x="1169.48" y="5759.5" ></text>
</g>
<g >
<title>java/util/stream/ReferencePipeline.collect (40 samples, 0.00%; 0.00%)</title><rect x="1587.9" y="5797" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1590.87" y="5807.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/DocValuesConsumer$5$1.nextDoc (103 samples, 0.01%; 0.00%)</title><rect x="526.7" y="5749" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="529.71" y="5759.5" ></text>
</g>
<g >
<title>java/lang/Throwable.&lt;init&gt; (180 samples, 0.02%; 0.00%)</title><rect x="1717.1" y="4725" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1720.10" y="4735.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (152 samples, 0.02%; -0.01%)</title><rect x="452.6" y="5717" width="0.4" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="455.56" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="3397" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="3407.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine$$Lambda$5635.0x0000000801827740.accept (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="4581" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="4591.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/util/TextBuffer.emptyAndGetCurrentSegment (48 samples, 0.01%; 0.00%)</title><rect x="441.0" y="5685" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="443.96" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorize$1 (1,025 samples, 0.11%; 0.00%)</title><rect x="271.5" y="5205" width="2.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.52" y="5215.5" ></text>
</g>
<g >
<title>java/util/HashMap.&lt;init&gt; (148 samples, 0.02%; 0.00%)</title><rect x="1755.7" y="5173" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1758.74" y="5183.5" ></text>
</g>
<g >
<title>java/nio/file/Files.delete (131 samples, 0.01%; 0.00%)</title><rect x="1095.4" y="5589" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1098.44" y="5599.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/TransportReplicationAction$ReroutePhase.doRun (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="1797" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="1807.5" ></text>
</g>
<g >
<title>java/util/HashMap.putVal (1,108 samples, 0.12%; -0.00%)</title><rect x="1484.8" y="5957" width="3.0" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1487.76" y="5967.5" ></text>
</g>
<g >
<title>java/util/HashMap.getNode (79 samples, 0.01%; 0.00%)</title><rect x="1583.5" y="5717" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1586.52" y="5727.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/ByteBuffersDataOutput$$Lambda$4738.0x0000000801752f90.apply (38 samples, 0.00%; 0.00%)</title><rect x="561.3" y="5557" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="564.27" y="5567.5" ></text>
</g>
<g >
<title>sock_recvmsg (694 samples, 0.08%; -0.00%)</title><rect x="302.6" y="5829" width="1.9" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="305.58" y="5839.5" ></text>
</g>
<g >
<title>java/util/HashMap.newNode (54 samples, 0.01%; +0.01%)</title><rect x="1405.4" y="5621" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1408.41" y="5631.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator.authenticateAsync (12,195 samples, 1.35%; 0.00%)</title><rect x="1589.2" y="5637" width="33.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.18" y="5647.5" >or..</text>
</g>
<g >
<title>java/util/Arrays.sort (272 samples, 0.03%; 0.00%)</title><rect x="2323.3" y="6005" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2326.32" y="6015.5" ></text>
</g>
<g >
<title>java/util/HashMap$EntryIterator.next (43 samples, 0.00%; 0.00%)</title><rect x="1662.5" y="5349" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1665.50" y="5359.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/TransportBulkAction.executeBulk (979 samples, 0.11%; 0.00%)</title><rect x="1659.7" y="5221" width="2.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.73" y="5231.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/TermsHashPerField.add (5,306 samples, 0.59%; -0.03%)</title><rect x="381.1" y="5829" width="14.4" height="15.0" fill="rgb(207,207,255)" rx="2" ry="2" />
<text x="384.13" y="5839.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/IntroSorter.sort (288 samples, 0.03%; 0.00%)</title><rect x="1867.3" y="5557" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1870.32" y="5567.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/common/SplitProcessor.execute (192 samples, 0.02%; +0.00%)</title><rect x="1765.2" y="5829" width="0.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1768.24" y="5839.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorizeBulkItems$22 (145 samples, 0.02%; +0.00%)</title><rect x="1694.6" y="3861" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1697.62" y="3871.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$runRequestInterceptors$14 (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="2501" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="2511.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/interceptor/UpdateRequestInterceptor.intercept (486 samples, 0.05%; 0.00%)</title><rect x="274.8" y="2693" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.84" y="2703.5" ></text>
</g>
<g >
<title>java/lang/Throwable.fillInStackTrace (377 samples, 0.04%; 0.00%)</title><rect x="1763.5" y="5637" width="1.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1766.48" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundHandler.internalSend (11,950 samples, 1.32%; 0.00%)</title><rect x="1589.5" y="2581" width="32.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.51" y="2591.5" >or..</text>
</g>
<g >
<title>clock_gettime (498 samples, 0.06%; -0.00%)</title><rect x="223.0" y="6197" width="1.4" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="226.05" y="6207.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5648.0x0000000801980b40.accept (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="3045" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="3055.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/action/filter/SecurityActionFilter.apply (145 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="4933" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="4943.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (306 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="3845" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="3855.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/blocktree/BlockTreeTermsWriter$TermsWriter.write (6,405 samples, 0.71%; 0.00%)</title><rect x="1871.4" y="5733" width="17.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1874.37" y="5743.5" ></text>
</g>
<g >
<title>java/lang/ThreadLocal$ThreadLocalMap.getEntry (52 samples, 0.01%; -0.02%)</title><rect x="374.0" y="5701" width="0.1" height="15.0" fill="rgb(208,208,255)" rx="2" ry="2" />
<text x="376.95" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.onResponse (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="2581" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="2591.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$$Lambda$4893.0x00000008017ed008.accept (227 samples, 0.03%; 0.00%)</title><rect x="271.7" y="3989" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.72" y="3999.5" ></text>
</g>
<g >
<title>ThreadStateTransition::transition_from_native(JavaThread*, JavaThreadState) [clone .constprop.237] (52 samples, 0.01%; +0.01%)</title><rect x="1557.7" y="5685" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1560.74" y="5695.5" ></text>
</g>
<g >
<title>sun/nio/ch/EPollSelectorImpl.doSelect (427 samples, 0.05%; +0.00%)</title><rect x="304.6" y="6133" width="1.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="307.56" y="6143.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.done (11,965 samples, 1.33%; 0.00%)</title><rect x="1589.5" y="3829" width="32.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.47" y="3839.5" >or..</text>
</g>
<g >
<title>java/util/HashSet.add (65 samples, 0.01%; 0.00%)</title><rect x="1621.9" y="4901" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1624.92" y="4911.5" ></text>
</g>
<g >
<title>org/elasticsearch/script/mustache/MustacheScriptEngine$MustacheExecutableScript$$Lambda$6072.0x00000008018b0268.run (77 samples, 0.01%; 0.00%)</title><rect x="1738.3" y="3893" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1741.29" y="3903.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/DateFieldMapper$DateFieldType.parse (822 samples, 0.09%; +0.00%)</title><rect x="1295.3" y="5765" width="2.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1298.28" y="5775.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.reorder (37 samples, 0.00%; 0.00%)</title><rect x="538.1" y="5717" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="541.07" y="5727.5" ></text>
</g>
<g >
<title>java/util/DualPivotQuicksort.insertionSort (205 samples, 0.02%; +0.02%)</title><rect x="1078.8" y="5733" width="0.5" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1081.77" y="5743.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/shard/IndexShard$5.getWrappedAnalyzer (201 samples, 0.02%; 0.00%)</title><rect x="884.7" y="5765" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="887.72" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/AbstractRunnable.run (231 samples, 0.03%; 0.00%)</title><rect x="271.7" y="4437" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.72" y="4447.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (215 samples, 0.02%; 0.00%)</title><rect x="1627.8" y="3333" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="3343.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/lucene/LoggerInfoStream.isEnabled (743 samples, 0.08%; 0.00%)</title><rect x="621.8" y="5845" width="2.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="624.84" y="5855.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/DocumentParser.parseObjectOrNested (8,213 samples, 0.91%; +0.00%)</title><rect x="445.1" y="5813" width="22.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="448.06" y="5823.5" >o..</text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (486 samples, 0.05%; 0.00%)</title><rect x="1722.6" y="4117" width="1.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1725.62" y="4127.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator.lookForExistingAuthentication (3,066 samples, 0.34%; 0.00%)</title><rect x="274.6" y="5173" width="8.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.65" y="5183.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator.lambda$lookForExistingAuthentication$6 (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="3845" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="3855.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$$Lambda$4893.0x00000008017ed008.accept (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="3061" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="3071.5" ></text>
</g>
<g >
<title>com/github/mustachejava/reflect/ReflectionObjectHandler.unwrap (174 samples, 0.02%; 0.00%)</title><rect x="1831.4" y="5749" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1834.38" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/TransportShardBulkAction.newResponseInstance (807 samples, 0.09%; 0.00%)</title><rect x="290.8" y="5541" width="2.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="293.76" y="5551.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (417 samples, 0.05%; 0.00%)</title><rect x="620.3" y="5525" width="1.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="623.34" y="5535.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/lucene/store/FilterIndexOutput.writeByte (335 samples, 0.04%; 0.00%)</title><rect x="1878.2" y="5605" width="0.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1881.15" y="5615.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/DataOutput.writeVInt (48 samples, 0.01%; -0.02%)</title><rect x="413.0" y="5813" width="0.2" height="15.0" fill="rgb(208,208,255)" rx="2" ry="2" />
<text x="416.05" y="5823.5" ></text>
</g>
<g >
<title>java/lang/RuntimeException.&lt;init&gt; (353 samples, 0.04%; 0.00%)</title><rect x="1632.5" y="4885" width="1.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1635.52" y="4895.5" ></text>
</g>
<g >
<title>java/util/Arrays.fill (37 samples, 0.00%; +0.00%)</title><rect x="2429.3" y="5973" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2432.27" y="5983.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (106 samples, 0.01%; 0.00%)</title><rect x="1531.4" y="5189" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1534.44" y="5199.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/transport/SecurityServerTransportInterceptor$1.sendRequest (925 samples, 0.10%; 0.00%)</title><rect x="1659.9" y="2133" width="2.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.85" y="2143.5" ></text>
</g>
<g >
<title>java/util/ArrayList.forEach (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="2005" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="2015.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (938 samples, 0.10%; 0.00%)</title><rect x="1693.1" y="5589" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1696.13" y="5599.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5973.0x00000008019829d0.accept (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="3301" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="3311.5" ></text>
</g>
<g >
<title>sun/nio/ch/IOUtil.writeFromNativeBuffer (453 samples, 0.05%; 0.00%)</title><rect x="620.3" y="5605" width="1.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="623.27" y="5615.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Processor.execute (7,778 samples, 0.86%; 0.00%)</title><rect x="1722.6" y="4501" width="21.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1725.59" y="4511.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/json/JsonXContentParser.currentToken (44 samples, 0.00%; +0.00%)</title><rect x="1249.1" y="5701" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1252.11" y="5711.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/DocValuesConsumer$5$1.nextDoc (419 samples, 0.05%; 0.00%)</title><rect x="1851.0" y="5717" width="1.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1854.04" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator$$Lambda$4849.0x00000008016b6c78.accept (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="4933" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="4943.5" ></text>
</g>
<g >
<title>java/util/concurrent/ThreadPoolExecutor.getTask (40 samples, 0.00%; 0.00%)</title><rect x="308.5" y="6197" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="311.48" y="6207.5" ></text>
</g>
<g >
<title>java/lang/StringLatin1.hashCode (165 samples, 0.02%; +0.00%)</title><rect x="1463.2" y="5957" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1466.22" y="5967.5" ></text>
</g>
<g >
<title>java/util/HashMap.newNode (70 samples, 0.01%; +0.01%)</title><rect x="1385.8" y="5589" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1388.84" y="5599.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.sort (52 samples, 0.01%; 0.00%)</title><rect x="559.3" y="5621" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="562.33" y="5631.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene80/IndexedDISI.advanceExact (302 samples, 0.03%; 0.00%)</title><rect x="1877.2" y="5669" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1880.19" y="5679.5" ></text>
</g>
<g >
<title>java/nio/file/Files.readAttributes (43 samples, 0.00%; 0.00%)</title><rect x="621.7" y="5733" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="624.70" y="5743.5" ></text>
</g>
<g >
<title>java/util/ArrayList.forEach (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="2981" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="2991.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$$Lambda$4893.0x00000008017ed008.accept (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="2181" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="2191.5" ></text>
</g>
<g >
<title>java/util/HashMap.putAll (44 samples, 0.00%; 0.00%)</title><rect x="474.3" y="5589" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="477.34" y="5599.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/OrdinalMap$3.get (402 samples, 0.04%; 0.00%)</title><rect x="2026.8" y="5989" width="1.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2029.81" y="5999.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$runRequestInterceptors$14 (931 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="3093" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.83" y="3103.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/util/BufferRecycler.allocCharBuffer (38 samples, 0.00%; 0.00%)</title><rect x="1507.1" y="5877" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1510.11" y="5887.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene86/Lucene86PointsWriter.writeField (2,997 samples, 0.33%; 0.00%)</title><rect x="559.6" y="5781" width="8.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="562.58" y="5791.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene80/IndexedDISI.advance (119 samples, 0.01%; -0.00%)</title><rect x="1926.2" y="5973" width="0.3" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1929.20" y="5983.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine$$Lambda$5635.0x0000000801827740.accept (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="3749" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="3759.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/NotifyOnceListener.onResponse (486 samples, 0.05%; 0.00%)</title><rect x="274.8" y="2661" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.84" y="2671.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/IntroSorter.quicksort (158 samples, 0.02%; +0.00%)</title><rect x="564.6" y="5589" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="567.64" y="5599.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/translog/BufferedChecksumStreamOutput.writeByte (38 samples, 0.00%; +0.00%)</title><rect x="1115.2" y="5877" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1118.19" y="5887.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/standard/StandardTokenizer.close (162 samples, 0.02%; +0.00%)</title><rect x="844.1" y="5781" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="847.10" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundHandler.sendMessage (400 samples, 0.04%; 0.00%)</title><rect x="285.1" y="5157" width="1.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="288.07" y="5167.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/DocumentParser.getMapper (118 samples, 0.01%; 0.00%)</title><rect x="1229.5" y="5669" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1232.46" y="5679.5" ></text>
</g>
<g >
<title>org/elasticsearch/core/internal/io/IOUtils.close (39 samples, 0.00%; 0.00%)</title><rect x="281.4" y="4117" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="284.42" y="4127.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/StepListener.innerOnResponse (11,965 samples, 1.33%; 0.00%)</title><rect x="1589.5" y="4133" width="32.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.47" y="4143.5" >or..</text>
</g>
<g >
<title>org/apache/lucene/analysis/AnalyzerWrapper.getPositionIncrementGap (42 samples, 0.00%; 0.00%)</title><rect x="360.6" y="5829" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="363.63" y="5839.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (292 samples, 0.03%; 0.00%)</title><rect x="1630.5" y="4533" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.53" y="4543.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5965.0x0000000801981628.accept (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="2853" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="2863.5" ></text>
</g>
<g >
<title>java/util/HashMap.put (42 samples, 0.00%; 0.00%)</title><rect x="1665.9" y="5461" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1668.93" y="5471.5" ></text>
</g>
<g >
<title>iput (163 samples, 0.02%; 0.00%)</title><rect x="1901.2" y="5797" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1904.19" y="5807.5" ></text>
</g>
<g >
<title>com/github/mustachejava/reflect/GuardedBinding.get (58 samples, 0.01%; 0.00%)</title><rect x="1740.7" y="3941" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1743.66" y="3951.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (485 samples, 0.05%; 0.00%)</title><rect x="1722.6" y="4053" width="1.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1725.62" y="4063.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/LongValues$1.get (350 samples, 0.04%; +0.04%)</title><rect x="2018.4" y="6005" width="0.9" height="15.0" fill="rgb(255,207,207)" rx="2" ry="2" />
<text x="2021.36" y="6015.5" ></text>
</g>
<g >
<title>java/util/ArrayList.add (111 samples, 0.01%; 0.00%)</title><rect x="604.9" y="5605" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="607.95" y="5615.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (207 samples, 0.02%; +0.00%)</title><rect x="2385.4" y="6037" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2388.36" y="6047.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (7,950 samples, 0.88%; 0.00%)</title><rect x="1722.5" y="4581" width="21.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1725.53" y="4591.5" >o..</text>
</g>
<g >
<title>org/elasticsearch/ingest/Processor.execute (3,921 samples, 0.43%; 0.00%)</title><rect x="1710.8" y="5445" width="10.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1713.79" y="5455.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser._finishAndReturnString (1,665 samples, 0.18%; -0.05%)</title><rect x="1502.7" y="5925" width="4.5" height="15.0" fill="rgb(206,206,255)" rx="2" ry="2" />
<text x="1505.72" y="5935.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Processor.execute (416 samples, 0.05%; 0.00%)</title><rect x="1532.1" y="5461" width="1.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.10" y="5471.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/packed/DirectWriter.flush (71 samples, 0.01%; -0.00%)</title><rect x="2041.3" y="6005" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2044.33" y="6015.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/packed/DirectMonotonicReader.get (594 samples, 0.07%; -0.01%)</title><rect x="1924.5" y="5973" width="1.6" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1927.48" y="5983.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/DocumentParser.getLeafMapper (3,434 samples, 0.38%; +0.00%)</title><rect x="1230.3" y="5749" width="9.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1233.27" y="5759.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene84/ForDeltaUtil.encodeDeltas (1,229 samples, 0.14%; +0.00%)</title><rect x="582.8" y="5717" width="3.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="585.79" y="5727.5" ></text>
</g>
<g >
<title>sun/security/provider/PolicyFile.implies (93 samples, 0.01%; 0.00%)</title><rect x="1740.9" y="3957" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1743.89" y="3967.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeParseContext.copy (159 samples, 0.02%; +0.00%)</title><rect x="1389.0" y="5653" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1391.99" y="5663.5" ></text>
</g>
<g >
<title>java/lang/Exception.&lt;init&gt; (125 samples, 0.01%; 0.00%)</title><rect x="1533.6" y="5509" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1536.62" y="5519.5" ></text>
</g>
<g >
<title>java/util/HashMap$HashIterator.nextNode (43 samples, 0.00%; +0.00%)</title><rect x="1712.1" y="4373" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1715.06" y="4383.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/netty4/Netty4MessageChannelHandler.doFlush (513 samples, 0.06%; -0.00%)</title><rect x="306.9" y="6085" width="1.4" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="309.90" y="6095.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (3,548 samples, 0.39%; 0.00%)</title><rect x="1710.8" y="5285" width="9.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1713.79" y="5295.5" ></text>
</g>
<g >
<title>java/util/concurrent/locks/ReentrantReadWriteLock$ReadLock.lock (267 samples, 0.03%; 0.00%)</title><rect x="1104.7" y="5941" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1107.67" y="5951.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/collect/Iterators$ConcatenatedIterator.hasNext (119 samples, 0.01%; +0.00%)</title><rect x="1758.7" y="5509" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1761.70" y="5519.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/DataInput.readVInt (55 samples, 0.01%; +0.00%)</title><rect x="534.2" y="5717" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="537.23" y="5727.5" ></text>
</g>
<g >
<title>java/util/HashMap.put (43 samples, 0.00%; 0.00%)</title><rect x="1683.7" y="5605" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1686.72" y="5615.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/bytes/BytesReferenceStreamInput.readByte (56 samples, 0.01%; 0.00%)</title><rect x="292.1" y="5349" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="295.09" y="5359.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.radixSort (44 samples, 0.00%; 0.00%)</title><rect x="613.2" y="5557" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="616.21" y="5567.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/json/JsonXContentGenerator.writeString (229 samples, 0.03%; 0.00%)</title><rect x="1657.4" y="5157" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1660.36" y="5167.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (8,588 samples, 0.95%; +0.00%)</title><rect x="1625.5" y="5685" width="23.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1628.45" y="5695.5" >o..</text>
</g>
<g >
<title>java/util/Collections$UnmodifiableMap.get (48 samples, 0.01%; +0.00%)</title><rect x="1242.8" y="5605" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1245.76" y="5615.5" ></text>
</g>
<g >
<title>vtable stub (63 samples, 0.01%; +0.01%)</title><rect x="1469.8" y="5877" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1472.76" y="5887.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/SeqNoFieldMapper.preParse (269 samples, 0.03%; +0.02%)</title><rect x="1433.9" y="5925" width="0.8" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1436.93" y="5935.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.authorizeAction (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="4293" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="4303.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.loadAuthorizedIndices (215 samples, 0.02%; 0.00%)</title><rect x="1627.8" y="3397" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="3407.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ConditionalProcessor.lambda$execute$1 (15,113 samples, 1.67%; +0.00%)</title><rect x="1722.1" y="5669" width="40.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1725.09" y="5679.5" >org..</text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.lambda$executePipeline$0 (30,604 samples, 3.39%; 0.00%)</title><rect x="1540.0" y="5925" width="82.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1542.99" y="5935.5" >org/elast..</text>
</g>
<g >
<title>[deoptimization] (983 samples, 0.11%; 0.00%)</title><rect x="10.2" y="6245" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="13.15" y="6255.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/BulkShardRequest$$Lambda$5980.0x00000008019cc5a0.write (872 samples, 0.10%; 0.00%)</title><rect x="1659.9" y="1877" width="2.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.85" y="1887.5" ></text>
</g>
<g >
<title>java/util/zip/DeflaterOutputStream.deflate (51 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="1413" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="1423.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.unknownValue (67 samples, 0.01%; 0.00%)</title><rect x="1630.8" y="3941" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.77" y="3951.5" ></text>
</g>
<g >
<title>do_syscall_64 (192 samples, 0.02%; -0.00%)</title><rect x="1894.1" y="5477" width="0.5" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1897.11" y="5487.5" ></text>
</g>
<g >
<title>[unknown] (16,438 samples, 1.82%; 0.00%)</title><rect x="713.1" y="5701" width="44.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="716.15" y="5711.5" >[unk..</text>
</g>
<g >
<title>org/elasticsearch/action/index/IndexRequest.source (531 samples, 0.06%; 0.00%)</title><rect x="1693.2" y="5109" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1696.16" y="5119.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/packed/DeltaPackedLongValues$Builder.pack (58 samples, 0.01%; -0.00%)</title><rect x="2048.1" y="5989" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2051.14" y="5999.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/common/DateProcessor.lambda$new$0 (303 samples, 0.03%; 0.00%)</title><rect x="1534.0" y="5637" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1536.96" y="5647.5" ></text>
</g>
<g >
<title>java/util/HashSet.add (1,807 samples, 0.20%; 0.00%)</title><rect x="1136.4" y="5813" width="4.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1139.36" y="5823.5" ></text>
</g>
<g >
<title>java/util/ArrayList.add (225 samples, 0.02%; 0.00%)</title><rect x="1879.8" y="5589" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1882.85" y="5599.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/bkd/BKDWriter.writeField (56 samples, 0.01%; 0.00%)</title><rect x="1454.8" y="5941" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1457.82" y="5951.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/json/JsonXContentParser.text (1,697 samples, 0.19%; +0.00%)</title><rect x="1476.7" y="5989" width="4.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1479.70" y="5999.5" ></text>
</g>
<g >
<title>java/lang/Character.codePointAtImpl (565 samples, 0.06%; +0.02%)</title><rect x="798.0" y="5749" width="1.5" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="800.97" y="5759.5" ></text>
</g>
<g >
<title>java/util/zip/CheckedOutputStream.write (931 samples, 0.10%; +0.10%)</title><rect x="583.4" y="5573" width="2.5" height="15.0" fill="rgb(255,202,202)" rx="2" ry="2" />
<text x="586.42" y="5583.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeFormatterBuilder.appendPattern (77 samples, 0.01%; +0.00%)</title><rect x="1754.0" y="4885" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1756.96" y="4895.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/common/DateFormat$5.getFunction (83 samples, 0.01%; 0.00%)</title><rect x="1530.8" y="5317" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1533.76" y="5327.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (663 samples, 0.07%; 0.00%)</title><rect x="1535.1" y="5189" width="1.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1538.08" y="5199.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/BytesStreamOutput.writeByte (63 samples, 0.01%; +0.01%)</title><rect x="1107.0" y="5909" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1109.96" y="5919.5" ></text>
</g>
<g >
<title>java/util/WeakHashMap.get (594 samples, 0.07%; +0.07%)</title><rect x="1836.3" y="5765" width="1.6" height="15.0" fill="rgb(255,205,205)" rx="2" ry="2" />
<text x="1839.30" y="5775.5" ></text>
</g>
<g >
<title>sun/nio/ch/EPoll.wait (343 samples, 0.04%; -0.00%)</title><rect x="304.6" y="6117" width="0.9" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="307.57" y="6127.5" ></text>
</g>
<g >
<title>java/security/Permissions.getPermissionCollection (61 samples, 0.01%; +0.00%)</title><rect x="1663.4" y="5205" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1666.35" y="5215.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/index/IndexRequest.writeBody (196 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="677" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="687.5" ></text>
</g>
<g >
<title>java/util/HashMap.putMapEntries (39 samples, 0.00%; 0.00%)</title><rect x="1752.9" y="4917" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1755.89" y="4927.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$1.doRun (715 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="1845" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="1855.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/ContentPath.pathAsText (238 samples, 0.03%; +0.00%)</title><rect x="1148.8" y="5813" width="0.7" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1151.83" y="5823.5" ></text>
</g>
<g >
<title>com/github/mustachejava/reflect/ReflectionWrapper.call (346 samples, 0.04%; 0.00%)</title><rect x="1684.3" y="5461" width="0.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1687.26" y="5471.5" ></text>
</g>
<g >
<title>java/lang/invoke/LambdaForm$DMH.0x0000000800fb9440.invokeInterface (38 samples, 0.00%; +0.00%)</title><rect x="1722.1" y="5493" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1725.13" y="5503.5" ></text>
</g>
<g >
<title>java/security/AccessController.checkPermission (800 samples, 0.09%; +0.00%)</title><rect x="1663.2" y="5349" width="2.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1666.25" y="5359.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/geoip/DatabaseReaderLazyLoader.getResponse (175 samples, 0.02%; 0.00%)</title><rect x="1536.9" y="5125" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.88" y="5135.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.unknownValue (8,934 samples, 0.99%; +0.01%)</title><rect x="1562.6" y="5829" width="24.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1565.61" y="5839.5" >o..</text>
</g>
<g >
<title>java/time/format/Parsed.resolve (100 samples, 0.01%; 0.00%)</title><rect x="476.1" y="5701" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="479.15" y="5711.5" ></text>
</g>
<g >
<title>org/joni/Matcher.searchCommon (52 samples, 0.01%; 0.00%)</title><rect x="1721.7" y="5525" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1724.73" y="5535.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/TransportAction.execute (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="3621" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="3631.5" ></text>
</g>
<g >
<title>java/nio/channels/Channels$1.write (77 samples, 0.01%; 0.00%)</title><rect x="2405.7" y="5861" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2408.71" y="5871.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/IndicesAndAliasesResolver.resolve (612 samples, 0.07%; 0.00%)</title><rect x="272.4" y="4853" width="1.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="275.38" y="4863.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine$$Lambda$5637.0x0000000801827ba0.accept (11,983 samples, 1.33%; 0.00%)</title><rect x="1589.4" y="4437" width="32.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.42" y="4447.5" >or..</text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (253 samples, 0.03%; 0.00%)</title><rect x="1630.5" y="4293" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.53" y="4303.5" ></text>
</g>
<g >
<title>tcp_sendmsg_locked (89 samples, 0.01%; -0.00%)</title><rect x="307.1" y="5461" width="0.3" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="310.13" y="5471.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5632.0x00000008018270a8.getAsync (307 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="4629" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="4639.5" ></text>
</g>
<g >
<title>org/joni/StackMachine.popDefault (72 samples, 0.01%; +0.01%)</title><rect x="1773.6" y="5781" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1776.62" y="5791.5" ></text>
</g>
<g >
<title>java/lang/String.hashCode (268 samples, 0.03%; 0.00%)</title><rect x="1285.0" y="5749" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1287.98" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (145 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="4309" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="4319.5" ></text>
</g>
<g >
<title>io/netty/buffer/AbstractByteBuf.writeBytes (38 samples, 0.00%; 0.00%)</title><rect x="306.0" y="5925" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="308.99" y="5935.5" ></text>
</g>
<g >
<title>java/lang/IllegalArgumentException.&lt;init&gt; (395 samples, 0.04%; +0.00%)</title><rect x="1706.0" y="5669" width="1.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1709.01" y="5679.5" ></text>
</g>
<g >
<title>vframeArray::allocate(JavaThread*, int, GrowableArray&lt;compiledVFrame*&gt;*, RegisterMap*, frame, frame, frame, bool) (370 samples, 0.04%; +0.00%)</title><rect x="10.5" y="6213" width="1.0" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="13.49" y="6223.5" ></text>
</g>
<g >
<title>java/util/HashMap$ValueIterator.next (56 samples, 0.01%; 0.00%)</title><rect x="1770.2" y="5813" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1773.21" y="5823.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/NotifyOnceListener.onResponse (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="2613" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="2623.5" ></text>
</g>
<g >
<title>CodeCache::find_blob(void*) (56 samples, 0.01%; +0.00%)</title><rect x="1764.3" y="5509" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1767.32" y="5519.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (3,498 samples, 0.39%; 0.00%)</title><rect x="1710.8" y="5125" width="9.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1713.79" y="5135.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/InboundHandler.doHandleResponse (2,294 samples, 0.25%; 0.00%)</title><rect x="284.5" y="5653" width="6.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="287.52" y="5663.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.sort (40 samples, 0.00%; 0.00%)</title><rect x="1862.8" y="5637" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1865.84" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.lambda$done$0 (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="1893" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="1903.5" ></text>
</g>
<g >
<title>frame::sender(RegisterMap*) const (38 samples, 0.00%; +0.00%)</title><rect x="1533.9" y="5381" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1536.85" y="5391.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/common/DateFormat$5$$Lambda$6086.0x0000000801856980.apply (1,156 samples, 0.13%; 0.00%)</title><rect x="1705.7" y="5717" width="3.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1708.67" y="5727.5" ></text>
</g>
<g >
<title>java/util/ArrayList.grow (405 samples, 0.04%; 0.00%)</title><rect x="1272.7" y="5653" width="1.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1275.66" y="5663.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/ContextPreservingActionListener.onResponse (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="3509" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="3519.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/AbstractGeometryFieldMapper.parse (106 samples, 0.01%; +0.00%)</title><rect x="1228.8" y="5733" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1231.85" y="5743.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/transport/ServerTransportFilter$NodeProfile.lambda$inbound$1 (1,033 samples, 0.11%; 0.00%)</title><rect x="271.5" y="5381" width="2.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.50" y="5391.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.sort (54 samples, 0.01%; 0.00%)</title><rect x="559.1" y="5621" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="562.14" y="5631.5" ></text>
</g>
<g >
<title>ext4_mark_inode_dirty (246 samples, 0.03%; +0.00%)</title><rect x="1899.7" y="5621" width="0.7" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1902.73" y="5631.5" ></text>
</g>
<g >
<title>vfs_fsync_range (55 samples, 0.01%; 0.00%)</title><rect x="516.4" y="5717" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="519.38" y="5727.5" ></text>
</g>
<g >
<title>java/lang/String.checkBoundsOffCount (80 samples, 0.01%; +0.01%)</title><rect x="1419.8" y="5765" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1422.75" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (44 samples, 0.00%; 0.00%)</title><rect x="1531.4" y="5077" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1534.44" y="5087.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/AttributeSource.hasAttributes (52 samples, 0.01%; +0.01%)</title><rect x="1342.6" y="5701" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1345.56" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/common/DateProcessor.lambda$new$0 (190 samples, 0.02%; 0.00%)</title><rect x="1530.8" y="5333" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1533.76" y="5343.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.execute (8,588 samples, 0.95%; 0.00%)</title><rect x="1625.5" y="5701" width="23.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.45" y="5711.5" >o..</text>
</g>
<g >
<title>org/apache/lucene/store/DataOutput.writeInt (82 samples, 0.01%; +0.00%)</title><rect x="588.5" y="5669" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="591.54" y="5679.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Processor.execute (1,429 samples, 0.16%; 0.00%)</title><rect x="1693.1" y="5829" width="3.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1696.13" y="5839.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/fst/Builder.&lt;init&gt; (67 samples, 0.01%; 0.00%)</title><rect x="569.8" y="5717" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="572.82" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Processor.execute (5,581 samples, 0.62%; 0.00%)</title><rect x="1625.5" y="5429" width="15.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.52" y="5439.5" ></text>
</g>
<g >
<title>G1RootProcessor::process_java_roots(G1RootClosures*, G1GCPhaseTimes*, unsigned int) (114 samples, 0.01%; 0.00%)</title><rect x="2448.7" y="6133" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2451.75" y="6143.5" ></text>
</g>
<g >
<title>org/apache/lucene/search/ReferenceManager.maybeRefreshBlocking (200 samples, 0.02%; 0.00%)</title><rect x="1456.7" y="6101" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1459.74" y="6111.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.onResponse (11,965 samples, 1.33%; 0.00%)</title><rect x="1589.5" y="3077" width="32.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.47" y="3087.5" >or..</text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.notifyListener (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="1637" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="1647.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (5,581 samples, 0.62%; 0.00%)</title><rect x="1625.5" y="5445" width="15.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.52" y="5455.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/shard/IndexShard.ensureWriteAllowed (41 samples, 0.00%; 0.00%)</title><rect x="520.8" y="6005" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="523.82" y="6015.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="1701" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="1711.5" ></text>
</g>
<g >
<title>JVM_FillInStackTrace (1,762 samples, 0.20%; +0.00%)</title><rect x="1674.7" y="5477" width="4.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1677.72" y="5487.5" ></text>
</g>
<g >
<title>CodeCache::find_blob(void*) (105 samples, 0.01%; +0.00%)</title><rect x="1737.5" y="3717" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1740.54" y="3727.5" ></text>
</g>
<g >
<title>java/util/HashMap.putVal (63 samples, 0.01%; +0.01%)</title><rect x="1184.3" y="5749" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1187.25" y="5759.5" ></text>
</g>
<g >
<title>java/util/HashMap$HashIterator.nextNode (429 samples, 0.05%; +0.05%)</title><rect x="1552.6" y="5765" width="1.2" height="15.0" fill="rgb(255,206,206)" rx="2" ry="2" />
<text x="1555.64" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/EsExecutors$DirectExecutorService.execute (38 samples, 0.00%; 0.00%)</title><rect x="271.6" y="2853" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.58" y="2863.5" ></text>
</g>
<g >
<title>truncate_cleanup_page (86 samples, 0.01%; 0.00%)</title><rect x="509.1" y="5605" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="512.13" y="5615.5" ></text>
</g>
<g >
<title>jlong_disjoint_arraycopy (166 samples, 0.02%; +0.02%)</title><rect x="509.8" y="5861" width="0.5" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="512.83" y="5871.5" ></text>
</g>
<g >
<title>java_lang_Throwable::fill_in_stack_trace(Handle, methodHandle const&amp;) (386 samples, 0.04%; 0.00%)</title><rect x="1706.0" y="5541" width="1.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1709.04" y="5551.5" ></text>
</g>
<g >
<title>java/time/format/Parsed.copy (133 samples, 0.01%; 0.00%)</title><rect x="473.9" y="5589" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="476.95" y="5599.5" ></text>
</g>
<g >
<title>java/util/HashMap.put (270 samples, 0.03%; -0.00%)</title><rect x="1512.4" y="5845" width="0.8" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1515.43" y="5855.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Processor.execute (1,000 samples, 0.11%; 0.00%)</title><rect x="1693.1" y="5733" width="2.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1696.13" y="5743.5" ></text>
</g>
<g >
<title>Java_java_lang_Throwable_fillInStackTrace (434 samples, 0.05%; 0.00%)</title><rect x="1707.6" y="5509" width="1.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1710.62" y="5519.5" ></text>
</g>
<g >
<title>java/time/zone/ZoneRules.of (52 samples, 0.01%; +0.00%)</title><rect x="1520.5" y="6005" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1523.48" y="6015.5" ></text>
</g>
<g >
<title>java/util/HashMap$HashIterator.nextNode (49 samples, 0.01%; +0.01%)</title><rect x="1725.2" y="3653" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1728.20" y="3663.5" ></text>
</g>
<g >
<title>javax/crypto/Cipher.doFinal (248 samples, 0.03%; 0.00%)</title><rect x="306.2" y="5813" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="309.22" y="5823.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/bytes/BytesArray.writeTo (265 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="965" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="975.5" ></text>
</g>
<g >
<title>Deoptimization::fetch_unroll_info_helper(JavaThread*, int) (503 samples, 0.06%; +0.00%)</title><rect x="10.2" y="6229" width="1.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="13.15" y="6239.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/common/SetProcessor.execute (95 samples, 0.01%; 0.00%)</title><rect x="1638.6" y="5109" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1641.65" y="5119.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/DocumentParser.parseObject (549 samples, 0.06%; -0.00%)</title><rect x="449.3" y="5781" width="1.5" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="452.27" y="5791.5" ></text>
</g>
<g >
<title>java/util/HashMap.hash (39 samples, 0.00%; +0.00%)</title><rect x="1380.5" y="5589" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1383.53" y="5599.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (43 samples, 0.00%; +0.00%)</title><rect x="1988.1" y="5925" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1991.06" y="5935.5" ></text>
</g>
<g >
<title>sun/security/ssl/SSLEngineImpl.writeRecord (257 samples, 0.03%; -0.00%)</title><rect x="307.6" y="5845" width="0.7" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="310.56" y="5855.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeFormatter$ClassicFormat.parseObject (2,489 samples, 0.28%; 0.00%)</title><rect x="495.5" y="5797" width="6.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="498.49" y="5807.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeFormatter.parseResolved0 (76 samples, 0.01%; 0.00%)</title><rect x="1720.6" y="5333" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1723.63" y="5343.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/BulkShardRequest.writeTo (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="1109" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="1119.5" ></text>
</g>
<g >
<title>org/elasticsearch/rest/action/RestResponseListener.processResponse (1,606 samples, 0.18%; 0.00%)</title><rect x="286.4" y="5269" width="4.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="289.37" y="5279.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.onResponse (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="2341" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="2351.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/time/JavaDateFormatter.&lt;init&gt; (86 samples, 0.01%; 0.00%)</title><rect x="1683.7" y="5621" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1686.72" y="5631.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene84/Lucene84SkipWriter.bufferSkip (121 samples, 0.01%; 0.00%)</title><rect x="533.5" y="5717" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="536.52" y="5727.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8JsonGenerator.writeString (68 samples, 0.01%; +0.00%)</title><rect x="1659.4" y="5141" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1662.41" y="5151.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (218 samples, 0.02%; +0.02%)</title><rect x="964.1" y="5781" width="0.6" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="967.13" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamInput.readString (156 samples, 0.02%; 0.00%)</title><rect x="253.1" y="5253" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="256.13" y="5263.5" ></text>
</g>
<g >
<title>vtable stub (55 samples, 0.01%; +0.01%)</title><rect x="1525.6" y="6037" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1528.63" y="6047.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/translog/Translog$Operation.writeOperation (3,124 samples, 0.35%; +0.00%)</title><rect x="1106.8" y="5941" width="8.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1109.85" y="5951.5" ></text>
</g>
<g >
<title>pagecache_get_page (165 samples, 0.02%; +0.00%)</title><rect x="620.5" y="5333" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="623.54" y="5343.5" ></text>
</g>
<g >
<title>java/lang/SecurityManager.checkPermission (804 samples, 0.09%; +0.00%)</title><rect x="1663.2" y="5365" width="2.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1666.24" y="5375.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/bytes/ReleasableBytesReference.length (94 samples, 0.01%; +0.00%)</title><rect x="1459.9" y="6005" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1462.87" y="6015.5" ></text>
</g>
<g >
<title>vectorizedMismatch (593 samples, 0.07%; +0.01%)</title><rect x="2440.8" y="5989" width="1.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2443.83" y="5999.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.ensureNoSelfReferences (1,394 samples, 0.15%; +0.03%)</title><rect x="1650.3" y="5221" width="3.8" height="15.0" fill="rgb(255,207,207)" rx="2" ry="2" />
<text x="1653.33" y="5231.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (1,000 samples, 0.11%; 0.00%)</title><rect x="1693.1" y="5765" width="2.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1696.13" y="5775.5" ></text>
</g>
<g >
<title>java/security/AccessController.checkPermission (55 samples, 0.01%; 0.00%)</title><rect x="1095.3" y="5573" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1098.28" y="5583.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/lucene/store/FilterIndexOutput.writeByte (334 samples, 0.04%; 0.00%)</title><rect x="545.0" y="5653" width="0.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="548.04" y="5663.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundHandler.sendMessage (11,950 samples, 1.32%; 0.00%)</title><rect x="1589.5" y="2597" width="32.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.51" y="2607.5" >or..</text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="1557" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="1567.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/DataInput.readBytes (615 samples, 0.07%; 0.00%)</title><rect x="2048.6" y="6037" width="1.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2051.63" y="6047.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/DefaultIndexingChain.indexPoint (304 samples, 0.03%; -0.08%)</title><rect x="411.8" y="5845" width="0.8" height="15.0" fill="rgb(204,204,255)" rx="2" ry="2" />
<text x="414.82" y="5855.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.field (95 samples, 0.01%; 0.00%)</title><rect x="1713.0" y="4421" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1715.99" y="4431.5" ></text>
</g>
<g >
<title>java/util/HashMap.put (1,807 samples, 0.20%; +0.00%)</title><rect x="1136.4" y="5797" width="4.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1139.36" y="5807.5" ></text>
</g>
<g >
<title>java/util/HashMap.getNode (116 samples, 0.01%; +0.00%)</title><rect x="1149.7" y="5749" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1152.70" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator$$Lambda$4849.0x00000008016b6c78.accept (145 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="4805" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="4815.5" ></text>
</g>
<g >
<title>alloc_pages_current (95 samples, 0.01%; 0.00%)</title><rect x="324.6" y="5445" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="327.57" y="5455.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/StepListener.innerOnResponse (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="3109" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="3119.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/interceptor/FieldAndDocumentLevelSecurityRequestInterceptor.intercept (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="2469" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="2479.5" ></text>
</g>
<g >
<title>ksys_write (148 samples, 0.02%; 0.00%)</title><rect x="2304.8" y="5621" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2307.82" y="5631.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/BufferedChecksum.getValue (160 samples, 0.02%; 0.00%)</title><rect x="1106.4" y="5925" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1109.41" y="5935.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/ActiveShardCount.writeTo (46 samples, 0.01%; 0.00%)</title><rect x="1618.9" y="2341" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1621.91" y="2351.5" ></text>
</g>
<g >
<title>vtable stub (84 samples, 0.01%; +0.01%)</title><rect x="494.3" y="5845" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="497.26" y="5855.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamOutput.writeBytes (85 samples, 0.01%; +0.00%)</title><rect x="321.9" y="5413" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="324.92" y="5423.5" ></text>
</g>
<g >
<title>java/util/HashMap.resize (140 samples, 0.02%; +0.02%)</title><rect x="1401.7" y="5621" width="0.4" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1404.72" y="5631.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.lambda$authorizeIndexAction$4 (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="3045" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="3055.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/StoredFieldsConsumer.writeField (1,075 samples, 0.12%; +0.01%)</title><rect x="1091.9" y="5829" width="2.9" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1094.88" y="5839.5" ></text>
</g>
<g >
<title>java/util/DualPivotQuicksort.sort (86 samples, 0.01%; +0.01%)</title><rect x="1079.3" y="5781" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1082.33" y="5791.5" ></text>
</g>
<g >
<title>java/lang/Throwable.&lt;init&gt; (353 samples, 0.04%; 0.00%)</title><rect x="1632.5" y="4853" width="1.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1635.52" y="4863.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene84/ForUtil.encode (692 samples, 0.08%; +0.01%)</title><rect x="573.8" y="5701" width="1.9" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="576.83" y="5711.5" ></text>
</g>
<g >
<title>JVM_GetStackAccessControlContext (53 samples, 0.01%; +0.01%)</title><rect x="1536.7" y="4869" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1539.69" y="4879.5" ></text>
</g>
<g >
<title>_copy_to_iter (370 samples, 0.04%; -0.00%)</title><rect x="303.4" y="5733" width="1.0" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="306.41" y="5743.5" ></text>
</g>
<g >
<title>compiledVFrame::locals() const (99 samples, 0.01%; +0.00%)</title><rect x="11.1" y="6181" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="14.12" y="6191.5" ></text>
</g>
<g >
<title>java/security/ProtectionDomain$JavaSecurityAccessImpl$1.get (357 samples, 0.04%; +0.01%)</title><rect x="1686.8" y="5477" width="1.0" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1689.83" y="5487.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/ParseContext$Document.getFields (3,915 samples, 0.43%; +0.24%)</title><rect x="1439.0" y="5909" width="10.5" height="15.0" fill="rgb(255,193,193)" rx="2" ry="2" />
<text x="1441.97" y="5919.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/SortedDocValuesTermsEnum.next (94 samples, 0.01%; 0.00%)</title><rect x="548.9" y="5717" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="551.85" y="5727.5" ></text>
</g>
<g >
<title>java/io/BufferedOutputStream.write (177 samples, 0.02%; 0.00%)</title><rect x="2405.4" y="5925" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2408.45" y="5935.5" ></text>
</g>
<g >
<title>java/io/BufferedOutputStream.write (1,018 samples, 0.11%; 0.00%)</title><rect x="2175.9" y="6037" width="2.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2178.92" y="6047.5" ></text>
</g>
<g >
<title>java/util/ArrayList.forEach (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="2517" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="2527.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/StringHelper.murmurhash3_x86_32 (1,475 samples, 0.16%; +0.16%)</title><rect x="1064.1" y="5733" width="4.0" height="15.0" fill="rgb(255,198,198)" rx="2" ry="2" />
<text x="1067.10" y="5743.5" ></text>
</g>
<g >
<title>java/lang/String.split (44 samples, 0.00%; +0.00%)</title><rect x="494.1" y="5829" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="497.14" y="5839.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/FieldMapper.createFieldNamesField (322 samples, 0.04%; +0.01%)</title><rect x="1428.8" y="5829" width="0.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1431.78" y="5839.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.setFieldValue (52 samples, 0.01%; 0.00%)</title><rect x="1629.9" y="4261" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.92" y="4271.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator$$Lambda$4853.0x00000008016b6eb0.run (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="4965" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="4975.5" ></text>
</g>
<g >
<title>java/util/HashMap$Node.getValue (96 samples, 0.01%; +0.01%)</title><rect x="1396.2" y="5621" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1399.22" y="5631.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundHandler.sendMessage (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="469" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="479.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/SortedSetDocValuesWriter.addOneValue (8,234 samples, 0.91%; +0.01%)</title><rect x="1049.5" y="5797" width="22.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1052.50" y="5807.5" >o..</text>
</g>
<g >
<title>org/elasticsearch/action/StepListener.innerOnResponse (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="1653" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="1663.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (2,752 samples, 0.30%; 0.00%)</title><rect x="1697.1" y="5541" width="7.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1700.14" y="5551.5" ></text>
</g>
<g >
<title>sun/nio/ch/FileDispatcherImpl.write0 (2,158 samples, 0.24%; 0.00%)</title><rect x="510.4" y="5781" width="5.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="513.37" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundHandler$MessageSerializer.get (714 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="405" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="415.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/index/IndexRequest.&lt;init&gt; (5,135 samples, 0.57%; +0.01%)</title><rect x="252.5" y="5349" width="13.9" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="255.48" y="5359.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/index/IndexRequest.writeThin (199 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="693" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="703.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$CachingAsyncSupplier.getAsync (145 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="3973" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="3983.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/common/AppendProcessor.execute (151 samples, 0.02%; +0.00%)</title><rect x="1743.6" y="4549" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1746.61" y="4559.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/TransportBulkAction.doExecute (486 samples, 0.05%; 0.00%)</title><rect x="274.8" y="2149" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.84" y="2159.5" ></text>
</g>
<g >
<title>java/lang/StringCoding.encodeUTF8 (44 samples, 0.00%; +0.00%)</title><rect x="1782.8" y="5957" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1785.81" y="5967.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundHandler.sendMessage (125 samples, 0.01%; 0.00%)</title><rect x="508.2" y="5749" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="511.22" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/EsExecutors$DirectExecutorService.execute (38 samples, 0.00%; 0.00%)</title><rect x="271.6" y="3109" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.58" y="3119.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/MetadataFieldMapper.preParse (57 samples, 0.01%; +0.01%)</title><rect x="1129.6" y="5893" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1132.58" y="5903.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/CollectionUtils.ensureNoSelfReferences (428 samples, 0.05%; 0.00%)</title><rect x="1695.8" y="5797" width="1.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1698.84" y="5807.5" ></text>
</g>
<g >
<title>io/netty/channel/AbstractChannelHandlerContext.flush (425 samples, 0.05%; 0.00%)</title><rect x="305.7" y="6085" width="1.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="308.75" y="6095.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorizeBulkItems$22 (214 samples, 0.02%; 0.00%)</title><rect x="1627.8" y="2933" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="2943.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/OutputStreamIndexOutput.writeByte (335 samples, 0.04%; 0.00%)</title><rect x="1878.2" y="5589" width="0.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1881.15" y="5599.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene80/Lucene80DocValuesProducer$TermsDict.next (125 samples, 0.01%; +0.00%)</title><rect x="1985.3" y="5909" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1988.29" y="5919.5" ></text>
</g>
<g >
<title>java/util/WeakHashMap.hash (83 samples, 0.01%; 0.00%)</title><rect x="1551.6" y="5749" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1554.58" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.handleIndexActionAuthorizationResult (145 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="4005" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="4015.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8JsonGenerator._writeStringSegment2 (553 samples, 0.06%; +0.06%)</title><rect x="1566.5" y="5701" width="1.5" height="15.0" fill="rgb(255,205,205)" rx="2" ry="2" />
<text x="1569.50" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.lambda$executePipeline$0 (600 samples, 0.07%; 0.00%)</title><rect x="1622.8" y="5285" width="1.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1625.76" y="5295.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/EsExecutors$DirectExecutorService.execute (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="2325" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="2335.5" ></text>
</g>
<g >
<title>com/github/mustachejava/reflect/GuardedWrapper.guardCall (100 samples, 0.01%; +0.01%)</title><rect x="1831.4" y="5717" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1834.38" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.map (366 samples, 0.04%; +0.01%)</title><rect x="1626.8" y="4117" width="1.0" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1629.79" y="4127.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/fst/FST.&lt;init&gt; (70 samples, 0.01%; -0.00%)</title><rect x="1870.9" y="5669" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1873.90" y="5679.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/util/BufferRecycler.allocCharBuffer (72 samples, 0.01%; 0.00%)</title><rect x="1317.9" y="5669" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1320.88" y="5679.5" ></text>
</g>
<g >
<title>java/io/BufferedOutputStream.write (334 samples, 0.04%; 0.00%)</title><rect x="545.0" y="5621" width="0.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="548.04" y="5631.5" ></text>
</g>
<g >
<title>java/io/BufferedOutputStream.flushBuffer (46 samples, 0.01%; 0.00%)</title><rect x="2326.1" y="5925" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2329.14" y="5935.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/CharacterUtils.toLowerCase (254 samples, 0.03%; -0.17%)</title><rect x="361.4" y="5797" width="0.7" height="15.0" fill="rgb(198,198,255)" rx="2" ry="2" />
<text x="364.37" y="5807.5" ></text>
</g>
<g >
<title>com/sun/crypto/provider/CounterMode.implCrypt (1,046 samples, 0.12%; -0.00%)</title><rect x="295.1" y="5525" width="2.8" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="298.09" y="5535.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$runRequestInterceptors$14 (302 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="3381" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="3391.5" ></text>
</g>
<g >
<title>java/security/ProtectionDomain.impliesWithAltFilePerm (45 samples, 0.00%; 0.00%)</title><rect x="1095.3" y="5541" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1098.28" y="5551.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/BaseFuture.set (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="2293" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="2303.5" ></text>
</g>
<g >
<title>java/util/ArrayList.add (1,359 samples, 0.15%; 0.00%)</title><rect x="2390.7" y="5957" width="3.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2393.67" y="5967.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument$$Lambda$6067.0x00000008019e1f30.accept (600 samples, 0.07%; 0.00%)</title><rect x="1622.8" y="5301" width="1.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1625.76" y="5311.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/ContextPreservingActionListener.onResponse (199 samples, 0.02%; 0.00%)</title><rect x="284.5" y="5205" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="287.53" y="5215.5" ></text>
</g>
<g >
<title>java/util/zip/Deflater.deflate (660 samples, 0.07%; 0.00%)</title><rect x="1733.8" y="85" width="1.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.79" y="95.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Pipeline$$Lambda$6068.0x00000008019e2168.accept (691 samples, 0.08%; 0.00%)</title><rect x="1693.1" y="5205" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1696.14" y="5215.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamOutput.writeBytesReference (4,793 samples, 0.53%; 0.00%)</title><rect x="308.8" y="5445" width="12.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="311.75" y="5455.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/TransportBulkAction$$Lambda$6059.0x00000008019e04c0.accept (39 samples, 0.00%; 0.00%)</title><rect x="1630.9" y="3957" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="3967.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/NotifyOnceListener.onResponse (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="3157" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="3167.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/common/DateProcessor.newDateTimeZone (52 samples, 0.01%; 0.00%)</title><rect x="1625.1" y="5733" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.10" y="5743.5" ></text>
</g>
<g >
<title>sun/util/locale/provider/CalendarDataUtility.retrieveFirstDayOfWeek (38 samples, 0.00%; 0.00%)</title><rect x="1705.9" y="5669" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1708.87" y="5679.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5648.0x0000000801980b40.accept (715 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="1557" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="1567.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$$Lambda$4893.0x00000008017ed008.accept (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="1845" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="1855.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.parseLongName (132 samples, 0.01%; +0.00%)</title><rect x="1497.5" y="5893" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1500.46" y="5903.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamOutput.writeArray (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="1093" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="1103.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/translog/Translog.earliestLastModifiedAge (49 samples, 0.01%; 0.00%)</title><rect x="1846.6" y="5317" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1849.58" y="5327.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.nextToken (426 samples, 0.05%; -0.03%)</title><rect x="428.9" y="5845" width="1.1" height="15.0" fill="rgb(208,208,255)" rx="2" ry="2" />
<text x="431.85" y="5855.5" ></text>
</g>
<g >
<title>org/elasticsearch/bootstrap/ESPolicy.implies (231 samples, 0.03%; 0.00%)</title><rect x="1749.1" y="4693" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1752.12" y="4703.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser._parseName (123 samples, 0.01%; 0.00%)</title><rect x="445.8" y="5765" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="448.85" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/geoip/DatabaseReaderLazyLoader$$Lambda$6088.0x00000008011116c8.apply (242 samples, 0.03%; 0.00%)</title><rect x="1718.3" y="4837" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1721.28" y="4847.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.onResponse (715 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="949" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="959.5" ></text>
</g>
<g >
<title>pagecache_get_page (305 samples, 0.03%; 0.00%)</title><rect x="2176.8" y="5637" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2179.76" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$1.doRun (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="1189" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="1199.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/CloseableThreadLocal.purge (41 samples, 0.00%; -0.01%)</title><rect x="485.0" y="5669" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="488.02" y="5679.5" ></text>
</g>
<g >
<title>java/util/HashMap$TreeNode.getTreeNode (37 samples, 0.00%; +0.00%)</title><rect x="786.7" y="5717" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="789.66" y="5727.5" ></text>
</g>
<g >
<title>java/lang/String.hashCode (605 samples, 0.07%; +0.00%)</title><rect x="1166.5" y="5765" width="1.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1169.46" y="5775.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/UnicodeUtil.UTF16toUTF8 (350 samples, 0.04%; -0.09%)</title><rect x="479.0" y="5749" width="0.9" height="15.0" fill="rgb(203,203,255)" rx="2" ry="2" />
<text x="481.99" y="5759.5" ></text>
</g>
<g >
<title>java/util/HashMap.&lt;init&gt; (45 samples, 0.00%; 0.00%)</title><rect x="1628.4" y="4277" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1631.43" y="4287.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.lambda$done$0 (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="2149" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="2159.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$handleIndexActionAuthorizationResult$13 (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="2325" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="2335.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/bytes/BytesArray.writeTo (159 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="1317" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="1327.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/EsExecutors$DirectExecutorService.execute (715 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="1093" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="1103.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.resolveIndexNames (12,166 samples, 1.35%; 0.00%)</title><rect x="1589.2" y="4981" width="32.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.21" y="4991.5" >or..</text>
</g>
<g >
<title>org/apache/lucene/store/ByteBuffersDataOutput$ByteBufferRecycler.allocate (55 samples, 0.01%; +0.01%)</title><rect x="1093.7" y="5749" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1096.73" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/BaseFuture.set (38 samples, 0.00%; 0.00%)</title><rect x="271.6" y="3477" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.58" y="3487.5" ></text>
</g>
<g >
<title>java/lang/Throwable.fillInStackTrace (461 samples, 0.05%; 0.00%)</title><rect x="1643.0" y="5445" width="1.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1646.05" y="5455.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5967.0x0000000801981a88.accept (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="4069" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="4079.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/AbstractRunnable.run (302 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="2405" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="2415.5" ></text>
</g>
<g >
<title>java/util/zip/DeflaterOutputStream.deflate (43 samples, 0.00%; 0.00%)</title><rect x="285.4" y="4837" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="288.38" y="4847.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene84/ForDeltaUtil.encodeDeltas (38 samples, 0.00%; -0.00%)</title><rect x="329.5" y="5733" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="332.49" y="5743.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.onResponse (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="2965" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="2975.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5648.0x0000000801980b40.accept (230 samples, 0.03%; 0.00%)</title><rect x="271.7" y="4133" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.72" y="4143.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/FilterStreamInput.readByte (59 samples, 0.01%; 0.00%)</title><rect x="266.1" y="5317" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="269.10" y="5327.5" ></text>
</g>
<g >
<title>java/util/concurrent/locks/ReentrantReadWriteLock$Sync.tryAcquireShared (238 samples, 0.03%; 0.00%)</title><rect x="522.9" y="5925" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="525.86" y="5935.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/store/ByteSizeCachingDirectory$2.writeByte (100 samples, 0.01%; 0.00%)</title><rect x="1959.9" y="5973" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1962.90" y="5983.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/UnicodeUtil.UTF16toUTF8 (121 samples, 0.01%; +0.01%)</title><rect x="1308.8" y="5765" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1311.76" y="5775.5" ></text>
</g>
<g >
<title>java/lang/StringBuilder.setLength (595 samples, 0.07%; 0.00%)</title><rect x="468.3" y="5781" width="1.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="471.27" y="5791.5" ></text>
</g>
<g >
<title>java/util/regex/Pattern.compile (97 samples, 0.01%; 0.00%)</title><rect x="1765.3" y="5797" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1768.27" y="5807.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/action/filter/SecurityActionFilter.applyInternal (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="4853" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="4863.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.done (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="2469" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="2479.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/common/DateProcessor.newDateTimeZone (1,111 samples, 0.12%; 0.00%)</title><rect x="1645.7" y="5605" width="3.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1648.66" y="5615.5" ></text>
</g>
<g >
<title>java/util/Collections$SynchronizedMap.get (45 samples, 0.00%; 0.00%)</title><rect x="1703.6" y="5237" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1706.62" y="5247.5" ></text>
</g>
<g >
<title>java/io/BufferedOutputStream.write (128 samples, 0.01%; 0.00%)</title><rect x="1853.1" y="5605" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1856.08" y="5615.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="2677" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="2687.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/DocIDMerger$SequentialDocIDMerger.next (680 samples, 0.08%; +0.06%)</title><rect x="549.6" y="5701" width="1.8" height="15.0" fill="rgb(255,205,205)" rx="2" ry="2" />
<text x="552.58" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$CachingAsyncSupplier.getAsync (52 samples, 0.01%; 0.00%)</title><rect x="271.6" y="4629" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.57" y="4639.5" ></text>
</g>
<g >
<title>java/lang/Throwable.fillInStackTrace (149 samples, 0.02%; 0.00%)</title><rect x="1746.4" y="4501" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1749.35" y="4511.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/TransportService$$Lambda$3670.0x00000008015629c8.sendRequest (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="1637" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="1647.5" ></text>
</g>
<g >
<title>java/util/HashMap.putVal (68 samples, 0.01%; +0.01%)</title><rect x="1186.9" y="5669" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1189.89" y="5679.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.notifyListener (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="1493" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="1503.5" ></text>
</g>
<g >
<title>jdk/internal/util/ArraysSupport.mismatch (83 samples, 0.01%; +0.01%)</title><rect x="617.3" y="5509" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="620.26" y="5519.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/ByteBuffersDataOutput.rewriteToBlockSize (77 samples, 0.01%; +0.00%)</title><rect x="1093.9" y="5765" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1096.88" y="5775.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/DocValuesConsumer$3$1.nextDoc (97 samples, 0.01%; 0.00%)</title><rect x="1912.3" y="6021" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1915.35" y="6031.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (45 samples, 0.00%; +0.00%)</title><rect x="305.8" y="5861" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="308.75" y="5871.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (1,618 samples, 0.18%; 0.00%)</title><rect x="1710.8" y="4645" width="4.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1713.82" y="4655.5" ></text>
</g>
<g >
<title>java/util/HashMap$HashIterator.nextNode (48 samples, 0.01%; +0.01%)</title><rect x="1771.7" y="5781" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1774.74" y="5791.5" ></text>
</g>
<g >
<title>java/util/HashMap$TreeNode.getTreeNode (79 samples, 0.01%; +0.01%)</title><rect x="1583.5" y="5701" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1586.52" y="5711.5" ></text>
</g>
<g >
<title>ext4_file_write_iter (743 samples, 0.08%; 0.00%)</title><rect x="2176.4" y="5717" width="2.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2179.38" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (3,922 samples, 0.43%; 0.00%)</title><rect x="1710.8" y="5509" width="10.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1713.79" y="5519.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (3,057 samples, 0.34%; 0.00%)</title><rect x="274.7" y="4309" width="8.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.67" y="4319.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/ContentPath.pathAsText (508 samples, 0.06%; +0.01%)</title><rect x="1364.2" y="5845" width="1.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1367.18" y="5855.5" ></text>
</g>
<g >
<title>JVM_GetStackAccessControlContext (58 samples, 0.01%; +0.00%)</title><rect x="1630.2" y="4309" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1633.17" y="4319.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/ParseContext$Document.add (98 samples, 0.01%; +0.00%)</title><rect x="1429.6" y="5829" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1432.65" y="5839.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Processor.execute (1,433 samples, 0.16%; 0.00%)</title><rect x="1625.6" y="4341" width="3.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.59" y="4351.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/SortedSetDocValuesWriter.flush (171 samples, 0.02%; 0.00%)</title><rect x="1454.4" y="5973" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1457.36" y="5983.5" ></text>
</g>
<g >
<title>org/apache/lucene/document/Field.fieldType (101 samples, 0.01%; +0.01%)</title><rect x="887.6" y="5797" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="890.55" y="5807.5" ></text>
</g>
<g >
<title>java/util/HashMap.getNode (239 samples, 0.03%; -0.00%)</title><rect x="427.4" y="5813" width="0.7" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="430.44" y="5823.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5648.0x0000000801980b40.accept (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="2053" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="2063.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/JsonReadContext._checkDup (63 samples, 0.01%; +0.01%)</title><rect x="1183.6" y="5797" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1186.63" y="5807.5" ></text>
</g>
<g >
<title>java/util/HashMap.getNode (68 samples, 0.01%; 0.00%)</title><rect x="895.5" y="5749" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="898.52" y="5759.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/blocktree/BlockTreeTermsWriter.write (87,533 samples, 9.70%; +0.00%)</title><rect x="2206.1" y="6085" width="236.7" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2209.13" y="6095.5" >org/apache/lucene/codecs/blockt..</text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$CachingAsyncSupplier.getAsync (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="4197" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="4207.5" ></text>
</g>
<g >
<title>frame::sender(RegisterMap*) const (87 samples, 0.01%; +0.00%)</title><rect x="1642.5" y="5429" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1645.53" y="5439.5" ></text>
</g>
<g >
<title>java/lang/Throwable.fillInStackTrace (1,345 samples, 0.15%; +0.00%)</title><rect x="1670.3" y="5589" width="3.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1673.26" y="5599.5" ></text>
</g>
<g >
<title>java/util/Collections$UnmodifiableMap.get (63 samples, 0.01%; 0.00%)</title><rect x="1646.8" y="5461" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1649.83" y="5471.5" ></text>
</g>
<g >
<title>Java_java_lang_Throwable_fillInStackTrace (178 samples, 0.02%; 0.00%)</title><rect x="1717.1" y="4677" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1720.11" y="4687.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ValueSource$TemplatedValue.copyAndResolve (164 samples, 0.02%; 0.00%)</title><rect x="1695.1" y="5221" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1698.07" y="5231.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$runRequestInterceptors$14 (715 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="1541" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="1551.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/Analyzer.tokenStream (4,627 samples, 0.51%; 0.00%)</title><rect x="872.8" y="5797" width="12.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="875.76" y="5807.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="2757" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="2767.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.removeField (40 samples, 0.00%; 0.00%)</title><rect x="1720.4" y="5237" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1723.39" y="5247.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/RAMFile.addBuffer (51 samples, 0.01%; 0.00%)</title><rect x="2400.8" y="5941" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2403.80" y="5951.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$runRequestInterceptors$14 (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="2677" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="2687.5" ></text>
</g>
<g >
<title>java/lang/invoke/LambdaForm$MH.0x00000008018e5040.invoke (54 samples, 0.01%; 0.00%)</title><rect x="1847.9" y="5557" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.93" y="5567.5" ></text>
</g>
<g >
<title>java/util/ArrayList.grow (67 samples, 0.01%; 0.00%)</title><rect x="569.8" y="5621" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="572.82" y="5631.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.lambda$authorizeIndexAction$4 (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="2757" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="2767.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (2,151 samples, 0.24%; 0.00%)</title><rect x="1625.6" y="4965" width="5.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.56" y="4975.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamOutput.write (80 samples, 0.01%; +0.01%)</title><rect x="1589.7" y="2325" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1592.67" y="2335.5" ></text>
</g>
<g >
<title>org/apache/lucene/search/SortedSetSelector$MinValue.nextDoc (111 samples, 0.01%; 0.00%)</title><rect x="527.4" y="5717" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="530.37" y="5727.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene80/Lucene80DocValuesProducer$TermsDict.seekExact (2,140 samples, 0.24%; +0.00%)</title><rect x="1980.0" y="5941" width="5.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1983.04" y="5951.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.getRoles (215 samples, 0.02%; 0.00%)</title><rect x="1627.8" y="3749" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="3759.5" ></text>
</g>
<g >
<title>CodeCache::find_blob(void*) (38 samples, 0.00%; +0.00%)</title><rect x="1638.5" y="4757" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1641.48" y="4767.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/BulkShardRequest.lambda$writeTo$3 (165 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="1413" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="1423.5" ></text>
</g>
<g >
<title>org/elasticsearch/grok/GrokCaptureType$3.lambda$nativeExtracter$0 (43 samples, 0.00%; 0.00%)</title><rect x="1784.4" y="5925" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1787.38" y="5935.5" ></text>
</g>
<g >
<title>java/security/AccessControlContext.checkPermission (71 samples, 0.01%; 0.00%)</title><rect x="1534.3" y="5541" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1537.26" y="5551.5" ></text>
</g>
<g >
<title>java/util/ArrayList.add (38 samples, 0.00%; 0.00%)</title><rect x="2322.1" y="5893" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2325.09" y="5903.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/JsonGenerator.writeNumberField (69 samples, 0.01%; 0.00%)</title><rect x="290.2" y="5125" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="293.24" y="5135.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.lambda$static$7 (153 samples, 0.02%; 0.00%)</title><rect x="1577.3" y="5765" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1580.33" y="5775.5" ></text>
</g>
<g >
<title>java/util/zip/DeflaterOutputStream.write (111 samples, 0.01%; 0.00%)</title><rect x="1702.2" y="1717" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="1727.5" ></text>
</g>
<g >
<title>java/util/HashMap$EntrySet.iterator (76 samples, 0.01%; +0.00%)</title><rect x="1655.7" y="5221" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1658.70" y="5231.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.findName (39 samples, 0.00%; 0.00%)</title><rect x="423.1" y="5829" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="426.13" y="5839.5" ></text>
</g>
<g >
<title>java/util/HashMap$EntryIterator.next (96 samples, 0.01%; 0.00%)</title><rect x="496.7" y="5589" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="499.71" y="5599.5" ></text>
</g>
<g >
<title>/lib/x86_64-linux-gnu/libz.so.1.2.11 (435 samples, 0.05%; +0.05%)</title><rect x="617.9" y="5685" width="1.1" height="15.0" fill="rgb(255,206,206)" rx="2" ry="2" />
<text x="620.86" y="5695.5" ></text>
</g>
<g >
<title>java/lang/SecurityManager.checkPermission (42 samples, 0.00%; 0.00%)</title><rect x="1846.6" y="5157" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1849.60" y="5167.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/BulkRequestParser.createParser (296 samples, 0.03%; 0.00%)</title><rect x="276.8" y="4149" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="279.80" y="4159.5" ></text>
</g>
<g >
<title>java/nio/channels/Channels.writeFullyImpl (497 samples, 0.06%; +0.00%)</title><rect x="758.2" y="5589" width="1.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="761.23" y="5599.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/DocumentParser.parseObjectOrField (7,819 samples, 0.87%; -0.01%)</title><rect x="473.0" y="5829" width="21.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="476.01" y="5839.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/seqno/LocalCheckpointTracker.markSeqNoAsPersisted (158 samples, 0.02%; +0.01%)</title><rect x="509.4" y="5797" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="512.38" y="5807.5" ></text>
</g>
<g >
<title>java/io/BufferedOutputStream.flushBuffer (120 samples, 0.01%; 0.00%)</title><rect x="1873.0" y="5557" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1876.04" y="5567.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (1,781 samples, 0.20%; 0.00%)</title><rect x="1625.6" y="4709" width="4.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.58" y="4719.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/ContentPath.pathAsText (785 samples, 0.09%; -0.04%)</title><rect x="450.8" y="5733" width="2.2" height="15.0" fill="rgb(207,207,255)" rx="2" ry="2" />
<text x="453.85" y="5743.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/common/RemoveProcessor.execute (40 samples, 0.00%; 0.00%)</title><rect x="1720.4" y="5285" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1723.39" y="5295.5" ></text>
</g>
<g >
<title>java/util/stream/ReferencePipeline$3$1.accept (584 samples, 0.06%; 0.00%)</title><rect x="1708.9" y="5557" width="1.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1711.86" y="5567.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/CollectionUtils$$Lambda$6125.0x0000000801a244a0.iterator (94 samples, 0.01%; 0.00%)</title><rect x="1772.1" y="5813" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1775.06" y="5823.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (79 samples, 0.01%; +0.00%)</title><rect x="1830.5" y="5701" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1833.49" y="5711.5" ></text>
</g>
<g >
<title>[unknown] (1,317 samples, 0.15%; 0.00%)</title><rect x="2068.8" y="5989" width="3.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2071.84" y="5999.5" ></text>
</g>
<g >
<title>java/util/ArrayList.grow (38 samples, 0.00%; 0.00%)</title><rect x="605.5" y="5589" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="608.54" y="5599.5" ></text>
</g>
<g >
<title>__libc_write (166 samples, 0.02%; -0.00%)</title><rect x="2304.8" y="5685" width="0.4" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2307.77" y="5695.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/StringMSBRadixSorter.byteAt (44 samples, 0.00%; 0.00%)</title><rect x="537.7" y="5669" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="540.66" y="5679.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene87/BugfixDeflater_JDK8252739$$Lambda$6052.0x00000008019dedd0.setDictionary (1,358 samples, 0.15%; 0.00%)</title><rect x="2068.8" y="6053" width="3.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2071.82" y="6063.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/AbstractRunnable.run (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="1573" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="1583.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (5,016 samples, 0.56%; 0.00%)</title><rect x="1625.5" y="5205" width="13.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.53" y="5215.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (2,175 samples, 0.24%; +0.00%)</title><rect x="1697.2" y="5477" width="5.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1700.15" y="5487.5" ></text>
</g>
<g >
<title>java/io/BufferedOutputStream.flushBuffer (43 samples, 0.00%; 0.00%)</title><rect x="285.4" y="4869" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="288.38" y="4879.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.runRequestInterceptors (11,969 samples, 1.33%; 0.00%)</title><rect x="1589.5" y="4197" width="32.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.46" y="4207.5" >or..</text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.lambda$static$13 (77 samples, 0.01%; 0.00%)</title><rect x="1713.4" y="4389" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1716.42" y="4399.5" ></text>
</g>
<g >
<title>org/joni/StackMachine.popDefault (7,198 samples, 0.80%; +0.79%)</title><rect x="1800.1" y="5845" width="19.5" height="15.0" fill="rgb(255,154,154)" rx="2" ry="2" />
<text x="1803.12" y="5855.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/AsyncIOProcessor.processList (672 samples, 0.07%; 0.00%)</title><rect x="324.1" y="5909" width="1.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="327.12" y="5919.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/FilterStreamInput.readBytes (619 samples, 0.07%; 0.00%)</title><rect x="258.9" y="5301" width="1.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="261.91" y="5311.5" ></text>
</g>
<g >
<title>on_each_cpu_mask (50 samples, 0.01%; 0.00%)</title><rect x="1893.8" y="5269" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1896.84" y="5279.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/time/JavaDateFormatter.doParse (2,069 samples, 0.23%; +0.00%)</title><rect x="1673.9" y="5653" width="5.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1676.90" y="5663.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.done (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="2133" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="2143.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/TermsHashPerField.sortTerms (367 samples, 0.04%; 0.00%)</title><rect x="537.6" y="5797" width="1.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="540.60" y="5807.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/BufferedChecksum.update (152 samples, 0.02%; +0.00%)</title><rect x="2048.6" y="6005" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2051.63" y="6015.5" ></text>
</g>
<g >
<title>__generic_file_write_iter (2,113 samples, 0.23%; +0.00%)</title><rect x="510.5" y="5605" width="5.7" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="513.47" y="5615.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Processor.execute (2,054 samples, 0.23%; 0.00%)</title><rect x="1710.8" y="4853" width="5.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1713.82" y="4863.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestService.lambda$innerExecute$6 (688 samples, 0.08%; 0.00%)</title><rect x="1693.2" y="5125" width="1.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1696.15" y="5135.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundMessage.writeMessage (714 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="373" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="383.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/TransportService.sendRequest (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="1701" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="1711.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/NotifyOnceListener.onResponse (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="2517" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="2527.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeFormatterBuilder$CompositePrinterParser.parse (525 samples, 0.06%; +0.00%)</title><rect x="1295.4" y="5637" width="1.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1298.44" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/NotifyOnceListener.onResponse (38 samples, 0.00%; 0.00%)</title><rect x="271.6" y="2997" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.58" y="3007.5" ></text>
</g>
<g >
<title>java/util/HashMap$HashIterator.nextNode (38 samples, 0.00%; +0.00%)</title><rect x="1669.2" y="5445" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1672.23" y="5455.5" ></text>
</g>
<g >
<title>java_security_AccessControlContext::create(objArrayHandle, bool, Handle, Thread*) (53 samples, 0.01%; +0.00%)</title><rect x="1844.5" y="5877" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1847.49" y="5887.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/SortedSetDocValuesWriter$BufferedSortedSetDocValues.nextDoc (182 samples, 0.02%; +0.01%)</title><rect x="547.0" y="5701" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="550.04" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/StepListener.innerOnResponse (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="2517" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="2527.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$CachingAsyncSupplier$$Lambda$5639.0x0000000801980040.accept (145 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="4293" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="4303.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/Analyzer$TokenStreamComponents.setReader (98 samples, 0.01%; +0.00%)</title><rect x="1255.9" y="5653" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1258.87" y="5663.5" ></text>
</g>
<g >
<title>frame::frame(long*, long*, long*, unsigned char*) (65 samples, 0.01%; 0.00%)</title><rect x="1644.1" y="5349" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1647.10" y="5359.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/DataOutput.writeVInt (265 samples, 0.03%; +0.00%)</title><rect x="2201.9" y="6005" width="0.7" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2204.88" y="6015.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/time/JavaDateFormatter.doParse (635 samples, 0.07%; 0.00%)</title><rect x="1707.1" y="5669" width="1.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1710.08" y="5679.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.convert (917 samples, 0.10%; +0.07%)</title><rect x="1554.4" y="5781" width="2.5" height="15.0" fill="rgb(255,205,205)" rx="2" ry="2" />
<text x="1557.45" y="5791.5" ></text>
</g>
<g >
<title>java/security/Permissions.implies (39 samples, 0.00%; +0.00%)</title><rect x="1740.9" y="3941" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1743.89" y="3951.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/UnicodeUtil.UTF16toUTF8 (89 samples, 0.01%; +0.01%)</title><rect x="1415.9" y="5797" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1418.86" y="5807.5" ></text>
</g>
<g >
<title>java/util/LinkedHashMap.get (59 samples, 0.01%; 0.00%)</title><rect x="466.2" y="5685" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="469.23" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/interceptor/FieldAndDocumentLevelSecurityRequestInterceptor.intercept (715 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="2037" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="2047.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/packed/PackedLongValues$Iterator.next (60 samples, 0.01%; +0.01%)</title><rect x="541.6" y="5717" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="544.59" y="5727.5" ></text>
</g>
<g >
<title>sun/nio/ch/FileDispatcherImpl.write0 (273 samples, 0.03%; 0.00%)</title><rect x="2171.4" y="5797" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2174.44" y="5807.5" ></text>
</g>
<g >
<title>java/util/HashMap.putVal (829 samples, 0.09%; +0.04%)</title><rect x="1380.6" y="5589" width="2.3" height="15.0" fill="rgb(255,207,207)" rx="2" ry="2" />
<text x="1383.64" y="5599.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.setFieldValue (42 samples, 0.00%; 0.00%)</title><rect x="1667.6" y="5701" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1670.63" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/MappingLookup.indexAnalyzer (77 samples, 0.01%; 0.00%)</title><rect x="786.4" y="5765" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="789.41" y="5775.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/base/ParserBase.getNumberValue (139 samples, 0.02%; +0.00%)</title><rect x="1501.8" y="5941" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1504.82" y="5951.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.execute (127 samples, 0.01%; 0.00%)</title><rect x="1531.4" y="5477" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1534.44" y="5487.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/bkd/BKDWriter.writeLeafBlockPackedValuesRange (59 samples, 0.01%; +0.00%)</title><rect x="1864.6" y="5589" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1867.61" y="5599.5" ></text>
</g>
<g >
<title>jdk/internal/util/ArraysSupport.mismatch (47 samples, 0.01%; +0.01%)</title><rect x="567.1" y="5525" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="570.08" y="5535.5" ></text>
</g>
<g >
<title>java/security/AccessController.checkPermission (537 samples, 0.06%; 0.00%)</title><rect x="1747.0" y="4693" width="1.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1750.03" y="4703.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.lambda$authorizeIndexAction$5 (723 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="3077" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.77" y="3087.5" ></text>
</g>
<g >
<title>itable stub (66 samples, 0.01%; +0.01%)</title><rect x="1758.1" y="5509" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1761.09" y="5519.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/bkd/BKDWriter.writeHighCardinalityLeafBlockPackedValues (73 samples, 0.01%; -0.00%)</title><rect x="1864.6" y="5605" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1867.57" y="5615.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser._decodeEscaped (344 samples, 0.04%; +0.04%)</title><rect x="1427.1" y="5749" width="0.9" height="15.0" fill="rgb(255,207,207)" rx="2" ry="2" />
<text x="1430.11" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/BaseFuture.set (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="3077" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="3087.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamOutput.writeBoolean (41 samples, 0.00%; +0.00%)</title><rect x="308.6" y="5445" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="311.64" y="5455.5" ></text>
</g>
<g >
<title>java/util/stream/ReferencePipeline.collect (478 samples, 0.05%; 0.00%)</title><rect x="1753.4" y="5029" width="1.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1756.36" y="5039.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/StepListener.innerOnResponse (38 samples, 0.00%; 0.00%)</title><rect x="271.6" y="4021" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.58" y="4031.5" ></text>
</g>
<g >
<title>com/github/mustachejava/reflect/guards/WrappedGuard.apply (218 samples, 0.02%; 0.00%)</title><rect x="1830.8" y="5749" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1833.78" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/action/filter/SecurityActionFilter.authorizeRequest (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="4661" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="4671.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/TransportService$$Lambda$3670.0x00000008015629c8.sendRequest (302 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="2117" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="2127.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/AttributeSource.addAttribute (1,381 samples, 0.15%; +0.04%)</title><rect x="892.0" y="5797" width="3.7" height="15.0" fill="rgb(255,207,207)" rx="2" ry="2" />
<text x="894.97" y="5807.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/MultiTermsEnum.pushTop (6,678 samples, 0.74%; -0.00%)</title><rect x="2424.4" y="6037" width="18.0" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2427.38" y="6047.5" ></text>
</g>
<g >
<title>sun/nio/ch/EPollSelectorImpl.processEvents (39 samples, 0.00%; -0.00%)</title><rect x="305.5" y="6117" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="308.50" y="6127.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.map (16,520 samples, 1.83%; +0.02%)</title><rect x="1542.1" y="5845" width="44.7" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1545.10" y="5855.5" >org/..</text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.lambda$authorizeIndexAction$5 (215 samples, 0.02%; 0.00%)</title><rect x="1627.8" y="3509" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="3519.5" ></text>
</g>
<g >
<title>io/netty/channel/AbstractChannelHandlerContext.fireChannelRead (80 samples, 0.01%; 0.00%)</title><rect x="274.4" y="5669" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.38" y="5679.5" ></text>
</g>
<g >
<title>itable stub (37 samples, 0.00%; +0.00%)</title><rect x="269.2" y="5253" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="272.17" y="5263.5" ></text>
</g>
<g >
<title>java/util/WeakHashMap.get (53 samples, 0.01%; +0.01%)</title><rect x="1747.1" y="4533" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1750.13" y="4543.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$AuthorizationResultListener.onResponse (306 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="4293" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="4303.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.done (486 samples, 0.05%; 0.00%)</title><rect x="274.8" y="2869" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.84" y="2879.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (485 samples, 0.05%; 0.00%)</title><rect x="1722.6" y="4037" width="1.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1725.62" y="4047.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/time/DateFormatter$$Lambda$58.0x0000000800bc8248.apply (72 samples, 0.01%; 0.00%)</title><rect x="1530.8" y="5173" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1533.77" y="5183.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder$$Lambda$49.0x0000000800bc0480.write (64 samples, 0.01%; 0.00%)</title><rect x="1659.2" y="5173" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.16" y="5183.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (8,437 samples, 0.93%; +0.00%)</title><rect x="1722.5" y="4725" width="22.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1725.46" y="4735.5" >o..</text>
</g>
<g >
<title>java/lang/String.getChars (179 samples, 0.02%; 0.00%)</title><rect x="463.0" y="5669" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="466.05" y="5679.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/Mapping.getMetadataMapper (337 samples, 0.04%; 0.00%)</title><rect x="1217.0" y="5781" width="0.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1220.00" y="5791.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.getText (56 samples, 0.01%; +0.01%)</title><rect x="1244.8" y="5701" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1247.78" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ConditionalProcessor$$Lambda$6085.0x00000008019e2fa0.accept (580 samples, 0.06%; 0.00%)</title><rect x="1722.6" y="4341" width="1.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1725.62" y="4351.5" ></text>
</g>
<g >
<title>org/elasticsearch/SpecialPermission.check (154 samples, 0.02%; 0.00%)</title><rect x="1695.1" y="5189" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1698.10" y="5199.5" ></text>
</g>
<g >
<title>java/lang/ThreadLocal$ThreadLocalMap.getEntry (50 samples, 0.01%; -0.02%)</title><rect x="424.7" y="5701" width="0.1" height="15.0" fill="rgb(208,208,255)" rx="2" ry="2" />
<text x="427.67" y="5711.5" ></text>
</g>
<g >
<title>java/security/AccessController.getStackAccessControlContext (221 samples, 0.02%; 0.00%)</title><rect x="1715.6" y="4533" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1718.61" y="4543.5" ></text>
</g>
<g >
<title>G1ScanHRForRegionClosure::scan_heap_roots(HeapRegion*) (1,305 samples, 0.14%; +0.00%)</title><rect x="2445.2" y="6133" width="3.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2448.22" y="6143.5" ></text>
</g>
<g >
<title>com/github/mustachejava/codes/DefaultMustache.execute (41 samples, 0.00%; 0.00%)</title><rect x="1736.0" y="3749" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1739.05" y="3759.5" ></text>
</g>
<g >
<title>BacktraceBuilder::push(Method*, int, Thread*) (97 samples, 0.01%; +0.01%)</title><rect x="1643.7" y="5365" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1646.67" y="5375.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5648.0x0000000801980b40.accept (302 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="2613" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="2623.5" ></text>
</g>
<g >
<title>OptoRuntime::handle_exception_C(JavaThread*) (46 samples, 0.01%; 0.00%)</title><rect x="1670.1" y="5669" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1673.06" y="5679.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeFormatter.parse (76 samples, 0.01%; 0.00%)</title><rect x="1720.6" y="5349" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1723.63" y="5359.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/AbstractRunnable.run (11,965 samples, 1.33%; 0.00%)</title><rect x="1589.5" y="3477" width="32.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.47" y="3487.5" >or..</text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene84/ForDeltaUtil.encodeDeltas (9,481 samples, 1.05%; -0.01%)</title><rect x="2280.8" y="6021" width="25.7" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2283.83" y="6031.5" >o..</text>
</g>
<g >
<title>org/elasticsearch/xpack/security/transport/SecurityServerTransportInterceptor.access$300 (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="1861" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="1871.5" ></text>
</g>
<g >
<title>sun/security/provider/PolicyFile.implies (45 samples, 0.00%; 0.00%)</title><rect x="1719.5" y="4805" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1722.47" y="4815.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5633.0x00000008018272d0.accept (715 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="2677" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="2687.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/StepListener.innerOnResponse (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="1717" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="1727.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.lambda$executePipeline$0 (1,618 samples, 0.18%; 0.00%)</title><rect x="1710.8" y="4549" width="4.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1713.82" y="4559.5" ></text>
</g>
<g >
<title>java/security/ProtectionDomain$JavaSecurityAccessImpl$1.get (80 samples, 0.01%; +0.00%)</title><rect x="1663.5" y="5221" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1666.52" y="5231.5" ></text>
</g>
<g >
<title>java/util/HashMap.hash (93 samples, 0.01%; 0.00%)</title><rect x="1780.3" y="5909" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1783.30" y="5919.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/BulkItemRequest.writeThin (11,359 samples, 1.26%; 0.00%)</title><rect x="1589.5" y="2421" width="30.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.53" y="2431.5" >or..</text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (11,022 samples, 1.22%; 0.00%)</title><rect x="1722.4" y="5077" width="29.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1725.40" y="5087.5" >or..</text>
</g>
<g >
<title>java/io/BufferedOutputStream.write (43 samples, 0.00%; 0.00%)</title><rect x="285.4" y="4885" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="288.38" y="4895.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/TransportReplicationAction$ReroutePhase.performRemoteAction (52 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="1781" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="1791.5" ></text>
</g>
<g >
<title>java/security/AccessControlContext.optimize (168 samples, 0.02%; 0.00%)</title><rect x="1839.0" y="5909" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1841.98" y="5919.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (4,142 samples, 0.46%; 0.00%)</title><rect x="1710.8" y="5717" width="11.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1713.76" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$AuthorizationResultListener.onResponse (715 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="2693" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="2703.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/time/JavaDateFormatter.parse (669 samples, 0.07%; 0.00%)</title><rect x="1668.1" y="5669" width="1.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1671.10" y="5679.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine$$Lambda$5637.0x0000000801827ba0.accept (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="3525" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="3535.5" ></text>
</g>
<g >
<title>__vm_munmap (54 samples, 0.01%; 0.00%)</title><rect x="1893.8" y="5397" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1896.84" y="5407.5" ></text>
</g>
<g >
<title>org/joni/ByteCodeMachine.opFail (40 samples, 0.00%; 0.00%)</title><rect x="1756.5" y="5237" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1759.47" y="5247.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.loadAuthorizedIndices (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="2965" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="2975.5" ></text>
</g>
<g >
<title>unlink (65 samples, 0.01%; 0.00%)</title><rect x="1894.9" y="5477" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1897.91" y="5487.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamOutput.writeBytesReference (137 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="1589" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="1599.5" ></text>
</g>
<g >
<title>__libc_write (830 samples, 0.09%; -0.00%)</title><rect x="2176.2" y="5845" width="2.3" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2179.21" y="5855.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/standard/StandardAnalyzer.lambda$createComponents$0 (54 samples, 0.01%; 0.00%)</title><rect x="872.8" y="5733" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="875.81" y="5743.5" ></text>
</g>
<g >
<title>do_syscall_64 (56 samples, 0.01%; 0.00%)</title><rect x="1893.8" y="5429" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1896.84" y="5439.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ConditionalProcessor.execute (1,751 samples, 0.19%; 0.00%)</title><rect x="1625.6" y="4469" width="4.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.59" y="4479.5" ></text>
</g>
<g >
<title>java/security/AccessController.doPrivileged (40 samples, 0.00%; 0.00%)</title><rect x="1715.3" y="4581" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1718.33" y="4591.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.onResponse (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="949" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="959.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator.lambda$lookForExistingAuthentication$6 (724 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="3461" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.77" y="3471.5" ></text>
</g>
<g >
<title>vtable stub (106 samples, 0.01%; -0.00%)</title><rect x="1884.7" y="5701" width="0.3" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1887.75" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/ParseContext$Document.add (100 samples, 0.01%; +0.01%)</title><rect x="1318.6" y="5749" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1321.56" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.done (38 samples, 0.00%; 0.00%)</title><rect x="271.6" y="3189" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.58" y="3199.5" ></text>
</g>
<g >
<title>org/elasticsearch/http/netty4/Netty4HttpRequest.release (47 samples, 0.01%; 0.00%)</title><rect x="286.4" y="5093" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="289.37" y="5103.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$1.doRun (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="1045" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="1055.5" ></text>
</g>
<g >
<title>java/lang/String.hashCode (423 samples, 0.05%; 0.00%)</title><rect x="471.8" y="5701" width="1.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="474.79" y="5711.5" ></text>
</g>
<g >
<title>java/util/ArrayList.add (82 samples, 0.01%; 0.00%)</title><rect x="536.2" y="5653" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="539.19" y="5663.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/UnicodeUtil.UTF16toUTF8 (178 samples, 0.02%; -0.19%)</title><rect x="367.2" y="5797" width="0.4" height="15.0" fill="rgb(196,196,255)" rx="2" ry="2" />
<text x="370.16" y="5807.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/RateLimitedIndexOutput.writeBytes (70 samples, 0.01%; 0.00%)</title><rect x="2200.5" y="6037" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2203.46" y="6047.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.sort (44 samples, 0.00%; 0.00%)</title><rect x="1456.1" y="5925" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1459.13" y="5935.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$runRequestInterceptors$14 (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="1285" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="1295.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/BaseFuture.set (11,965 samples, 1.33%; 0.00%)</title><rect x="1589.5" y="3845" width="32.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.47" y="3855.5" >or..</text>
</g>
<g >
<title>java/util/HashMap.&lt;init&gt; (210 samples, 0.02%; 0.00%)</title><rect x="1744.6" y="4629" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1747.64" y="4639.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/packed/PackedLongValues$Builder.add (94 samples, 0.01%; 0.00%)</title><rect x="2048.1" y="6037" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2051.07" y="6047.5" ></text>
</g>
<g >
<title>java/io/BufferedOutputStream.write (257 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="917" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="927.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/TransportReplicationAction$ReroutePhase.doRun (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="661" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="671.5" ></text>
</g>
<g >
<title>java/security/Permissions$1.apply (67 samples, 0.01%; 0.00%)</title><rect x="1686.1" y="5413" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1689.06" y="5423.5" ></text>
</g>
<g >
<title>java/security/Policy$PolicyDelegate.implies (37 samples, 0.00%; 0.00%)</title><rect x="1846.3" y="4997" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1849.30" y="5007.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="2357" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="2367.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.authorizeIndexActionName (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="3781" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="3791.5" ></text>
</g>
<g >
<title>sun/nio/fs/UnixNativeDispatcher.unlink0 (109 samples, 0.01%; 0.00%)</title><rect x="1457.3" y="5989" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1460.30" y="5999.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/StepListener.innerOnResponse (715 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="1749" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="1759.5" ></text>
</g>
<g >
<title>java/util/ArrayList.forEach (486 samples, 0.05%; 0.00%)</title><rect x="274.8" y="3365" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.84" y="3375.5" ></text>
</g>
<g >
<title>java/util/LinkedHashMap.get (741 samples, 0.08%; 0.00%)</title><rect x="608.4" y="5733" width="2.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="611.38" y="5743.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/ByteBuffersDataOutput.appendBlock (105 samples, 0.01%; -0.00%)</title><rect x="2320.4" y="5925" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2323.36" y="5935.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/store/ByteSizeCachingDirectory.access$200 (66 samples, 0.01%; 0.00%)</title><rect x="1847.3" y="5253" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.32" y="5263.5" ></text>
</g>
<g >
<title>java/util/Collections$UnmodifiableCollection$1.next (69 samples, 0.01%; 0.00%)</title><rect x="1239.9" y="5701" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1242.93" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator.lookForExistingAuthentication (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="4789" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="4799.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorizeAction$6 (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="4165" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="4175.5" ></text>
</g>
<g >
<title>JVM_FillInStackTrace (207 samples, 0.02%; 0.00%)</title><rect x="1639.4" y="5125" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1642.38" y="5135.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/interceptor/UpdateRequestInterceptor.intercept (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="2629" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="2639.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/BytesRefHash.doHash (125 samples, 0.01%; 0.00%)</title><rect x="395.1" y="5781" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="398.14" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/interceptor/BulkShardRequestInterceptor.intercept (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="1429" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="1439.5" ></text>
</g>
<g >
<title>do_async_page_fault (97 samples, 0.01%; 0.00%)</title><rect x="1632.2" y="4885" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1635.21" y="4895.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (11,020 samples, 1.22%; 0.00%)</title><rect x="1722.4" y="5029" width="29.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1725.40" y="5039.5" >or..</text>
</g>
<g >
<title>java/io/BufferedOutputStream.flushBuffer (154 samples, 0.02%; 0.00%)</title><rect x="1986.4" y="5925" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1989.44" y="5935.5" ></text>
</g>
<g >
<title>java/util/HashMap$EntryIterator.next (39 samples, 0.00%; 0.00%)</title><rect x="1743.4" y="4389" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1746.39" y="4399.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.handleIndexActionAuthorizationResult (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="4133" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="4143.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/RAMFile.addBuffer (38 samples, 0.00%; 0.00%)</title><rect x="2322.1" y="5909" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2325.09" y="5919.5" ></text>
</g>
<g >
<title>java/util/IdentityHashMap.put (75 samples, 0.01%; +0.00%)</title><rect x="1758.3" y="5493" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1761.27" y="5503.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/BytesRefHash.doHash (55 samples, 0.01%; 0.00%)</title><rect x="408.4" y="5765" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="411.37" y="5775.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/BytesRefHash.doHash (2,643 samples, 0.29%; 0.00%)</title><rect x="997.1" y="5765" width="7.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1000.09" y="5775.5" ></text>
</g>
<g >
<title>java/lang/StringBuilder.setLength (921 samples, 0.10%; 0.00%)</title><rect x="1161.4" y="5845" width="2.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1164.42" y="5855.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (12,341 samples, 1.37%; 0.00%)</title><rect x="1722.3" y="5253" width="33.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1725.33" y="5263.5" >or..</text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5967.0x0000000801981a88.accept (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="3685" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="3695.5" ></text>
</g>
<g >
<title>java/security/ProtectionDomain.implies (48 samples, 0.01%; 0.00%)</title><rect x="1847.3" y="5029" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.33" y="5039.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestService$$Lambda$6064.0x00000008019e1000.accept (55 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="4885" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="4895.5" ></text>
</g>
<g >
<title>jdk/internal/util/ArraysSupport.mismatch (45 samples, 0.00%; +0.00%)</title><rect x="2200.3" y="6053" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2203.34" y="6063.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/geoip/GeoIpProcessor.execute (870 samples, 0.10%; 0.00%)</title><rect x="1746.1" y="4805" width="2.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1749.13" y="4815.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.notifyListener (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="1861" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="1871.5" ></text>
</g>
<g >
<title>java/security/AccessControlContext.checkPermission (48 samples, 0.01%; 0.00%)</title><rect x="1847.3" y="5061" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.33" y="5071.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ConditionalProcessor.lambda$execute$1 (229 samples, 0.03%; 0.00%)</title><rect x="1629.5" y="4421" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.47" y="4431.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/AbstractRunnable.run (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="3221" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="3231.5" ></text>
</g>
<g >
<title>java/util/HashMap.get (562 samples, 0.06%; 0.00%)</title><rect x="471.4" y="5749" width="1.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="474.41" y="5759.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene80/IndexedDISI$Method$2.advanceWithinBlock (54 samples, 0.01%; -0.00%)</title><rect x="1926.4" y="5957" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1929.37" y="5967.5" ></text>
</g>
<g >
<title>java/util/zip/Deflater.deflate (4,618 samples, 0.51%; +0.00%)</title><rect x="309.0" y="5301" width="12.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="311.97" y="5311.5" ></text>
</g>
<g >
<title>java/util/Collections$UnmodifiableMap.get (107 samples, 0.01%; 0.00%)</title><rect x="1202.8" y="5749" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1205.85" y="5759.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeFormatterBuilder$CompositePrinterParser.parse (14,286 samples, 1.58%; +0.01%)</title><rect x="1370.5" y="5733" width="38.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1373.52" y="5743.5" >jav..</text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.removeField (150 samples, 0.02%; 0.00%)</title><rect x="1765.8" y="5845" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1768.76" y="5855.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser._nextTokenNotInObject (58 samples, 0.01%; 0.00%)</title><rect x="1450.3" y="5893" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1453.35" y="5903.5" ></text>
</g>
<g >
<title>java/util/HashMap.get (333 samples, 0.04%; 0.00%)</title><rect x="1838.1" y="5829" width="0.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1841.08" y="5839.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/IndexWriter$1.lambda$deleteUnusedFiles$0 (191 samples, 0.02%; 0.00%)</title><rect x="1095.3" y="5813" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1098.27" y="5823.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.map (72 samples, 0.01%; +0.00%)</title><rect x="1627.6" y="4085" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1630.58" y="4095.5" ></text>
</g>
<g >
<title>java/nio/channels/Channels$1.write (480 samples, 0.05%; 0.00%)</title><rect x="620.2" y="5685" width="1.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="623.19" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator$$Lambda$4849.0x00000008016b6c78.accept (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="3685" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="3695.5" ></text>
</g>
<g >
<title>[unknown] (38 samples, 0.00%; 0.00%)</title><rect x="2170.8" y="5973" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2173.78" y="5983.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene80/Lucene80DocValuesProducer$BaseSortedDocValues.lookupOrd (1,984 samples, 0.22%; 0.00%)</title><rect x="1973.6" y="5941" width="5.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1976.60" y="5951.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.done (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="2837" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="2847.5" ></text>
</g>
<g >
<title>java/util/HashMap$EntryIterator.next (143 samples, 0.02%; 0.00%)</title><rect x="1581.7" y="5749" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1584.68" y="5759.5" ></text>
</g>
<g >
<title>JavaThread::oops_do(OopClosure*, CodeBlobClosure*) (114 samples, 0.01%; 0.00%)</title><rect x="2448.7" y="6101" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2451.75" y="6111.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/packed/DirectWriter.flush (280 samples, 0.03%; -0.01%)</title><rect x="1913.7" y="5989" width="0.8" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1916.75" y="5999.5" ></text>
</g>
<g >
<title>org/elasticsearch/grok/Grok.match (62 samples, 0.01%; 0.00%)</title><rect x="1721.7" y="5557" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1724.72" y="5567.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/bytes/ReleasableBytesReference.length (42 samples, 0.00%; +0.00%)</title><rect x="252.8" y="5269" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="255.81" y="5279.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamInput.readLong (93 samples, 0.01%; +0.00%)</title><rect x="251.2" y="5381" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="254.16" y="5391.5" ></text>
</g>
<g >
<title>java/util/ArrayList$SubList.removeRange (56 samples, 0.01%; 0.00%)</title><rect x="2387.0" y="6005" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2390.05" y="6015.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$CachingAsyncSupplier.getAsync (12,070 samples, 1.34%; 0.00%)</title><rect x="1589.2" y="4677" width="32.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.21" y="4687.5" >or..</text>
</g>
<g >
<title>org/elasticsearch/xpack/security/transport/SecurityServerTransportInterceptor$1.sendRequest (52 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="1717" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="1727.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorizeBulkItems$23 (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="4053" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="4063.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/DocValuesConsumer$5$1.nextOrd (325 samples, 0.04%; +0.00%)</title><rect x="553.5" y="5701" width="0.9" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="556.48" y="5711.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeParseContext.setParsedField (408 samples, 0.05%; 0.00%)</title><rect x="1375.2" y="5637" width="1.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1378.22" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/FieldMapper.parse (7,739 samples, 0.86%; -0.00%)</title><rect x="473.2" y="5813" width="20.9" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="476.22" y="5823.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/packed/BulkOperationPacked.encode (616 samples, 0.07%; +0.00%)</title><rect x="2034.5" y="6005" width="1.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2037.48" y="6015.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/RateLimitedIndexOutput.writeByte (50 samples, 0.01%; 0.00%)</title><rect x="2404.9" y="5973" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2407.88" y="5983.5" ></text>
</g>
<g >
<title>java/lang/String.hashCode (59 samples, 0.01%; 0.00%)</title><rect x="1216.4" y="5765" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1219.42" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5975.0x0000000801982e30.accept (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="3221" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="3231.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/store/CompositeRolesStore.getRoles (12,192 samples, 1.35%; 0.00%)</title><rect x="1589.2" y="5429" width="33.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.19" y="5439.5" >or..</text>
</g>
<g >
<title>org/elasticsearch/xpack/datastreams/mapper/DataStreamTimestampFieldMapper$$Lambda$5987.0x0000000801523690.test (83 samples, 0.01%; +0.01%)</title><rect x="1437.1" y="5765" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1440.07" y="5775.5" ></text>
</g>
<g >
<title>java/lang/AbstractStringBuilder.setLength (881 samples, 0.10%; +0.05%)</title><rect x="1232.6" y="5685" width="2.4" height="15.0" fill="rgb(255,206,206)" rx="2" ry="2" />
<text x="1235.63" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (1,997 samples, 0.22%; 0.00%)</title><rect x="1710.8" y="4837" width="5.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1713.82" y="4847.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/DataOutput.writeVInt (37 samples, 0.00%; +0.00%)</title><rect x="536.7" y="5701" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="539.72" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/ReplicationResponse$ShardInfo.&lt;init&gt; (100 samples, 0.01%; +0.00%)</title><rect x="290.8" y="5397" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="293.85" y="5407.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (230 samples, 0.03%; 0.00%)</title><rect x="271.7" y="4405" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.72" y="4415.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/transport/SecurityServerTransportInterceptor.sendWithUser (714 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="549" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="559.5" ></text>
</g>
<g >
<title>java/lang/String.&lt;init&gt; (61 samples, 0.01%; 0.00%)</title><rect x="291.5" y="5381" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="294.47" y="5391.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (306 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="4181" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="4191.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/translog/Translog.add (6,635 samples, 0.74%; +0.00%)</title><rect x="1101.3" y="5973" width="17.9" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1104.28" y="5983.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeFormatterBuilder$ZoneIdPrinterParser.parseOffsetBased (766 samples, 0.08%; +0.00%)</title><rect x="1387.6" y="5669" width="2.0" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1390.55" y="5679.5" ></text>
</g>
<g >
<title>itable stub (55 samples, 0.01%; +0.01%)</title><rect x="483.3" y="5605" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="486.30" y="5615.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/BaseFuture.set (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="2821" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="2831.5" ></text>
</g>
<g >
<title>java/util/ArrayList.add (441 samples, 0.05%; 0.00%)</title><rect x="1451.4" y="5925" width="1.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1454.40" y="5935.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/tokenattributes/PackedTokenAttributeImpl.clear (55 samples, 0.01%; +0.01%)</title><rect x="1420.3" y="5781" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1423.26" y="5791.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/util/TextBuffer.emptyAndGetCurrentSegment (130 samples, 0.01%; 0.00%)</title><rect x="1153.4" y="5733" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1156.36" y="5743.5" ></text>
</g>
<g >
<title>java/util/Collections$UnmodifiableMap.get (77 samples, 0.01%; 0.00%)</title><rect x="1458.7" y="6117" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1461.72" y="6127.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.authorizeAction (936 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="4709" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.82" y="4719.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.radixSort (620 samples, 0.07%; 0.00%)</title><rect x="557.8" y="5733" width="1.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="560.81" y="5743.5" ></text>
</g>
<g >
<title>sun/nio/ch/FileDispatcherImpl.write0 (42 samples, 0.00%; 0.00%)</title><rect x="417.0" y="5845" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="420.04" y="5855.5" ></text>
</g>
<g >
<title>java/util/zip/Deflater.deflate (257 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="837" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="847.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/action/filter/SecurityActionFilter.authorizeRequest (145 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="4725" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="4735.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="2565" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="2575.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/index/IndexRequest.writeBody (78 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="245" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="255.5" ></text>
</g>
<g >
<title>java/lang/String.split (584 samples, 0.06%; +0.02%)</title><rect x="1781.2" y="5877" width="1.6" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1784.20" y="5887.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/fst/NodeHash.nodesEqual (133 samples, 0.01%; -0.00%)</title><rect x="2396.6" y="5941" width="0.3" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2399.58" y="5951.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/StringMSBRadixSorter.byteAt (139 samples, 0.02%; 0.00%)</title><rect x="1862.2" y="5669" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1865.21" y="5679.5" ></text>
</g>
<g >
<title>java/util/HashMap$KeyIterator.next (78 samples, 0.01%; 0.00%)</title><rect x="1770.0" y="5813" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1773.00" y="5823.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/standard/StandardTokenizerImpl.zzRefill (123 samples, 0.01%; -0.34%)</title><rect x="364.3" y="5765" width="0.4" height="15.0" fill="rgb(186,186,255)" rx="2" ry="2" />
<text x="367.33" y="5775.5" ></text>
</g>
<g >
<title>java/util/zip/DeflaterOutputStream.write (222 samples, 0.02%; 0.00%)</title><rect x="1619.2" y="2261" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1622.24" y="2271.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamOutput.write (671 samples, 0.07%; +0.00%)</title><rect x="1733.8" y="197" width="1.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1736.78" y="207.5" ></text>
</g>
<g >
<title>__ext4_get_inode_loc (37 samples, 0.00%; +0.00%)</title><rect x="1900.3" y="5589" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1903.29" y="5599.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/core/KeywordTokenizer.incrementToken (131 samples, 0.01%; -0.00%)</title><rect x="425.0" y="5797" width="0.3" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="427.98" y="5807.5" ></text>
</g>
<g >
<title>java/util/HashMap.get (61 samples, 0.01%; 0.00%)</title><rect x="1749.6" y="4661" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1752.58" y="4671.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="2933" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="2943.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/transport/SecurityServerTransportInterceptor$1.sendRequest (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="1941" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="1951.5" ></text>
</g>
<g >
<title>file_write_and_wait_range (108 samples, 0.01%; 0.00%)</title><rect x="325.6" y="5653" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="328.62" y="5663.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.done (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="1445" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="1455.5" ></text>
</g>
<g >
<title>vtable stub (297 samples, 0.03%; -0.00%)</title><rect x="1934.9" y="5989" width="0.8" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1937.92" y="5999.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/TransportReplicationAction.runReroutePhase (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="1829" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="1839.5" ></text>
</g>
<g >
<title>java/util/stream/ReduceOps$ReduceOp.evaluateSequential (40 samples, 0.00%; 0.00%)</title><rect x="1587.9" y="5765" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1590.87" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/BaseFuture.set (486 samples, 0.05%; 0.00%)</title><rect x="274.8" y="2885" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.84" y="2895.5" ></text>
</g>
<g >
<title>java/util/IdentityHashMap.hash (55 samples, 0.01%; 0.00%)</title><rect x="1761.0" y="5461" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1763.96" y="5471.5" ></text>
</g>
<g >
<title>org/joni/ByteCodeMachine.&lt;init&gt; (107 samples, 0.01%; 0.00%)</title><rect x="1824.7" y="5941" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1827.65" y="5951.5" ></text>
</g>
<g >
<title>java/util/ArrayList.grow (48 samples, 0.01%; 0.00%)</title><rect x="506.9" y="5877" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="509.95" y="5887.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$$Lambda$4893.0x00000008017ed008.accept (227 samples, 0.03%; 0.00%)</title><rect x="271.7" y="3717" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.72" y="3727.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/action/filter/SecurityActionFilter$$Lambda$5025.0x00000008016b7bb0.accept (931 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="2325" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.83" y="2335.5" ></text>
</g>
<g >
<title>frame::frame(long*, long*, long*, unsigned char*) (60 samples, 0.01%; +0.00%)</title><rect x="1704.4" y="5317" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1707.36" y="5327.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/Analyzer.tokenStream (170 samples, 0.02%; +0.00%)</title><rect x="1210.1" y="5717" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1213.06" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.authorizeIndexAction (12,187 samples, 1.35%; 0.00%)</title><rect x="1589.2" y="5269" width="33.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.21" y="5279.5" >or..</text>
</g>
<g >
<title>sun/nio/fs/UnixFileSystemProvider.implDelete (131 samples, 0.01%; 0.00%)</title><rect x="1095.4" y="5557" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1098.44" y="5567.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestService$$Lambda$6064.0x00000008019e1000.accept (39 samples, 0.00%; 0.00%)</title><rect x="1630.9" y="3989" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="3999.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/UnicodeUtil.UTF16toUTF8 (1,439 samples, 0.16%; +0.03%)</title><rect x="1245.1" y="5685" width="3.9" height="15.0" fill="rgb(255,207,207)" rx="2" ry="2" />
<text x="1248.09" y="5695.5" ></text>
</g>
<g >
<title>com/carrotsearch/hppc/LongArrayList.forEach (159 samples, 0.02%; 0.00%)</title><rect x="509.4" y="5877" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="512.37" y="5887.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$1.doRun (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="2437" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="2447.5" ></text>
</g>
<g >
<title>[unknown] (248 samples, 0.03%; 0.00%)</title><rect x="619.0" y="5685" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="622.04" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/SpecialPermission.check (678 samples, 0.08%; 0.00%)</title><rect x="1736.2" y="3829" width="1.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1739.16" y="3839.5" ></text>
</g>
<g >
<title>java/nio/ByteBuffer.put (37 samples, 0.00%; 0.00%)</title><rect x="758.3" y="5525" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="761.26" y="5535.5" ></text>
</g>
<g >
<title>itable stub (37 samples, 0.00%; +0.00%)</title><rect x="268.4" y="5253" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="271.41" y="5263.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/BulkShardRequest.writeTo (165 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="1461" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="1471.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/json/JsonXContentGenerator.writeNumberField (69 samples, 0.01%; 0.00%)</title><rect x="290.2" y="5141" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="293.24" y="5151.5" ></text>
</g>
<g >
<title>java/util/HashMap$HashIterator.nextNode (127 samples, 0.01%; +0.01%)</title><rect x="1655.4" y="5189" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1658.36" y="5199.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/bytes/BytesReferenceStreamInput.readByte (38 samples, 0.00%; 0.00%)</title><rect x="255.5" y="5237" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="258.48" y="5247.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.unknownValue (41 samples, 0.00%; 0.00%)</title><rect x="1733.5" y="3637" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.46" y="3647.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="2773" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="2783.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/common/SetProcessor.execute (376 samples, 0.04%; 0.00%)</title><rect x="1715.2" y="4645" width="1.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1718.20" y="4655.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$CachingAsyncSupplier.lambda$getAsync$0 (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="4213" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="4223.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ConditionalProcessor.lambda$execute$1 (1,000 samples, 0.11%; 0.00%)</title><rect x="1693.1" y="5797" width="2.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1696.13" y="5807.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="2949" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="2959.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/json/JsonXContentParser.text (198 samples, 0.02%; -0.00%)</title><rect x="1509.0" y="5925" width="0.6" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1512.04" y="5935.5" ></text>
</g>
<g >
<title>updateBytesCRC32 (65 samples, 0.01%; -0.00%)</title><rect x="2442.9" y="5909" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2445.91" y="5919.5" ></text>
</g>
<g >
<title>java/util/stream/ReferencePipeline$2$1.accept (261 samples, 0.03%; +0.00%)</title><rect x="1436.6" y="5781" width="0.7" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1439.59" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/BulkShardRequest$$Lambda$5980.0x00000008019cc5a0.write (52 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="1461" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="1471.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/action/filter/SecurityActionFilter.apply (489 samples, 0.05%; 0.00%)</title><rect x="274.8" y="4053" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.84" y="4063.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/ByteBuffersDataOutput$$Lambda$4738.0x0000000801752f90.apply (139 samples, 0.02%; 0.00%)</title><rect x="2201.5" y="5941" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2204.51" y="5951.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Processor.execute (6,397 samples, 0.71%; 0.00%)</title><rect x="1648.8" y="5525" width="17.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1651.84" y="5535.5" ></text>
</g>
<g >
<title>java/lang/String.toLowerCase (143 samples, 0.02%; +0.00%)</title><rect x="1525.8" y="6069" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1528.84" y="6079.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/interceptor/IndicesAliasesRequestInterceptor.intercept (715 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="1525" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="1535.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/GroupedActionListener.onResponse (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="2581" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="2591.5" ></text>
</g>
<g >
<title>java/lang/String.rangeCheck (101 samples, 0.01%; 0.00%)</title><rect x="268.0" y="5269" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="270.97" y="5279.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/TransportBulkAction$$Lambda$6059.0x00000008019e04c0.accept (752 samples, 0.08%; 0.00%)</title><rect x="1733.7" y="3717" width="2.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.71" y="3727.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/geoip/DatabaseReaderLazyLoader.lambda$getResponse$0 (364 samples, 0.04%; 0.00%)</title><rect x="1716.6" y="4789" width="1.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1719.61" y="4799.5" ></text>
</g>
<g >
<title>java/util/HashMap.remove (38 samples, 0.00%; -0.01%)</title><rect x="501.8" y="5637" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="504.76" y="5647.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/BytesRefHash.rehash (67 samples, 0.01%; -0.00%)</title><rect x="408.3" y="5781" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="411.34" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/script/mustache/CustomReflectionObjectHandler.stringify (64 samples, 0.01%; 0.00%)</title><rect x="1833.3" y="5813" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1836.30" y="5823.5" ></text>
</g>
<g >
<title>io/netty/util/concurrent/SingleThreadEventExecutor.runAllTasks (971 samples, 0.11%; -0.00%)</title><rect x="305.7" y="6181" width="2.6" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="308.72" y="6191.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/bytes/ReleasableBytesReference.length (56 samples, 0.01%; +0.00%)</title><rect x="292.1" y="5333" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="295.09" y="5343.5" ></text>
</g>
<g >
<title>JVM_IHashCode (42 samples, 0.00%; +0.00%)</title><rect x="1761.0" y="5429" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1763.99" y="5439.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/JsonReadContext.setCurrentName (1,432 samples, 0.16%; +0.00%)</title><rect x="1490.4" y="5941" width="3.9" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1493.41" y="5951.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/blocktree/BlockTreeTermsWriter$PendingBlock.compileIndex (4,086 samples, 0.45%; -0.01%)</title><rect x="2387.3" y="6021" width="11.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2390.32" y="6031.5" ></text>
</g>
<g >
<title>java/util/HashMap.getNode (108 samples, 0.01%; +0.00%)</title><rect x="1779.9" y="5909" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1782.93" y="5919.5" ></text>
</g>
<g >
<title>io/netty/util/concurrent/SingleThreadEventExecutor$4.run (30,445 samples, 3.37%; 0.00%)</title><rect x="226.0" y="6213" width="82.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="229.04" y="6223.5" >io/netty/..</text>
</g>
<g >
<title>org/apache/lucene/analysis/tokenattributes/PackedTokenAttributeImpl.clear (116 samples, 0.01%; +0.01%)</title><rect x="862.7" y="5781" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="865.71" y="5791.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/ByteSourceJsonBootstrapper.ensureLoaded (69 samples, 0.01%; -0.03%)</title><rect x="418.6" y="5861" width="0.2" height="15.0" fill="rgb(208,208,255)" rx="2" ry="2" />
<text x="421.59" y="5871.5" ></text>
</g>
<g >
<title>vtable stub (61 samples, 0.01%; +0.01%)</title><rect x="594.2" y="5701" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="597.18" y="5711.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/FieldInfo.checkConsistency (700 samples, 0.08%; +0.08%)</title><rect x="887.8" y="5797" width="1.9" height="15.0" fill="rgb(255,204,204)" rx="2" ry="2" />
<text x="890.83" y="5807.5" ></text>
</g>
<g >
<title>sun/nio/ch/FileChannelImpl.write (41 samples, 0.00%; 0.00%)</title><rect x="2175.9" y="5925" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2178.95" y="5935.5" ></text>
</g>
<g >
<title>org/elasticsearch/indices/IndicesService.indexShardStats (201 samples, 0.02%; 0.00%)</title><rect x="1847.0" y="5397" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.03" y="5407.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator.lambda$lookForExistingAuthentication$6 (174 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="4565" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="4575.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (4,124 samples, 0.46%; 0.00%)</title><rect x="1710.8" y="5637" width="11.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1713.77" y="5647.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/fst/BytesRefFSTEnum.next (323 samples, 0.04%; 0.00%)</title><rect x="2388.7" y="5989" width="0.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2391.75" y="5999.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/fst/Util.toIntsRef (72 samples, 0.01%; +0.00%)</title><rect x="2398.2" y="6005" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2401.18" y="6015.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/blocktree/BlockTreeTermsWriter$TermsWriter.pushTerm (70 samples, 0.01%; -0.00%)</title><rect x="1455.9" y="5925" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1458.87" y="5935.5" ></text>
</g>
<g >
<title>[unknown] (146 samples, 0.02%; 0.00%)</title><rect x="249.4" y="5573" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="252.45" y="5583.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeParseContext.&lt;init&gt; (102 samples, 0.01%; 0.00%)</title><rect x="1389.1" y="5637" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1392.15" y="5647.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/packed/Packed64.get (191 samples, 0.02%; -0.01%)</title><rect x="2026.0" y="5973" width="0.5" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2028.98" y="5983.5" ></text>
</g>
<g >
<title>java/util/HashMap.getNode (38 samples, 0.00%; 0.00%)</title><rect x="1229.7" y="5589" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1232.67" y="5599.5" ></text>
</g>
<g >
<title>updateBytesCRC32 (144 samples, 0.02%; +0.00%)</title><rect x="2048.6" y="5973" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2051.65" y="5983.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/NotifyOnceListener.onResponse (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="3381" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="3391.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (1,438 samples, 0.16%; 0.00%)</title><rect x="1527.5" y="5669" width="3.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1530.50" y="5679.5" ></text>
</g>
<g >
<title>java/util/HashMap$HashIterator.&lt;init&gt; (272 samples, 0.03%; +0.03%)</title><rect x="1403.8" y="5605" width="0.8" height="15.0" fill="rgb(255,207,207)" rx="2" ry="2" />
<text x="1406.82" y="5615.5" ></text>
</g>
<g >
<title>org/elasticsearch/client/support/AbstractClient.execute (550 samples, 0.06%; 0.00%)</title><rect x="274.7" y="4149" width="1.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.68" y="4159.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundHandler.sendRequest (52 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="1621" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="1631.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/ParseContext$InternalParseContext.&lt;init&gt; (441 samples, 0.05%; 0.00%)</title><rect x="1451.4" y="5941" width="1.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1454.40" y="5951.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/AttributeSource.addAttribute (166 samples, 0.02%; -0.01%)</title><rect x="442.2" y="5733" width="0.4" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="445.18" y="5743.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/StepListener.innerOnResponse (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="1221" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="1231.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Processor.execute (12,714 samples, 1.41%; 0.00%)</title><rect x="1722.3" y="5397" width="34.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1725.30" y="5407.5" >or..</text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.getRoles (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="3317" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="3327.5" ></text>
</g>
<g >
<title>[unknown] (47 samples, 0.01%; 0.00%)</title><rect x="538.8" y="5685" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="541.82" y="5695.5" ></text>
</g>
<g >
<title>java/util/Collections$UnmodifiableMap.get (157 samples, 0.02%; 0.00%)</title><rect x="444.6" y="5781" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="447.63" y="5791.5" ></text>
</g>
<g >
<title>java/lang/String.hashCode (72 samples, 0.01%; 0.00%)</title><rect x="1474.7" y="5861" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1477.69" y="5871.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.execute (3,588 samples, 0.40%; 0.00%)</title><rect x="1710.8" y="5333" width="9.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1713.79" y="5343.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/AbstractRunnable.run (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="1061" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="1071.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/rest/SecurityRestFilter.handleRequest (3,069 samples, 0.34%; 0.00%)</title><rect x="274.6" y="5253" width="8.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.65" y="5263.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Pipeline.lambda$execute$0 (564 samples, 0.06%; 0.00%)</title><rect x="1535.1" y="4933" width="1.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1538.09" y="4943.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.done (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="1957" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="1967.5" ></text>
</g>
<g >
<title>java/lang/Throwable.fillInStackTrace (224 samples, 0.02%; 0.00%)</title><rect x="1718.3" y="4709" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1721.29" y="4719.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/Tokenizer.correctOffset (53 samples, 0.01%; +0.00%)</title><rect x="1420.0" y="5797" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1422.97" y="5807.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeFormatterBuilder$NumberPrinterParser.setValue (95 samples, 0.01%; 0.00%)</title><rect x="1383.1" y="5653" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1386.07" y="5663.5" ></text>
</g>
<g >
<title>java/util/HashMap$HashIterator.nextNode (51 samples, 0.01%; +0.01%)</title><rect x="1712.8" y="4389" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1715.76" y="4399.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/RateLimitedIndexOutput.getFilePointer (161 samples, 0.02%; -0.00%)</title><rect x="2330.1" y="6021" width="0.5" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2333.13" y="6031.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ConditionalProcessor$$Lambda$6085.0x00000008019e2fa0.accept (434 samples, 0.05%; 0.00%)</title><rect x="1532.1" y="5669" width="1.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.10" y="5679.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/WriteRequest$RefreshPolicy.readFrom (42 samples, 0.00%; 0.00%)</title><rect x="252.8" y="5317" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="255.81" y="5327.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/BulkShardRequest.indices (66 samples, 0.01%; 0.00%)</title><rect x="1621.9" y="4917" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1624.92" y="4927.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.field (65 samples, 0.01%; 0.00%)</title><rect x="1701.5" y="5221" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1704.55" y="5231.5" ></text>
</g>
<g >
<title>CodeCache::find_blob(void*) (66 samples, 0.01%; +0.00%)</title><rect x="1708.6" y="5413" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1711.59" y="5423.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser._finishAndReturnString (169 samples, 0.02%; +0.01%)</title><rect x="1209.5" y="5685" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1212.54" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/common/DateFormat$5.getFunction (503 samples, 0.06%; +0.00%)</title><rect x="1644.3" y="5605" width="1.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1647.30" y="5615.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.renderTemplate (217 samples, 0.02%; 0.00%)</title><rect x="1744.6" y="4661" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1747.64" y="4671.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser._skipWS (486 samples, 0.05%; +0.05%)</title><rect x="1146.0" y="5861" width="1.4" height="15.0" fill="rgb(255,206,206)" rx="2" ry="2" />
<text x="1149.04" y="5871.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/BufferedIndexInput.readBytes (51 samples, 0.01%; 0.00%)</title><rect x="619.9" y="5733" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="622.95" y="5743.5" ></text>
</g>
<g >
<title>/lib/x86_64-linux-gnu/libz.so.1.2.11 (502 samples, 0.06%; +0.06%)</title><rect x="1733.8" y="53" width="1.3" height="15.0" fill="rgb(255,206,206)" rx="2" ry="2" />
<text x="1736.79" y="63.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/DupDetector.isDup (72 samples, 0.01%; 0.00%)</title><rect x="1474.7" y="5925" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1477.69" y="5935.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/IntroSorter.quicksort (229 samples, 0.03%; 0.00%)</title><rect x="614.2" y="5653" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="617.23" y="5663.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.sort (61 samples, 0.01%; 0.00%)</title><rect x="328.5" y="5717" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="331.52" y="5727.5" ></text>
</g>
<g >
<title>__ext4_journal_start_sb (83 samples, 0.01%; +0.00%)</title><rect x="510.7" y="5557" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="513.69" y="5567.5" ></text>
</g>
<g >
<title>java/util/zip/Deflater.deflateBytesBytes (43 samples, 0.00%; 0.00%)</title><rect x="285.4" y="4789" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="288.38" y="4799.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/interceptor/FieldAndDocumentLevelSecurityRequestInterceptor.intercept (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="2789" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="2799.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/transport/SecurityServerTransportInterceptor.access$300 (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="949" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="959.5" ></text>
</g>
<g >
<title>java/util/HashMap.putVal (73 samples, 0.01%; +0.00%)</title><rect x="1666.7" y="5445" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1669.68" y="5455.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/BulkRequestParser.sliceTrimmingCarriageReturn (198 samples, 0.02%; +0.01%)</title><rect x="280.8" y="4149" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="283.81" y="4159.5" ></text>
</g>
<g >
<title>java/util/Collections$UnmodifiableMap.get (780 samples, 0.09%; 0.00%)</title><rect x="1237.4" y="5685" width="2.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1240.40" y="5695.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.computeCommonPrefixLengthAndBuildHistogram (100 samples, 0.01%; +0.00%)</title><rect x="564.0" y="5653" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="566.97" y="5663.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/DataInput.readVInt (132 samples, 0.01%; -0.00%)</title><rect x="2367.7" y="5941" width="0.4" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2370.73" y="5951.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.onResponse (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="3093" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="3103.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/settings/Setting.exists (62 samples, 0.01%; 0.00%)</title><rect x="275.8" y="2053" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="278.81" y="2063.5" ></text>
</g>
<g >
<title>java/util/HashMap.&lt;init&gt; (42 samples, 0.00%; 0.00%)</title><rect x="1765.1" y="5781" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1768.12" y="5791.5" ></text>
</g>
<g >
<title>ext4_dirty_inode (59 samples, 0.01%; 0.00%)</title><rect x="2171.9" y="5541" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2174.87" y="5551.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/LongValues$1.get (60 samples, 0.01%; +0.00%)</title><rect x="2030.6" y="5989" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2033.56" y="5999.5" ></text>
</g>
<g >
<title>java/util/HashMap.putMapEntries (192 samples, 0.02%; +0.00%)</title><rect x="1665.4" y="5445" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1668.41" y="5455.5" ></text>
</g>
<g >
<title>java/security/AccessController.checkPermission (4,348 samples, 0.48%; +0.00%)</title><rect x="1833.5" y="5925" width="11.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1836.53" y="5935.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator.access$000 (936 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="5077" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.82" y="5087.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene80/Lucene80DocValuesConsumer.addSortedSetField (5,830 samples, 0.65%; +0.03%)</title><rect x="542.0" y="5765" width="15.7" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="544.96" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$$Lambda$4893.0x00000008017ed008.accept (11,957 samples, 1.32%; 0.00%)</title><rect x="1589.5" y="3013" width="32.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.49" y="3023.5" >or..</text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamOutput.write (151 samples, 0.02%; 0.00%)</title><rect x="415.1" y="5877" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="418.11" y="5887.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator$$Lambda$4849.0x00000008016b6c78.accept (215 samples, 0.02%; 0.00%)</title><rect x="1627.8" y="3877" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="3887.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/geo/GeoUtils.parseGeoPoint (91 samples, 0.01%; +0.00%)</title><rect x="449.6" y="5653" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="452.59" y="5663.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (798 samples, 0.09%; 0.00%)</title><rect x="2176.3" y="5829" width="2.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2179.29" y="5839.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/TransportService$8.doRun (286 samples, 0.03%; 0.00%)</title><rect x="1846.9" y="6165" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1849.85" y="6175.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/collect/CopyOnWriteHashMap.get (212 samples, 0.02%; 0.00%)</title><rect x="426.9" y="5861" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="429.87" y="5871.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/bkd/MutablePointsReaderUtils$1.byteAt (44 samples, 0.00%; 0.00%)</title><rect x="1867.1" y="5557" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1870.13" y="5567.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/action/filter/SecurityActionFilter.lambda$applyInternal$4 (215 samples, 0.02%; 0.00%)</title><rect x="1627.8" y="3813" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="3823.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/AbstractRunnable.run (486 samples, 0.05%; 0.00%)</title><rect x="274.8" y="2245" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.84" y="2255.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/LockValidatingDirectoryWrapper.sync (147 samples, 0.02%; 0.00%)</title><rect x="1456.3" y="6037" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1459.34" y="6047.5" ></text>
</g>
<g >
<title>java/util/HashMap$EntryIterator.next (52 samples, 0.01%; +0.00%)</title><rect x="1658.3" y="5189" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1661.31" y="5199.5" ></text>
</g>
<g >
<title>sock_sendmsg (95 samples, 0.01%; 0.00%)</title><rect x="307.1" y="5509" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="310.12" y="5519.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="3413" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="3423.5" ></text>
</g>
<g >
<title>java/util/WeakHashMap.get (39 samples, 0.00%; +0.00%)</title><rect x="1741.0" y="3909" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1744.02" y="3919.5" ></text>
</g>
<g >
<title>java/security/AccessController.checkPermission (53 samples, 0.01%; 0.00%)</title><rect x="1847.3" y="5077" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.33" y="5087.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.buildIndicesAccessControl (306 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="4325" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="4335.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (1,758 samples, 0.19%; 0.00%)</title><rect x="1625.6" y="4581" width="4.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.58" y="4591.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene80/Lucene80DocValuesConsumer.addSortedNumericField (99 samples, 0.01%; 0.00%)</title><rect x="526.3" y="5765" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="529.34" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/script/mustache/CustomMustacheFactory$JsonEscapeEncoder.encode (313 samples, 0.03%; +0.00%)</title><rect x="1832.4" y="5781" width="0.9" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1835.44" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/TransportReplicationAction.handleReplicaRequest (213 samples, 0.02%; 0.00%)</title><rect x="271.7" y="3253" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.75" y="3263.5" ></text>
</g>
<g >
<title>__x64_sys_write (400 samples, 0.04%; 0.00%)</title><rect x="620.4" y="5493" width="1.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="623.38" y="5503.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/shard/IndexShard$5.getWrappedAnalyzer (77 samples, 0.01%; 0.00%)</title><rect x="786.4" y="5797" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="789.41" y="5807.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/ObjectMapper.getMapper (66 samples, 0.01%; 0.00%)</title><rect x="1201.7" y="5813" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1204.70" y="5823.5" ></text>
</g>
<g >
<title>G1EvacuateRegionsTask::evacuate_live_objects(G1ParScanThreadState*, unsigned int) (507 samples, 0.06%; 0.00%)</title><rect x="2443.9" y="6165" width="1.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2446.85" y="6175.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.radixSort (38 samples, 0.00%; 0.00%)</title><rect x="559.2" y="5557" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="562.18" y="5567.5" ></text>
</g>
<g >
<title>sun/security/provider/PolicySpiFile.engineImplies (1,346 samples, 0.15%; 0.00%)</title><rect x="1834.4" y="5829" width="3.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1837.44" y="5839.5" ></text>
</g>
<g >
<title>frame::sender(RegisterMap*) const (58 samples, 0.01%; +0.00%)</title><rect x="1718.7" y="4629" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1721.73" y="4639.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/tokenattributes/CharTermAttributeImpl.copyBuffer (38 samples, 0.00%; 0.00%)</title><rect x="850.0" y="5781" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="853.02" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestService.lambda$executePipelines$2 (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="5221" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="5231.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/ParseContext$InternalParseContext.getMetadataMapper (356 samples, 0.04%; 0.00%)</title><rect x="453.7" y="5733" width="0.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="456.66" y="5743.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/blocktree/BlockTreeTermsWriter.write (95 samples, 0.01%; -0.00%)</title><rect x="1456.8" y="5845" width="0.3" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1459.84" y="5855.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.notifyListener (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="1813" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="1823.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/packed/DirectReader$DirectPackedReader8.get (101 samples, 0.01%; -0.00%)</title><rect x="2005.8" y="5957" width="0.3" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2008.84" y="5967.5" ></text>
</g>
<g >
<title>java/util/HashMap.containsKey (60 samples, 0.01%; 0.00%)</title><rect x="873.1" y="5717" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="876.12" y="5727.5" ></text>
</g>
<g >
<title>java/util/HashMap$TreeNode.getTreeNode (265 samples, 0.03%; +0.03%)</title><rect x="1352.7" y="5701" width="0.7" height="15.0" fill="rgb(255,207,207)" rx="2" ry="2" />
<text x="1355.67" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/TaskTransportChannel.sendResponse (400 samples, 0.04%; 0.00%)</title><rect x="285.1" y="5205" width="1.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="288.07" y="5215.5" ></text>
</g>
<g >
<title>org/elasticsearch/bootstrap/ESPolicy.implies (132 samples, 0.01%; 0.00%)</title><rect x="1740.9" y="4005" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1743.86" y="4015.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestService$$Lambda$6065.0x00000008019e1ac0.accept (44 samples, 0.00%; 0.00%)</title><rect x="1531.4" y="4981" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1534.44" y="4991.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (938 samples, 0.10%; 0.00%)</title><rect x="1693.1" y="5557" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1696.13" y="5567.5" ></text>
</g>
<g >
<title>vfs_read (59 samples, 0.01%; 0.00%)</title><rect x="2174.6" y="5845" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2177.61" y="5855.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$1.doRun (931 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="2357" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.83" y="2367.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/IndexWriter.createCompoundFile (343 samples, 0.04%; 0.00%)</title><rect x="1893.8" y="5781" width="1.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1896.82" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.notifyListener (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="2389" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="2399.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeParseContext.setParsedField (418 samples, 0.05%; 0.00%)</title><rect x="1401.0" y="5669" width="1.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1404.01" y="5679.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.onResponse (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="1589" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="1599.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.buildHistogram (94 samples, 0.01%; 0.00%)</title><rect x="557.8" y="5701" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="560.85" y="5711.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.parseMediumName (453 samples, 0.05%; 0.00%)</title><rect x="1225.9" y="5717" width="1.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1228.87" y="5727.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/BytesRef.equals (200 samples, 0.02%; 0.00%)</title><rect x="2045.0" y="6037" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2048.04" y="6047.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.map (3,780 samples, 0.42%; +0.00%)</title><rect x="1649.4" y="5269" width="10.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1652.37" y="5279.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/smile/SmileXContent.createGenerator (64 samples, 0.01%; +0.01%)</title><rect x="1587.0" y="5781" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1590.01" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/IndexService.access$200 (17,735 samples, 1.96%; 0.00%)</title><rect x="1847.6" y="6149" width="48.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.64" y="6159.5" >org/..</text>
</g>
<g >
<title>org/apache/lucene/store/BufferedIndexInput.readBytes (91 samples, 0.01%; 0.00%)</title><rect x="2174.5" y="6085" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2177.55" y="6095.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/json/JsonXContentGenerator.writeEndObject (68 samples, 0.01%; +0.01%)</title><rect x="1572.1" y="5781" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1575.09" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine$$Lambda$5635.0x0000000801827740.accept (49 samples, 0.01%; 0.00%)</title><rect x="271.6" y="4405" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.57" y="4415.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (716 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="2837" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.77" y="2847.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/DataOutput.writeSignedVLong (52 samples, 0.01%; +0.00%)</title><rect x="2389.9" y="5989" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2392.90" y="5999.5" ></text>
</g>
<g >
<title>org/apache/lucene/search/SortedSetSelector$MinValue.setOrd (515 samples, 0.06%; 0.00%)</title><rect x="1858.2" y="5685" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1861.25" y="5695.5" ></text>
</g>
<g >
<title>vtable stub (1,645 samples, 0.18%; +0.18%)</title><rect x="865.6" y="5797" width="4.5" height="15.0" fill="rgb(255,197,197)" rx="2" ry="2" />
<text x="868.64" y="5807.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ConditionalProcessor.lambda$execute$1 (5,916 samples, 0.66%; 0.00%)</title><rect x="1724.3" y="4149" width="16.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1727.34" y="4159.5" ></text>
</g>
<g >
<title>java/lang/String.split (39 samples, 0.00%; +0.00%)</title><rect x="1667.5" y="5637" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1670.49" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/store/CompositeRolesStore.getRoles (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="3301" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="3311.5" ></text>
</g>
<g >
<title>io/netty/channel/AbstractChannelHandlerContext.invokeChannelRead (20,950 samples, 2.32%; -0.00%)</title><rect x="226.6" y="5813" width="56.6" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="229.57" y="5823.5" >io/ne..</text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene84/PForUtil.encode (41 samples, 0.00%; +0.00%)</title><rect x="533.9" y="5717" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="536.85" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="3557" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="3567.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (7,794 samples, 0.86%; +0.00%)</title><rect x="1722.5" y="4549" width="21.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1725.54" y="4559.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="2501" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="2511.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ConditionalProcessor.execute (1,710 samples, 0.19%; 0.00%)</title><rect x="1535.1" y="5973" width="4.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1538.07" y="5983.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/CollectionUtils.lambda$convert$1 (45 samples, 0.00%; +0.00%)</title><rect x="1529.6" y="5029" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1532.57" y="5039.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/PointValuesWriter.flush (3,005 samples, 0.33%; 0.00%)</title><rect x="559.6" y="5797" width="8.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="562.58" y="5807.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/geoip/DatabaseReaderLazyLoader.lambda$getResponse$1 (134 samples, 0.01%; 0.00%)</title><rect x="1537.4" y="5125" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1540.37" y="5135.5" ></text>
</g>
<g >
<title>java/util/ArrayList.forEach (11,957 samples, 1.32%; 0.00%)</title><rect x="1589.5" y="3029" width="32.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.49" y="3039.5" >ja..</text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.lambda$done$0 (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="2757" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="2767.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/BytesRefHash$1.get (43 samples, 0.00%; +0.00%)</title><rect x="616.5" y="5589" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="619.48" y="5599.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/StandardDirectoryReader.doOpenIfChanged (200 samples, 0.02%; 0.00%)</title><rect x="1456.7" y="6005" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1459.74" y="6015.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/support/AbstractXContentParser.map (21,323 samples, 2.36%; 0.00%)</title><rect x="1461.5" y="6053" width="57.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1464.52" y="6063.5" >org/el..</text>
</g>
<g >
<title>org/elasticsearch/ingest/common/RemoveProcessor$$Lambda$6082.0x0000000801856748.accept (40 samples, 0.00%; 0.00%)</title><rect x="1720.4" y="5253" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1723.39" y="5263.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (275 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="4165" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="4175.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.builder (132 samples, 0.01%; 0.00%)</title><rect x="1586.8" y="5829" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1589.83" y="5839.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/translog/Translog$Index.access$300 (520 samples, 0.06%; 0.00%)</title><rect x="415.1" y="5941" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="418.10" y="5951.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/shard/IndexShard.applyIndexOperationOnPrimary (67,189 samples, 7.44%; +0.00%)</title><rect x="326.5" y="6053" width="181.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="329.48" y="6063.5" >org/elasticsearch/index..</text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator.lambda$consumeToken$16 (3,058 samples, 0.34%; 0.00%)</title><rect x="274.7" y="4485" width="8.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.66" y="4495.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/MMapDirectory.lambda$newBufferCleaner$1 (57 samples, 0.01%; 0.00%)</title><rect x="1893.8" y="5685" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1896.84" y="5695.5" ></text>
</g>
<g >
<title>do_syscall_64 (115 samples, 0.01%; 0.00%)</title><rect x="325.6" y="5733" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="328.62" y="5743.5" ></text>
</g>
<g >
<title>javax/crypto/Cipher.doFinal (189 samples, 0.02%; 0.00%)</title><rect x="307.7" y="5733" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="310.71" y="5743.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/BulkItemResponse.writeThin (293 samples, 0.03%; 0.00%)</title><rect x="285.1" y="4981" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="288.13" y="4991.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeFormatterBuilder$NumberPrinterParser.setValue (273 samples, 0.03%; 0.00%)</title><rect x="1406.5" y="5701" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1409.50" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/cluster/routing/Murmur3HashFunction.hash (98 samples, 0.01%; +0.01%)</title><rect x="1622.3" y="5685" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1625.28" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentSubParser.doubleValue (48 samples, 0.01%; 0.00%)</title><rect x="449.6" y="5637" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="452.62" y="5647.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/OutputStreamIndexOutput.writeBytes (177 samples, 0.02%; 0.00%)</title><rect x="2405.4" y="5941" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2408.45" y="5951.5" ></text>
</g>
<g >
<title>org/apache/lucene/document/Field.tokenStream (4,892 samples, 0.54%; +0.02%)</title><rect x="872.3" y="5813" width="13.2" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="875.26" y="5823.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (302 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="2629" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="2639.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene84/ForUtil.encode (1,149 samples, 0.13%; +0.01%)</title><rect x="582.9" y="5701" width="3.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="585.88" y="5711.5" ></text>
</g>
<g >
<title>java/io/BufferedOutputStream.write (134 samples, 0.01%; 0.00%)</title><rect x="1694.6" y="1525" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.63" y="1535.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/BulkItemRequest.writeThin (5,453 samples, 0.60%; 0.00%)</title><rect x="308.6" y="5509" width="14.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="311.64" y="5519.5" ></text>
</g>
<g >
<title>org/elasticsearch/core/internal/io/IOUtils.close (58 samples, 0.01%; 0.00%)</title><rect x="414.6" y="5957" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="417.59" y="5967.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (597 samples, 0.07%; 0.00%)</title><rect x="1722.6" y="4421" width="1.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1725.61" y="4431.5" ></text>
</g>
<g >
<title>java/util/ArrayList.add (56 samples, 0.01%; 0.00%)</title><rect x="2415.6" y="5877" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2418.58" y="5887.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/time/JavaDateFormatter.combined (52 samples, 0.01%; +0.00%)</title><rect x="1710.5" y="5653" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1713.54" y="5663.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/KeywordFieldMapper.parseCreateField (5,531 samples, 0.61%; +0.03%)</title><rect x="477.5" y="5797" width="15.0" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="480.55" y="5807.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/MMapDirectory$$Lambda$3159.0x00000008013da5a8.run (57 samples, 0.01%; 0.00%)</title><rect x="1893.8" y="5637" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1896.84" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/CollectionUtils.lambda$convert$1 (299 samples, 0.03%; +0.02%)</title><rect x="1770.4" y="5813" width="0.8" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1773.42" y="5823.5" ></text>
</g>
<g >
<title>com/sun/crypto/provider/GCTR.doFinal (108 samples, 0.01%; 0.00%)</title><rect x="307.7" y="5589" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="310.72" y="5599.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.authorizeIndexAction (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="3525" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="3535.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser._nextAfterName (134 samples, 0.01%; -0.03%)</title><rect x="421.9" y="5877" width="0.4" height="15.0" fill="rgb(207,207,255)" rx="2" ry="2" />
<text x="424.93" y="5887.5" ></text>
</g>
<g >
<title>java/util/HashMap.get (79 samples, 0.01%; 0.00%)</title><rect x="1583.5" y="5733" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1586.52" y="5743.5" ></text>
</g>
<g >
<title>java/util/Arrays.fill (59 samples, 0.01%; +0.00%)</title><rect x="2414.9" y="5957" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2417.93" y="5967.5" ></text>
</g>
<g >
<title>java_lang_Throwable::fill_in_stack_trace(Handle, methodHandle const&amp;, Thread*) (88 samples, 0.01%; +0.00%)</title><rect x="1533.4" y="5461" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1536.36" y="5471.5" ></text>
</g>
<g >
<title>java/nio/channels/Channels.writeFullyImpl (309 samples, 0.03%; +0.00%)</title><rect x="2171.4" y="5877" width="0.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2174.36" y="5887.5" ></text>
</g>
<g >
<title>java/util/stream/AbstractPipeline.wrapAndCopyInto (180 samples, 0.02%; -0.01%)</title><rect x="504.1" y="5845" width="0.5" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="507.06" y="5855.5" ></text>
</g>
<g >
<title>java/security/Permissions.implies (556 samples, 0.06%; 0.00%)</title><rect x="1834.4" y="5797" width="1.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1837.44" y="5807.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (66 samples, 0.01%; 0.00%)</title><rect x="2174.6" y="5909" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2177.60" y="5919.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene80/Lucene80DocValuesProducer$4.longValue (246 samples, 0.03%; -0.00%)</title><rect x="1911.4" y="6005" width="0.6" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1914.37" y="6015.5" ></text>
</g>
<g >
<title>java/lang/StringUTF16.newString (165 samples, 0.02%; +0.01%)</title><rect x="1207.2" y="5653" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1210.16" y="5663.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/compress/CompressorFactory.compressor (69 samples, 0.01%; 0.00%)</title><rect x="418.3" y="5941" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="421.33" y="5951.5" ></text>
</g>
<g >
<title>vtable stub (59 samples, 0.01%; +0.01%)</title><rect x="1363.9" y="5845" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1366.94" y="5855.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeFormatter.parseUnresolved0 (140 samples, 0.02%; +0.00%)</title><rect x="1752.6" y="4997" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1755.64" y="5007.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$CachingAsyncSupplier.lambda$getAsync$0 (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="4053" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="4063.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeFormatter.formatTo (68 samples, 0.01%; 0.00%)</title><rect x="1752.2" y="5061" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1755.22" y="5071.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/StepListener.innerOnResponse (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="965" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="975.5" ></text>
</g>
<g >
<title>ext4_file_write_iter (453 samples, 0.05%; 0.00%)</title><rect x="324.4" y="5557" width="1.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="327.37" y="5567.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundHandler.internalSend (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="837" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="847.5" ></text>
</g>
<g >
<title>[unknown] (55 samples, 0.01%; 0.00%)</title><rect x="1715.0" y="805" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1718.00" y="815.5" ></text>
</g>
<g >
<title>org/joni/StackMachine.&lt;init&gt; (107 samples, 0.01%; 0.00%)</title><rect x="1824.7" y="5925" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1827.65" y="5935.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamOutput.writeVInt (117 samples, 0.01%; +0.01%)</title><rect x="1115.0" y="5893" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1117.97" y="5903.5" ></text>
</g>
<g >
<title>sun/nio/ch/FileDispatcherImpl.pread (42 samples, 0.00%; 0.00%)</title><rect x="620.0" y="5637" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="622.97" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.notifyListener (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="2869" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="2879.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/OutputStreamIndexOutput.writeByte (154 samples, 0.02%; 0.00%)</title><rect x="1986.4" y="5957" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1989.44" y="5967.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$$Lambda$4893.0x00000008017ed008.accept (931 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="2693" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.83" y="2703.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/InputStreamStreamInput.readByte (179 samples, 0.02%; +0.00%)</title><rect x="257.5" y="5285" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="260.52" y="5295.5" ></text>
</g>
<g >
<title>javax/crypto/CipherSpi.engineDoFinal (189 samples, 0.02%; -0.00%)</title><rect x="307.7" y="5717" width="0.5" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="310.71" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/ReplicationOperation$3.tryAction (5,713 samples, 0.63%; 0.00%)</title><rect x="308.6" y="5893" width="15.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="311.64" y="5903.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/TransportAction.execute (275 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="4373" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="4383.5" ></text>
</g>
<g >
<title>java/util/Collections$SynchronizedMap.get (69 samples, 0.01%; 0.00%)</title><rect x="1749.4" y="4613" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1752.38" y="4623.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="2069" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="2079.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.done (38 samples, 0.00%; 0.00%)</title><rect x="271.6" y="3717" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.58" y="3727.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/AbstractRunnable.run (213 samples, 0.02%; 0.00%)</title><rect x="271.7" y="3301" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.75" y="3311.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/action/filter/SecurityActionFilter.lambda$applyInternal$3 (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="2053" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="2063.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/packed/DirectWriter.add (402 samples, 0.04%; 0.00%)</title><rect x="2041.6" y="6053" width="1.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2044.56" y="6063.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.authorizeBulkItems (715 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="2629" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="2639.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.notifyListener (302 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="2693" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="2703.5" ></text>
</g>
<g >
<title>org/elasticsearch/bootstrap/ESPolicy.implies (218 samples, 0.02%; 0.00%)</title><rect x="1663.3" y="5285" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1666.28" y="5295.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene80/Lucene80DocValuesProducer$DenseNumericDocValues.nextDoc (77 samples, 0.01%; +0.01%)</title><rect x="1909.9" y="5989" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1912.86" y="5999.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/MultiTermsEnum$TermMergeQueue.lessThan (779 samples, 0.09%; 0.00%)</title><rect x="2438.7" y="5973" width="2.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2441.72" y="5983.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/ContextPreservingActionListener.onResponse (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="3621" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="3631.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$3.onResponse (486 samples, 0.05%; 0.00%)</title><rect x="274.8" y="2213" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.84" y="2223.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/TransportService$ContextRestoreResponseHandler.handleResponse (599 samples, 0.07%; 0.00%)</title><rect x="284.5" y="5333" width="1.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="287.53" y="5343.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8JsonGenerator.writeFieldName (54 samples, 0.01%; 0.00%)</title><rect x="286.7" y="5093" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="289.65" y="5103.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.introSort (144 samples, 0.02%; 0.00%)</title><rect x="1890.8" y="5669" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1893.84" y="5679.5" ></text>
</g>
<g >
<title>native_flush_tlb_others (53 samples, 0.01%; 0.00%)</title><rect x="1893.8" y="5301" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1896.84" y="5311.5" ></text>
</g>
<g >
<title>do_syscall_64 (59 samples, 0.01%; 0.00%)</title><rect x="2250.4" y="5653" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2253.41" y="5663.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/bytes/ReleasableBytesReference.length (37 samples, 0.00%; +0.00%)</title><rect x="269.9" y="5269" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="272.93" y="5279.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamOutput.writeArray (274 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="1925" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="1935.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.done (715 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="1445" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="1455.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.resolveAuthorizationInfo (275 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="4085" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="4095.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/common/SetProcessor.execute (76 samples, 0.01%; 0.00%)</title><rect x="1723.5" y="3893" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.55" y="3903.5" ></text>
</g>
<g >
<title>java/util/zip/Deflater.deflateBytesBytes (36,546 samples, 4.05%; -0.00%)</title><rect x="2072.5" y="6005" width="98.8" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2075.52" y="6015.5" >java/util/z..</text>
</g>
<g >
<title>java/time/LocalDateTime.ofEpochSecond (110 samples, 0.01%; 0.00%)</title><rect x="1520.2" y="6021" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1523.19" y="6031.5" ></text>
</g>
<g >
<title>[unknown] (2,158 samples, 0.24%; 0.00%)</title><rect x="510.4" y="5765" width="5.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="513.37" y="5775.5" ></text>
</g>
<g >
<title>sun/security/ssl/SSLEngineImpl.unwrap (3,132 samples, 0.35%; 0.00%)</title><rect x="293.0" y="5877" width="8.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="295.95" y="5887.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorizeBulkItems$19 (49 samples, 0.01%; 0.00%)</title><rect x="271.6" y="4357" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.57" y="4367.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/TokenStream.end (286 samples, 0.03%; 0.00%)</title><rect x="461.4" y="5685" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="464.39" y="5695.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/blocktree/BlockTreeTermsWriter$TermsWriter.pushTerm (1,343 samples, 0.15%; +0.00%)</title><rect x="1885.0" y="5717" width="3.7" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1888.03" y="5727.5" ></text>
</g>
<g >
<title>java/lang/String.hashCode (101 samples, 0.01%; +0.00%)</title><rect x="1520.9" y="6053" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1523.92" y="6063.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="2677" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="2687.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/TextFieldMapper.parseCreateField (87 samples, 0.01%; -0.00%)</title><rect x="455.2" y="5701" width="0.3" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="458.22" y="5711.5" ></text>
</g>
<g >
<title>java/util/Arrays.copyOf (59 samples, 0.01%; +0.00%)</title><rect x="1508.5" y="5877" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1511.50" y="5887.5" ></text>
</g>
<g >
<title>java/util/ArrayList$ArrayListSpliterator.forEachRemaining (1,414 samples, 0.16%; +0.00%)</title><rect x="1679.6" y="5557" width="3.9" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1682.64" y="5567.5" ></text>
</g>
<g >
<title>java/lang/invoke/Invokers$Holder.linkToTargetMethod (76 samples, 0.01%; 0.00%)</title><rect x="1760.7" y="5493" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1763.69" y="5503.5" ></text>
</g>
<g >
<title>java/util/HashMap$EntrySet.iterator (67 samples, 0.01%; +0.00%)</title><rect x="1729.6" y="3669" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1732.60" y="3679.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (302 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="3157" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="3167.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/time/JavaDateFormatter.doParse (48 samples, 0.01%; 0.00%)</title><rect x="1539.1" y="5781" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1542.05" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator.finishAuthentication (3,058 samples, 0.34%; 0.00%)</title><rect x="274.7" y="4453" width="8.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.66" y="4463.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5976.0x0000000801983068.getAsync (11,983 samples, 1.33%; 0.00%)</title><rect x="1589.4" y="4485" width="32.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.42" y="4495.5" >or..</text>
</g>
<g >
<title>org/elasticsearch/script/mustache/MustacheScriptEngine$MustacheExecutableScript.execute (727 samples, 0.08%; 0.00%)</title><rect x="1738.3" y="3941" width="2.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1741.29" y="3951.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/packed/BulkOperationPacked.encode (94 samples, 0.01%; +0.00%)</title><rect x="1859.9" y="5669" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1862.95" y="5679.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator.lambda$authenticateAsync$2 (724 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="3429" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.77" y="3439.5" ></text>
</g>
<g >
<title>generic_perform_write (134 samples, 0.01%; -0.00%)</title><rect x="2304.9" y="5525" width="0.3" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2307.86" y="5535.5" ></text>
</g>
<g >
<title>java/util/stream/AbstractPipeline.copyInto (189 samples, 0.02%; 0.00%)</title><rect x="1720.8" y="5285" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1723.84" y="5295.5" ></text>
</g>
<g >
<title>java/lang/SecurityManager.checkPermission (100 samples, 0.01%; 0.00%)</title><rect x="1531.0" y="5269" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1534.00" y="5279.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/translog/BufferedChecksumStreamOutput.writeByte (59 samples, 0.01%; 0.00%)</title><rect x="1114.6" y="5861" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1117.58" y="5871.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundHandler$MessageSerializer.get (45 samples, 0.00%; 0.00%)</title><rect x="1629.8" y="805" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="815.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/TransportReplicationAction.doExecute (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="1477" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="1487.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/collect/CopyOnWriteHashMap$InnerNode.get (323 samples, 0.04%; 0.00%)</title><rect x="470.5" y="5765" width="0.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="473.54" y="5775.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeFormatterBuilder$CompositePrinterParser.parse (162 samples, 0.02%; -0.00%)</title><rect x="473.9" y="5621" width="0.4" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="476.87" y="5631.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/blocktree/BlockTreeTermsWriter$TermsWriter.writeBlocks (216 samples, 0.02%; -0.00%)</title><rect x="1870.8" y="5717" width="0.6" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1873.77" y="5727.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene87/DeflateWithPresetDictCompressionMode$DeflateWithPresetDictCompressor.compress (165 samples, 0.02%; 0.00%)</title><rect x="2067.7" y="6069" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2070.73" y="6079.5" ></text>
</g>
<g >
<title>java/lang/AbstractStringBuilder.setLength (921 samples, 0.10%; +0.05%)</title><rect x="1161.4" y="5829" width="2.5" height="15.0" fill="rgb(255,206,206)" rx="2" ry="2" />
<text x="1164.42" y="5839.5" ></text>
</g>
<g >
<title>frame::sender(RegisterMap*) const (47 samples, 0.01%; +0.00%)</title><rect x="1717.0" y="4565" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1719.97" y="4575.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/TokenFilter.close (169 samples, 0.02%; +0.00%)</title><rect x="844.1" y="5797" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="847.09" y="5807.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/SingletonSortedNumericDocValues.nextDoc (375 samples, 0.04%; -0.01%)</title><rect x="1904.4" y="6037" width="1.0" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1907.38" y="6047.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (44 samples, 0.00%; -0.00%)</title><rect x="1978.0" y="5797" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1980.96" y="5807.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/network/InetAddresses.textToNumericFormatV6 (93 samples, 0.01%; +0.00%)</title><rect x="1208.3" y="5701" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1211.32" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (48 samples, 0.01%; 0.00%)</title><rect x="271.6" y="4197" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.57" y="4207.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5969.0x0000000801981ee8.accept (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="3269" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="3279.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/TransportReplicationAction.runReroutePhase (11,955 samples, 1.32%; +0.00%)</title><rect x="1589.5" y="2821" width="32.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1592.50" y="2831.5" >or..</text>
</g>
<g >
<title>java/lang/IllegalArgumentException.&lt;init&gt; (178 samples, 0.02%; 0.00%)</title><rect x="1705.2" y="5621" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1708.17" y="5631.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeFormatterBuilder$CompositePrinterParser.parse (193 samples, 0.02%; 0.00%)</title><rect x="1641.1" y="5509" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1644.13" y="5519.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (4,124 samples, 0.46%; +0.00%)</title><rect x="1710.8" y="5621" width="11.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1713.77" y="5631.5" ></text>
</g>
<g >
<title>com/github/mustachejava/codes/DefaultCode.execute (1,427 samples, 0.16%; 0.00%)</title><rect x="1829.6" y="5861" width="3.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1832.61" y="5871.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ConditionalProcessor.lambda$execute$1 (108 samples, 0.01%; 0.00%)</title><rect x="1531.4" y="5365" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1534.44" y="5375.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8JsonGenerator._writeStringSegment (45 samples, 0.00%; +0.00%)</title><rect x="284.9" y="4773" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="287.92" y="4783.5" ></text>
</g>
<g >
<title>java/util/Arrays.sort (113 samples, 0.01%; 0.00%)</title><rect x="573.5" y="5701" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="576.49" y="5711.5" ></text>
</g>
<g >
<title>java/util/WeakHashMap.get (67 samples, 0.01%; +0.01%)</title><rect x="1663.6" y="5189" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1666.55" y="5199.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/UnicodeUtil.UTF16toUTF8 (98 samples, 0.01%; +0.01%)</title><rect x="1209.2" y="5701" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1212.18" y="5711.5" ></text>
</g>
<g >
<title>pread64 (294 samples, 0.03%; +0.00%)</title><rect x="2049.2" y="5845" width="0.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2052.25" y="5855.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/MappingLookup.indexAnalyzer (108 samples, 0.01%; 0.00%)</title><rect x="483.2" y="5701" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="486.25" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundHandler$MessageSerializer.get (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="1909" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="1919.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorizeAction$9 (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="2661" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="2671.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/blocktree/BlockTreeTermsWriter$PendingBlock.compileIndex (105 samples, 0.01%; 0.00%)</title><rect x="569.7" y="5733" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="572.73" y="5743.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (64 samples, 0.01%; +0.01%)</title><rect x="1207.4" y="5637" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1210.43" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/bytes/BytesReferenceStreamInput.readByte (59 samples, 0.01%; 0.00%)</title><rect x="266.1" y="5301" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="269.10" y="5311.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/DupDetector.isDup (97 samples, 0.01%; 0.00%)</title><rect x="1171.8" y="5781" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1174.77" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5648.0x0000000801980b40.accept (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="2661" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="2671.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (915 samples, 0.10%; 0.00%)</title><rect x="1693.1" y="5445" width="2.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1696.14" y="5455.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (654 samples, 0.07%; 0.00%)</title><rect x="1535.1" y="5109" width="1.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1538.09" y="5119.5" ></text>
</g>
<g >
<title>java/util/HashMap$HashIterator.&lt;init&gt; (56 samples, 0.01%; +0.01%)</title><rect x="1729.6" y="3637" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1732.63" y="3647.5" ></text>
</g>
<g >
<title>java/util/Base64$Decoder.decode0 (133 samples, 0.01%; +0.01%)</title><rect x="1452.9" y="5925" width="0.4" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1455.92" y="5935.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5648.0x0000000801980b40.accept (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="2789" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="2799.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer._findSecondary (41 samples, 0.00%; +0.00%)</title><rect x="1174.3" y="5717" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1177.26" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/TransportShardBulkAction$2.lambda$finishRequest$1 (40 samples, 0.00%; 0.00%)</title><rect x="325.9" y="6021" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="328.94" y="6031.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.lambda$authorizeIndexAction$4 (931 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="3845" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.83" y="3855.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/StringHelper.murmurhash3_x86_32 (54 samples, 0.01%; 0.00%)</title><rect x="522.3" y="5877" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="525.31" y="5887.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/UnicodeUtil.UTF16toUTF8 (79 samples, 0.01%; -0.00%)</title><rect x="440.6" y="5733" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="443.57" y="5743.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorizeAction$8 (145 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="4389" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="4399.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorizeAction$8 (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="4133" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="4143.5" ></text>
</g>
<g >
<title>java/util/ArrayList.forEach (486 samples, 0.05%; 0.00%)</title><rect x="274.8" y="2853" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.84" y="2863.5" ></text>
</g>
<g >
<title>java/util/HashMap.&lt;init&gt; (79 samples, 0.01%; 0.00%)</title><rect x="1740.4" y="4117" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1743.40" y="4127.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.nextToken (1,314 samples, 0.15%; -0.05%)</title><rect x="420.0" y="5893" width="3.6" height="15.0" fill="rgb(206,206,255)" rx="2" ry="2" />
<text x="423.02" y="5903.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$CachingAsyncSupplier.lambda$getAsync$0 (12,166 samples, 1.35%; 0.00%)</title><rect x="1589.2" y="5045" width="32.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.21" y="5055.5" >or..</text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$$Lambda$4893.0x00000008017ed008.accept (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="2421" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="2431.5" ></text>
</g>
<g >
<title>java/io/BufferedOutputStream.flushBuffer (106 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="1637" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="1647.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (2,727 samples, 0.30%; 0.00%)</title><rect x="1527.5" y="5925" width="7.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1530.47" y="5935.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer.release (111 samples, 0.01%; +0.01%)</title><rect x="1449.7" y="5861" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1452.71" y="5871.5" ></text>
</g>
<g >
<title>org/elasticsearch/script/mustache/MustacheScriptEngine$MustacheExecutableScript.execute (52 samples, 0.01%; 0.00%)</title><rect x="1625.1" y="5717" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.10" y="5727.5" ></text>
</g>
<g >
<title>sun/security/provider/PolicyFile.implies (147 samples, 0.02%; 0.00%)</title><rect x="1749.2" y="4645" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1752.18" y="4655.5" ></text>
</g>
<g >
<title>io/netty/handler/ssl/SslHandler$SslHandlerCoalescingBufferQueue.compose (46 samples, 0.01%; 0.00%)</title><rect x="306.0" y="5973" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="308.99" y="5983.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/geoip/DatabaseReaderLazyLoader.getResponse (825 samples, 0.09%; 0.00%)</title><rect x="1746.3" y="4741" width="2.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1749.25" y="4751.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/json/JsonXContentParser.text (1,345 samples, 0.15%; -0.00%)</title><rect x="1515.0" y="5925" width="3.7" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1518.05" y="5935.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/packed/DirectMonotonicReader.get (294 samples, 0.03%; +0.00%)</title><rect x="1978.1" y="5909" width="0.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1981.11" y="5919.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer.findName (132 samples, 0.01%; +0.01%)</title><rect x="1145.6" y="5797" width="0.4" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1148.63" y="5807.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/NotifyOnceListener.onResponse (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="2869" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="2879.5" ></text>
</g>
<g >
<title>java/util/Collections$UnmodifiableMap.get (833 samples, 0.09%; 0.00%)</title><rect x="1165.8" y="5829" width="2.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1168.84" y="5839.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/InboundDecoder.decode (222 samples, 0.02%; 0.00%)</title><rect x="283.9" y="5749" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="286.91" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/action/filter/SecurityActionFilter.applyInternal (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="4693" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="4703.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/ContentPath.add (43 samples, 0.00%; +0.00%)</title><rect x="1241.2" y="5701" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1244.22" y="5711.5" ></text>
</g>
<g >
<title>java_lang_Throwable::fill_in_stack_trace(Handle, methodHandle const&amp;) (187 samples, 0.02%; 0.00%)</title><rect x="1718.9" y="4709" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1721.93" y="4719.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/EsExecutors$DirectExecutorService.execute (715 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="1877" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="1887.5" ></text>
</g>
<g >
<title>java/lang/SecurityManager.checkPermission (39 samples, 0.00%; 0.00%)</title><rect x="621.7" y="5637" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="624.71" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="2613" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="2623.5" ></text>
</g>
<g >
<title>java/security/AccessController.checkPermission (100 samples, 0.01%; 0.00%)</title><rect x="1531.0" y="5253" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1534.00" y="5263.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.resolveAuthorizationInfo (936 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="4885" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.82" y="4895.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/DocumentParser.parseValue (3,160 samples, 0.35%; +0.00%)</title><rect x="1203.9" y="5797" width="8.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1206.86" y="5807.5" ></text>
</g>
<g >
<title>java/lang/RuntimeException.&lt;init&gt; (101 samples, 0.01%; 0.00%)</title><rect x="1533.3" y="5589" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1536.33" y="5599.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="4405" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="4415.5" ></text>
</g>
<g >
<title>java/util/HashMap.getNode (96 samples, 0.01%; +0.00%)</title><rect x="1779.7" y="5909" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1782.67" y="5919.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (99 samples, 0.01%; -0.00%)</title><rect x="2066.4" y="5941" width="0.3" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2069.44" y="5951.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.map (258 samples, 0.03%; 0.00%)</title><rect x="1722.6" y="3733" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1725.62" y="3743.5" ></text>
</g>
<g >
<title>org/apache/lucene/search/SortedSetSelector$MinValue.nextDoc (176 samples, 0.02%; -0.00%)</title><rect x="327.7" y="5749" width="0.5" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="330.71" y="5759.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/JsonGenerator.writeNumberField (37 samples, 0.00%; +0.00%)</title><rect x="284.7" y="4805" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="287.68" y="4815.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (3,591 samples, 0.40%; 0.00%)</title><rect x="1710.8" y="5429" width="9.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1713.79" y="5439.5" ></text>
</g>
<g >
<title>java/security/AccessController.doPrivileged (62 samples, 0.01%; 0.00%)</title><rect x="1703.2" y="5413" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1706.24" y="5423.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/common/DateProcessor$$Lambda$5173.0x0000000801854680.apply (303 samples, 0.03%; 0.00%)</title><rect x="1534.0" y="5653" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1536.96" y="5663.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/BulkShardRequest.writeTo (5,458 samples, 0.60%; 0.00%)</title><rect x="308.6" y="5573" width="14.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="311.64" y="5583.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.createTemplateModel (249 samples, 0.03%; 0.00%)</title><rect x="1666.3" y="5493" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1669.31" y="5503.5" ></text>
</g>
<g >
<title>java/security/AccessController.checkPermission (194 samples, 0.02%; +0.00%)</title><rect x="1534.3" y="5557" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1537.25" y="5567.5" ></text>
</g>
<g >
<title>java/util/HashMap.containsKey (63 samples, 0.01%; 0.00%)</title><rect x="1370.1" y="5717" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1373.05" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/interceptor/SearchRequestInterceptor.intercept (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="2053" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="2063.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser._finishAndReturnString (294 samples, 0.03%; +0.01%)</title><rect x="1416.3" y="5781" width="0.8" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1419.31" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5287.0x0000000801824588.accept (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="4693" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="4703.5" ></text>
</g>
<g >
<title>java/util/ArrayList.grow (38 samples, 0.00%; 0.00%)</title><rect x="1212.3" y="5685" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1215.28" y="5695.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/MultiLevelSkipListWriter.bufferSkip (4,933 samples, 0.55%; +0.00%)</title><rect x="2308.9" y="6005" width="13.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2311.91" y="6015.5" ></text>
</g>
<g >
<title>G1RemSet::scan_heap_roots(G1ParScanThreadState*, unsigned int, G1GCPhaseTimes::GCParPhases, G1GCPhaseTimes::GCParPhases) (1,305 samples, 0.14%; 0.00%)</title><rect x="2445.2" y="6149" width="3.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2448.22" y="6159.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/TransportAction$RequestFilterChain.proceed (724 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="3589" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.77" y="3599.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (2,125 samples, 0.24%; 0.00%)</title><rect x="1710.8" y="4965" width="5.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1713.80" y="4975.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/BaseFuture.set (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="3333" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="3343.5" ></text>
</g>
<g >
<title>generic_perform_write (738 samples, 0.08%; +0.00%)</title><rect x="2176.4" y="5685" width="2.0" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2179.39" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.handleIndexActionAuthorizationResult (214 samples, 0.02%; 0.00%)</title><rect x="1627.8" y="3077" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="3087.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeFormatterBuilder$CompositePrinterParser.parse (129 samples, 0.01%; 0.00%)</title><rect x="1752.6" y="4981" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1755.65" y="4991.5" ></text>
</g>
<g >
<title>java/util/Collections$UnmodifiableMap.get (79 samples, 0.01%; 0.00%)</title><rect x="1583.5" y="5749" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1586.52" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/common/GrokProcessor.execute (76 samples, 0.01%; 0.00%)</title><rect x="1531.9" y="5781" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1534.89" y="5791.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (220 samples, 0.02%; -0.00%)</title><rect x="300.0" y="5637" width="0.6" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="303.03" y="5647.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeParseException.&lt;init&gt; (1,791 samples, 0.20%; 0.00%)</title><rect x="1674.7" y="5605" width="4.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1677.65" y="5615.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (967 samples, 0.11%; 0.00%)</title><rect x="1693.1" y="5653" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1696.13" y="5663.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/packed/BulkOperationPacked.encode (133 samples, 0.01%; +0.01%)</title><rect x="555.3" y="5701" width="0.3" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="558.27" y="5711.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/blocktree/BlockTreeTermsWriter$StatsWriter.add (88 samples, 0.01%; 0.00%)</title><rect x="1886.8" y="5669" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1889.79" y="5679.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/engine/Engine.segmentsStats (88 samples, 0.01%; 0.00%)</title><rect x="1847.1" y="5349" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.08" y="5359.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/IndexWriter$EventQueue.processEvents (191 samples, 0.02%; 0.00%)</title><rect x="1095.3" y="5861" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1098.27" y="5871.5" ></text>
</g>
<g >
<title>java/util/HashMap$Values.iterator (41 samples, 0.00%; 0.00%)</title><rect x="1698.2" y="5237" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1701.16" y="5247.5" ></text>
</g>
<g >
<title>java/util/HashMap.hash (741 samples, 0.08%; 0.00%)</title><rect x="608.4" y="5701" width="2.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="611.38" y="5711.5" ></text>
</g>
<g >
<title>Java_java_lang_Throwable_fillInStackTrace (388 samples, 0.04%; 0.00%)</title><rect x="1706.0" y="5573" width="1.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1709.03" y="5583.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ValueSource$TemplatedValue.copyAndResolve (5,819 samples, 0.64%; -0.00%)</title><rect x="1829.6" y="5989" width="15.7" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1832.56" y="5999.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (3,548 samples, 0.39%; 0.00%)</title><rect x="1710.8" y="5237" width="9.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1713.79" y="5247.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/FSDirectory.deleteFile (131 samples, 0.01%; 0.00%)</title><rect x="1095.4" y="5621" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1098.44" y="5631.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/StepListener.innerOnResponse (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="3365" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="3375.5" ></text>
</g>
<g >
<title>vtable stub (152 samples, 0.02%; +0.02%)</title><rect x="1140.8" y="5765" width="0.4" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1143.84" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/store/Store$StoreDirectory.deleteFile (91 samples, 0.01%; 0.00%)</title><rect x="1454.0" y="5957" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1457.04" y="5967.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ConditionalProcessor.lambda$execute$1 (5,682 samples, 0.63%; +0.00%)</title><rect x="1625.5" y="5589" width="15.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1628.46" y="5599.5" ></text>
</g>
<g >
<title>InstanceKlass::method_with_orig_idnum(int, int) (64 samples, 0.01%; +0.01%)</title><rect x="1634.2" y="4869" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1637.23" y="4879.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/engine/InternalEngine$ExternalReaderManager.decRef (163 samples, 0.02%; 0.00%)</title><rect x="1847.6" y="6005" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.64" y="6015.5" ></text>
</g>
<g >
<title>JVM_FillInStackTrace (231 samples, 0.03%; 0.00%)</title><rect x="1640.0" y="5237" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1642.98" y="5247.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$CachingAsyncSupplier.getAsync (12,187 samples, 1.35%; 0.00%)</title><rect x="1589.2" y="5141" width="33.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.21" y="5151.5" >or..</text>
</g>
<g >
<title>get_page_from_freelist (39 samples, 0.00%; +0.00%)</title><rect x="1894.2" y="5237" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1897.17" y="5247.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/TransportAction$1.onResponse (199 samples, 0.02%; 0.00%)</title><rect x="284.5" y="5189" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="287.53" y="5199.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/ReleasableBytesStreamOutput.&lt;init&gt; (780 samples, 0.09%; 0.00%)</title><rect x="1116.2" y="5925" width="2.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1119.21" y="5935.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5648.0x0000000801980b40.accept (230 samples, 0.03%; 0.00%)</title><rect x="271.7" y="4389" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.72" y="4399.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$runRequestInterceptors$14 (227 samples, 0.03%; 0.00%)</title><rect x="271.7" y="4117" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.72" y="4127.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/common/DateProcessor.execute (2,148 samples, 0.24%; 0.00%)</title><rect x="1704.9" y="5733" width="5.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1707.88" y="5743.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (5,008 samples, 0.55%; 0.00%)</title><rect x="1648.8" y="5413" width="13.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1651.84" y="5423.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ConditionalProcessor.execute (595 samples, 0.07%; 0.00%)</title><rect x="1722.6" y="4373" width="1.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1725.61" y="4383.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamInput.readVLong (64 samples, 0.01%; +0.00%)</title><rect x="266.1" y="5333" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="269.09" y="5343.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (2,873 samples, 0.32%; 0.00%)</title><rect x="1697.1" y="5701" width="7.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1700.11" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.setFieldValue (7,092 samples, 0.79%; 0.00%)</title><rect x="1826.1" y="6005" width="19.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1829.11" y="6015.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/TransportAction$RequestFilterChain.proceed (174 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="4693" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="4703.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundMessage.writeMessage (86 samples, 0.01%; 0.00%)</title><rect x="508.2" y="5653" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="511.24" y="5663.5" ></text>
</g>
<g >
<title>java/security/Permissions$1.apply (113 samples, 0.01%; +0.00%)</title><rect x="1834.6" y="5733" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1837.61" y="5743.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/bytes/ReleasableBytesReference.length (55 samples, 0.01%; +0.00%)</title><rect x="253.4" y="5173" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="256.40" y="5183.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/bytes/CompositeBytesReference.slice (111 samples, 0.01%; +0.01%)</title><rect x="277.3" y="4133" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="280.30" y="4143.5" ></text>
</g>
<g >
<title>new_sync_read (55 samples, 0.01%; 0.00%)</title><rect x="2174.6" y="5813" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2177.62" y="5823.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeParseContext.startOptional (84 samples, 0.01%; 0.00%)</title><rect x="1296.9" y="5637" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1299.93" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/script/mustache/MustacheScriptEngine$MustacheExecutableScript.execute (1,104 samples, 0.12%; 0.00%)</title><rect x="1645.7" y="5589" width="3.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1648.67" y="5599.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/ContentPath.pathAsText (69 samples, 0.01%; +0.00%)</title><rect x="1127.4" y="5941" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1130.40" y="5951.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (770 samples, 0.09%; 0.00%)</title><rect x="1622.8" y="5669" width="2.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1625.75" y="5679.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.authorizeBulkItems (306 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="4213" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="4223.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/TransportAction.execute (308 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="5189" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.19" y="5199.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (79 samples, 0.01%; 0.00%)</title><rect x="620.6" y="5285" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="623.57" y="5295.5" ></text>
</g>
<g >
<title>/lib/x86_64-linux-gnu/libz.so.1.2.11 (221 samples, 0.02%; +0.00%)</title><rect x="1893.2" y="5637" width="0.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1896.17" y="5647.5" ></text>
</g>
<g >
<title>java/util/Collections$SynchronizedMap.get (288 samples, 0.03%; 0.00%)</title><rect x="1687.0" y="5461" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1690.02" y="5471.5" ></text>
</g>
<g >
<title>org/joni/StackMachine.popMemStart (269 samples, 0.03%; +0.01%)</title><rect x="1799.3" y="5845" width="0.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1802.33" y="5855.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/bytes/ReleasableBytesReference.length (74 samples, 0.01%; +0.00%)</title><rect x="290.9" y="5333" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="293.92" y="5343.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.authorizeBulkItems (214 samples, 0.02%; 0.00%)</title><rect x="1627.8" y="3061" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="3071.5" ></text>
</g>
<g >
<title>java/lang/String.getChars (399 samples, 0.04%; 0.00%)</title><rect x="1264.5" y="5653" width="1.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1267.51" y="5663.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.parseMediumName (204 samples, 0.02%; 0.00%)</title><rect x="448.2" y="5733" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="451.17" y="5743.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/DocIDMerger$SequentialDocIDMerger.next (525 samples, 0.06%; +0.00%)</title><rect x="1916.8" y="6005" width="1.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1919.80" y="6015.5" ></text>
</g>
<g >
<title>java/lang/Throwable.&lt;init&gt; (224 samples, 0.02%; 0.00%)</title><rect x="1718.3" y="4741" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1721.29" y="4751.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/MMapDirectory$$Lambda$586.0x0000000800e93f20.freeBuffer (57 samples, 0.01%; 0.00%)</title><rect x="1893.8" y="5701" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1896.84" y="5711.5" ></text>
</g>
<g >
<title>java/util/ArrayList.addAll (125 samples, 0.01%; -0.01%)</title><rect x="493.3" y="5765" width="0.4" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="496.32" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/interceptor/SearchRequestInterceptor.intercept (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="2805" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="2815.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/TransportWriteAction$AsyncAfterWriteAction$$Lambda$5989.0x00000008019d4bb8.accept (131 samples, 0.01%; 0.00%)</title><rect x="508.2" y="5957" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="511.21" y="5967.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.nextToken (1,028 samples, 0.11%; +0.01%)</title><rect x="1473.8" y="5973" width="2.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1476.81" y="5983.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/TransportBulkAction$BulkOperation.doRun (12,836 samples, 1.42%; +0.01%)</title><rect x="1588.0" y="5765" width="34.7" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1590.97" y="5775.5" >or..</text>
</g>
<g >
<title>org/apache/lucene/index/FreqProxFields$FreqProxDocsEnum.nextDoc (99 samples, 0.01%; +0.00%)</title><rect x="534.1" y="5733" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="537.11" y="5743.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/DocumentParser.getLeafMapper (7,079 samples, 0.78%; +0.01%)</title><rect x="1274.4" y="5813" width="19.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1277.42" y="5823.5" ></text>
</g>
<g >
<title>vtable stub (223 samples, 0.02%; +0.02%)</title><rect x="1190.5" y="5701" width="0.6" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1193.46" y="5711.5" ></text>
</g>
<g >
<title>java/nio/Buffer.nextGetIndex (45 samples, 0.00%; -0.00%)</title><rect x="2195.3" y="5957" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2198.32" y="5967.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (397 samples, 0.04%; 0.00%)</title><rect x="1532.1" y="5285" width="1.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.10" y="5295.5" ></text>
</g>
<g >
<title>org/apache/lucene/document/LongPoint.getType (152 samples, 0.02%; 0.00%)</title><rect x="1367.7" y="5813" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1370.71" y="5823.5" ></text>
</g>
<g >
<title>java/util/HashMap$EntryIterator.next (121 samples, 0.01%; +0.00%)</title><rect x="1729.3" y="3669" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1732.27" y="3679.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="3605" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="3615.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.ensureNoSelfReferences (192 samples, 0.02%; 0.00%)</title><rect x="1527.6" y="4837" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1530.58" y="4847.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (8,757 samples, 0.97%; 0.00%)</title><rect x="1722.4" y="4805" width="23.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1725.45" y="4815.5" >o..</text>
</g>
<g >
<title>org/elasticsearch/http/DefaultRestChannel$$Lambda$5308.0x00000008018ea6f0.close (47 samples, 0.01%; 0.00%)</title><rect x="286.4" y="5125" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="289.37" y="5135.5" ></text>
</g>
<g >
<title>java/lang/ThreadLocal.get (229 samples, 0.03%; 0.00%)</title><rect x="1417.9" y="5733" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1420.92" y="5743.5" ></text>
</g>
<g >
<title>java/util/Arrays.sort (272 samples, 0.03%; 0.00%)</title><rect x="556.6" y="5733" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="559.60" y="5743.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/BytesRefBuilder.grow (186 samples, 0.02%; 0.00%)</title><rect x="1979.0" y="5941" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1982.00" y="5951.5" ></text>
</g>
<g >
<title>java/lang/String.checkBoundsOffCount (58 samples, 0.01%; +0.01%)</title><rect x="1211.1" y="5669" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1214.09" y="5679.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/common/RemoveProcessor$$Lambda$6082.0x0000000801856748.accept (530 samples, 0.06%; 0.00%)</title><rect x="1774.1" y="5925" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1777.09" y="5935.5" ></text>
</g>
<g >
<title>io/netty/handler/codec/MessageToMessageDecoder.channelRead (53 samples, 0.01%; 0.00%)</title><rect x="274.4" y="5557" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.40" y="5567.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/common/DateProcessor.lambda$new$0 (120 samples, 0.01%; 0.00%)</title><rect x="1624.9" y="5749" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.92" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (1,065 samples, 0.12%; 0.00%)</title><rect x="1535.1" y="5317" width="2.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1538.08" y="5327.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/OutputStreamIndexOutput.writeBytes (357 samples, 0.04%; 0.00%)</title><rect x="2171.3" y="5989" width="1.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2174.32" y="5999.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/TransportBulkAction$$Lambda$6059.0x00000008019e04c0.accept (150 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="5077" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.60" y="5087.5" ></text>
</g>
<g >
<title>java/lang/Throwable.fillInStackTrace (176 samples, 0.02%; +0.00%)</title><rect x="1716.6" y="4645" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1719.62" y="4655.5" ></text>
</g>
<g >
<title>org/joni/ByteCodeMachine.opExactN (52 samples, 0.01%; +0.00%)</title><rect x="1773.8" y="5829" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1776.82" y="5839.5" ></text>
</g>
<g >
<title>__wake_up (43 samples, 0.00%; 0.00%)</title><rect x="517.9" y="5685" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="520.86" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ConditionalProcessor.lambda$execute$1 (253 samples, 0.03%; 0.00%)</title><rect x="1630.5" y="4341" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.53" y="4351.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/time/JavaDateFormatter.combined (63 samples, 0.01%; +0.00%)</title><rect x="1667.9" y="5653" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1670.88" y="5663.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/IndexService.maybeRefreshEngine (17,735 samples, 1.96%; -0.00%)</title><rect x="1847.6" y="6133" width="48.0" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1850.64" y="6143.5" >org/..</text>
</g>
<g >
<title>jdk/internal/ref/Cleaner.clean (54 samples, 0.01%; 0.00%)</title><rect x="1847.9" y="5493" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.93" y="5503.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/time/JavaDateFormatter.format (39 samples, 0.00%; 0.00%)</title><rect x="1705.0" y="5717" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1707.97" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorizeAction$5 (145 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="4341" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="4351.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentHelper.xContentType (137 samples, 0.02%; 0.00%)</title><rect x="1125.6" y="5909" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1128.57" y="5919.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/lease/Releasables.close (58 samples, 0.01%; 0.00%)</title><rect x="414.6" y="5973" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="417.59" y="5983.5" ></text>
</g>
<g >
<title>java/util/HashMap$HashIterator.nextNode (509 samples, 0.06%; +0.06%)</title><rect x="1378.2" y="5557" width="1.3" height="15.0" fill="rgb(255,206,206)" rx="2" ry="2" />
<text x="1381.15" y="5567.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/AttributeSource.getCurrentState (147 samples, 0.02%; +0.01%)</title><rect x="848.7" y="5781" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="851.67" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/MapperService.indexAnalyzer (67 samples, 0.01%; 0.00%)</title><rect x="1328.7" y="5701" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1331.75" y="5711.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8JsonGenerator._writeStringSegment (60 samples, 0.01%; +0.01%)</title><rect x="1658.6" y="5141" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1661.63" y="5151.5" ></text>
</g>
<g >
<title>mark_buffer_dirty (52 samples, 0.01%; -0.00%)</title><rect x="1900.4" y="5621" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1903.44" y="5631.5" ></text>
</g>
<g >
<title>ext4_da_get_block_prep (172 samples, 0.02%; +0.00%)</title><rect x="511.2" y="5541" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="514.21" y="5551.5" ></text>
</g>
<g >
<title>clear_page_erms (64 samples, 0.01%; +0.01%)</title><rect x="324.6" y="5397" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="327.65" y="5407.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/action/filter/SecurityActionFilter$$Lambda$5023.0x00000008016b7750.accept (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="4885" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="4895.5" ></text>
</g>
<g >
<title>java/lang/Throwable.fillInStackTrace (187 samples, 0.02%; 0.00%)</title><rect x="1718.9" y="4773" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1721.93" y="4783.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/bkd/BKDWriter.writeField (2,996 samples, 0.33%; 0.00%)</title><rect x="559.6" y="5765" width="8.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="562.58" y="5775.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeFormatterBuilder$NumberPrinterParser.parse (422 samples, 0.05%; +0.01%)</title><rect x="1406.1" y="5717" width="1.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1409.10" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/EsExecutors$DirectExecutorService.execute (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="2309" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="2319.5" ></text>
</g>
<g >
<title>java/util/stream/AbstractPipeline.copyInto (860 samples, 0.10%; +0.00%)</title><rect x="1436.1" y="5813" width="2.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1439.09" y="5823.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/geoip/DatabaseReaderLazyLoader.lambda$getResponse$1 (57 samples, 0.01%; +0.00%)</title><rect x="1748.9" y="4741" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1751.92" y="4751.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/seqno/GlobalCheckpointSyncAction.shardOperationOnPrimary (60 samples, 0.01%; 0.00%)</title><rect x="1846.9" y="5525" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1849.86" y="5535.5" ></text>
</g>
<g >
<title>com/github/mustachejava/codes/DefaultMustache.execute (77 samples, 0.01%; 0.00%)</title><rect x="1738.3" y="3845" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1741.29" y="3855.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.map (48 samples, 0.01%; +0.00%)</title><rect x="1623.9" y="5141" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1626.89" y="5151.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/BytesRef.&lt;init&gt; (447 samples, 0.05%; 0.00%)</title><rect x="456.2" y="5717" width="1.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="459.24" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/TransportService.sendRequest (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="1045" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="1055.5" ></text>
</g>
<g >
<title>sun/nio/ch/FileChannelImpl.write (70 samples, 0.01%; 0.00%)</title><rect x="2250.4" y="5781" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2253.38" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/interceptor/SearchRequestInterceptor.intercept (11,965 samples, 1.33%; 0.00%)</title><rect x="1589.5" y="4181" width="32.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.47" y="4191.5" >or..</text>
</g>
<g >
<title>org/elasticsearch/index/mapper/MapperService.indexAnalyzer (201 samples, 0.02%; 0.00%)</title><rect x="884.7" y="5749" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="887.72" y="5759.5" ></text>
</g>
<g >
<title>java/util/HashMap.putMapEntries (114 samples, 0.01%; +0.00%)</title><rect x="1743.3" y="4421" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1746.30" y="4431.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/DocumentParser.parseValue (16,184 samples, 1.79%; +0.00%)</title><rect x="1230.2" y="5765" width="43.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1233.25" y="5775.5" >org/..</text>
</g>
<g >
<title>ext4_es_insert_delayed_block (60 samples, 0.01%; +0.00%)</title><rect x="511.4" y="5525" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="514.43" y="5535.5" ></text>
</g>
<g >
<title>java/security/Policy$PolicyDelegate.implies (76 samples, 0.01%; +0.00%)</title><rect x="1736.2" y="3717" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1739.17" y="3727.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Processor.execute (8,586 samples, 0.95%; 0.00%)</title><rect x="1625.5" y="5669" width="23.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.46" y="5679.5" >o..</text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/json/JsonXContentGenerator.writeFieldName (48 samples, 0.01%; 0.00%)</title><rect x="1528.3" y="4789" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.34" y="4799.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser._skipWS (125 samples, 0.01%; -0.03%)</title><rect x="423.2" y="5877" width="0.4" height="15.0" fill="rgb(207,207,255)" rx="2" ry="2" />
<text x="426.24" y="5887.5" ></text>
</g>
<g >
<title>java/util/HashMap$TreeNode.getTreeNode (52 samples, 0.01%; -0.01%)</title><rect x="427.5" y="5797" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="430.48" y="5807.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="4421" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="4431.5" ></text>
</g>
<g >
<title>io/netty/channel/AbstractChannelHandlerContext.invokeFlush (177 samples, 0.02%; 0.00%)</title><rect x="306.9" y="5893" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="309.90" y="5903.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$$Lambda$4893.0x00000008017ed008.accept (715 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="1669" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="1679.5" ></text>
</g>
<g >
<title>__page_cache_alloc (134 samples, 0.01%; 0.00%)</title><rect x="2176.8" y="5621" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2179.77" y="5631.5" ></text>
</g>
<g >
<title>mpage_map_and_submit_buffers (82 samples, 0.01%; -0.00%)</title><rect x="1456.4" y="5717" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1459.42" y="5727.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8JsonGenerator.writeFieldName (135 samples, 0.01%; +0.00%)</title><rect x="1654.1" y="5221" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1657.12" y="5231.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned_erms (49 samples, 0.01%; +0.01%)</title><rect x="1614.6" y="2165" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1617.60" y="2175.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.lambda$done$0 (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="2341" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="2351.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeParseContext.startOptional (39 samples, 0.00%; 0.00%)</title><rect x="1752.9" y="4965" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1755.89" y="4975.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/json/JsonXContentGenerator.writeNumber (47 samples, 0.01%; 0.00%)</title><rect x="1733.2" y="3525" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.20" y="3535.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/compress/LZ4.encodeLiterals (60 samples, 0.01%; +0.00%)</title><rect x="607.6" y="5653" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="610.64" y="5663.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (5,118 samples, 0.57%; 0.00%)</title><rect x="1625.5" y="5269" width="13.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.53" y="5279.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/BytesRef.compareTo (779 samples, 0.09%; 0.00%)</title><rect x="2438.7" y="5957" width="2.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2441.72" y="5967.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/ContextPreservingActionListener.onResponse (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="3477" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="3487.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/SortedSetDocValuesWriter$BufferedSortedSetDocValues.nextDoc (2,368 samples, 0.26%; +0.12%)</title><rect x="2009.9" y="6021" width="6.4" height="15.0" fill="rgb(255,201,201)" rx="2" ry="2" />
<text x="2012.93" y="6031.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (145 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="4261" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="4271.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeFormatter.parseUnresolved0 (600 samples, 0.07%; 0.00%)</title><rect x="1668.1" y="5605" width="1.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1671.11" y="5615.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Processor.execute (394 samples, 0.04%; 0.00%)</title><rect x="1532.1" y="5205" width="1.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.10" y="5215.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/DocumentParser.parseObjectOrField (517 samples, 0.06%; 0.00%)</title><rect x="1228.8" y="5749" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1231.85" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (214 samples, 0.02%; 0.00%)</title><rect x="1627.8" y="3269" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="3279.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$$Lambda$4893.0x00000008017ed008.accept (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="2245" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="2255.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/StepListener.innerOnResponse (486 samples, 0.05%; 0.00%)</title><rect x="274.8" y="2645" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.84" y="2655.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (38 samples, 0.00%; 0.00%)</title><rect x="271.6" y="2805" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.58" y="2815.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/fst/FST.addNode (39 samples, 0.00%; +0.00%)</title><rect x="2395.1" y="5957" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2398.06" y="5967.5" ></text>
</g>
<g >
<title>java/util/ArrayList.add (1,359 samples, 0.15%; 0.00%)</title><rect x="2390.7" y="5941" width="3.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2393.67" y="5951.5" ></text>
</g>
<g >
<title>vectorizedMismatch (617 samples, 0.07%; +0.07%)</title><rect x="1069.3" y="5749" width="1.7" height="15.0" fill="rgb(255,205,205)" rx="2" ry="2" />
<text x="1072.30" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.lambda$done$0 (715 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="1653" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="1663.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/AbstractRunnable.run (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="4949" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="4959.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/BytesRef.compareTo (73 samples, 0.01%; 0.00%)</title><rect x="2186.0" y="6021" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2188.99" y="6031.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator.lookForExistingAuthentication (308 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="5077" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.19" y="5087.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/json/JsonXContentParser.nextToken (339 samples, 0.04%; +0.00%)</title><rect x="281.5" y="4149" width="0.9" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="284.53" y="4159.5" ></text>
</g>
<g >
<title>io/netty/channel/AbstractChannelHandlerContext.invokeWriteAndFlush (954 samples, 0.11%; 0.00%)</title><rect x="305.7" y="6133" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="308.75" y="6143.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/compressing/CompressingStoredFieldsWriter.flush (7,514 samples, 0.83%; 0.00%)</title><rect x="334.0" y="5813" width="20.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="337.00" y="5823.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/TransportService.sendRequestInternal (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="1813" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="1823.5" ></text>
</g>
<g >
<title>Java_java_lang_Throwable_fillInStackTrace (97 samples, 0.01%; 0.00%)</title><rect x="1746.8" y="4517" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1749.77" y="4527.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/TransportReplicationAction$ReroutePhase.performRemoteAction (925 samples, 0.10%; 0.00%)</title><rect x="1659.9" y="2197" width="2.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.85" y="2207.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.removeField (45 samples, 0.00%; 0.00%)</title><rect x="1774.1" y="5893" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1777.09" y="5903.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.lambda$done$0 (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="2485" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="2495.5" ></text>
</g>
<g >
<title>org/apache/lucene/search/ReferenceManager.release (163 samples, 0.02%; 0.00%)</title><rect x="1847.6" y="6037" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.64" y="6047.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.lambda$done$0 (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="2789" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="2799.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.createTemplateModel (60 samples, 0.01%; 0.00%)</title><rect x="1716.4" y="4869" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1719.38" y="4879.5" ></text>
</g>
<g >
<title>java/lang/Throwable.&lt;init&gt; (390 samples, 0.04%; 0.00%)</title><rect x="1706.0" y="5621" width="1.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1709.03" y="5631.5" ></text>
</g>
<g >
<title>java/lang/reflect/Method.invoke (101 samples, 0.01%; +0.00%)</title><rect x="1832.2" y="5765" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1835.16" y="5775.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/PriorityQueue.downHeap (4,111 samples, 0.46%; +0.04%)</title><rect x="2431.3" y="6005" width="11.1" height="15.0" fill="rgb(255,206,206)" rx="2" ry="2" />
<text x="2434.31" y="6015.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/OrdinalMap$2.get (81 samples, 0.01%; +0.01%)</title><rect x="1937.1" y="6021" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1940.13" y="6031.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/AbstractRunnable.run (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="1925" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="1935.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (771 samples, 0.09%; 0.00%)</title><rect x="1622.8" y="5749" width="2.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1625.75" y="5759.5" ></text>
</g>
<g >
<title>vfs_fsync_range (136 samples, 0.02%; 0.00%)</title><rect x="1456.4" y="5813" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1459.37" y="5823.5" ></text>
</g>
<g >
<title>io/netty/handler/ssl/SslHandler.flush (505 samples, 0.06%; 0.00%)</title><rect x="306.9" y="5957" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="309.90" y="5967.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.map (63 samples, 0.01%; +0.00%)</title><rect x="1535.9" y="4757" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1538.94" y="4767.5" ></text>
</g>
<g >
<title>itable stub (52 samples, 0.01%; +0.01%)</title><rect x="1551.6" y="5733" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1554.58" y="5743.5" ></text>
</g>
<g >
<title>java/util/TreeMap.getEntry (57 samples, 0.01%; +0.01%)</title><rect x="1589.0" y="5685" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1592.03" y="5695.5" ></text>
</g>
<g >
<title>java/util/HashMap$KeySet.iterator (50 samples, 0.01%; +0.00%)</title><rect x="1771.0" y="5797" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1773.98" y="5807.5" ></text>
</g>
<g >
<title>JVM_GetStackAccessControlContext (39 samples, 0.00%; +0.00%)</title><rect x="1723.8" y="3861" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1726.82" y="3871.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorizeBulkItems$19 (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="2725" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="2735.5" ></text>
</g>
<g >
<title>java/util/stream/AbstractPipeline.wrapAndCopyInto (40 samples, 0.00%; 0.00%)</title><rect x="325.9" y="5941" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="328.94" y="5951.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/DocIDMerger$SequentialDocIDMerger.next (80 samples, 0.01%; +0.00%)</title><rect x="1956.6" y="6021" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1959.56" y="6031.5" ></text>
</g>
<g >
<title>java/util/concurrent/ConcurrentHashMap.computeIfAbsent (39 samples, 0.00%; 0.00%)</title><rect x="1663.4" y="5189" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1666.36" y="5199.5" ></text>
</g>
<g >
<title>java/security/ProtectionDomain.impliesWithAltFilePerm (318 samples, 0.04%; 0.00%)</title><rect x="1646.1" y="5509" width="0.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1649.14" y="5519.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.onResponse (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="3029" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="3039.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.execute (12,722 samples, 1.41%; 0.00%)</title><rect x="1722.3" y="5429" width="34.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1725.28" y="5439.5" >or..</text>
</g>
<g >
<title>org/elasticsearch/index/mapper/DocumentParser.getMapper (1,285 samples, 0.14%; +0.00%)</title><rect x="1214.4" y="5813" width="3.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1217.44" y="5823.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/support/AbstractXContentParser.readValueUnsafe (6,868 samples, 0.76%; -0.00%)</title><rect x="1500.4" y="5973" width="18.5" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1503.36" y="5983.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.unknownValue (194 samples, 0.02%; 0.00%)</title><rect x="1535.6" y="4805" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1538.60" y="4815.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Pipeline$$Lambda$6068.0x00000008019e2168.accept (94 samples, 0.01%; +0.01%)</title><rect x="1527.0" y="6037" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1530.01" y="6047.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.getBucket (94 samples, 0.01%; +0.00%)</title><rect x="557.8" y="5685" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="560.85" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$1.doRun (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="2725" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="2735.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/CollectionUtils.lambda$convert$1 (61 samples, 0.01%; 0.00%)</title><rect x="1778.6" y="5861" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1781.59" y="5871.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.authorizeIndexActionName (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="2805" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="2815.5" ></text>
</g>
<g >
<title>java/util/stream/AbstractPipeline.copyInto (78 samples, 0.01%; 0.00%)</title><rect x="1530.8" y="5221" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1533.76" y="5231.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/interceptor/UpdateRequestInterceptor.intercept (931 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="2821" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.83" y="2831.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$CachingAsyncSupplier.lambda$getAsync$0 (923 samples, 0.10%; 0.00%)</title><rect x="271.5" y="4933" width="2.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.54" y="4943.5" ></text>
</g>
<g >
<title>java/lang/RuntimeException.&lt;init&gt; (461 samples, 0.05%; 0.00%)</title><rect x="1643.0" y="5509" width="1.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1646.05" y="5519.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/BaseFuture.set (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="2405" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="2415.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/DocumentsWriterPerThread.sealFlushedSegment (55 samples, 0.01%; 0.00%)</title><rect x="538.9" y="5829" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="541.95" y="5839.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/BaseFuture.set (38 samples, 0.00%; 0.00%)</title><rect x="271.6" y="3989" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.58" y="3999.5" ></text>
</g>
<g >
<title>java/util/Arrays.sort (312 samples, 0.03%; 0.00%)</title><rect x="1045.2" y="5781" width="0.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1048.25" y="5791.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.findName (159 samples, 0.02%; -0.01%)</title><rect x="448.2" y="5717" width="0.4" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="451.17" y="5727.5" ></text>
</g>
<g >
<title>java/util/stream/ReduceOps$ReduceOp.evaluateSequential (140 samples, 0.02%; +0.00%)</title><rect x="1682.7" y="5397" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1685.69" y="5407.5" ></text>
</g>
<g >
<title>java/util/stream/AbstractPipeline.copyInto (598 samples, 0.07%; 0.00%)</title><rect x="1708.8" y="5589" width="1.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1711.84" y="5599.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.resolveAuthorizationInfo (723 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="3333" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.77" y="3343.5" ></text>
</g>
<g >
<title>vtable stub (53 samples, 0.01%; +0.01%)</title><rect x="1294.2" y="5781" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1297.20" y="5791.5" ></text>
</g>
<g >
<title>java/lang/invoke/Invokers.checkCustomized (40 samples, 0.00%; +0.00%)</title><rect x="376.1" y="5749" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="379.05" y="5759.5" ></text>
</g>
<g >
<title>java/lang/String.split (44 samples, 0.00%; +0.00%)</title><rect x="1666.1" y="5445" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1669.15" y="5455.5" ></text>
</g>
<g >
<title>java/lang/String.hashCode (38 samples, 0.00%; 0.00%)</title><rect x="1646.9" y="5397" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1649.89" y="5407.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$CachingAsyncSupplier$$Lambda$5639.0x0000000801980040.accept (12,081 samples, 1.34%; 0.00%)</title><rect x="1589.2" y="4949" width="32.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.21" y="4959.5" >or..</text>
</g>
<g >
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer.acquireShared (363 samples, 0.04%; +0.01%)</title><rect x="522.5" y="5941" width="1.0" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="525.53" y="5951.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.createTemplateModel (90 samples, 0.01%; 0.00%)</title><rect x="1638.6" y="5077" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1641.65" y="5087.5" ></text>
</g>
<g >
<title>java/util/stream/AbstractPipeline.wrapAndCopyInto (462 samples, 0.05%; +0.00%)</title><rect x="1644.4" y="5525" width="1.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1647.35" y="5535.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/lucene/store/FilterIndexOutput.writeByte (55 samples, 0.01%; 0.00%)</title><rect x="527.1" y="5653" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="530.11" y="5663.5" ></text>
</g>
<g >
<title>java/security/AccessController.getStackAccessControlContext (103 samples, 0.01%; 0.00%)</title><rect x="1695.2" y="5141" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1698.24" y="5151.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene80/IndexedDISI$Method$1.advanceWithinBlock (107 samples, 0.01%; 0.00%)</title><rect x="1963.6" y="5893" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1966.64" y="5903.5" ></text>
</g>
<g >
<title>vectorizedMismatch (52 samples, 0.01%; +0.00%)</title><rect x="1888.5" y="5701" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1891.52" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$3.onResponse (714 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="789" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="799.5" ></text>
</g>
<g >
<title>/lib/x86_64-linux-gnu/libz.so.1.2.11 (38 samples, 0.00%; +0.00%)</title><rect x="1615.4" y="2181" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1618.35" y="2191.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.getBucket (69 samples, 0.01%; 0.00%)</title><rect x="612.5" y="5669" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="615.53" y="5679.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/AttributeSource.endAttributes (1,335 samples, 0.15%; +0.14%)</title><rect x="1328.9" y="5717" width="3.6" height="15.0" fill="rgb(255,200,200)" rx="2" ry="2" />
<text x="1331.93" y="5727.5" ></text>
</g>
<g >
<title>java/lang/Throwable.fillInStackTrace (187 samples, 0.02%; 0.00%)</title><rect x="1718.9" y="4757" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1721.93" y="4767.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.getBucket (41 samples, 0.00%; 0.00%)</title><rect x="612.7" y="5685" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="615.73" y="5695.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/fst/BytesStore.writeByte (70 samples, 0.01%; 0.00%)</title><rect x="1870.9" y="5653" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1873.90" y="5663.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/json/JsonXContentGenerator.writeFieldName (44 samples, 0.00%; 0.00%)</title><rect x="1699.1" y="5269" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1702.15" y="5279.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeParseContext.setParsedField (95 samples, 0.01%; 0.00%)</title><rect x="1383.1" y="5637" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1386.07" y="5647.5" ></text>
</g>
<g >
<title>java/util/HashMap$HashIterator.&lt;init&gt; (120 samples, 0.01%; +0.01%)</title><rect x="1394.8" y="5589" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1397.84" y="5599.5" ></text>
</g>
<g >
<title>java/util/HashMap.putMapEntries (118 samples, 0.01%; +0.00%)</title><rect x="1668.5" y="5445" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1671.46" y="5455.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/FilterStreamInput.readByte (48 samples, 0.01%; 0.00%)</title><rect x="255.7" y="5285" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="258.73" y="5295.5" ></text>
</g>
<g >
<title>java/util/Collections$UnmodifiableMap.get (86 samples, 0.01%; 0.00%)</title><rect x="275.0" y="2085" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="278.05" y="2095.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/DocumentParser.parseObjectOrField (170 samples, 0.02%; 0.00%)</title><rect x="1229.8" y="5685" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1232.78" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator.lookForExistingAuthentication (145 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="4853" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="4863.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/DupDetector.isDup (278 samples, 0.03%; +0.00%)</title><rect x="1512.4" y="5877" width="0.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1515.41" y="5887.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (253 samples, 0.03%; 0.00%)</title><rect x="1630.5" y="4261" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.53" y="4271.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundHandler$SendContext.get (925 samples, 0.10%; 0.00%)</title><rect x="1659.9" y="1989" width="2.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.85" y="1999.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.setFieldValue (188 samples, 0.02%; 0.00%)</title><rect x="1695.0" y="5237" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1698.01" y="5247.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/shard/IndexShard.storeStats (66 samples, 0.01%; 0.00%)</title><rect x="1847.3" y="5365" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.32" y="5375.5" ></text>
</g>
<g >
<title>java/util/stream/AbstractPipeline.evaluate (39 samples, 0.00%; +0.00%)</title><rect x="1754.4" y="4837" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1757.40" y="4847.5" ></text>
</g>
<g >
<title>java/lang/Throwable.fillInStackTrace (99 samples, 0.01%; +0.00%)</title><rect x="1746.8" y="4549" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1749.76" y="4559.5" ></text>
</g>
<g >
<title>vectorizedMismatch (155 samples, 0.02%; -0.04%)</title><rect x="407.9" y="5765" width="0.4" height="15.0" fill="rgb(207,207,255)" rx="2" ry="2" />
<text x="410.92" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/Mapping.getMetadataMapper (356 samples, 0.04%; 0.00%)</title><rect x="453.7" y="5717" width="0.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="456.66" y="5727.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/StringMSBRadixSorter$1.comparePivot (38 samples, 0.00%; 0.00%)</title><rect x="614.5" y="5589" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="617.51" y="5599.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.radixSort (160 samples, 0.02%; +0.00%)</title><rect x="567.2" y="5605" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="570.23" y="5615.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/TransportReplicationAction$$Lambda$3830.0x000000080160c6f8.messageReceived (213 samples, 0.02%; 0.00%)</title><rect x="271.7" y="3269" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.75" y="3279.5" ></text>
</g>
<g >
<title>java/lang/Exception.&lt;init&gt; (63 samples, 0.01%; 0.00%)</title><rect x="1531.9" y="5733" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1534.89" y="5743.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeParseContext.setParsedField (62 samples, 0.01%; 0.00%)</title><rect x="496.3" y="5653" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="499.27" y="5663.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene84/Lucene84PostingsFormat.fieldsProducer (74 samples, 0.01%; 0.00%)</title><rect x="1895.3" y="5701" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1898.27" y="5711.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene80/Lucene80DocValuesProducer$VaryingBPVReader.getLongValue (53 samples, 0.01%; +0.00%)</title><rect x="1911.1" y="5989" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1914.15" y="5999.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (3,498 samples, 0.39%; 0.00%)</title><rect x="1710.8" y="5109" width="9.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1713.79" y="5119.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/TransportService.sendRequest (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="837" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="847.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorizeAction$5 (936 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="4533" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.82" y="4543.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (71 samples, 0.01%; +0.01%)</title><rect x="560.9" y="5685" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="563.85" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.lambda$done$0 (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="2885" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="2895.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/Analyzer.tokenStream (3,667 samples, 0.41%; +0.05%)</title><rect x="1319.0" y="5749" width="9.9" height="15.0" fill="rgb(255,206,206)" rx="2" ry="2" />
<text x="1322.02" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (51,951 samples, 5.76%; +0.00%)</title><rect x="1625.3" y="5893" width="140.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1628.32" y="5903.5" >org/elasticsearch..</text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="2933" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="2943.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.notifyListener (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="2597" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="2607.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.buildIndicesAccessControl (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="3637" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="3647.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene84/Lucene84PostingsReader.readVIntBlock (211 samples, 0.02%; +0.01%)</title><rect x="2367.5" y="5957" width="0.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2370.52" y="5967.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$$Lambda$4893.0x00000008017ed008.accept (302 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="2725" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="2735.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorizeBulkItems$18 (48 samples, 0.01%; 0.00%)</title><rect x="271.6" y="4165" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.57" y="4175.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Pipeline$$Lambda$6068.0x00000008019e2168.accept (30,714 samples, 3.40%; +0.01%)</title><rect x="1539.7" y="5973" width="83.0" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1542.69" y="5983.5" >org/elast..</text>
</g>
<g >
<title>org/apache/lucene/util/fst/FST.readFirstTargetArc (65 samples, 0.01%; +0.00%)</title><rect x="2207.6" y="5957" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2210.59" y="5967.5" ></text>
</g>
<g >
<title>java/util/Arrays.mismatch (64 samples, 0.01%; 0.00%)</title><rect x="2205.3" y="6005" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2208.27" y="6015.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (83 samples, 0.01%; -0.03%)</title><rect x="412.7" y="5797" width="0.2" height="15.0" fill="rgb(208,208,255)" rx="2" ry="2" />
<text x="415.72" y="5807.5" ></text>
</g>
<g >
<title>java/util/HashMap$EntryIterator.next (37 samples, 0.00%; +0.00%)</title><rect x="1743.0" y="4325" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1746.03" y="4335.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/geo/GeoUtils.parseGeoPoint (62 samples, 0.01%; 0.00%)</title><rect x="1228.9" y="5637" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1231.94" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/script/mustache/MustacheScriptEngine$MustacheExecutableScript.execute (45 samples, 0.00%; 0.00%)</title><rect x="1629.9" y="4229" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.94" y="4239.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/ReusableStringReader.read (772 samples, 0.09%; +0.01%)</title><rect x="1336.9" y="5733" width="2.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1339.90" y="5743.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/FilterStreamInput.readByte (61 samples, 0.01%; 0.00%)</title><rect x="270.4" y="5349" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="273.38" y="5359.5" ></text>
</g>
<g >
<title>jlong_disjoint_arraycopy (37 samples, 0.00%; +0.00%)</title><rect x="1093.9" y="5733" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1096.90" y="5743.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$$Lambda$4893.0x00000008017ed008.accept (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="2021" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="2031.5" ></text>
</g>
<g >
<title>java/util/Collections$SynchronizedMap.get (89 samples, 0.01%; 0.00%)</title><rect x="1646.6" y="5397" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1649.56" y="5407.5" ></text>
</g>
<g >
<title>OptoRuntime::new_array_C(Klass*, int, JavaThread*) (82 samples, 0.01%; 0.00%)</title><rect x="1868.6" y="5701" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1871.57" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/engine/InternalEngine.lambda$new$0 (159 samples, 0.02%; 0.00%)</title><rect x="509.4" y="5813" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="512.37" y="5823.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5648.0x0000000801980b40.accept (227 samples, 0.03%; 0.00%)</title><rect x="271.7" y="3605" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.72" y="3615.5" ></text>
</g>
<g >
<title>java/util/HashMap.putVal (658 samples, 0.07%; +0.00%)</title><rect x="1468.1" y="5893" width="1.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1471.15" y="5903.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5287.0x0000000801824588.accept (1,025 samples, 0.11%; 0.00%)</title><rect x="271.5" y="5221" width="2.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.52" y="5231.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/compressing/CompressingStoredFieldsReader$BlockState.reset (6,359 samples, 0.70%; 0.00%)</title><rect x="2050.5" y="6085" width="17.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2053.52" y="6095.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/OutputStreamIndexOutput.writeBytes (39 samples, 0.00%; 0.00%)</title><rect x="353.7" y="5717" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="356.74" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/bytes/BytesReferenceStreamInput.read (84 samples, 0.01%; +0.00%)</title><rect x="291.6" y="5365" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="294.64" y="5375.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/TransportBulkAction.lambda$processBulkIndexIngestRequest$4 (752 samples, 0.08%; 0.00%)</title><rect x="1733.7" y="3701" width="2.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.71" y="3711.5" ></text>
</g>
<g >
<title>java/lang/Object.notifyAll (50 samples, 0.01%; -0.00%)</title><rect x="414.0" y="5941" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="417.04" y="5951.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$3.onResponse (64 samples, 0.01%; 0.00%)</title><rect x="1846.9" y="5669" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1849.86" y="5679.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (938 samples, 0.10%; +0.00%)</title><rect x="1693.1" y="5541" width="2.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1696.13" y="5551.5" ></text>
</g>
<g >
<title>/lib/x86_64-linux-gnu/libz.so.1.2.11 (47 samples, 0.01%; +0.01%)</title><rect x="538.8" y="5669" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="541.82" y="5679.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/shard/IndexShardOperationPermits.acquire (47 samples, 0.01%; 0.00%)</title><rect x="1845.3" y="5637" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1848.30" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/json/JsonXContentParser.nextToken (2,967 samples, 0.33%; +0.00%)</title><rect x="1465.6" y="6005" width="8.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1468.64" y="6015.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/ByteBlockPool$DirectTrackingAllocator.getByteBlock (38 samples, 0.00%; -0.01%)</title><rect x="402.9" y="5765" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="405.95" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/DocumentParser.parseObjectOrField (2,713 samples, 0.30%; +0.00%)</title><rect x="1205.1" y="5781" width="7.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1208.06" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/ContextPreservingActionListener.onResponse (214 samples, 0.02%; 0.00%)</title><rect x="1627.8" y="3157" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="3167.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$CachingAsyncSupplier.lambda$getAsync$0 (716 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="2805" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.77" y="2815.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/fst/NodeHash.nodesEqual (105 samples, 0.01%; -0.00%)</title><rect x="2388.0" y="5925" width="0.3" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2390.99" y="5935.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamInput.readBoolean (55 samples, 0.01%; 0.00%)</title><rect x="254.1" y="5301" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="257.07" y="5311.5" ></text>
</g>
<g >
<title>org/apache/lucene/search/SortedSetSelector$MinValue.lookupOrd (2,328 samples, 0.26%; -0.00%)</title><rect x="1979.6" y="6005" width="6.3" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1982.59" y="6015.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/MultiLevelSkipListWriter.bufferSkip (405 samples, 0.04%; -0.00%)</title><rect x="1879.5" y="5669" width="1.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1882.48" y="5679.5" ></text>
</g>
<g >
<title>java/util/ArrayList.grow (56 samples, 0.01%; -0.00%)</title><rect x="2415.6" y="5845" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2418.58" y="5855.5" ></text>
</g>
<g >
<title>alloc_pages_current (134 samples, 0.01%; 0.00%)</title><rect x="2176.8" y="5605" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2179.77" y="5615.5" ></text>
</g>
<g >
<title>__libc_write (462 samples, 0.05%; +0.00%)</title><rect x="324.3" y="5685" width="1.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="327.34" y="5695.5" ></text>
</g>
<g >
<title>org/apache/lucene/search/SortedSetSelector$MinValue.nextDoc (1,657 samples, 0.18%; -0.01%)</title><rect x="1855.2" y="5701" width="4.4" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1858.16" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$CachingAsyncSupplier.getAsync (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="2933" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="2943.5" ></text>
</g>
<g >
<title>ext4_file_write_iter (1,113 samples, 0.12%; 0.00%)</title><rect x="1897.8" y="5733" width="3.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1900.79" y="5743.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.done (38 samples, 0.00%; 0.00%)</title><rect x="271.6" y="2933" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.58" y="2943.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ConditionalProcessor.lambda$execute$1 (292 samples, 0.03%; 0.00%)</title><rect x="1630.5" y="4645" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.53" y="4655.5" ></text>
</g>
<g >
<title>java/util/ArrayList.forEach (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="2261" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="2271.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/action/filter/SecurityActionFilter$$Lambda$5026.0x0000000801820040.accept (185 samples, 0.02%; 0.00%)</title><rect x="284.6" y="5061" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="287.57" y="5071.5" ></text>
</g>
<g >
<title>java/io/BufferedOutputStream.write (48 samples, 0.01%; 0.00%)</title><rect x="2250.9" y="5941" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2253.95" y="5951.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/StepListener.innerOnResponse (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="3301" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="3311.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.resolveAuthorizationInfo (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="4821" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="4831.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$CachingAsyncSupplier.lambda$getAsync$0 (721 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="2917" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.77" y="2927.5" ></text>
</g>
<g >
<title>java/util/ArrayList.grow (405 samples, 0.04%; 0.00%)</title><rect x="1272.7" y="5637" width="1.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1275.66" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (1,751 samples, 0.19%; 0.00%)</title><rect x="1625.6" y="4501" width="4.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.59" y="4511.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/BaseFuture.set (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="2325" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="2335.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (311 samples, 0.03%; +0.00%)</title><rect x="271.5" y="4853" width="0.9" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="274.54" y="4863.5" ></text>
</g>
<g >
<title>org/apache/logging/log4j/spi/AbstractLogger.logIfEnabled (249 samples, 0.03%; +0.03%)</title><rect x="1102.8" y="5829" width="0.7" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1105.82" y="5839.5" ></text>
</g>
<g >
<title>java/lang/Throwable.&lt;init&gt; (63 samples, 0.01%; 0.00%)</title><rect x="1531.9" y="5717" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1534.89" y="5727.5" ></text>
</g>
<g >
<title>java/util/Arrays.fill (715 samples, 0.08%; -0.01%)</title><rect x="1868.8" y="5701" width="1.9" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1871.79" y="5711.5" ></text>
</g>
<g >
<title>java/lang/StackTraceElement.computeFormat (73 samples, 0.01%; +0.00%)</title><rect x="1633.7" y="4917" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1636.69" y="4927.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (4,848 samples, 0.54%; +0.00%)</title><rect x="1625.5" y="5045" width="13.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1628.54" y="5055.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.authorizeIndexActionName (307 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="4709" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="4719.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/CodecReader.ramBytesUsed (85 samples, 0.01%; 0.00%)</title><rect x="1847.1" y="5317" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.08" y="5327.5" ></text>
</g>
<g >
<title>java/util/HashMap$KeyIterator.next (104 samples, 0.01%; 0.00%)</title><rect x="1759.1" y="5493" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1762.09" y="5503.5" ></text>
</g>
<g >
<title>sun/security/provider/PolicyFile.implies (152 samples, 0.02%; 0.00%)</title><rect x="1663.3" y="5237" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1666.34" y="5247.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/BulkShardRequest.lambda$writeTo$3 (79 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="309" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="319.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/json/JsonXContentParser.currentToken (392 samples, 0.04%; -0.00%)</title><rect x="1507.2" y="5941" width="1.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1510.22" y="5951.5" ></text>
</g>
<g >
<title>InstanceKlass::allocate_objArray(int, int, Thread*) (92 samples, 0.01%; +0.00%)</title><rect x="1842.8" y="5877" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1845.80" y="5887.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.buildHistogram (43 samples, 0.00%; 0.00%)</title><rect x="616.5" y="5637" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="619.48" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/rest/action/RestToXContentListener.buildResponse (184 samples, 0.02%; 0.00%)</title><rect x="284.6" y="4949" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="287.58" y="4959.5" ></text>
</g>
<g >
<title>sun/security/provider/PolicyFile.implies (1,346 samples, 0.15%; 0.00%)</title><rect x="1834.4" y="5813" width="3.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1837.44" y="5823.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/TransportReplicationAction$ConcreteReplicaRequest.writeTo (5,458 samples, 0.60%; 0.00%)</title><rect x="308.6" y="5605" width="14.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="311.64" y="5615.5" ></text>
</g>
<g >
<title>__block_commit_write.isra.41 (46 samples, 0.01%; +0.00%)</title><rect x="325.4" y="5461" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="328.37" y="5471.5" ></text>
</g>
<g >
<title>java/io/BufferedOutputStream.write (41 samples, 0.00%; 0.00%)</title><rect x="527.3" y="5637" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="530.25" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.getFieldValue (82 samples, 0.01%; 0.00%)</title><rect x="1825.8" y="5989" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1828.82" y="5999.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/core/common/IteratingActionListener.onResponse (3,058 samples, 0.34%; 0.00%)</title><rect x="274.7" y="4549" width="8.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.66" y="4559.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/lucene/store/FilterIndexOutput.getFilePointer (66 samples, 0.01%; +0.00%)</title><rect x="589.9" y="5717" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="592.94" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (564 samples, 0.06%; 0.00%)</title><rect x="1535.1" y="4997" width="1.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1538.09" y="5007.5" ></text>
</g>
<g >
<title>org/joni/ByteCodeMachine.opExactN (555 samples, 0.06%; +0.01%)</title><rect x="1819.6" y="5893" width="1.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1822.59" y="5903.5" ></text>
</g>
<g >
<title>java/util/ArrayList.forEach (715 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="1429" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="1439.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/DocIDMerger$SequentialDocIDMerger.next (8,012 samples, 0.89%; +0.03%)</title><rect x="1988.3" y="6005" width="21.6" height="15.0" fill="rgb(255,207,207)" rx="2" ry="2" />
<text x="1991.27" y="6015.5" >o..</text>
</g>
<g >
<title>org/apache/lucene/store/DataInput.skipBytes (69 samples, 0.01%; 0.00%)</title><rect x="2048.4" y="6021" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2051.41" y="6031.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.lambda$done$0 (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="1301" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="1311.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/Mapping.getMetadataMapper (40 samples, 0.00%; 0.00%)</title><rect x="494.9" y="5845" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="497.87" y="5855.5" ></text>
</g>
<g >
<title>java/security/Permissions.implies (108 samples, 0.01%; 0.00%)</title><rect x="1646.2" y="5413" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1649.22" y="5423.5" ></text>
</g>
<g >
<title>java/util/zip/Deflater.deflate (165 samples, 0.02%; 0.00%)</title><rect x="2067.7" y="6037" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2070.73" y="6047.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/transport/SecurityServerTransportInterceptor.sendWithUser (302 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="2133" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="2143.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/OutputStreamIndexOutput.writeByte (2,330 samples, 0.26%; 0.00%)</title><rect x="2256.6" y="5957" width="6.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2259.64" y="5967.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamInput.readTimeValue (54 samples, 0.01%; 0.00%)</title><rect x="255.6" y="5301" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="258.59" y="5311.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/ByteBufferIndexInput.readBytes (103 samples, 0.01%; 0.00%)</title><rect x="1897.0" y="6085" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1900.00" y="6095.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (343 samples, 0.04%; 0.00%)</title><rect x="1722.6" y="3877" width="0.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1725.62" y="3887.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/CollectionUtils.ensureNoSelfReferences (254 samples, 0.03%; +0.00%)</title><rect x="1538.2" y="5365" width="0.7" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1541.20" y="5375.5" ></text>
</g>
<g >
<title>java/io/BufferedOutputStream.flushBuffer (139 samples, 0.02%; 0.00%)</title><rect x="1617.1" y="2277" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1620.11" y="2287.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ConditionalProcessor.execute (320 samples, 0.04%; 0.00%)</title><rect x="1630.5" y="4805" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.47" y="4815.5" ></text>
</g>
<g >
<title>org/elasticsearch/script/mustache/MustacheScriptEngine$MustacheExecutableScript.execute (107 samples, 0.01%; 0.00%)</title><rect x="1531.0" y="5301" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1533.98" y="5311.5" ></text>
</g>
<g >
<title>java/lang/StringLatin1.hashCode (52 samples, 0.01%; -0.01%)</title><rect x="453.0" y="5685" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="455.97" y="5695.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/Analyzer$1.getReusableComponents (420 samples, 0.05%; 0.00%)</title><rect x="460.3" y="5669" width="1.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="463.25" y="5679.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/DocumentsWriterPerThread.flush (17,289 samples, 1.92%; 0.00%)</title><rect x="1848.1" y="5813" width="46.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1851.09" y="5823.5" >org/..</text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine$$Lambda$5635.0x0000000801827740.accept (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="4389" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="4399.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/DataInput.readVInt (355 samples, 0.04%; +0.01%)</title><rect x="590.7" y="5717" width="1.0" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="593.75" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$$Lambda$4893.0x00000008017ed008.accept (931 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="2965" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.83" y="2975.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/support/CachingUsernamePasswordRealm.handleCachedAuthentication (3,060 samples, 0.34%; 0.00%)</title><rect x="274.7" y="4661" width="8.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.66" y="4671.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/BaseFuture.set (227 samples, 0.03%; 0.00%)</title><rect x="271.7" y="4037" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.72" y="4047.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.lambda$done$0 (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="2229" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="2239.5" ></text>
</g>
<g >
<title>itable stub (101 samples, 0.01%; +0.01%)</title><rect x="263.7" y="5253" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="266.69" y="5263.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundHandler.sendRequest (302 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="2069" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="2079.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ConditionalProcessor.execute (4,191 samples, 0.46%; +0.00%)</title><rect x="1710.7" y="5781" width="11.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1713.68" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (306 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="4421" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="4431.5" ></text>
</g>
<g >
<title>org/apache/lucene/document/Field$BinaryTokenStream.incrementToken (176 samples, 0.02%; +0.02%)</title><rect x="903.2" y="5781" width="0.4" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="906.16" y="5791.5" ></text>
</g>
<g >
<title>java/lang/invoke/LambdaForm$MH.0x00000008018e5040.invoke (57 samples, 0.01%; 0.00%)</title><rect x="1893.8" y="5589" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1896.84" y="5599.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/time/JavaDateFormatter.parse (76 samples, 0.01%; 0.00%)</title><rect x="1720.6" y="5381" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1723.63" y="5391.5" ></text>
</g>
<g >
<title>java/io/FilePermission.containsPath (48 samples, 0.01%; 0.00%)</title><rect x="1846.1" y="4949" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1849.14" y="4959.5" ></text>
</g>
<g >
<title>java/util/ArrayList$ArrayListSpliterator.forEachRemaining (78 samples, 0.01%; +0.00%)</title><rect x="1530.8" y="5205" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1533.76" y="5215.5" ></text>
</g>
<g >
<title>java/lang/Exception.&lt;init&gt; (149 samples, 0.02%; 0.00%)</title><rect x="1746.4" y="4533" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1749.35" y="4543.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeParseContext.setParsedField (273 samples, 0.03%; 0.00%)</title><rect x="1406.5" y="5685" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1409.50" y="5695.5" ></text>
</g>
<g >
<title>sun/nio/ch/IOUtil.writeFromNativeBuffer (843 samples, 0.09%; 0.00%)</title><rect x="2176.2" y="5909" width="2.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2179.21" y="5919.5" ></text>
</g>
<g >
<title>java/util/HashMap.forEach (306 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="4069" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="4079.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/fst/NodeHash.rehash (295 samples, 0.03%; -0.00%)</title><rect x="2396.9" y="5941" width="0.8" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2399.94" y="5951.5" ></text>
</g>
<g >
<title>java/security/AccessController.checkPermission (700 samples, 0.08%; 0.00%)</title><rect x="1740.9" y="4069" width="1.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1743.85" y="4079.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/packed/Packed64.get (128 samples, 0.01%; +0.00%)</title><rect x="1949.1" y="5989" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1952.11" y="5999.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/FieldInvertState.setAttributeSource (4,623 samples, 0.51%; +0.01%)</title><rect x="891.8" y="5813" width="12.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="894.82" y="5823.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (12,747 samples, 1.41%; 0.00%)</title><rect x="1722.3" y="5509" width="34.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1725.26" y="5519.5" >or..</text>
</g>
<g >
<title>org/elasticsearch/index/translog/Translog.ensureSynced (672 samples, 0.07%; 0.00%)</title><rect x="324.1" y="5861" width="1.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="327.12" y="5871.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/KeywordFieldMapper.parseCreateField (1,307 samples, 0.14%; +0.01%)</title><rect x="1208.9" y="5749" width="3.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1211.85" y="5759.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (254 samples, 0.03%; 0.00%)</title><rect x="508.7" y="5749" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="511.68" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/action/filter/SecurityActionFilter.lambda$applyInternal$3 (11,957 samples, 1.32%; 0.00%)</title><rect x="1589.5" y="2885" width="32.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.49" y="2895.5" >or..</text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.createTemplateModel (74 samples, 0.01%; 0.00%)</title><rect x="1703.0" y="5445" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1706.03" y="5455.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/collect/Iterators$ConcatenatedIterator.next (64 samples, 0.01%; 0.00%)</title><rect x="1529.9" y="5029" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1532.89" y="5039.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.getText (45 samples, 0.00%; +0.00%)</title><rect x="478.4" y="5781" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="481.41" y="5791.5" ></text>
</g>
<g >
<title>java/util/HashMap$EntryIterator.next (57 samples, 0.01%; 0.00%)</title><rect x="1764.7" y="5733" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1767.73" y="5743.5" ></text>
</g>
<g >
<title>java/util/HashMap$ValueIterator.next (47 samples, 0.01%; 0.00%)</title><rect x="1698.6" y="5221" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1701.64" y="5231.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/FieldMapper.parse (157 samples, 0.02%; 0.00%)</title><rect x="450.3" y="5685" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="453.32" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$1.doRun (11,965 samples, 1.33%; 0.00%)</title><rect x="1589.5" y="3189" width="32.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.47" y="3199.5" >or..</text>
</g>
<g >
<title>org/apache/lucene/util/CloseableThreadLocal.maybePurge (41 samples, 0.00%; -0.00%)</title><rect x="485.0" y="5685" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="488.02" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/InboundHandler.inboundMessage (8,670 samples, 0.96%; 0.00%)</title><rect x="250.9" y="5637" width="23.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="253.89" y="5647.5" >o..</text>
</g>
<g >
<title>org/apache/lucene/index/DefaultIndexingChain.flush (737 samples, 0.08%; 0.00%)</title><rect x="1454.3" y="6005" width="2.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1457.31" y="6015.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.buildIndicesAccessControl (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="2661" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="2671.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/geoip/GeoIpProcessor.retrieveCityGeoData (760 samples, 0.08%; +0.00%)</title><rect x="1718.2" y="4997" width="2.0" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1721.19" y="5007.5" ></text>
</g>
<g >
<title>java_lang_Throwable::fill_in_stack_trace(Handle, methodHandle const&amp;, Thread*) (343 samples, 0.04%; +0.01%)</title><rect x="1641.8" y="5445" width="1.0" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1644.83" y="5455.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene80/Lucene80DocValuesProducer.getSortedSet (108 samples, 0.01%; 0.00%)</title><rect x="1972.4" y="5989" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1975.42" y="5999.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ValueSource$TemplatedValue.copyAndResolve (75 samples, 0.01%; 0.00%)</title><rect x="1724.0" y="4133" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.97" y="4143.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (1,177 samples, 0.13%; 0.00%)</title><rect x="1527.5" y="5365" width="3.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1530.51" y="5375.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/DocumentParser.splitAndValidatePath (44 samples, 0.00%; 0.00%)</title><rect x="494.1" y="5845" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="497.14" y="5855.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/action/filter/SecurityActionFilter.lambda$applyInternal$4 (174 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="4485" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="4495.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/FreqProxFields$FreqProxPostingsEnum.nextDoc (173 samples, 0.02%; +0.01%)</title><rect x="534.4" y="5733" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="537.38" y="5743.5" ></text>
</g>
<g >
<title>simple_copy_to_iter (70 samples, 0.01%; 0.00%)</title><rect x="303.0" y="5733" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="306.03" y="5743.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/ReplicatedWriteRequest.&lt;init&gt; (1,199 samples, 0.13%; +0.00%)</title><rect x="252.6" y="5333" width="3.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="255.63" y="5343.5" ></text>
</g>
<g >
<title>BacktraceBuilder::push(Method*, int, Thread*) (94 samples, 0.01%; +0.01%)</title><rect x="1708.2" y="5445" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1711.16" y="5455.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundHandler.sendMessage (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="1829" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="1839.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/JsonReadContext.setCurrentName (247 samples, 0.03%; -0.00%)</title><rect x="447.3" y="5749" width="0.7" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="450.29" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/AbstractRunnable.run (38 samples, 0.00%; 0.00%)</title><rect x="271.6" y="3877" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.58" y="3887.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$CachingAsyncSupplier$$Lambda$5639.0x0000000801980040.accept (936 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="4373" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.82" y="4383.5" ></text>
</g>
<g >
<title>generic_perform_write (314 samples, 0.03%; 0.00%)</title><rect x="758.6" y="5317" width="0.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="761.61" y="5327.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/translog/Translog.deleteReaderFiles (109 samples, 0.01%; 0.00%)</title><rect x="1457.3" y="6101" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1460.30" y="6111.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/AbstractRunnable.run (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="2709" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="2719.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene84/Lucene84PostingsWriter.startDoc (2,073 samples, 0.23%; +0.01%)</title><rect x="1875.0" y="5701" width="5.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1878.04" y="5711.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/perfield/PerFieldDocValuesFormat$FieldsWriter.addSortedNumericField (732 samples, 0.08%; 0.00%)</title><rect x="540.0" y="5781" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="542.96" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/index/IndexRequest.source (71 samples, 0.01%; 0.00%)</title><rect x="1724.5" y="3733" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1727.53" y="3743.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/geoip/GeoIpProcessor$AddressNotFoundRuntimeException.&lt;init&gt; (187 samples, 0.02%; 0.00%)</title><rect x="1718.9" y="4837" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1721.93" y="4847.5" ></text>
</g>
<g >
<title>java/util/stream/AbstractPipeline.wrapAndCopyInto (1,459 samples, 0.16%; +0.00%)</title><rect x="1679.6" y="5589" width="3.9" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1682.59" y="5599.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/CompressibleBytesOutputStream.materializeBytes (540 samples, 0.06%; 0.00%)</title><rect x="1620.3" y="2485" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1623.27" y="2495.5" ></text>
</g>
<g >
<title>java/security/AccessController.checkPermission (39 samples, 0.00%; +0.00%)</title><rect x="621.7" y="5621" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="624.71" y="5631.5" ></text>
</g>
<g >
<title>java_lang_Throwable::fill_in_stack_trace(Handle, methodHandle const&amp;) (1,756 samples, 0.19%; 0.00%)</title><rect x="1674.7" y="5461" width="4.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1677.73" y="5471.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/CollectionUtils.ensureNoSelfReferences (427 samples, 0.05%; 0.00%)</title><rect x="1695.8" y="5781" width="1.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1698.84" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundMessage.serialize (212 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="821" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="831.5" ></text>
</g>
<g >
<title>java/util/Collections$SetFromMap.add (593 samples, 0.07%; +0.00%)</title><rect x="1550.2" y="5781" width="1.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1553.20" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestService$$Lambda$6065.0x00000008019e1ac0.accept (562 samples, 0.06%; 0.00%)</title><rect x="1535.1" y="4885" width="1.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1538.09" y="4895.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/support/SecondaryAuthenticator.authenticateAndAttachToContext (3,057 samples, 0.34%; 0.00%)</title><rect x="274.7" y="4341" width="8.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.67" y="4351.5" ></text>
</g>
<g >
<title>java/util/HashMap$HashIterator.nextNode (39 samples, 0.00%; +0.00%)</title><rect x="1743.4" y="4373" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1746.39" y="4383.5" ></text>
</g>
<g >
<title>java/util/HashSet.add (89 samples, 0.01%; 0.00%)</title><rect x="540.1" y="5733" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="543.13" y="5743.5" ></text>
</g>
<g >
<title>java/util/HashMap.put (152 samples, 0.02%; +0.01%)</title><rect x="1413.8" y="5717" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1416.83" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/bytes/BytesArray.writeTo (137 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="1573" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="1583.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Processor.execute (1,413 samples, 0.16%; 0.00%)</title><rect x="1535.1" y="5509" width="3.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1538.08" y="5519.5" ></text>
</g>
<g >
<title>java/lang/StringLatin1.hashCode (66 samples, 0.01%; +0.01%)</title><rect x="1201.7" y="5765" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1204.70" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.hasField (78 samples, 0.01%; +0.00%)</title><rect x="1766.5" y="5877" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1769.45" y="5887.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/DataOutput.writeShort (139 samples, 0.02%; 0.00%)</title><rect x="2201.5" y="5989" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2204.51" y="5999.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/PointValuesWriter.addPackedValue (108 samples, 0.01%; 0.00%)</title><rect x="1091.6" y="5813" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1094.58" y="5823.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeFormatterBuilder$ZoneIdPrinterParser.parse (137 samples, 0.02%; -0.00%)</title><rect x="498.0" y="5701" width="0.4" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="501.04" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (8,436 samples, 0.93%; +0.00%)</title><rect x="1722.5" y="4709" width="22.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1725.46" y="4719.5" >o..</text>
</g>
<g >
<title>vtable stub (77 samples, 0.01%; +0.00%)</title><rect x="1906.0" y="6037" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1909.04" y="6047.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/InboundHandler.handleRequest (8,665 samples, 0.96%; 0.00%)</title><rect x="250.9" y="5605" width="23.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="253.91" y="5615.5" >o..</text>
</g>
<g >
<title>java/util/HashMap.containsKey (37 samples, 0.00%; 0.00%)</title><rect x="786.4" y="5749" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="789.41" y="5759.5" ></text>
</g>
<g >
<title>java/util/HashMap.getNode (138 samples, 0.02%; 0.00%)</title><rect x="537.2" y="5717" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="540.21" y="5727.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/Analyzer.getOffsetGap (57 samples, 0.01%; +0.01%)</title><rect x="895.5" y="5717" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="898.55" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.renderTemplate (485 samples, 0.05%; 0.00%)</title><rect x="1774.2" y="5893" width="1.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1777.21" y="5903.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.notifyListener (931 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="2661" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.83" y="2671.5" ></text>
</g>
<g >
<title>pread64 (40 samples, 0.00%; +0.00%)</title><rect x="620.0" y="5589" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="622.97" y="5599.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/compress/LZ4.compress (743 samples, 0.08%; 0.00%)</title><rect x="605.9" y="5701" width="2.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="608.93" y="5711.5" ></text>
</g>
<g >
<title>do_unlinkat (65 samples, 0.01%; 0.00%)</title><rect x="1894.9" y="5413" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1897.91" y="5423.5" ></text>
</g>
<g >
<title>java/util/Arrays.mismatch (37 samples, 0.00%; 0.00%)</title><rect x="600.4" y="5733" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="603.44" y="5743.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/ByteBufferGuard.getBytes (56 samples, 0.01%; 0.00%)</title><rect x="2175.2" y="6069" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2178.21" y="6079.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamInput.readZLong (153 samples, 0.02%; +0.00%)</title><rect x="292.3" y="5413" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="295.31" y="5423.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator.lambda$authenticateAsync$2 (12,195 samples, 1.35%; 0.00%)</title><rect x="1589.2" y="5557" width="33.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.18" y="5567.5" >or..</text>
</g>
<g >
<title>org/apache/lucene/util/BytesRef.hashCode (94 samples, 0.01%; +0.00%)</title><rect x="1098.8" y="5893" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1101.84" y="5903.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/support/AbstractXContentParser.readMapSafe (21,323 samples, 2.36%; 0.00%)</title><rect x="1461.5" y="6037" width="57.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1464.52" y="6047.5" >org/el..</text>
</g>
<g >
<title>java/util/zip/Deflater.deflate (793 samples, 0.09%; 0.00%)</title><rect x="1659.9" y="1637" width="2.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.89" y="1647.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (2,174 samples, 0.24%; 0.00%)</title><rect x="1697.2" y="5461" width="5.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1700.15" y="5471.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/SingletonSortedNumericDocValues.nextDoc (42 samples, 0.00%; -0.00%)</title><rect x="1903.3" y="6021" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1906.27" y="6031.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/Sorter.binarySort (58 samples, 0.01%; 0.00%)</title><rect x="567.5" y="5525" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="570.49" y="5535.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.notifyListener (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="2997" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="3007.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.done (302 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="3029" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="3039.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine$$Lambda$5635.0x0000000801827740.accept (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="2821" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="2831.5" ></text>
</g>
<g >
<title>org/elasticsearch/tasks/TaskId.writeTo (142 samples, 0.02%; +0.01%)</title><rect x="1618.5" y="2309" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1621.52" y="2319.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/DocumentParser.getLeafMapper (85 samples, 0.01%; 0.00%)</title><rect x="450.1" y="5701" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="453.09" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/FieldMapper$MultiFields.parse (862 samples, 0.10%; +0.00%)</title><rect x="1297.5" y="5781" width="2.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1300.51" y="5791.5" ></text>
</g>
<g >
<title>java/util/ArrayList.add (441 samples, 0.05%; 0.00%)</title><rect x="1451.4" y="5909" width="1.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1454.40" y="5919.5" ></text>
</g>
<g >
<title>java/util/ArrayList.add (84 samples, 0.01%; 0.00%)</title><rect x="2321.8" y="5893" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2324.76" y="5903.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5648.0x0000000801980b40.accept (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="3173" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="3183.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/Mapping.getMetadataMapper (239 samples, 0.03%; 0.00%)</title><rect x="427.4" y="5861" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="430.44" y="5871.5" ></text>
</g>
<g >
<title>com/github/mustachejava/reflect/ReflectionWrapper.call (174 samples, 0.02%; 0.00%)</title><rect x="1831.4" y="5733" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1834.38" y="5743.5" ></text>
</g>
<g >
<title>java/util/ArrayList.grow (184 samples, 0.02%; -0.01%)</title><rect x="492.0" y="5717" width="0.5" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="495.00" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/CopyBytesSocketChannel.writeToSocketChannel (106 samples, 0.01%; 0.00%)</title><rect x="307.1" y="5781" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="310.09" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="3253" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="3263.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/LockValidatingDirectoryWrapper.deleteFile (105 samples, 0.01%; 0.00%)</title><rect x="1847.6" y="5797" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.65" y="5807.5" ></text>
</g>
<g >
<title>java/util/Arrays.copyOf (130 samples, 0.01%; +0.01%)</title><rect x="1421.9" y="5749" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1424.94" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamOutput.writeString (134 samples, 0.01%; 0.00%)</title><rect x="321.9" y="5429" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="324.92" y="5439.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/DocumentParser.parseDocument (121,286 samples, 13.44%; 0.00%)</title><rect x="1124.7" y="5973" width="327.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1127.72" y="5983.5" >org/elasticsearch/index/mapper/DocumentParse..</text>
</g>
<g >
<title>org/apache/lucene/analysis/Tokenizer.correctOffset (2,415 samples, 0.27%; +0.17%)</title><rect x="799.8" y="5765" width="6.5" height="15.0" fill="rgb(255,198,198)" rx="2" ry="2" />
<text x="802.76" y="5775.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/BytesRef.compareTo (38 samples, 0.00%; 0.00%)</title><rect x="614.5" y="5573" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="617.51" y="5583.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/support/AbstractXContentParser.textOrNull (123 samples, 0.01%; -0.00%)</title><rect x="440.8" y="5749" width="0.3" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="443.79" y="5759.5" ></text>
</g>
<g >
<title>java/util/HashMap.putVal (1,252 samples, 0.14%; +0.07%)</title><rect x="1396.9" y="5621" width="3.3" height="15.0" fill="rgb(255,205,205)" rx="2" ry="2" />
<text x="1399.86" y="5631.5" ></text>
</g>
<g >
<title>java/lang/StringBuilder.setLength (881 samples, 0.10%; 0.00%)</title><rect x="1232.6" y="5701" width="2.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1235.63" y="5711.5" ></text>
</g>
<g >
<title>java_lang_Throwable::fill_in_stack_trace(Handle, methodHandle const&amp;) (1,316 samples, 0.15%; 0.00%)</title><rect x="1670.3" y="5525" width="3.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1673.32" y="5535.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (5,336 samples, 0.59%; 0.00%)</title><rect x="1625.5" y="5413" width="14.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.52" y="5423.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/packed/PackedLongValues.iterator (86 samples, 0.01%; 0.00%)</title><rect x="548.3" y="5685" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="551.30" y="5695.5" ></text>
</g>
<g >
<title>java/util/HashMap.get (67 samples, 0.01%; 0.00%)</title><rect x="1730.8" y="3637" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1733.77" y="3647.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (308 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="4997" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.19" y="5007.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/DocumentParser.parseObjectOrField (3,051 samples, 0.34%; -0.00%)</title><rect x="495.0" y="5893" width="8.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="497.98" y="5903.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5967.0x0000000801981a88.accept (214 samples, 0.02%; 0.00%)</title><rect x="1627.8" y="3013" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="3023.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeParseContext.startOptional (118 samples, 0.01%; 0.00%)</title><rect x="1668.5" y="5493" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1671.46" y="5503.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/packed/MonotonicLongValues.get (112 samples, 0.01%; -0.01%)</title><rect x="1973.3" y="5925" width="0.3" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1976.30" y="5935.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/json/JsonXContentParser.currentName (232 samples, 0.03%; +0.02%)</title><rect x="1132.9" y="5893" width="0.6" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1135.89" y="5903.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/PointValuesWriter$1.getByteAt (69 samples, 0.01%; +0.01%)</title><rect x="564.3" y="5605" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="567.34" y="5615.5" ></text>
</g>
<g >
<title>java/security/AccessController.checkPermission (45 samples, 0.00%; 0.00%)</title><rect x="1723.8" y="3893" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.81" y="3903.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/common/RenameProcessor.execute (69 samples, 0.01%; 0.00%)</title><rect x="1638.9" y="5173" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1641.91" y="5183.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/ParseContext$FilterParseContext.getMetadataMapper (48 samples, 0.01%; 0.00%)</title><rect x="1242.8" y="5653" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1245.76" y="5663.5" ></text>
</g>
<g >
<title>vtable stub (83 samples, 0.01%; +0.00%)</title><rect x="1919.0" y="6005" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1921.95" y="6015.5" ></text>
</g>
<g >
<title>__block_commit_write.isra.41 (115 samples, 0.01%; +0.00%)</title><rect x="515.4" y="5525" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="518.43" y="5535.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.radixSort (53 samples, 0.01%; +0.00%)</title><rect x="565.4" y="5621" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="568.36" y="5631.5" ></text>
</g>
<g >
<title>org/elasticsearch/bootstrap/ESPolicy.implies (318 samples, 0.04%; 0.00%)</title><rect x="1646.1" y="5477" width="0.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1649.14" y="5487.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$CachingAsyncSupplier$$Lambda$5639.0x0000000801980040.accept (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="4069" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="4079.5" ></text>
</g>
<g >
<title>java/util/HashMap.hash (65 samples, 0.01%; 0.00%)</title><rect x="1633.7" y="4821" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1636.71" y="4831.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/DataOutput.writeBytes (46 samples, 0.01%; 0.00%)</title><rect x="2326.1" y="6005" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2329.14" y="6015.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (214 samples, 0.02%; 0.00%)</title><rect x="1627.8" y="3029" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="3039.5" ></text>
</g>
<g >
<title>java/util/HashMap.putVal (756 samples, 0.08%; +0.00%)</title><rect x="1492.1" y="5861" width="2.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1495.13" y="5871.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5641.0x00000008019804a0.accept (721 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="2885" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.77" y="2895.5" ></text>
</g>
<g >
<title>java/util/HashMap.afterNodeInsertion (79 samples, 0.01%; +0.01%)</title><rect x="1398.5" y="5605" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1401.47" y="5615.5" ></text>
</g>
<g >
<title>org/elasticsearch/grok/Grok.match (77 samples, 0.01%; 0.00%)</title><rect x="1534.9" y="5893" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1537.86" y="5903.5" ></text>
</g>
<g >
<title>com/sun/crypto/provider/AESCipher.engineInit (112 samples, 0.01%; +0.00%)</title><rect x="301.1" y="5717" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="304.11" y="5727.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser._parseName (348 samples, 0.04%; 0.00%)</title><rect x="422.3" y="5877" width="0.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="425.29" y="5887.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/ArrayUtil.grow (37 samples, 0.00%; 0.00%)</title><rect x="1854.6" y="5589" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1857.56" y="5599.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/DataOutput.writeVInt (170 samples, 0.02%; -0.00%)</title><rect x="1986.4" y="6021" width="0.5" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1989.40" y="6031.5" ></text>
</g>
<g >
<title>Threads::possibly_parallel_oops_do(bool, OopClosure*, CodeBlobClosure*) (114 samples, 0.01%; 0.00%)</title><rect x="2448.7" y="6117" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2451.75" y="6127.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.renderTemplate (48 samples, 0.01%; 0.00%)</title><rect x="1716.2" y="4821" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1719.24" y="4831.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.notifyListener (486 samples, 0.05%; 0.00%)</title><rect x="274.8" y="2277" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.84" y="2287.5" ></text>
</g>
<g >
<title>java/util/HashMap.afterNodeInsertion (54 samples, 0.01%; +0.01%)</title><rect x="1525.1" y="6037" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1528.09" y="6047.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5965.0x0000000801981628.accept (715 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="2101" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="2111.5" ></text>
</g>
<g >
<title>java/util/HashMap$TreeNode.getTreeNode (78 samples, 0.01%; -0.00%)</title><rect x="453.7" y="5653" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="456.66" y="5663.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/collect/Iterators$ConcatenatedIterator.next (147 samples, 0.02%; +0.00%)</title><rect x="1761.4" y="5493" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1764.39" y="5503.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/translog/BufferedChecksumStreamOutput.writeBytes (290 samples, 0.03%; 0.00%)</title><rect x="1113.5" y="5861" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1116.47" y="5871.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine$$Lambda$5637.0x0000000801827ba0.accept (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="4261" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="4271.5" ></text>
</g>
<g >
<title>Deoptimization::uncommon_trap(JavaThread*, int, int) (66 samples, 0.01%; 0.00%)</title><rect x="11.5" y="6229" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="14.51" y="6239.5" ></text>
</g>
<g >
<title>sun/security/ssl/SSLEngineImpl.wrap (287 samples, 0.03%; 0.00%)</title><rect x="306.1" y="5941" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="309.12" y="5951.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/AttributeSource.endAttributes (165 samples, 0.02%; +0.02%)</title><rect x="1418.6" y="5781" width="0.5" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1421.62" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.authorizeIndexAction (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="2821" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="2831.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/transport/SecurityServerTransportInterceptor.sendWithUser (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="2037" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="2047.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Processor.execute (592 samples, 0.07%; 0.00%)</title><rect x="1722.6" y="4357" width="1.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1725.62" y="4367.5" ></text>
</g>
<g >
<title>java/util/Arrays.compareUnsigned (60 samples, 0.01%; 0.00%)</title><rect x="614.9" y="5621" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="617.88" y="5631.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$runRequestInterceptors$14 (931 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="3349" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.83" y="3359.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/DataOutput.writeVInt (199 samples, 0.02%; +0.00%)</title><rect x="531.8" y="5717" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="534.80" y="5727.5" ></text>
</g>
<g >
<title>java/util/Collections$UnmodifiableMap.get (73 samples, 0.01%; 0.00%)</title><rect x="1589.0" y="5717" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1591.99" y="5727.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/IndexWriter.deleteNewFiles (168 samples, 0.02%; 0.00%)</title><rect x="1901.2" y="6149" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1904.18" y="6159.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$CachingAsyncSupplier.lambda$getAsync$0 (12,081 samples, 1.34%; 0.00%)</title><rect x="1589.2" y="4933" width="32.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.21" y="4943.5" >or..</text>
</g>
<g >
<title>java/util/HashMap.putVal (127 samples, 0.01%; -0.01%)</title><rect x="447.6" y="5669" width="0.3" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="450.60" y="5679.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.lambda$done$0 (227 samples, 0.03%; 0.00%)</title><rect x="271.7" y="3701" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.72" y="3711.5" ></text>
</g>
<g >
<title>org/joni/StackMachine.popMemStart (460 samples, 0.05%; +0.00%)</title><rect x="1797.7" y="5845" width="1.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1800.66" y="5855.5" ></text>
</g>
<g >
<title>java/util/stream/Sink$ChainedReference.end (81 samples, 0.01%; +0.00%)</title><rect x="1438.1" y="5797" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1441.07" y="5807.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.ensureNoSelfReferences (100 samples, 0.01%; +0.00%)</title><rect x="1532.2" y="4965" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1535.16" y="4975.5" ></text>
</g>
<g >
<title>java/nio/DirectByteBuffer.get (1,560 samples, 0.17%; 0.00%)</title><rect x="1973.9" y="5861" width="4.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1976.89" y="5871.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (71 samples, 0.01%; +0.01%)</title><rect x="1090.3" y="5813" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1093.28" y="5823.5" ></text>
</g>
<g >
<title>java/util/ArrayList.forEach (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="2437" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="2447.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ValueSource$TemplatedValue.copyAndResolve (498 samples, 0.06%; 0.00%)</title><rect x="1703.2" y="5445" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1706.23" y="5455.5" ></text>
</g>
<g >
<title>com/github/mustachejava/reflect/guards/MapGuard.apply (248 samples, 0.03%; +0.00%)</title><rect x="1830.1" y="5749" width="0.7" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1833.11" y="5759.5" ></text>
</g>
<g >
<title>java/lang/Throwable.fillInStackTrace (97 samples, 0.01%; 0.00%)</title><rect x="1746.8" y="4533" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1749.77" y="4543.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (5,016 samples, 0.56%; 0.00%)</title><rect x="1625.5" y="5221" width="13.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.53" y="5231.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundHandler$MessageSerializer.get (37 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="645" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="655.5" ></text>
</g>
<g >
<title>java/time/temporal/WeekFields.of (46 samples, 0.01%; 0.00%)</title><rect x="1705.9" y="5685" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1708.87" y="5695.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/Analyzer$1.getReusableComponents (52 samples, 0.01%; 0.00%)</title><rect x="424.7" y="5765" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="427.67" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="4053" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="4063.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder$$Lambda$49.0x0000000800bc0480.write (113 samples, 0.01%; 0.00%)</title><rect x="1732.7" y="3621" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1735.72" y="3631.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.lambda$executePipeline$0 (576 samples, 0.06%; 0.00%)</title><rect x="1527.5" y="4933" width="1.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1530.52" y="4943.5" ></text>
</g>
<g >
<title>void OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt;(G1ScanEvacuatedObjClosure*, oopDesc*, Klass*) (170 samples, 0.02%; +0.00%)</title><rect x="2447.2" y="6085" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2450.23" y="6095.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/TermsHash.startDocument (135 samples, 0.01%; 0.00%)</title><rect x="1094.9" y="5845" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1097.86" y="5855.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundHandler$MessageSerializer.get (396 samples, 0.04%; 0.00%)</title><rect x="285.1" y="5093" width="1.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="288.07" y="5103.5" ></text>
</g>
<g >
<title>org/apache/lucene/document/FieldType.setDimensions (152 samples, 0.02%; +0.02%)</title><rect x="1367.7" y="5797" width="0.4" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1370.71" y="5807.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (305 samples, 0.03%; +0.03%)</title><rect x="759.8" y="5765" width="0.8" height="15.0" fill="rgb(255,207,207)" rx="2" ry="2" />
<text x="762.78" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/TransportService.sendRequest (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="1349" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="1359.5" ></text>
</g>
<g >
<title>new_sync_write (453 samples, 0.05%; 0.00%)</title><rect x="324.4" y="5573" width="1.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="327.37" y="5583.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.authorizeIndexActionName (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="3557" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="3567.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Processor.execute (647 samples, 0.07%; 0.00%)</title><rect x="1535.1" y="5013" width="1.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1538.09" y="5023.5" ></text>
</g>
<g >
<title>java/util/HashMap.getNode (60 samples, 0.01%; 0.00%)</title><rect x="873.1" y="5701" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="876.12" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$AuthorizationResultListener.onResponse (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="2693" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="2703.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.sort (61 samples, 0.01%; 0.00%)</title><rect x="328.5" y="5733" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="331.52" y="5743.5" ></text>
</g>
<g >
<title>java/util/zip/DeflaterOutputStream.write (43 samples, 0.00%; 0.00%)</title><rect x="1629.8" y="517" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="527.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/common/DateFormat$1$$Lambda$6123.0x0000000801856bc8.apply (801 samples, 0.09%; +0.00%)</title><rect x="1667.7" y="5701" width="2.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1670.74" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.authorizeIndexActionName (715 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="2421" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="2431.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/common/RemoveProcessor.execute (101 samples, 0.01%; 0.00%)</title><rect x="1704.6" y="5589" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1707.59" y="5599.5" ></text>
</g>
<g >
<title>org/elasticsearch/script/mustache/MustacheScriptEngine$MustacheExecutableScript.execute (3,281 samples, 0.36%; 0.00%)</title><rect x="1684.1" y="5653" width="8.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1687.07" y="5663.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/lucene/store/FilterIndexOutput.getFilePointer (1,115 samples, 0.12%; +0.09%)</title><rect x="2251.1" y="6021" width="3.0" height="15.0" fill="rgb(255,203,203)" rx="2" ry="2" />
<text x="2254.11" y="6031.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/json/JsonXContentParser.nextToken (52 samples, 0.01%; +0.00%)</title><rect x="1130.7" y="5909" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1133.73" y="5919.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/AbstractPointGeometryFieldMapper$PointParser.parse (80 samples, 0.01%; +0.00%)</title><rect x="1228.9" y="5701" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1231.91" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/json/JsonXContentGenerator.writeString (43 samples, 0.00%; 0.00%)</title><rect x="1528.5" y="4741" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.49" y="4751.5" ></text>
</g>
<g >
<title>java/util/ArrayList.add (102 samples, 0.01%; 0.00%)</title><rect x="1389.1" y="5621" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1392.15" y="5631.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.done (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="2389" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="2399.5" ></text>
</g>
<g >
<title>java/util/HashMap.getNode (71 samples, 0.01%; +0.00%)</title><rect x="1124.0" y="5909" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1127.03" y="5919.5" ></text>
</g>
<g >
<title>org/elasticsearch/grok/GrokCaptureConfig$1.lambda$forString$0 (89 samples, 0.01%; 0.00%)</title><rect x="1784.1" y="5925" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1787.09" y="5935.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/OutputStreamIndexOutput.writeByte (171 samples, 0.02%; 0.00%)</title><rect x="546.0" y="5653" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="548.96" y="5663.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="2901" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="2911.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/interceptor/FieldAndDocumentLevelSecurityRequestInterceptor.intercept (302 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="3621" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="3631.5" ></text>
</g>
<g >
<title>java/io/BufferedOutputStream.flushBuffer (52 samples, 0.01%; 0.00%)</title><rect x="2034.3" y="5925" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2037.33" y="5935.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/FreqProxTermsWriterPerField.newTerm (352 samples, 0.04%; 0.00%)</title><rect x="925.3" y="5781" width="0.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="928.27" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (1,445 samples, 0.16%; 0.00%)</title><rect x="1535.1" y="5765" width="3.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1538.07" y="5775.5" ></text>
</g>
<g >
<title>org/apache/lucene/search/SortedSetSelector$MinValue.docID (101 samples, 0.01%; 0.00%)</title><rect x="1971.0" y="5989" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1974.02" y="5999.5" ></text>
</g>
<g >
<title>java/lang/ThreadLocal.get (107 samples, 0.01%; 0.00%)</title><rect x="1824.7" y="5893" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1827.65" y="5903.5" ></text>
</g>
<g >
<title>java/util/TreeMap.keyIterator (101 samples, 0.01%; 0.00%)</title><rect x="2308.6" y="5957" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2311.63" y="5967.5" ></text>
</g>
<g >
<title>java/util/HashMap.afterNodeInsertion (83 samples, 0.01%; +0.01%)</title><rect x="1381.7" y="5573" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1384.66" y="5583.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundHandler$MessageSerializer.get (11,918 samples, 1.32%; 0.00%)</title><rect x="1589.5" y="2533" width="32.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.51" y="2543.5" >or..</text>
</g>
<g >
<title>JVM_FillInStackTrace (97 samples, 0.01%; 0.00%)</title><rect x="1746.8" y="4501" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1749.77" y="4511.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/translog/Translog$Index.access$300 (3,020 samples, 0.33%; 0.00%)</title><rect x="1107.1" y="5925" width="8.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1110.13" y="5935.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.map (72 samples, 0.01%; +0.00%)</title><rect x="1723.1" y="3653" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1726.11" y="3663.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.lambda$authorizeIndexAction$4 (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="3861" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="3871.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/Analyzer$ReuseStrategy.getStoredValue (87 samples, 0.01%; -0.00%)</title><rect x="441.2" y="5685" width="0.3" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="444.24" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.onResponse (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="2165" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="2175.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5975.0x0000000801982e30.accept (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="3605" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="3615.5" ></text>
</g>
<g >
<title>java/lang/NumberFormatException.&lt;init&gt; (178 samples, 0.02%; 0.00%)</title><rect x="1705.2" y="5637" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1708.17" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.value (164 samples, 0.02%; 0.00%)</title><rect x="1731.0" y="3621" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1734.04" y="3631.5" ></text>
</g>
<g >
<title>new_sync_write (2,113 samples, 0.23%; 0.00%)</title><rect x="510.5" y="5637" width="5.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="513.47" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.onResponse (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="2565" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="2575.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/store/ByteSizeCachingDirectory$2.writeByte (947 samples, 0.10%; +0.00%)</title><rect x="583.4" y="5653" width="2.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="586.38" y="5663.5" ></text>
</g>
<g >
<title>java/security/Policy$PolicyDelegate.implies (40 samples, 0.00%; +0.00%)</title><rect x="1695.1" y="5077" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1698.11" y="5087.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (6,911 samples, 0.77%; +0.00%)</title><rect x="1724.3" y="4373" width="18.7" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1727.27" y="4383.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/DelegatingAnalyzerWrapper$DelegatingReuseStrategy.getReusableComponents (2,282 samples, 0.25%; 0.00%)</title><rect x="1322.8" y="5733" width="6.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1325.76" y="5743.5" ></text>
</g>
<g >
<title>com/sun/crypto/provider/CipherCore.init (96 samples, 0.01%; +0.00%)</title><rect x="301.1" y="5701" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="304.14" y="5711.5" ></text>
</g>
<g >
<title>__clock_gettime (588 samples, 0.07%; +0.00%)</title><rect x="222.8" y="6213" width="1.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="225.80" y="6223.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/util/TextBuffer.contentsAsString (60 samples, 0.01%; 0.00%)</title><rect x="1482.5" y="5909" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1485.54" y="5919.5" ></text>
</g>
<g >
<title>com/sun/crypto/provider/CipherCore.finalNoPadding (152 samples, 0.02%; 0.00%)</title><rect x="307.7" y="5637" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="310.72" y="5647.5" ></text>
</g>
<g >
<title>ext4_file_write_iter (42 samples, 0.00%; 0.00%)</title><rect x="2262.8" y="5605" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2265.82" y="5615.5" ></text>
</g>
<g >
<title>java/util/HashMap$HashIterator.nextNode (43 samples, 0.00%; +0.00%)</title><rect x="1662.5" y="5333" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1665.50" y="5343.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/BulkShardRequest$$Lambda$5980.0x00000008019cc5a0.write (274 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="1909" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="1919.5" ></text>
</g>
<g >
<title>java/lang/invoke/DirectMethodHandle.allocateInstance (99 samples, 0.01%; +0.01%)</title><rect x="1772.8" y="5749" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1775.76" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.lambda$done$0 (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="1781" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="1791.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$runRequestInterceptors$14 (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="2549" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="2559.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.lambda$done$0 (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="1509" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="1519.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/RateLimitedIndexOutput.writeBytes (1,057 samples, 0.12%; +0.00%)</title><rect x="2175.8" y="6085" width="2.9" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2178.81" y="6095.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.execute (1,709 samples, 0.19%; 0.00%)</title><rect x="1527.5" y="5829" width="4.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1530.48" y="5839.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (4,142 samples, 0.46%; 0.00%)</title><rect x="1710.8" y="5701" width="11.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1713.76" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator.lambda$lookForExistingAuthentication$6 (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="4757" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="4767.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/action/filter/SecurityActionFilter.applyInternal (174 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="4661" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="4671.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (715 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="2117" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="2127.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (108 samples, 0.01%; 0.00%)</title><rect x="1531.4" y="5397" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1534.44" y="5407.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Processor.execute (12,330 samples, 1.37%; 0.00%)</title><rect x="1722.4" y="5221" width="33.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1725.36" y="5231.5" >or..</text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/AbstractRunnable.run (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="1989" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="1999.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/RAMOutputStream.switchCurrentBuffer (84 samples, 0.01%; 0.00%)</title><rect x="2321.8" y="5941" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2324.76" y="5951.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser._parseName (168 samples, 0.02%; 0.00%)</title><rect x="1501.2" y="5925" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1504.15" y="5935.5" ></text>
</g>
<g >
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer.acquireShared (267 samples, 0.03%; +0.02%)</title><rect x="1104.7" y="5925" width="0.7" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1107.67" y="5935.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorizeBulkItems$20 (306 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="3813" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="3823.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/NotifyOnceListener.onResponse (302 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="2565" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="2575.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene80/Lucene80DocValuesProducer$TermsDict.next (1,571 samples, 0.17%; +0.00%)</title><rect x="1973.9" y="5909" width="4.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1976.86" y="5919.5" ></text>
</g>
<g >
<title>BacktraceBuilder::push(Method*, int, Thread*) (416 samples, 0.05%; +0.03%)</title><rect x="1676.9" y="5429" width="1.1" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1679.91" y="5439.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.resolveIndexNames (306 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="4437" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="4447.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/AbstractRunnable.run (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="2901" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="2911.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene80/Lucene80DocValuesConsumer.addSortedSetField (45,105 samples, 5.00%; -0.00%)</title><rect x="1921.1" y="6069" width="121.9" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1924.11" y="6079.5" >org/apache/luce..</text>
</g>
<g >
<title>org/elasticsearch/transport/TcpTransport$NodeChannels.sendRequest (52 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="1637" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="1647.5" ></text>
</g>
<g >
<title>java/util/Arrays.fill (61 samples, 0.01%; -0.05%)</title><rect x="328.7" y="5749" width="0.2" height="15.0" fill="rgb(206,206,255)" rx="2" ry="2" />
<text x="331.70" y="5759.5" ></text>
</g>
<g >
<title>java/util/HashMap$EntryIterator.next (44 samples, 0.00%; 0.00%)</title><rect x="1755.9" y="5125" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1758.86" y="5135.5" ></text>
</g>
<g >
<title>evict (163 samples, 0.02%; 0.00%)</title><rect x="1901.2" y="5781" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1904.19" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/bootstrap/ESPolicy.implies (1,909 samples, 0.21%; -0.01%)</title><rect x="1833.8" y="5861" width="5.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1836.82" y="5871.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene87/DeflateWithPresetDictCompressionMode$DeflateWithPresetDictCompressor.compress (713 samples, 0.08%; 0.00%)</title><rect x="617.8" y="5765" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="620.80" y="5775.5" ></text>
</g>
<g >
<title>frame::sender(RegisterMap*) const (205 samples, 0.02%; +0.01%)</title><rect x="1737.3" y="3749" width="0.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1740.34" y="3759.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/ByteBuffersDataOutput.toBufferList (108 samples, 0.01%; +0.01%)</title><rect x="354.0" y="5781" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="357.02" y="5791.5" ></text>
</g>
<g >
<title>java/util/ArrayList.forEach (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="2789" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="2799.5" ></text>
</g>
<g >
<title>java/util/stream/AbstractPipeline.copyInto (82 samples, 0.01%; 0.00%)</title><rect x="1539.2" y="5701" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1542.18" y="5711.5" ></text>
</g>
<g >
<title>org/apache/lucene/search/SortedSetSelector$MinValue.nextDoc (56 samples, 0.01%; -0.00%)</title><rect x="1454.6" y="5909" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1457.57" y="5919.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/translog/TranslogWriter$$Lambda$5464.0x0000000801933910.apply (159 samples, 0.02%; 0.00%)</title><rect x="509.4" y="5845" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="512.37" y="5855.5" ></text>
</g>
<g >
<title>[unknown] (320 samples, 0.04%; 0.00%)</title><rect x="304.6" y="6101" width="0.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="307.61" y="6111.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/MultiTermsEnum$TermMergeQueue.get (66 samples, 0.01%; +0.00%)</title><rect x="2420.6" y="6005" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2423.62" y="6015.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Processor.execute (11,020 samples, 1.22%; 0.00%)</title><rect x="1722.4" y="5013" width="29.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1725.40" y="5023.5" >or..</text>
</g>
<g >
<title>java/util/Arrays.equals (1,513 samples, 0.17%; 0.00%)</title><rect x="1004.2" y="5733" width="4.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1007.23" y="5743.5" ></text>
</g>
<g >
<title>java/time/ZonedDateTime.create (162 samples, 0.02%; 0.00%)</title><rect x="1520.2" y="6037" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1523.19" y="6047.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/time/DateFormatters.from (76 samples, 0.01%; +0.00%)</title><rect x="495.3" y="5829" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="498.29" y="5839.5" ></text>
</g>
<g >
<title>java/lang/String.checkBoundsOffCount (179 samples, 0.02%; -0.02%)</title><rect x="463.0" y="5653" width="0.5" height="15.0" fill="rgb(208,208,255)" rx="2" ry="2" />
<text x="466.05" y="5663.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (1,025 samples, 0.11%; 0.00%)</title><rect x="271.5" y="5301" width="2.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.52" y="5311.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/TransportService$$Lambda$3670.0x00000008015629c8.sendRequest (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="533" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="543.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/geoip/DatabaseReaderLazyLoader.lambda$getResponse$1 (288 samples, 0.03%; 0.00%)</title><rect x="1746.3" y="4677" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1749.25" y="4687.5" ></text>
</g>
<g >
<title>__munmap (54 samples, 0.01%; +0.00%)</title><rect x="1847.9" y="5429" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1850.93" y="5439.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8JsonGenerator.writeStartObject (40 samples, 0.00%; 0.00%)</title><rect x="1562.4" y="5797" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1565.38" y="5807.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.convert (206 samples, 0.02%; +0.02%)</title><rect x="1546.0" y="5797" width="0.6" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1549.01" y="5807.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/fst/BytesStore.writeByte (174 samples, 0.02%; 0.00%)</title><rect x="1886.0" y="5637" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1889.04" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/time/DateFormatters.forPattern (72 samples, 0.01%; +0.00%)</title><rect x="1530.8" y="5157" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1533.77" y="5167.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/TransportDecompressor.decompress (8,912 samples, 0.99%; +0.00%)</title><rect x="226.6" y="5637" width="24.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="229.63" y="5647.5" >o..</text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.unknownValue (90 samples, 0.01%; 0.00%)</title><rect x="1694.3" y="4997" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.32" y="5007.5" ></text>
</g>
<g >
<title>java/util/zip/Deflater.deflate (222 samples, 0.02%; 0.00%)</title><rect x="1619.2" y="2229" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1622.24" y="2239.5" ></text>
</g>
<g >
<title>java/util/HashMap.hash (38 samples, 0.00%; 0.00%)</title><rect x="429.2" y="5749" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="432.20" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/FieldNamesFieldMapper$1$1.next (65 samples, 0.01%; 0.00%)</title><rect x="1428.9" y="5813" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1431.91" y="5823.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/FieldInfo.setDocValuesType (954 samples, 0.11%; +0.06%)</title><rect x="1040.6" y="5813" width="2.6" height="15.0" fill="rgb(255,205,205)" rx="2" ry="2" />
<text x="1043.58" y="5823.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/lucene/store/FilterIndexOutput.getFilePointer (38 samples, 0.00%; +0.00%)</title><rect x="1881.0" y="5669" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1884.04" y="5679.5" ></text>
</g>
<g >
<title>__x64_sys_unlink (93 samples, 0.01%; 0.00%)</title><rect x="1847.7" y="5541" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.66" y="5551.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/Sorter.binarySort (57 samples, 0.01%; +0.00%)</title><rect x="1867.6" y="5493" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1870.56" y="5503.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (931 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="3813" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.83" y="3823.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/AbstractRunnable.run (931 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="2373" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.83" y="2383.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/AttributeSource.clearAttributes (146 samples, 0.02%; +0.01%)</title><rect x="1157.2" y="5765" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1160.19" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/json/JsonXContent.createParser (171 samples, 0.02%; +0.00%)</title><rect x="276.8" y="4117" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="279.84" y="4127.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/DocValuesConsumer$SortedSetDocValuesSub.nextDoc (737 samples, 0.08%; +0.08%)</title><rect x="2014.3" y="6005" width="2.0" height="15.0" fill="rgb(255,204,204)" rx="2" ry="2" />
<text x="2017.32" y="6015.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.field (44 samples, 0.00%; 0.00%)</title><rect x="1699.1" y="5285" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1702.15" y="5295.5" ></text>
</g>
<g >
<title>java/util/ArrayList.forEach (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="2693" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="2703.5" ></text>
</g>
<g >
<title>java/util/ArrayList.grow (84 samples, 0.01%; 0.00%)</title><rect x="1362.1" y="5733" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1365.08" y="5743.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/tokenattributes/CharTermAttributeImpl.getBytesRef (2,655 samples, 0.29%; 0.00%)</title><rect x="850.1" y="5813" width="7.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="853.12" y="5823.5" ></text>
</g>
<g >
<title>PhaseChaitin::Split(unsigned int, ResourceArea*) (38 samples, 0.00%; -0.00%)</title><rect x="2449.4" y="6085" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2452.36" y="6095.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (38 samples, 0.00%; 0.00%)</title><rect x="271.6" y="3589" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.58" y="3599.5" ></text>
</g>
<g >
<title>java/util/zip/Deflater.deflateBytesBytes (43,672 samples, 4.84%; +0.00%)</title><rect x="640.1" y="5717" width="118.0" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="643.06" y="5727.5" >java/util/zip/..</text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.parseMediumName (348 samples, 0.04%; 0.00%)</title><rect x="422.3" y="5861" width="0.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="425.29" y="5871.5" ></text>
</g>
<g >
<title>generic_perform_write (54 samples, 0.01%; +0.00%)</title><rect x="2250.4" y="5525" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2253.42" y="5535.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/DocsWithFieldSet.add (413 samples, 0.05%; -0.05%)</title><rect x="410.4" y="5797" width="1.1" height="15.0" fill="rgb(206,206,255)" rx="2" ry="2" />
<text x="413.41" y="5807.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/Uid.isPositiveNumeric (55 samples, 0.01%; +0.00%)</title><rect x="1453.3" y="5973" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1456.28" y="5983.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.getRoles (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="4453" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="4463.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (4,947 samples, 0.55%; 0.00%)</title><rect x="1625.5" y="5157" width="13.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.53" y="5167.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$CachingAsyncSupplier.lambda$getAsync$0 (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="3557" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="3567.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/bytes/BytesReferenceStreamInput.readByte (170 samples, 0.02%; 0.00%)</title><rect x="266.7" y="5253" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="269.75" y="5263.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/blocktree/BlockTreeTermsReader.checkIntegrity (145 samples, 0.02%; 0.00%)</title><rect x="2442.8" y="6053" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2445.76" y="6063.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/action/filter/SecurityActionFilter.lambda$applyInternal$3 (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="2117" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="2127.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/OutputStreamIndexOutput.writeByte (572 samples, 0.06%; 0.00%)</title><rect x="574.1" y="5621" width="1.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="577.14" y="5631.5" ></text>
</g>
<g >
<title>inet6_recvmsg (694 samples, 0.08%; 0.00%)</title><rect x="302.6" y="5813" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="305.58" y="5823.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/action/filter/SecurityActionFilter$$Lambda$5025.0x00000008016b7bb0.accept (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="1013" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="1023.5" ></text>
</g>
<g >
<title>java/util/HashMap$Node.getValue (65 samples, 0.01%; +0.01%)</title><rect x="1380.3" y="5589" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1383.31" y="5599.5" ></text>
</g>
<g >
<title>vframeStream::vframeStream(JavaThread*, bool) (90 samples, 0.01%; -0.00%)</title><rect x="1844.7" y="5877" width="0.3" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1847.73" y="5887.5" ></text>
</g>
<g >
<title>java/lang/AbstractStringBuilder.setLength (51 samples, 0.01%; -0.00%)</title><rect x="438.5" y="5765" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="441.47" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/FieldMapper.parse (25,215 samples, 2.79%; +0.00%)</title><rect x="1294.5" y="5797" width="68.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1297.46" y="5807.5" >org/ela..</text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/TransportReplicationAction$ReroutePhase.performRemoteAction (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="1941" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="1951.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/StepListener.innerOnResponse (227 samples, 0.03%; 0.00%)</title><rect x="271.7" y="4069" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.72" y="4079.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene87/DeflateWithPresetDictCompressionMode$DeflateWithPresetDictCompressor.doCompress (80 samples, 0.01%; 0.00%)</title><rect x="330.4" y="5765" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="333.39" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/NotifyOnceListener.onResponse (230 samples, 0.03%; 0.00%)</title><rect x="271.7" y="4341" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.72" y="4351.5" ></text>
</g>
<g >
<title>[vdso] (452 samples, 0.05%; +0.01%)</title><rect x="223.1" y="6181" width="1.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="226.13" y="6191.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$runRequestInterceptors$14 (302 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="3125" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="3135.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/NotifyOnceListener.onResponse (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="1237" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="1247.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene87/DeflateWithPresetDictCompressionMode$DeflateWithPresetDictCompressor.doCompress (6,968 samples, 0.77%; 0.00%)</title><rect x="335.0" y="5781" width="18.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="338.01" y="5791.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/OutputStreamIndexOutput.writeBytes (559 samples, 0.06%; 0.00%)</title><rect x="758.2" y="5701" width="1.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="761.16" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/NotifyOnceListener.onResponse (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="2341" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="2351.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundHandler$SendContext.get (714 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="437" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="447.5" ></text>
</g>
<g >
<title>java/util/zip/CRC32.update (357 samples, 0.04%; 0.00%)</title><rect x="1107.4" y="5813" width="1.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1110.43" y="5823.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/StepListener.innerOnResponse (38 samples, 0.00%; 0.00%)</title><rect x="271.6" y="3237" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.58" y="3247.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.authorizeIndexAction (723 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="3141" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.77" y="3151.5" ></text>
</g>
<g >
<title>itable stub (44 samples, 0.00%; +0.00%)</title><rect x="269.8" y="5301" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="272.79" y="5311.5" ></text>
</g>
<g >
<title>generic_write_end (77 samples, 0.01%; 0.00%)</title><rect x="759.2" y="5285" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="762.16" y="5295.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/tokenattributes/PackedTokenAttributeImpl.clear (232 samples, 0.03%; +0.03%)</title><rect x="836.7" y="5765" width="0.6" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="839.70" y="5775.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/BytesRefHash.add (20,095 samples, 2.23%; +0.14%)</title><rect x="960.7" y="5797" width="54.3" height="15.0" fill="rgb(255,200,200)" rx="2" ry="2" />
<text x="963.69" y="5807.5" >org/a..</text>
</g>
<g >
<title>org/elasticsearch/script/mustache/MustacheScriptEngine$MustacheExecutableScript.lambda$execute$0 (40 samples, 0.00%; 0.00%)</title><rect x="1715.3" y="4533" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1718.33" y="4543.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.appendFieldValue (839 samples, 0.09%; 0.00%)</title><rect x="1738.0" y="3973" width="2.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1740.99" y="3983.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/collect/Iterators$ConcatenatedIterator.next (43 samples, 0.00%; 0.00%)</title><rect x="1538.3" y="5349" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1541.34" y="5359.5" ></text>
</g>
<g >
<title>ext4_file_write_iter (190 samples, 0.02%; 0.00%)</title><rect x="1894.1" y="5381" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1897.11" y="5391.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.getText (765 samples, 0.08%; -0.00%)</title><rect x="480.3" y="5749" width="2.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="483.32" y="5759.5" ></text>
</g>
<g >
<title>java/util/HashMap.putVal (53 samples, 0.01%; +0.00%)</title><rect x="1775.4" y="5845" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1778.38" y="5855.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator.lambda$authenticateAsync$2 (174 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="4533" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="4543.5" ></text>
</g>
<g >
<title>java/util/HashMap$EntryIterator.next (118 samples, 0.01%; +0.00%)</title><rect x="1755.0" y="5125" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1758.00" y="5135.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/EsExecutors$DirectExecutorService.execute (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="1477" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="1487.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.getText (147 samples, 0.02%; +0.02%)</title><rect x="1303.1" y="5765" width="0.4" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1306.10" y="5775.5" ></text>
</g>
<g >
<title>java/time/format/Parsed.copy (118 samples, 0.01%; 0.00%)</title><rect x="1668.5" y="5477" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1671.46" y="5487.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/DocumentParser.parseObjectOrField (1,153 samples, 0.13%; -0.01%)</title><rect x="439.6" y="5797" width="3.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="442.60" y="5807.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/AbstractRunnable.run (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="2165" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="2175.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/NotifyOnceListener.onResponse (931 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="2533" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.83" y="2543.5" ></text>
</g>
<g >
<title>java/lang/String.checkBoundsOffCount (692 samples, 0.08%; +0.08%)</title><rect x="1337.1" y="5701" width="1.9" height="15.0" fill="rgb(255,204,204)" rx="2" ry="2" />
<text x="1340.11" y="5711.5" ></text>
</g>
<g >
<title>java/util/concurrent/ConcurrentHashMap.get (72 samples, 0.01%; +0.01%)</title><rect x="1388.0" y="5637" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1390.95" y="5647.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/JsonReadContext._checkDup (504 samples, 0.06%; 0.00%)</title><rect x="420.6" y="5861" width="1.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="423.56" y="5871.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.setFieldValue (83 samples, 0.01%; 0.00%)</title><rect x="1536.6" y="4981" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.61" y="4991.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/action/filter/SecurityActionFilter.lambda$applyInternal$2 (1,676 samples, 0.19%; 0.00%)</title><rect x="286.2" y="5525" width="4.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="289.19" y="5535.5" ></text>
</g>
<g >
<title>java/lang/Throwable.fillInStackTrace (60 samples, 0.01%; 0.00%)</title><rect x="1537.6" y="4981" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1540.57" y="4991.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/FieldNamesFieldMapper$1$1.next (244 samples, 0.03%; 0.00%)</title><rect x="1241.9" y="5653" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1244.90" y="5663.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser._nextAfterName (138 samples, 0.02%; +0.02%)</title><rect x="1200.9" y="5781" width="0.4" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1203.91" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundHandler.internalSend (302 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="2037" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="2047.5" ></text>
</g>
<g >
<title>jdk/internal/util/ArraysSupport.mismatch (60 samples, 0.01%; +0.01%)</title><rect x="614.9" y="5605" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="617.88" y="5615.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/AbstractRunnable.run (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="2245" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="2255.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/DocumentMapper.parse (121,286 samples, 13.44%; 0.00%)</title><rect x="1124.7" y="5989" width="327.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1127.72" y="5999.5" >org/elasticsearch/index/mapper/DocumentMappe..</text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator.access$000 (215 samples, 0.02%; 0.00%)</title><rect x="1627.8" y="3957" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="3967.5" ></text>
</g>
<g >
<title>__mark_inode_dirty (399 samples, 0.04%; +0.00%)</title><rect x="514.3" y="5541" width="1.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="517.34" y="5551.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/engine/InternalEngine.maybeRefresh (17,735 samples, 1.96%; 0.00%)</title><rect x="1847.6" y="6101" width="48.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.64" y="6111.5" >org/..</text>
</g>
<g >
<title>java/util/HashMap.putVal (39 samples, 0.00%; 0.00%)</title><rect x="1666.9" y="5461" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1669.87" y="5471.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/time/JavaDateFormatter.format (94 samples, 0.01%; 0.00%)</title><rect x="1667.2" y="5701" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1670.23" y="5711.5" ></text>
</g>
<g >
<title>java/nio/channels/Channels$1.write (903 samples, 0.10%; 0.00%)</title><rect x="2176.1" y="5989" width="2.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2179.06" y="5999.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.authorizeIndexActionName (49 samples, 0.01%; 0.00%)</title><rect x="271.6" y="4437" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.57" y="4447.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/BytesRefHash.sort (822 samples, 0.09%; 0.00%)</title><rect x="1889.4" y="5749" width="2.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1892.44" y="5759.5" ></text>
</g>
<g >
<title>java/lang/StringLatin1.hashCode (45 samples, 0.00%; +0.00%)</title><rect x="1220.0" y="5637" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1222.97" y="5647.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeFormatterBuilder.parsePattern (66 samples, 0.01%; +0.00%)</title><rect x="1754.0" y="4869" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1756.97" y="4879.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/AbstractRunnable.run (278 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="4405" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.44" y="4415.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/interceptor/FieldAndDocumentLevelSecurityRequestInterceptor.intercept (486 samples, 0.05%; 0.00%)</title><rect x="274.8" y="2677" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.84" y="2687.5" ></text>
</g>
<g >
<title>vtable stub (47 samples, 0.01%; +0.01%)</title><rect x="562.7" y="5621" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="565.75" y="5631.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/bytes/BytesArray.writeTo (281 samples, 0.03%; 0.00%)</title><rect x="1115.4" y="5941" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1118.45" y="5951.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.sort (68 samples, 0.01%; 0.00%)</title><rect x="559.3" y="5669" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="562.29" y="5679.5" ></text>
</g>
<g >
<title>java/io/BufferedOutputStream.write (2,330 samples, 0.26%; 0.00%)</title><rect x="2256.6" y="5941" width="6.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2259.64" y="5951.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$$Lambda$4893.0x00000008017ed008.accept (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="2165" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="2175.5" ></text>
</g>
<g >
<title>java/util/HashMap$EntryIterator.next (143 samples, 0.02%; 0.00%)</title><rect x="1581.7" y="5765" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1584.68" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/TransportBulkAction$BulkOperation.doRun (39 samples, 0.00%; 0.00%)</title><rect x="1630.9" y="3877" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="3887.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/transport/SecurityServerTransportInterceptor$ProfileSecuredRequestHandler$1.doRun (38 samples, 0.00%; 0.00%)</title><rect x="271.6" y="2725" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.58" y="2735.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (8,125 samples, 0.90%; +0.00%)</title><rect x="1722.5" y="4677" width="22.0" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1725.51" y="4687.5" >o..</text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5648.0x0000000801980b40.accept (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="1413" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="1423.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/KeyedLock.tryCreateNewLock (455 samples, 0.05%; +0.00%)</title><rect x="1098.1" y="5941" width="1.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1101.11" y="5951.5" ></text>
</g>
<g >
<title>java/util/HashMap$Values.iterator (111 samples, 0.01%; 0.00%)</title><rect x="1558.6" y="5765" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1561.64" y="5775.5" ></text>
</g>
<g >
<title>com/github/mustachejava/Mustache.execute (41 samples, 0.00%; 0.00%)</title><rect x="1736.0" y="3765" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1739.05" y="3775.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/CollectionUtils.convert (64 samples, 0.01%; +0.01%)</title><rect x="1833.3" y="5781" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1836.30" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/KeywordFieldMapper.normalizeValue (93 samples, 0.01%; 0.00%)</title><rect x="1229.9" y="5637" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1232.93" y="5647.5" ></text>
</g>
<g >
<title>java/util/zip/CheckedOutputStream.write (189 samples, 0.02%; +0.02%)</title><rect x="533.0" y="5573" width="0.5" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="536.01" y="5583.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeFormatterBuilder$CompositePrinterParser.parse (187 samples, 0.02%; +0.00%)</title><rect x="1668.3" y="5525" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1671.31" y="5535.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene84/ForDeltaUtil.encodeDeltas (227 samples, 0.03%; 0.00%)</title><rect x="532.9" y="5717" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="535.91" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/engine/InternalEngine$$Lambda$5419.0x000000080191e898.accept (159 samples, 0.02%; 0.00%)</title><rect x="509.4" y="5829" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="512.37" y="5839.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/DocumentsWriter.doFlush (30,573 samples, 3.39%; 0.00%)</title><rect x="539.2" y="5861" width="82.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="542.18" y="5871.5" >org/apach..</text>
</g>
<g >
<title>/lib/x86_64-linux-gnu/libz.so.1.2.11 (156 samples, 0.02%; +0.01%)</title><rect x="284.0" y="5637" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="286.99" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/TransportReplicationAction$ReroutePhase.performAction (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="1925" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="1935.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/index/IndexRequest.source (514 samples, 0.06%; 0.00%)</title><rect x="1527.5" y="4885" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1530.52" y="4895.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ConditionalProcessor.execute (253 samples, 0.03%; 0.00%)</title><rect x="1630.5" y="4213" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.53" y="4223.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="1829" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="1839.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine$$Lambda$5635.0x0000000801827740.accept (12,187 samples, 1.35%; 0.00%)</title><rect x="1589.2" y="5221" width="33.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.21" y="5231.5" >or..</text>
</g>
<g >
<title>java/security/AccessController.getStackAccessControlContext (555 samples, 0.06%; 0.00%)</title><rect x="1741.2" y="4053" width="1.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1744.25" y="4063.5" ></text>
</g>
<g >
<title>java/util/zip/Deflater.setDictionary (318 samples, 0.04%; 0.00%)</title><rect x="334.1" y="5749" width="0.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="337.15" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$1.doRun (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="1973" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="1983.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.findName (342 samples, 0.04%; -0.00%)</title><rect x="1474.9" y="5925" width="1.0" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1477.93" y="5935.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.notifyListener (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="1541" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="1551.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/BaseFuture.set (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="1573" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="1583.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (434 samples, 0.05%; 0.00%)</title><rect x="1532.1" y="5573" width="1.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.10" y="5583.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/common/AppendProcessor.execute (89 samples, 0.01%; 0.00%)</title><rect x="1723.9" y="4165" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.93" y="4175.5" ></text>
</g>
<g >
<title>java/security/AccessController.doPrivileged (54 samples, 0.01%; 0.00%)</title><rect x="1847.9" y="5637" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.93" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/support/AbstractXContentParser.textOrNull (157 samples, 0.02%; -0.00%)</title><rect x="424.1" y="5813" width="0.5" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="427.15" y="5823.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/DocValuesConsumer$5$1.nextOrd (6,293 samples, 0.70%; -0.04%)</title><rect x="1939.5" y="6053" width="17.0" height="15.0" fill="rgb(207,207,255)" rx="2" ry="2" />
<text x="1942.47" y="6063.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5975.0x0000000801982e30.accept (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="2901" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="2911.5" ></text>
</g>
<g >
<title>java/security/AccessController.doPrivileged (135 samples, 0.01%; 0.00%)</title><rect x="1537.4" y="5173" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1540.36" y="5183.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (434 samples, 0.05%; 0.00%)</title><rect x="1532.1" y="5621" width="1.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.10" y="5631.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionRequest.&lt;init&gt; (172 samples, 0.02%; 0.00%)</title><rect x="253.1" y="5301" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="256.08" y="5311.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundHandler.sendRequest (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="485" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="495.5" ></text>
</g>
<g >
<title>java/util/HashMap.getNode (741 samples, 0.08%; 0.00%)</title><rect x="608.4" y="5717" width="2.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="611.38" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$3.onResponse (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="1925" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="1935.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/DocIDMerger$SequentialDocIDMerger.next (94 samples, 0.01%; +0.00%)</title><rect x="1853.4" y="5653" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1856.43" y="5663.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/TransportBulkAction$BulkOperation.doRun (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="3637" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="3647.5" ></text>
</g>
<g >
<title>sun/nio/ch/FileDispatcherImpl.write0 (169 samples, 0.02%; 0.00%)</title><rect x="2304.8" y="5717" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2307.77" y="5727.5" ></text>
</g>
<g >
<title>java/lang/StringLatin1.hashCode (67 samples, 0.01%; +0.00%)</title><rect x="1328.7" y="5605" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1331.75" y="5615.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/StringHelper.murmurhash3_x86_32 (61 samples, 0.01%; +0.01%)</title><rect x="1099.8" y="5877" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1102.77" y="5887.5" ></text>
</g>
<g >
<title>java/util/concurrent/atomic/LongAdder.add (152 samples, 0.02%; +0.02%)</title><rect x="1123.6" y="5925" width="0.4" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1126.62" y="5935.5" ></text>
</g>
<g >
<title>org/elasticsearch/script/mustache/MustacheScriptEngine$MustacheExecutableScript$$Lambda$6072.0x00000008018b0268.run (524 samples, 0.06%; 0.00%)</title><rect x="1684.1" y="5605" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1687.07" y="5615.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene80/Lucene80DocValuesProducer$22.nextDoc (830 samples, 0.09%; 0.00%)</title><rect x="1962.7" y="5941" width="2.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1965.68" y="5951.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ConditionalProcessor$$Lambda$6085.0x00000008019e2fa0.accept (12,752 samples, 1.41%; +0.00%)</title><rect x="1722.2" y="5573" width="34.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1725.25" y="5583.5" >or..</text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$CachingAsyncSupplier.getAsync (215 samples, 0.02%; 0.00%)</title><rect x="1627.8" y="3445" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="3455.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/BufferedChecksum.update (729 samples, 0.08%; +0.00%)</title><rect x="1107.3" y="5829" width="2.0" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1110.35" y="5839.5" ></text>
</g>
<g >
<title>/lib/x86_64-linux-gnu/libz.so.1.2.11 (167 samples, 0.02%; +0.02%)</title><rect x="1661.6" y="1589" width="0.4" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1664.56" y="1599.5" ></text>
</g>
<g >
<title>java/time/format/Parsed.copy (238 samples, 0.03%; 0.00%)</title><rect x="1296.2" y="5605" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1299.21" y="5615.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundHandler$MessageSerializer.get (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="1765" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="1775.5" ></text>
</g>
<g >
<title>java/util/HashMap.putVal (77 samples, 0.01%; +0.00%)</title><rect x="1745.0" y="4597" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1748.00" y="4607.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundHandler$SendContext.get (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="1189" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="1199.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/EsExecutors$DirectExecutorService.execute (215 samples, 0.02%; 0.00%)</title><rect x="271.7" y="3413" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.75" y="3423.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/NotifyOnceListener.onResponse (38 samples, 0.00%; 0.00%)</title><rect x="271.6" y="3781" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.58" y="3791.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$$Lambda$4893.0x00000008017ed008.accept (302 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="3253" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="3263.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="3013" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="3023.5" ></text>
</g>
<g >
<title>CompressedReadStream::read_int() (99 samples, 0.01%; +0.01%)</title><rect x="1672.6" y="5493" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1675.55" y="5503.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine$$Lambda$5637.0x0000000801827ba0.accept (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="3797" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="3807.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.onResponse (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="1733" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="1743.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/time/JavaDateFormatter.&lt;init&gt; (107 samples, 0.01%; 0.00%)</title><rect x="1754.3" y="4885" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1757.31" y="4895.5" ></text>
</g>
<g >
<title>java/nio/ByteBuffer.position (46 samples, 0.01%; 0.00%)</title><rect x="1897.4" y="5893" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1900.37" y="5903.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/EsExecutors$DirectExecutorService.execute (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="1605" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="1615.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/collect/CopyOnWriteHashMap$InnerNode.get (89 samples, 0.01%; 0.00%)</title><rect x="444.4" y="5781" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="447.39" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/geoip/GeoIpProcessor.getGeoData (574 samples, 0.06%; 0.00%)</title><rect x="1716.6" y="4949" width="1.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1719.57" y="4959.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$CachingAsyncSupplier.getAsync (936 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="4613" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.82" y="4623.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine$$Lambda$5637.0x0000000801827ba0.accept (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="2549" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="2559.5" ></text>
</g>
<g >
<title>java/lang/StringLatin1.hashCode (92 samples, 0.01%; -0.01%)</title><rect x="447.3" y="5637" width="0.3" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="450.35" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/shard/IndexShard.sync (3,644 samples, 0.40%; 0.00%)</title><rect x="508.2" y="6021" width="9.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="511.20" y="6031.5" ></text>
</g>
<g >
<title>sun/nio/fs/LinuxFileSystemProvider.readAttributes (182 samples, 0.02%; 0.00%)</title><rect x="1846.1" y="5173" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1849.06" y="5183.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/SegmentCoreReaders.decRef (54 samples, 0.01%; 0.00%)</title><rect x="1847.9" y="5797" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1850.93" y="5807.5" ></text>
</g>
<g >
<title>java/util/HashMap.hash (48 samples, 0.01%; 0.00%)</title><rect x="1103.5" y="5797" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1106.49" y="5807.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/DocumentsWriter.updateDocuments (210,891 samples, 23.36%; 0.00%)</title><rect x="525.2" y="5893" width="570.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="528.18" y="5903.5" >org/apache/lucene/index/DocumentsWriter.updateDocuments</text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8JsonGenerator.writeFieldName (282 samples, 0.03%; +0.00%)</title><rect x="1656.0" y="5189" width="0.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1659.01" y="5199.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="2837" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="2847.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (41 samples, 0.00%; -0.00%)</title><rect x="1984.7" y="5813" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1987.66" y="5823.5" ></text>
</g>
<g >
<title>ext4_mark_inode_dirty (78 samples, 0.01%; 0.00%)</title><rect x="325.2" y="5445" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="328.16" y="5455.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/translog/Translog.add (1,104 samples, 0.12%; -0.00%)</title><rect x="414.2" y="5989" width="3.0" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="417.17" y="5999.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.lambda$static$13 (887 samples, 0.10%; +0.00%)</title><rect x="1577.9" y="5765" width="2.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1580.88" y="5775.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeFormatterBuilder$CompositePrinterParser.parse (698 samples, 0.08%; +0.00%)</title><rect x="473.7" y="5653" width="1.9" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="476.72" y="5663.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$$Lambda$4893.0x00000008017ed008.accept (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="2053" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="2063.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/BaseFuture.set (486 samples, 0.05%; 0.00%)</title><rect x="274.8" y="2613" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.84" y="2623.5" ></text>
</g>
<g >
<title>vtable stub (57 samples, 0.01%; +0.01%)</title><rect x="547.7" y="5669" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="550.74" y="5679.5" ></text>
</g>
<g >
<title>java/lang/AbstractStringBuilder.setLength (38 samples, 0.00%; +0.00%)</title><rect x="1127.5" y="5909" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1130.48" y="5919.5" ></text>
</g>
<g >
<title>java/util/HashMap.getNode (83 samples, 0.01%; +0.00%)</title><rect x="1429.4" y="5749" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1432.43" y="5759.5" ></text>
</g>
<g >
<title>java/util/HashMap.getNode (265 samples, 0.03%; 0.00%)</title><rect x="1352.7" y="5717" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1355.67" y="5727.5" ></text>
</g>
<g >
<title>java/util/stream/ReduceOps$ReduceOp.evaluateSequential (204 samples, 0.02%; -0.01%)</title><rect x="504.0" y="5861" width="0.6" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="507.00" y="5871.5" ></text>
</g>
<g >
<title>java/util/concurrent/locks/ReentrantReadWriteLock$ReadLock.unlock (42 samples, 0.00%; 0.00%)</title><rect x="1105.5" y="5941" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1108.52" y="5951.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.lambda$authorizeIndexAction$4 (48 samples, 0.01%; 0.00%)</title><rect x="271.6" y="4309" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.57" y="4319.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/BulkShardResponse.lambda$new$0 (806 samples, 0.09%; 0.00%)</title><rect x="290.8" y="5477" width="2.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="293.76" y="5487.5" ></text>
</g>
<g >
<title>java/util/ArrayList$ArrayListSpliterator.forEachRemaining (37 samples, 0.00%; 0.00%)</title><rect x="274.8" y="2005" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.84" y="2015.5" ></text>
</g>
<g >
<title>fsync (136 samples, 0.02%; 0.00%)</title><rect x="1456.4" y="5893" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1459.37" y="5903.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/compressing/CompressingStoredFieldsWriter.flush (183 samples, 0.02%; 0.00%)</title><rect x="2173.9" y="6101" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2176.91" y="6111.5" ></text>
</g>
<g >
<title>JVM_GetStackAccessControlContext (483 samples, 0.05%; +0.03%)</title><rect x="1664.0" y="5317" width="1.3" height="15.0" fill="rgb(255,207,207)" rx="2" ry="2" />
<text x="1667.03" y="5327.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/tokenattributes/PackedTokenAttributeImpl.clear (45 samples, 0.00%; +0.00%)</title><rect x="871.7" y="5781" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="874.68" y="5791.5" ></text>
</g>
<g >
<title>java/util/HashMap$HashIterator.&lt;init&gt; (45 samples, 0.00%; +0.00%)</title><rect x="1727.7" y="3605" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1730.66" y="3615.5" ></text>
</g>
<g >
<title>java/util/IdentityHashMap.hash (411 samples, 0.05%; +0.00%)</title><rect x="1550.5" y="5749" width="1.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1553.47" y="5759.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.findName (222 samples, 0.02%; +0.00%)</title><rect x="1513.4" y="5877" width="0.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1516.40" y="5887.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/DataOutput.writeLong (134 samples, 0.01%; +0.00%)</title><rect x="1873.0" y="5653" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1876.00" y="5663.5" ></text>
</g>
<g >
<title>java/util/stream/ReduceOps$5.evaluateSequential (1,275 samples, 0.14%; 0.00%)</title><rect x="1435.5" y="5861" width="3.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1438.48" y="5871.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestService$$Lambda$6064.0x00000008019e1000.accept (279 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="4501" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.44" y="4511.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/standard/StandardTokenizer.close (37 samples, 0.00%; -0.00%)</title><rect x="365.4" y="5797" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="368.39" y="5807.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/AsyncIOProcessor.notifyList (155 samples, 0.02%; 0.00%)</title><rect x="508.2" y="5973" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="511.21" y="5983.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.parseMediumName2 (43 samples, 0.00%; 0.00%)</title><rect x="1501.5" y="5893" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1504.49" y="5903.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (2,865 samples, 0.32%; +0.00%)</title><rect x="1697.1" y="5621" width="7.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1700.12" y="5631.5" ></text>
</g>
<g >
<title>com/sun/crypto/provider/CipherCore.fillOutputBuffer (162 samples, 0.02%; -0.00%)</title><rect x="307.7" y="5653" width="0.5" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="310.72" y="5663.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (2,752 samples, 0.30%; 0.00%)</title><rect x="1697.1" y="5525" width="7.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1700.14" y="5535.5" ></text>
</g>
<g >
<title>frame::frame(long*, long*, long*, unsigned char*) (68 samples, 0.01%; +0.00%)</title><rect x="1633.3" y="4709" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1636.29" y="4719.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.createTemplateModel (48 samples, 0.01%; 0.00%)</title><rect x="1716.2" y="4805" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1719.24" y="4815.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/store/ByteSizeCachingDirectory$1.refresh (190 samples, 0.02%; 0.00%)</title><rect x="1846.1" y="5269" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1849.06" y="5279.5" ></text>
</g>
<g >
<title>vtable stub (270 samples, 0.03%; +0.00%)</title><rect x="1998.9" y="5941" width="0.7" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2001.89" y="5951.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.findName (38 samples, 0.00%; -0.00%)</title><rect x="448.6" y="5685" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="451.62" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService.authenticate (12,195 samples, 1.35%; 0.00%)</title><rect x="1589.2" y="5669" width="33.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.18" y="5679.5" >or..</text>
</g>
<g >
<title>org/apache/lucene/util/fst/Builder.add (221 samples, 0.02%; +0.00%)</title><rect x="2206.9" y="6005" width="0.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2209.91" y="6015.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/NormValuesWriter.flush (43 samples, 0.00%; 0.00%)</title><rect x="1863.1" y="5765" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1866.13" y="5775.5" ></text>
</g>
<g >
<title>JVM_IsThreadAlive (68 samples, 0.01%; +0.00%)</title><rect x="1328.5" y="5621" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1331.47" y="5631.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/packed/MonotonicLongValues$Builder.pack (83 samples, 0.01%; +0.00%)</title><rect x="2048.1" y="6005" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2051.07" y="6015.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.lambda$static$13 (64 samples, 0.01%; 0.00%)</title><rect x="1659.2" y="5157" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.16" y="5167.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/SingletonSortedNumericDocValues.nextValue (385 samples, 0.04%; +0.00%)</title><rect x="1911.0" y="6021" width="1.0" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1913.99" y="6031.5" ></text>
</g>
<g >
<title>java/lang/ThreadLocal.get (185 samples, 0.02%; 0.00%)</title><rect x="522.9" y="5909" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="525.86" y="5919.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5975.0x0000000801982e30.accept (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="3573" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="3583.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/AbstractRunnable.run (931 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="2629" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.83" y="2639.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/ContentPath.pathAsText (71 samples, 0.01%; +0.01%)</title><rect x="1239.3" y="5589" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1242.32" y="5599.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/TransportAction$RequestFilterChain.proceed (486 samples, 0.05%; 0.00%)</title><rect x="274.8" y="2165" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.84" y="2175.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/DocValuesConsumer$5$1.nextOrd (97 samples, 0.01%; 0.00%)</title><rect x="547.6" y="5685" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="550.63" y="5695.5" ></text>
</g>
<g >
<title>JVM_IHashCode (187 samples, 0.02%; +0.01%)</title><rect x="1557.4" y="5701" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1560.37" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/TransportService.sendRequestInternal (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="1877" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="1887.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/json/JsonXContentParser.text (118 samples, 0.01%; 0.00%)</title><rect x="440.8" y="5733" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="443.79" y="5743.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.notifyListener (38 samples, 0.00%; 0.00%)</title><rect x="271.6" y="3653" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.58" y="3663.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/BigArrays.validate (664 samples, 0.07%; +0.04%)</title><rect x="1101.8" y="5893" width="1.8" height="15.0" fill="rgb(255,207,207)" rx="2" ry="2" />
<text x="1104.83" y="5903.5" ></text>
</g>
<g >
<title>java/util/DualPivotQuicksort.sort (284 samples, 0.03%; +0.01%)</title><rect x="552.1" y="5685" width="0.8" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="555.12" y="5695.5" ></text>
</g>
<g >
<title>java/security/AccessControlContext.combine (55 samples, 0.01%; +0.00%)</title><rect x="1839.0" y="5877" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1841.98" y="5887.5" ></text>
</g>
<g >
<title>ksys_write (59 samples, 0.01%; 0.00%)</title><rect x="2250.4" y="5621" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2253.41" y="5631.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/bytes/BytesReferenceStreamInput.read (127 samples, 0.01%; +0.00%)</title><rect x="1459.8" y="6021" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1462.78" y="6031.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/IntroSorter.sort (480 samples, 0.05%; 0.00%)</title><rect x="565.9" y="5589" width="1.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="568.94" y="5599.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/metrics/CounterMetric.inc (152 samples, 0.02%; 0.00%)</title><rect x="1123.6" y="5957" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1126.62" y="5967.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/common/RenameProcessor.execute (315 samples, 0.03%; 0.00%)</title><rect x="1745.3" y="4741" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1748.27" y="4751.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/CompressibleBytesOutputStream.writeBytes (77 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="181" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="191.5" ></text>
</g>
<g >
<title>java/util/zip/CheckedOutputStream.write (6,680 samples, 0.74%; +0.72%)</title><rect x="2287.2" y="5861" width="18.0" height="15.0" fill="rgb(255,159,159)" rx="2" ry="2" />
<text x="2290.17" y="5871.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (7,793 samples, 0.86%; 0.00%)</title><rect x="1722.5" y="4533" width="21.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1725.55" y="4543.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentParser$Token$6.isValue (149 samples, 0.02%; +0.02%)</title><rect x="1179.0" y="5829" width="0.4" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1181.96" y="5839.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.extractMetadata (216 samples, 0.02%; 0.00%)</title><rect x="1587.2" y="5877" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1590.18" y="5887.5" ></text>
</g>
<g >
<title>java/util/Arrays.copyOf (225 samples, 0.02%; +0.02%)</title><rect x="1879.8" y="5541" width="0.7" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1882.85" y="5551.5" ></text>
</g>
<g >
<title>java/lang/Throwable.fillInStackTrace (178 samples, 0.02%; +0.00%)</title><rect x="1705.2" y="5557" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1708.17" y="5567.5" ></text>
</g>
<g >
<title>org/elasticsearch/script/mustache/MustacheScriptEngine$MustacheExecutableScript.lambda$execute$0 (41 samples, 0.00%; 0.00%)</title><rect x="1736.0" y="3781" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1739.05" y="3791.5" ></text>
</g>
<g >
<title>org/apache/lucene/search/SortedSetSelector$MinValue.nextDoc (2,012 samples, 0.22%; 0.00%)</title><rect x="549.6" y="5733" width="5.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="552.58" y="5743.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/BigArrays.adjustBreaker (54 samples, 0.01%; -0.00%)</title><rect x="414.4" y="5893" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="417.42" y="5903.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$CachingAsyncSupplier$$Lambda$5639.0x0000000801980040.accept (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="3925" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="3935.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeFormatterBuilder$CompositePrinterParser.format (91 samples, 0.01%; +0.00%)</title><rect x="1667.2" y="5653" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1670.23" y="5663.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/shard/IndexShard$5.getWrappedAnalyzer (73 samples, 0.01%; 0.00%)</title><rect x="460.1" y="5669" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="463.05" y="5679.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/TokenFilter.end (221 samples, 0.02%; +0.01%)</title><rect x="787.4" y="5797" width="0.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="790.36" y="5807.5" ></text>
</g>
<g >
<title>java/util/HashMap$HashIterator.hasNext (41 samples, 0.00%; -0.01%)</title><rect x="499.3" y="5637" width="0.1" height="15.0" fill="rgb(208,208,255)" rx="2" ry="2" />
<text x="502.28" y="5647.5" ></text>
</g>
<g >
<title>java/util/HashMap.put (82 samples, 0.01%; +0.00%)</title><rect x="539.4" y="5717" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="542.40" y="5727.5" ></text>
</g>
<g >
<title>java/util/stream/ReduceOps$ReduceOp.evaluateSequential (97 samples, 0.01%; 0.00%)</title><rect x="1534.0" y="5557" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1536.96" y="5567.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundHandler$MessageSerializer.get (45 samples, 0.00%; 0.00%)</title><rect x="1629.8" y="789" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="799.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/TransportBulkAction$$Lambda$6059.0x00000008019e04c0.accept (279 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="4469" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.44" y="4479.5" ></text>
</g>
<g >
<title>AbstractInterpreter::deopt_continue_after_entry(Method*, unsigned char*, int, bool) (40 samples, 0.00%; +0.00%)</title><rect x="11.9" y="6181" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="14.89" y="6191.5" ></text>
</g>
<g >
<title>org/apache/lucene/document/Field$StringTokenStream.end (143 samples, 0.02%; +0.00%)</title><rect x="870.2" y="5813" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="873.15" y="5823.5" ></text>
</g>
<g >
<title>java/util/ArrayList.grow (59 samples, 0.01%; 0.00%)</title><rect x="1508.5" y="5909" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1511.50" y="5919.5" ></text>
</g>
<g >
<title>java/util/zip/Deflater.deflateBytesBytes (221 samples, 0.02%; 0.00%)</title><rect x="1614.9" y="2213" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1617.86" y="2223.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5641.0x00000008019804a0.accept (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="3989" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="3999.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5973.0x00000008019829d0.accept (715 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="2165" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="2175.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.notifyListener (931 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="2933" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.83" y="2943.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/StepListener.innerOnResponse (11,965 samples, 1.33%; 0.00%)</title><rect x="1589.5" y="3093" width="32.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.47" y="3103.5" >or..</text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.sort (350 samples, 0.04%; 0.00%)</title><rect x="537.6" y="5749" width="1.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="540.64" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/FilterStreamInput.readBytes (141 samples, 0.02%; 0.00%)</title><rect x="291.6" y="5397" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="294.64" y="5407.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="2181" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="2191.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/transport/SecurityServerTransportInterceptor.access$300 (925 samples, 0.10%; 0.00%)</title><rect x="1659.9" y="2117" width="2.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.85" y="2127.5" ></text>
</g>
<g >
<title>io/netty/handler/codec/ByteToMessageDecoder.fireChannelRead (80 samples, 0.01%; 0.00%)</title><rect x="274.4" y="5685" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.38" y="5695.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/bkd/MutablePointsReaderUtils$1$1.comparePivot (58 samples, 0.01%; 0.00%)</title><rect x="566.8" y="5525" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="569.79" y="5535.5" ></text>
</g>
<g >
<title>com/github/mustachejava/codes/DefaultMustache.execute (40 samples, 0.00%; 0.00%)</title><rect x="1715.3" y="4501" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1718.33" y="4511.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/InboundPipeline.doHandleBytes (17,667 samples, 1.96%; +0.00%)</title><rect x="226.6" y="5701" width="47.7" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="229.58" y="5711.5" >org/..</text>
</g>
<g >
<title>java/util/zip/DeflaterOutputStream.write (221 samples, 0.02%; 0.00%)</title><rect x="1614.9" y="2277" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1617.86" y="2287.5" ></text>
</g>
<g >
<title>java/nio/ByteBuffer.get (1,591 samples, 0.18%; +0.01%)</title><rect x="1980.3" y="5861" width="4.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1983.29" y="5871.5" ></text>
</g>
<g >
<title>java/util/HashMap.get (42 samples, 0.00%; 0.00%)</title><rect x="1663.8" y="5253" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1666.75" y="5263.5" ></text>
</g>
<g >
<title>java/lang/Throwable.fillInStackTrace (60 samples, 0.01%; 0.00%)</title><rect x="1537.6" y="4997" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1540.57" y="5007.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/json/JsonXContentParser.text (194 samples, 0.02%; +0.00%)</title><rect x="1209.5" y="5717" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1212.52" y="5727.5" ></text>
</g>
<g >
<title>io/netty/handler/ssl/SslHandler.decode (27,757 samples, 3.08%; 0.00%)</title><rect x="226.5" y="5957" width="75.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="229.49" y="5967.5" >io/netty..</text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator$$Lambda$4849.0x00000008016b6c78.accept (3,066 samples, 0.34%; 0.00%)</title><rect x="274.6" y="5125" width="8.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.65" y="5135.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/blocktree/BlockTreeTermsWriter$TermsWriter.writeBlock (92 samples, 0.01%; 0.00%)</title><rect x="569.4" y="5717" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="572.44" y="5727.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/util/TextBuffer.buf (87 samples, 0.01%; +0.01%)</title><rect x="1509.3" y="5861" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1512.33" y="5871.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Pipeline.lambda$execute$0 (2,174 samples, 0.24%; 0.00%)</title><rect x="1697.2" y="5413" width="5.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1700.15" y="5423.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/InboundDecoder.internalDecode (8,937 samples, 0.99%; 0.00%)</title><rect x="226.6" y="5669" width="24.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="229.63" y="5679.5" >o..</text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (841 samples, 0.09%; 0.00%)</title><rect x="1535.1" y="5221" width="2.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1538.08" y="5231.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/cache/Cache.get (43 samples, 0.00%; +0.00%)</title><rect x="1748.9" y="4693" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1751.94" y="4703.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (6,769 samples, 0.75%; +0.00%)</title><rect x="1648.7" y="5717" width="18.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1651.74" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundHandler.internalSend (714 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="453" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="463.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8JsonGenerator.writeString (43 samples, 0.00%; +0.00%)</title><rect x="1528.5" y="4725" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1531.49" y="4735.5" ></text>
</g>
<g >
<title>org/elasticsearch/rest/action/RestToXContentListener.buildResponse (1,532 samples, 0.17%; 0.00%)</title><rect x="286.6" y="5237" width="4.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="289.57" y="5247.5" ></text>
</g>
<g >
<title>java/util/HashMap.containsKey (157 samples, 0.02%; 0.00%)</title><rect x="1412.8" y="5701" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1415.80" y="5711.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/DocumentsWriter.doFlush (750 samples, 0.08%; 0.00%)</title><rect x="1454.3" y="6037" width="2.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1457.31" y="6047.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator.authenticateAsync (724 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="3509" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.77" y="3519.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/PointValuesWriter$1.getByteAt (63 samples, 0.01%; +0.01%)</title><rect x="565.6" y="5573" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="568.63" y="5583.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/bytes/BytesReferenceStreamInput.readByte (74 samples, 0.01%; 0.00%)</title><rect x="290.9" y="5349" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="293.92" y="5359.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$AuthorizationResultListener.onResponse (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="3461" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="3471.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/AsyncIOProcessor.drainAndProcessAndRelease (3,641 samples, 0.40%; 0.00%)</title><rect x="508.2" y="5989" width="9.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="511.21" y="5999.5" ></text>
</g>
<g >
<title>sun/nio/ch/FileDispatcherImpl.write0 (51 samples, 0.01%; 0.00%)</title><rect x="2200.5" y="5813" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2203.48" y="5823.5" ></text>
</g>
<g >
<title>__vfs_write (342 samples, 0.04%; 0.00%)</title><rect x="758.6" y="5381" width="0.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="761.55" y="5391.5" ></text>
</g>
<g >
<title>java/lang/String.getChars (137 samples, 0.02%; 0.00%)</title><rect x="871.3" y="5781" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="874.31" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (8,757 samples, 0.97%; 0.00%)</title><rect x="1722.4" y="4789" width="23.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1725.45" y="4799.5" >o..</text>
</g>
<g >
<title>org/elasticsearch/ingest/common/AppendProcessor.execute (65 samples, 0.01%; 0.00%)</title><rect x="1723.8" y="3989" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.75" y="3999.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/NumberFieldMapper$NumberType$7.parse (453 samples, 0.05%; 0.00%)</title><rect x="1358.1" y="5765" width="1.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1361.10" y="5775.5" ></text>
</g>
<g >
<title>java/util/HashMap.getNode (63 samples, 0.01%; 0.00%)</title><rect x="1370.1" y="5701" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1373.05" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Processor.execute (1,994 samples, 0.22%; 0.00%)</title><rect x="1710.8" y="4661" width="5.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1713.82" y="4671.5" ></text>
</g>
<g >
<title>ext4_do_update_inode (59 samples, 0.01%; +0.00%)</title><rect x="325.2" y="5413" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="328.17" y="5423.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/BaseFuture.set (38 samples, 0.00%; 0.00%)</title><rect x="271.6" y="2949" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.58" y="2959.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.reorder (46 samples, 0.01%; 0.00%)</title><rect x="612.7" y="5701" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="615.72" y="5711.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.sort (350 samples, 0.04%; 0.00%)</title><rect x="537.6" y="5765" width="1.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="540.64" y="5775.5" ></text>
</g>
<g >
<title>frame::frame(long*, long*, long*, unsigned char*) (55 samples, 0.01%; 0.00%)</title><rect x="1642.6" y="5413" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1645.61" y="5423.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/TermVectorsConsumerPerField.start (67 samples, 0.01%; +0.01%)</title><rect x="921.7" y="5813" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="924.73" y="5823.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$CachingAsyncSupplier$$Lambda$5639.0x0000000801980040.accept (145 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="4181" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="4191.5" ></text>
</g>
<g >
<title>sun/nio/ch/FileDispatcherImpl.pread (78 samples, 0.01%; -0.00%)</title><rect x="2174.6" y="5973" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2177.57" y="5983.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.radixSort (79 samples, 0.01%; 0.00%)</title><rect x="529.1" y="5733" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="532.05" y="5743.5" ></text>
</g>
<g >
<title>frame::sender(RegisterMap*) const (406 samples, 0.04%; +0.01%)</title><rect x="1678.4" y="5429" width="1.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1681.38" y="5439.5" ></text>
</g>
<g >
<title>vtable stub (723 samples, 0.08%; +0.01%)</title><rect x="2007.7" y="5973" width="2.0" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2010.70" y="5983.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/json/JsonXContentParser.text (2,282 samples, 0.25%; +0.00%)</title><rect x="1422.6" y="5813" width="6.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1425.55" y="5823.5" ></text>
</g>
<g >
<title>generic_write_end (75 samples, 0.01%; +0.00%)</title><rect x="1894.4" y="5317" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1897.40" y="5327.5" ></text>
</g>
<g >
<title>__do_page_fault (97 samples, 0.01%; +0.00%)</title><rect x="1632.2" y="4853" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1635.21" y="4863.5" ></text>
</g>
<g >
<title>java/util/ArrayList.forEach (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="2453" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="2463.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/perfield/PerFieldDocValuesFormat$FieldsReader.getSortedSet (51 samples, 0.01%; 0.00%)</title><rect x="2043.0" y="6069" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2046.04" y="6079.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentFactory.xContentType (143 samples, 0.02%; -0.00%)</title><rect x="1459.7" y="6037" width="0.4" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1462.73" y="6047.5" ></text>
</g>
<g >
<title>ext4_dirty_inode (387 samples, 0.04%; 0.00%)</title><rect x="514.4" y="5525" width="1.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="517.37" y="5535.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (12,523 samples, 1.39%; 0.00%)</title><rect x="1722.3" y="5317" width="33.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1725.30" y="5327.5" >or..</text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$$Lambda$4893.0x00000008017ed008.accept (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="2357" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="2367.5" ></text>
</g>
<g >
<title>java/security/AccessController.getStackAccessControlContext (49 samples, 0.01%; 0.00%)</title><rect x="1624.5" y="5269" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.48" y="5279.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/bytes/BytesArray.writeTo (51 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="1349" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="1359.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.lambda$authorizeIndexAction$5 (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="2373" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="2383.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ConditionalProcessor.lambda$execute$1 (12,750 samples, 1.41%; +0.00%)</title><rect x="1722.3" y="5557" width="34.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1725.25" y="5567.5" >or..</text>
</g>
<g >
<title>org/apache/lucene/store/OutputStreamIndexOutput.writeByte (67 samples, 0.01%; 0.00%)</title><rect x="2404.7" y="5941" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2407.65" y="5951.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundMessage.serialize (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="1749" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="1759.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/time/JavaDateFormatter.&lt;init&gt; (133 samples, 0.01%; 0.00%)</title><rect x="1645.2" y="5429" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1648.17" y="5439.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Processor.execute (6,721 samples, 0.74%; 0.00%)</title><rect x="1648.8" y="5589" width="18.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1651.82" y="5599.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/bkd/BKDWriter.access$600 (89 samples, 0.01%; 0.00%)</title><rect x="1864.3" y="5637" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1867.32" y="5647.5" ></text>
</g>
<g >
<title>java/io/BufferedOutputStream.write (3,436 samples, 0.38%; 0.00%)</title><rect x="2241.3" y="5893" width="9.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2244.28" y="5903.5" ></text>
</g>
<g >
<title>java/lang/StringLatin1.trim (46 samples, 0.01%; +0.01%)</title><rect x="1709.5" y="5493" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1712.47" y="5503.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/TransportService.sendRequestInternal (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="757" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="767.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/store/CompositeRolesStore.getRoles (1,025 samples, 0.11%; 0.00%)</title><rect x="271.5" y="5317" width="2.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.52" y="5327.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (397 samples, 0.04%; 0.00%)</title><rect x="1532.1" y="5317" width="1.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.10" y="5327.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/CharsRef.toString (101 samples, 0.01%; 0.00%)</title><rect x="268.0" y="5301" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="270.97" y="5311.5" ></text>
</g>
<g >
<title>unsafe_arraycopy (69 samples, 0.01%; -0.00%)</title><rect x="1977.7" y="5829" width="0.1" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1980.66" y="5839.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/Processor.execute (4,842 samples, 0.54%; 0.00%)</title><rect x="1625.6" y="5029" width="13.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1628.56" y="5039.5" ></text>
</g>
<g >
<title>java/security/AccessController.getStackAccessControlContext (1,637 samples, 0.18%; +0.00%)</title><rect x="1688.5" y="5589" width="4.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1691.51" y="5599.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder$$Lambda$49.0x0000000800bc0480.write (91 samples, 0.01%; 0.00%)</title><rect x="1658.9" y="5173" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1661.86" y="5183.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.startObject (104 samples, 0.01%; +0.00%)</title><rect x="290.4" y="5157" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="293.43" y="5167.5" ></text>
</g>
<g >
<title>org/apache/lucene/analysis/AnalyzerWrapper.initReader (725 samples, 0.08%; +0.02%)</title><rect x="1320.8" y="5733" width="2.0" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="1323.80" y="5743.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/TermsHashPerField.writeByte (106 samples, 0.01%; +0.00%)</title><rect x="960.3" y="5749" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="963.30" y="5759.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorizeAction$5 (1,019 samples, 0.11%; 0.00%)</title><rect x="271.5" y="4997" width="2.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.54" y="5007.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/fst/BytesStore.writeByte (460 samples, 0.05%; 0.00%)</title><rect x="601.7" y="5669" width="1.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="604.74" y="5679.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.authorizeIndexAction (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="3797" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="3807.5" ></text>
</g>
<g >
<title>java/util/DualPivotQuicksort.sort (681 samples, 0.08%; -0.00%)</title><rect x="2236.1" y="5989" width="1.9" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2239.15" y="5999.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene84/Lucene84PostingsWriter.finishTerm (199 samples, 0.02%; 0.00%)</title><rect x="531.8" y="5733" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="534.80" y="5743.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.lambda$authorizeIndexAction$4 (306 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="4341" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="4351.5" ></text>
</g>
<g >
<title>java/util/zip/Deflater.deflateBytesBytes (80 samples, 0.01%; 0.00%)</title><rect x="330.4" y="5717" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="333.39" y="5727.5" ></text>
</g>
<g >
<title>java/util/ArrayList.forEach (931 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="3237" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.83" y="3247.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser.nextToken (76 samples, 0.01%; 0.00%)</title><rect x="1508.8" y="5925" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1511.80" y="5935.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/json/JsonXContentParser.text (58 samples, 0.01%; -0.00%)</title><rect x="495.1" y="5829" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="498.12" y="5839.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.buildIndicesAccessControl (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="3029" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="3039.5" ></text>
</g>
<g >
<title>java/util/ArrayList.forEach (11,965 samples, 1.33%; 0.00%)</title><rect x="1589.5" y="3557" width="32.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.47" y="3567.5" >ja..</text>
</g>
<g >
<title>org/apache/lucene/util/packed/DirectWriter.flush (402 samples, 0.04%; +0.00%)</title><rect x="2041.6" y="6037" width="1.0" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2044.56" y="6047.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/bkd/BKDWriter$2.visit (763 samples, 0.08%; 0.00%)</title><rect x="560.2" y="5717" width="2.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="563.17" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (253 samples, 0.03%; 0.00%)</title><rect x="1630.5" y="4245" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.53" y="4255.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/StoredFieldsConsumer.writeField (198 samples, 0.02%; -0.01%)</title><rect x="412.6" y="5845" width="0.6" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="415.64" y="5855.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/geoip/GeoIpProcessor.retrieveCityGeoData (221 samples, 0.02%; 0.00%)</title><rect x="1537.4" y="5221" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1540.36" y="5231.5" ></text>
</g>
<g >
<title>java/util/Arrays.copyOf (332 samples, 0.04%; +0.04%)</title><rect x="2402.2" y="5845" width="0.9" height="15.0" fill="rgb(255,207,207)" rx="2" ry="2" />
<text x="2405.23" y="5855.5" ></text>
</g>
<g >
<title>java/util/HashMap.resize (58 samples, 0.01%; +0.01%)</title><rect x="1225.1" y="5637" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1228.15" y="5647.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/support/AbstractXContentParser.readMapEntries (3,424 samples, 0.38%; -0.00%)</title><rect x="1509.6" y="5957" width="9.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1512.58" y="5967.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5975.0x0000000801982e30.accept (11,985 samples, 1.33%; 0.00%)</title><rect x="1589.4" y="4597" width="32.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.42" y="4607.5" >or..</text>
</g>
<g >
<title>org/elasticsearch/action/StepListener.innerOnResponse (38 samples, 0.00%; 0.00%)</title><rect x="271.6" y="2981" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.58" y="2991.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/action/filter/SecurityActionFilter$$Lambda$5023.0x00000008016b7750.accept (12,195 samples, 1.35%; 0.00%)</title><rect x="1589.2" y="5525" width="33.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.18" y="5535.5" >or..</text>
</g>
<g >
<title>org/apache/lucene/index/FreqProxTermsWriterPerField.writeProx (299 samples, 0.03%; -0.13%)</title><rect x="383.8" y="5781" width="0.8" height="15.0" fill="rgb(200,200,255)" rx="2" ry="2" />
<text x="386.83" y="5791.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/BaseFuture.set (715 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="1717" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="1727.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/DocValuesConsumer$SortedNumericDocValuesSub.nextDoc (57 samples, 0.01%; +0.00%)</title><rect x="1912.5" y="5989" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1915.46" y="5999.5" ></text>
</g>
<g >
<title>java/lang/StringLatin1.hashCode (38 samples, 0.00%; +0.00%)</title><rect x="1229.7" y="5541" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1232.67" y="5551.5" ></text>
</g>
<g >
<title>java/lang/Throwable.&lt;init&gt; (1,355 samples, 0.15%; +0.00%)</title><rect x="1670.2" y="5605" width="3.7" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1673.24" y="5615.5" ></text>
</g>
<g >
<title>jint_disjoint_arraycopy (79 samples, 0.01%; +0.01%)</title><rect x="1091.6" y="5797" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1094.58" y="5807.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.createTemplateModel (256 samples, 0.03%; 0.00%)</title><rect x="1745.4" y="4709" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1748.40" y="4719.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService.authenticate (215 samples, 0.02%; 0.00%)</title><rect x="1627.8" y="3973" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="3983.5" ></text>
</g>
<g >
<title>java/util/Arrays.fill (197 samples, 0.02%; +0.00%)</title><rect x="2206.3" y="6037" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2209.31" y="6047.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/SortedSetDocValuesWriter.finishCurrentDoc (1,166 samples, 0.13%; -0.11%)</title><rect x="408.5" y="5813" width="3.2" height="15.0" fill="rgb(202,202,255)" rx="2" ry="2" />
<text x="411.52" y="5823.5" ></text>
</g>
<g >
<title>java/util/Collections$UnmodifiableMap.isEmpty (44 samples, 0.00%; -0.01%)</title><rect x="502.2" y="5845" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="505.24" y="5855.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser._parseName (111 samples, 0.01%; 0.00%)</title><rect x="282.0" y="4117" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="284.96" y="4127.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/store/CompositeRolesStore.getRoles (936 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="4853" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.82" y="4863.5" ></text>
</g>
<g >
<title>java/time/format/DateTimeFormatterBuilder$CompositePrinterParser.parse (594 samples, 0.07%; 0.00%)</title><rect x="1668.1" y="5589" width="1.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1671.11" y="5599.5" ></text>
</g>
<g >
<title>java/time/chrono/IsoChronology.resolveYMD (143 samples, 0.02%; 0.00%)</title><rect x="1411.1" y="5653" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1414.05" y="5663.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/json/JsonXContentParser.nextToken (4,483 samples, 0.50%; -0.01%)</title><rect x="1488.2" y="5973" width="12.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1491.24" y="5983.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorizeAction$9 (292 samples, 0.03%; 0.00%)</title><rect x="271.6" y="4677" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.55" y="4687.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.introSort (312 samples, 0.03%; 0.00%)</title><rect x="615.6" y="5669" width="0.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="618.63" y="5679.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="4325" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="4335.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5648.0x0000000801980b40.accept (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="2389" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="2399.5" ></text>
</g>
<g >
<title>java/util/zip/CheckedOutputStream.write (800 samples, 0.09%; +0.09%)</title><rect x="577.5" y="5621" width="2.2" height="15.0" fill="rgb(255,203,203)" rx="2" ry="2" />
<text x="580.54" y="5631.5" ></text>
</g>
<g >
<title>java/util/concurrent/locks/AbstractQueuedSynchronizer.hasQueuedPredecessors (83 samples, 0.01%; +0.01%)</title><rect x="1105.2" y="5877" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1108.17" y="5887.5" ></text>
</g>
<g >
<title>do_epoll_wait (221 samples, 0.02%; 0.00%)</title><rect x="304.9" y="6021" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="307.86" y="6031.5" ></text>
</g>
<g >
<title>java/util/HashMap$HashIterator.nextNode (60 samples, 0.01%; +0.01%)</title><rect x="1744.7" y="4565" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1747.74" y="4575.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5965.0x0000000801981628.accept (213 samples, 0.02%; 0.00%)</title><rect x="1627.9" y="2533" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="2543.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.appendFieldValue (119 samples, 0.01%; 0.00%)</title><rect x="1743.3" y="4469" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1746.29" y="4479.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/shard/IndexingOperationListener$CompositeListener.preIndex (154 samples, 0.02%; -0.01%)</title><rect x="417.6" y="6005" width="0.4" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="420.62" y="6015.5" ></text>
</g>
<g >
<title>java/security/AccessController.getStackAccessControlContext (2,142 samples, 0.24%; +0.00%)</title><rect x="1839.4" y="5909" width="5.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1842.43" y="5919.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.radixSort (96 samples, 0.01%; 0.00%)</title><rect x="613.4" y="5605" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="616.45" y="5615.5" ></text>
</g>
<g >
<title>__libc_write (271 samples, 0.03%; -0.00%)</title><rect x="2171.4" y="5765" width="0.8" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2174.44" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/interceptor/ResizeRequestInterceptor.intercept (173 samples, 0.02%; 0.00%)</title><rect x="1536.1" y="2885" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1539.14" y="2895.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.lambda$executePipeline$0 (4,190 samples, 0.46%; 0.00%)</title><rect x="1724.4" y="3797" width="11.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1727.42" y="3807.5" ></text>
</g>
<g >
<title>start_thread (2,305 samples, 0.26%; 0.00%)</title><rect x="2443.8" y="6245" width="6.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2446.77" y="6255.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/TcpTransport$NodeChannels.sendRequest (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="741" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="751.5" ></text>
</g>
<g >
<title>java/security/AccessController.doPrivileged (1,427 samples, 0.16%; 0.00%)</title><rect x="1829.6" y="5957" width="3.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1832.61" y="5967.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.setFieldValue (376 samples, 0.04%; 0.00%)</title><rect x="1715.2" y="4629" width="1.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1718.20" y="4639.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.value (679 samples, 0.08%; 0.00%)</title><rect x="1583.8" y="5717" width="1.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1586.75" y="5727.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/MultiTermsEnum.next (69 samples, 0.01%; -0.00%)</title><rect x="2442.6" y="6069" width="0.2" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="2445.57" y="6079.5" ></text>
</g>
<g >
<title>java/io/BufferedOutputStream.flushBuffer (48 samples, 0.01%; 0.00%)</title><rect x="2250.9" y="5925" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2253.95" y="5935.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/JsonReadContext.setCurrentName (2,046 samples, 0.23%; +0.01%)</title><rect x="1135.9" y="5861" width="5.6" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1138.95" y="5871.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ConditionalProcessor.execute (279 samples, 0.03%; 0.00%)</title><rect x="1630.5" y="4453" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.53" y="4463.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/DocIDMerger$SequentialDocIDMerger.next (59 samples, 0.01%; -0.02%)</title><rect x="327.7" y="5717" width="0.2" height="15.0" fill="rgb(208,208,255)" rx="2" ry="2" />
<text x="330.71" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/OutboundHandler.sendRequest (54 samples, 0.01%; 0.00%)</title><rect x="1532.9" y="1781" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1535.91" y="1791.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/compressing/CompressingStoredFieldsReader.checkIntegrity (616 samples, 0.07%; 0.00%)</title><rect x="2048.6" y="6101" width="1.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2051.63" y="6111.5" ></text>
</g>
<g >
<title>java/util/stream/ReferencePipeline.count (231 samples, 0.03%; 0.00%)</title><rect x="503.9" y="5925" width="0.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="506.94" y="5935.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/TransportShardBulkAction.replicaOperationSize (177 samples, 0.02%; 0.00%)</title><rect x="271.8" y="3205" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="274.77" y="3215.5" ></text>
</g>
<g >
<title>G1BarrierSet::enqueue(oopDesc*) (51 samples, 0.01%; +0.00%)</title><rect x="1635.9" y="4789" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1638.93" y="4799.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.createTemplateModel (234 samples, 0.03%; 0.00%)</title><rect x="1665.4" y="5477" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1668.41" y="5487.5" ></text>
</g>
<g >
<title>vfs_write (192 samples, 0.02%; 0.00%)</title><rect x="1894.1" y="5429" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1897.11" y="5439.5" ></text>
</g>
<g >
<title>org/elasticsearch/painless/PainlessScript$Script.execute (57 samples, 0.01%; 0.00%)</title><rect x="1762.8" y="5557" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1765.78" y="5567.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/StepListener.innerOnResponse (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="2709" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="2719.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/lucene84/Lucene84PostingsReader.postings (970 samples, 0.11%; 0.00%)</title><rect x="2344.1" y="5989" width="2.7" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2347.13" y="5999.5" ></text>
</g>
<g >
<title>java/time/chrono/AbstractChronology.resolveDate (487 samples, 0.05%; +0.00%)</title><rect x="1410.7" y="5669" width="1.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1413.75" y="5679.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/SortedDocValuesTermsEnum.next (50 samples, 0.01%; 0.00%)</title><rect x="548.7" y="5701" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="551.65" y="5711.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser._finishAndReturnString (105 samples, 0.01%; -0.01%)</title><rect x="440.8" y="5701" width="0.3" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="443.81" y="5711.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestService$$Lambda$6065.0x00000008019e1ac0.accept (1,616 samples, 0.18%; 0.00%)</title><rect x="1710.8" y="4533" width="4.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1713.83" y="4543.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.authorizeIndexActionName (215 samples, 0.02%; 0.00%)</title><rect x="1627.8" y="3557" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="3567.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/BytesStreamOutput.writeBytes (75 samples, 0.01%; +0.00%)</title><rect x="321.5" y="5365" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="324.49" y="5375.5" ></text>
</g>
<g >
<title>itable stub (54 samples, 0.01%; +0.01%)</title><rect x="1649.5" y="5253" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1652.46" y="5263.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorize$1 (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="3573" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="3583.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.map (56 samples, 0.01%; +0.00%)</title><rect x="1532.7" y="4949" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1535.75" y="4959.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (715 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="1317" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="1327.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/IndexFileDeleter.checkpoint (106 samples, 0.01%; 0.00%)</title><rect x="1454.0" y="6053" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1457.02" y="6063.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/StepListener.innerOnResponse (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="3237" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="3247.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/TransportShardBulkAction.performOnPrimary (73,804 samples, 8.18%; 0.00%)</title><rect x="308.6" y="6117" width="199.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="311.60" y="6127.5" >org/elasticsearch/action/b..</text>
</g>
<g >
<title>java/lang/String.split (95 samples, 0.01%; 0.00%)</title><rect x="1430.1" y="5877" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1433.14" y="5887.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/Sorter.binarySort (57 samples, 0.01%; 0.00%)</title><rect x="1867.6" y="5509" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1870.56" y="5519.5" ></text>
</g>
<g >
<title>java/security/ProtectionDomain.implies (89 samples, 0.01%; 0.00%)</title><rect x="1747.0" y="4645" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1750.04" y="4655.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator.lambda$authenticateAsync$2 (489 samples, 0.05%; 0.00%)</title><rect x="274.8" y="3909" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.84" y="3919.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.authorizeIndexActionName (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="3909" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="3919.5" ></text>
</g>
<g >
<title>java/lang/Exception.&lt;init&gt; (1,791 samples, 0.20%; 0.00%)</title><rect x="1674.7" y="5557" width="4.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1677.65" y="5567.5" ></text>
</g>
<g >
<title>java/util/HashMap.putVal (118 samples, 0.01%; -0.04%)</title><rect x="497.1" y="5605" width="0.4" height="15.0" fill="rgb(207,207,255)" rx="2" ry="2" />
<text x="500.13" y="5615.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/BytesRef.hashCode (54 samples, 0.01%; 0.00%)</title><rect x="522.3" y="5893" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="525.31" y="5903.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/packed/PackedLongValues.get (125 samples, 0.01%; 0.00%)</title><rect x="1979.7" y="5957" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1982.70" y="5967.5" ></text>
</g>
<g >
<title>org/joni/StackMachine.popDefault (40 samples, 0.00%; +0.00%)</title><rect x="1756.5" y="5205" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1759.47" y="5215.5" ></text>
</g>
<g >
<title>java/lang/SecurityManager.checkPermission (154 samples, 0.02%; 0.00%)</title><rect x="1695.1" y="5173" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1698.10" y="5183.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$$Lambda$4893.0x00000008017ed008.accept (11,965 samples, 1.33%; 0.00%)</title><rect x="1589.5" y="3541" width="32.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.47" y="3551.5" >or..</text>
</g>
<g >
<title>org/elasticsearch/bootstrap/ESPolicy.implies (148 samples, 0.02%; 0.00%)</title><rect x="1703.4" y="5317" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1706.41" y="5327.5" ></text>
</g>
<g >
<title>java/util/HashMap$EntryIterator.next (57 samples, 0.01%; +0.00%)</title><rect x="1743.8" y="4469" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1746.75" y="4479.5" ></text>
</g>
<g >
<title>java/util/stream/ReduceOps$5.evaluateSequential (140 samples, 0.02%; 0.00%)</title><rect x="1682.7" y="5429" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1685.69" y="5439.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/DefaultIndexingChain.writeDocValues (189 samples, 0.02%; 0.00%)</title><rect x="1454.3" y="5989" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1457.31" y="5999.5" ></text>
</g>
<g >
<title>jbyte_disjoint_arraycopy (58 samples, 0.01%; +0.00%)</title><rect x="1783.8" y="5861" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1786.85" y="5871.5" ></text>
</g>
<g >
<title>io/netty/channel/AbstractChannelHandlerContext.invokeChannelRead (3,159 samples, 0.35%; 0.00%)</title><rect x="274.6" y="5621" width="8.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.61" y="5631.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/interceptor/IndicesAliasesRequestInterceptor.intercept (486 samples, 0.05%; 0.00%)</title><rect x="274.8" y="2949" width="1.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="277.84" y="2959.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/support/AbstractXContentParser.readMapEntries (55 samples, 0.01%; 0.00%)</title><rect x="1518.7" y="5925" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1521.68" y="5935.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/EsExecutors$DirectExecutorService.execute (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="2725" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="2735.5" ></text>
</g>
<g >
<title>java/lang/String.checkBoundsOffCount (234 samples, 0.03%; +0.03%)</title><rect x="262.8" y="5253" width="0.6" height="15.0" fill="rgb(255,208,208)" rx="2" ry="2" />
<text x="265.78" y="5263.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/shard/IndexShardOperationPermits.acquire (47 samples, 0.01%; 0.00%)</title><rect x="1845.3" y="5653" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1848.30" y="5663.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.map (148 samples, 0.02%; +0.00%)</title><rect x="1532.5" y="4981" width="0.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1535.50" y="4991.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$CachingAsyncSupplier.getAsync (306 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="4197" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.20" y="4207.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/translog/TranslogWriter.syncUpTo (3,213 samples, 0.36%; +0.00%)</title><rect x="509.4" y="5893" width="8.7" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="512.37" y="5903.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/DocumentParser.parseObjectOrField (12,728 samples, 1.41%; +0.00%)</title><rect x="1239.6" y="5749" width="34.4" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1242.59" y="5759.5" >or..</text>
</g>
<g >
<title>org/elasticsearch/ingest/IngestDocument.setFieldValue (39 samples, 0.00%; 0.00%)</title><rect x="1533.1" y="5173" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1536.06" y="5183.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (15,288 samples, 1.69%; 0.00%)</title><rect x="1722.1" y="5733" width="41.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1725.05" y="5743.5" >org..</text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.getBucket (69 samples, 0.01%; +0.00%)</title><rect x="615.4" y="5669" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="618.42" y="5679.5" ></text>
</g>
<g >
<title>java/util/HashMap$EntryIterator.next (43 samples, 0.00%; +0.00%)</title><rect x="1721.4" y="5445" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1724.45" y="5455.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$CachingAsyncSupplier.lambda$getAsync$0 (215 samples, 0.02%; 0.00%)</title><rect x="1627.8" y="3349" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1630.85" y="3359.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$$Lambda$5975.0x0000000801982e30.accept (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="2853" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="2863.5" ></text>
</g>
<g >
<title>java/security/Permissions.getPermissionCollection (313 samples, 0.03%; +0.00%)</title><rect x="1686.0" y="5461" width="0.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1688.99" y="5471.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/TransportBulkAction.lambda$processBulkIndexIngestRequest$4 (133 samples, 0.01%; 0.00%)</title><rect x="1624.0" y="5189" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1627.02" y="5199.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.field (681 samples, 0.08%; 0.00%)</title><rect x="1560.5" y="5829" width="1.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1563.50" y="5839.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.lambda$done$0 (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="1365" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="1375.5" ></text>
</g>
<g >
<title>java/util/Collections$UnmodifiableMap.isEmpty (56 samples, 0.01%; +0.00%)</title><rect x="1150.2" y="5797" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1153.16" y="5807.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/io/stream/StreamOutput.writeBoolean (106 samples, 0.01%; +0.00%)</title><rect x="415.9" y="5893" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="418.88" y="5903.5" ></text>
</g>
<g >
<title>com/github/mustachejava/reflect/ReflectionWrapper.unwrap (292 samples, 0.03%; +0.00%)</title><rect x="1831.4" y="5765" width="0.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1834.37" y="5775.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.done (11,965 samples, 1.33%; 0.00%)</title><rect x="1589.5" y="4085" width="32.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1592.47" y="4095.5" >or..</text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine$$Lambda$5635.0x0000000801827740.accept (53 samples, 0.01%; 0.00%)</title><rect x="1528.9" y="4229" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1531.93" y="4239.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.radixSort (1,265 samples, 0.14%; -0.00%)</title><rect x="1865.0" y="5653" width="3.5" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1868.04" y="5663.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture.lambda$done$0 (143 samples, 0.02%; 0.00%)</title><rect x="1694.6" y="2757" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1697.62" y="2767.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/ObjectMapper.getMapper (85 samples, 0.01%; 0.00%)</title><rect x="1149.5" y="5813" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1152.47" y="5823.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/RBACEngine.buildIndicesAccessControl (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="2981" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="2991.5" ></text>
</g>
<g >
<title>org/apache/lucene/store/FSDirectory$FSIndexOutput$1.write (309 samples, 0.03%; 0.00%)</title><rect x="2171.4" y="5925" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2174.36" y="5935.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$authorizeBulkItems$20 (931 samples, 0.10%; 0.00%)</title><rect x="1659.8" y="3781" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1662.83" y="3791.5" ></text>
</g>
<g >
<title>java/util/HashMap$TreeNode.getTreeNode (94 samples, 0.01%; +0.01%)</title><rect x="1413.0" y="5669" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1415.97" y="5679.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/TransportShardBulkAction.dispatchedShardOperationOnReplica (349,910 samples, 38.77%; 0.00%)</title><rect x="508.1" y="6133" width="945.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="511.12" y="6143.5" >org/elasticsearch/action/bulk/TransportShardBulkAction.dispatchedShardOperationOnReplica</text>
</g>
<g >
<title>org/elasticsearch/xpack/security/transport/SecurityServerTransportInterceptor$1.sendRequest (46 samples, 0.01%; 0.00%)</title><rect x="1629.8" y="965" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.80" y="975.5" ></text>
</g>
<g >
<title>java/util/Collections$UnmodifiableMap.get (1,833 samples, 0.20%; 0.00%)</title><rect x="1288.5" y="5749" width="4.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1291.45" y="5759.5" ></text>
</g>
<g >
<title>com/github/mustachejava/codes/ValueCode.execute (76 samples, 0.01%; +0.00%)</title><rect x="1685.2" y="5493" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1688.20" y="5503.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/StringMSBRadixSorter.byteAt (147 samples, 0.02%; 0.00%)</title><rect x="613.8" y="5685" width="0.4" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="616.80" y="5695.5" ></text>
</g>
<g >
<title>sun/nio/ch/FileDispatcherImpl.write (273 samples, 0.03%; 0.00%)</title><rect x="2171.4" y="5813" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="2174.44" y="5823.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor$$Lambda$6070.0x00000008019e25e0.accept (688 samples, 0.08%; 0.00%)</title><rect x="1622.8" y="5445" width="1.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1625.75" y="5455.5" ></text>
</g>
<g >
<title>sun/nio/ch/FileChannelImpl.unmap0 (57 samples, 0.01%; 0.00%)</title><rect x="1893.8" y="5477" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1896.84" y="5487.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/bulk/BulkRequest.validate (59 samples, 0.01%; +0.00%)</title><rect x="274.7" y="4069" width="0.1" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="277.68" y="4079.5" ></text>
</g>
<g >
<title>java/util/HashMap.removeNode (73 samples, 0.01%; +0.01%)</title><rect x="1587.6" y="5845" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1590.57" y="5855.5" ></text>
</g>
<g >
<title>do_syscall_64 (186 samples, 0.02%; +0.00%)</title><rect x="2049.5" y="5813" width="0.5" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2052.54" y="5823.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/support/replication/TransportReplicationAction$AsyncReplicaAction.doRun (47 samples, 0.01%; 0.00%)</title><rect x="1845.3" y="5749" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1848.30" y="5759.5" ></text>
</g>
<g >
<title>io/netty/channel/AbstractChannelHandlerContext.invokeChannelRead (3,349 samples, 0.37%; 0.00%)</title><rect x="283.9" y="5813" width="9.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="286.90" y="5823.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.ensureNoSelfReferences (44 samples, 0.00%; 0.00%)</title><rect x="1629.5" y="4085" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.49" y="4095.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser._parseName (1,793 samples, 0.20%; 0.00%)</title><rect x="1193.0" y="5797" width="4.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1196.02" y="5807.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/ConditionalProcessor.execute (229 samples, 0.03%; 0.00%)</title><rect x="1629.5" y="4357" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1632.47" y="4367.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.radixSort (49 samples, 0.01%; 0.00%)</title><rect x="537.9" y="5717" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="540.93" y="5727.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/CollectionUtils.ensureNoSelfReferences (1,832 samples, 0.20%; +0.01%)</title><rect x="1757.8" y="5525" width="5.0" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1760.80" y="5535.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/GeoPointFieldMapper$Builder.lambda$build$8 (69 samples, 0.01%; 0.00%)</title><rect x="1228.9" y="5669" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1231.94" y="5679.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8JsonGenerator.writeString (111 samples, 0.01%; +0.00%)</title><rect x="1732.7" y="3557" width="0.3" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1735.73" y="3567.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder$$Lambda$49.0x0000000800bc0480.write (77 samples, 0.01%; 0.00%)</title><rect x="1713.4" y="4405" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1716.42" y="4415.5" ></text>
</g>
<g >
<title>org/apache/lucene/document/Field.name (465 samples, 0.05%; +0.05%)</title><rect x="1448.3" y="5893" width="1.2" height="15.0" fill="rgb(255,206,206)" rx="2" ry="2" />
<text x="1451.28" y="5903.5" ></text>
</g>
<g >
<title>org/apache/lucene/index/StandardDirectoryReader.doOpenIfChanged (17,563 samples, 1.95%; 0.00%)</title><rect x="1848.1" y="5909" width="47.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1851.09" y="5919.5" >org/..</text>
</g>
<g >
<title>org/apache/lucene/codecs/DocValuesConsumer$3$1.nextValue (353 samples, 0.04%; 0.00%)</title><rect x="1918.2" y="6021" width="1.0" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1921.22" y="6031.5" ></text>
</g>
<g >
<title>java/security/Permissions$1.apply (47 samples, 0.01%; 0.00%)</title><rect x="623.5" y="5797" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="626.54" y="5807.5" ></text>
</g>
<g >
<title>java/lang/Throwable.&lt;init&gt; (187 samples, 0.02%; 0.00%)</title><rect x="1718.9" y="4789" width="0.5" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1721.93" y="4799.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.lambda$innerExecute$1 (938 samples, 0.10%; 0.00%)</title><rect x="1693.1" y="5605" width="2.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1696.13" y="5615.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/action/filter/SecurityActionFilter$$Lambda$5026.0x0000000801820040.accept (199 samples, 0.02%; 0.00%)</title><rect x="284.5" y="5237" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="287.53" y="5247.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService.lambda$runRequestInterceptors$14 (273 samples, 0.03%; 0.00%)</title><rect x="1714.4" y="2293" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1717.45" y="2303.5" ></text>
</g>
<g >
<title>org/elasticsearch/index/mapper/ObjectMapper.getMapper (715 samples, 0.08%; 0.00%)</title><rect x="1163.9" y="5861" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1166.91" y="5871.5" ></text>
</g>
<g >
<title>org/elasticsearch/ingest/CompoundProcessor.innerExecute (6,766 samples, 0.75%; 0.00%)</title><rect x="1648.7" y="5685" width="18.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1651.74" y="5695.5" ></text>
</g>
<g >
<title>org/elasticsearch/action/ActionListener$1.onResponse (715 samples, 0.08%; 0.00%)</title><rect x="1733.8" y="2325" width="1.9" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1736.78" y="2335.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/CollectionUtils$$Lambda$6125.0x0000000801a244a0.iterator (45 samples, 0.00%; 0.00%)</title><rect x="1529.6" y="5045" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1532.57" y="5055.5" ></text>
</g>
<g >
<title>sun/nio/ch/IOUtil.write (37 samples, 0.00%; 0.00%)</title><rect x="305.9" y="5829" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="308.87" y="5839.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/TransportService$$Lambda$3670.0x00000008015629c8.sendRequest (38 samples, 0.00%; 0.00%)</title><rect x="1631.0" y="773" width="0.1" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1633.95" y="783.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/util/concurrent/ListenableFuture$1.doRun (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="1845" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="1855.5" ></text>
</g>
<g >
<title>org/joni/ByteCodeMachine.execute (14,553 samples, 1.61%; +0.11%)</title><rect x="1785.2" y="5909" width="39.4" height="15.0" fill="rgb(255,202,202)" rx="2" ry="2" />
<text x="1788.21" y="5919.5" >org..</text>
</g>
<g >
<title>org/elasticsearch/action/bulk/TransportBulkAction$BulkOperation$1.onResponse (199 samples, 0.02%; 0.00%)</title><rect x="284.5" y="5157" width="0.6" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="287.53" y="5167.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/MSBRadixSorter.radixSort (569 samples, 0.06%; -0.00%)</title><rect x="1866.9" y="5605" width="1.5" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="1869.86" y="5615.5" ></text>
</g>
<g >
<title>org/elasticsearch/transport/InboundPipeline.forwardFragments (8,710 samples, 0.96%; -0.00%)</title><rect x="250.8" y="5685" width="23.5" height="15.0" fill="rgb(209,209,255)" rx="2" ry="2" />
<text x="253.78" y="5695.5" >o..</text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authz/AuthorizationService$CachingAsyncSupplier.getAsync (83 samples, 0.01%; 0.00%)</title><rect x="1723.3" y="2549" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1726.32" y="2559.5" ></text>
</g>
<g >
<title>org/apache/lucene/util/IntroSorter.quicksort (59 samples, 0.01%; 0.00%)</title><rect x="1890.8" y="5621" width="0.2" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1893.84" y="5631.5" ></text>
</g>
<g >
<title>org/elasticsearch/common/xcontent/XContentBuilder.unknownValue (106 samples, 0.01%; 0.00%)</title><rect x="1535.8" y="4773" width="0.3" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1538.83" y="4783.5" ></text>
</g>
<g >
<title>com/fasterxml/jackson/core/json/UTF8StreamJsonParser._finishAndReturnString (1,847 samples, 0.20%; +0.13%)</title><rect x="1249.9" y="5653" width="5.0" height="15.0" fill="rgb(255,200,200)" rx="2" ry="2" />
<text x="1252.87" y="5663.5" ></text>
</g>
<g >
<title>org/elasticsearch/xpack/security/authc/AuthenticationService$Authenticator.authenticateAsync (308 samples, 0.03%; 0.00%)</title><rect x="1702.2" y="5093" width="0.8" height="15.0" fill="rgb(255,255,255)" rx="2" ry="2" />
<text x="1705.19" y="5103.5" ></text>
</g>
<g >
<title>JVM_IHashCode (300 samples, 0.03%; +0.01%)</title><rect x="1550.7" y="5717" width="0.8" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="1553.74" y="5727.5" ></text>
</g>
<g >
<title>org/apache/lucene/codecs/compressing/CompressingStoredFieldsWriter.saveInts (77 samples, 0.01%; +0.00%)</title><rect x="2068.3" y="6053" width="0.2" height="15.0" fill="rgb(255,209,209)" rx="2" ry="2" />
<text x="2071.27" y="6063.5" ></tex
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment