Skip to content

Instantly share code, notes, and snippets.

@zcola
Created April 15, 2017 00:16
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 zcola/27325b2290a5cb7bb3fa516911eac2f4 to your computer and use it in GitHub Desktop.
Save zcola/27325b2290a5cb7bb3fa516911eac2f4 to your computer and use it in GitHub Desktop.
elk-edata01-104_170415_073323_flame.html
This file has been truncated, but you can view the full file.
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="930" onload="init(evt)" viewBox="0 0 1200 930" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs >
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#f8f8f8" offset="5%" />
<stop stop-color="#e8e8e8" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
</style>
<script type="text/ecmascript">
<![CDATA[
var details, svg;
function init(evt) {
details = document.getElementById("details").firstChild;
svg = document.getElementsByTagName("svg")[0];
}
function s(info) { details.nodeValue = "Function: " + info; }
function c() { details.nodeValue = ' '; }
function find_child(parent, name, attr) {
var children = parent.childNodes;
for (var i=0; i<children.length;i++) {
if (children[i].tagName == name)
return (attr != undefined) ? children[i].attributes[attr].value : children[i];
}
return;
}
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 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 = "";
}
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") + 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;
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "1.0";
var el = document.getElementsByTagName("g");
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);
// Is it an ancestor
if (0 == 0) {
var upstack = parseFloat(a["y"].value) > ymin;
} else {
var upstack = parseFloat(a["y"].value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.style["opacity"] = "0.5";
zoom_parent(e);
e.onclick = function(e){unzoom(); zoom(this);};
update_text(e);
}
// not in current path
else
e.style["display"] = "none";
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.style["display"] = "none";
}
else {
zoom_child(e, xmin, ratio);
e.onclick = function(e){zoom(this);};
update_text(e);
}
}
}
}
function unzoom() {
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "0.0";
var el = document.getElementsByTagName("g");
for(i=0;i<el.length;i++) {
el[i].style["display"] = "block";
el[i].style["opacity"] = "1";
zoom_reset(el[i]);
update_text(el[i]);
}
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="930.0" fill="url(#background)" />
<text text-anchor="middle" x="600.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)" >Flame Graph</text>
<text text-anchor="" x="10.00" y="913" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text>
<text text-anchor="" x="10.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" >Reset Zoom</text>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.DefaultChannelPipeline$DefaultChannelHandlerContext.sendUpstream (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.DefaultChannelPipeline$DefaultChannelHandlerContext.sendUpstream (1 samples, 0.19%)</title><rect x="415.3" y="609" width="2.3" height="15.0" fill="rgb(217,60,45)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (4 samples, 0.76%)</title><rect x="527.9" y="657" width="9.0" height="15.0" fill="rgb(227,28,49)" rx="2" ry="2" />
<text text-anchor="" x="530.94" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.loadCurrentVersionFromIndex (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.loadCurrentVersionFromIndex (1 samples, 0.19%)</title><rect x="746.4" y="561" width="2.2" height="15.0" fill="rgb(224,40,0)" rx="2" ry="2" />
<text text-anchor="" x="749.37" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.Versions.loadDocIdAndVersion (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.Versions.loadDocIdAndVersion (1 samples, 0.19%)</title><rect x="593.2" y="529" width="2.3" height="15.0" fill="rgb(241,106,30)" rx="2" ry="2" />
<text text-anchor="" x="596.24" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (1 samples, 0.19%)</title><rect x="883.7" y="561" width="2.3" height="15.0" fill="rgb(220,105,49)" rx="2" ry="2" />
<text text-anchor="" x="886.74" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (2 samples, 0.38%)</title><rect x="800.4" y="561" width="4.5" height="15.0" fill="rgb(220,105,49)" rx="2" ry="2" />
<text text-anchor="" x="803.42" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Object.notifyAll (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Object.notifyAll (1 samples, 0.19%)</title><rect x="458.1" y="481" width="2.3" height="15.0" fill="rgb(217,177,43)" rx="2" ry="2" />
<text text-anchor="" x="461.13" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.NettyTransport.sendRequest (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.NettyTransport.sendRequest (1 samples, 0.19%)</title><rect x="415.3" y="209" width="2.3" height="15.0" fill="rgb(239,43,51)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.search.suggest.completion.Completion090PostingsFormat.completionStats (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.search.suggest.completion.Completion090PostingsFormat.completionStats (1 samples, 0.19%)</title><rect x="1138.2" y="625" width="2.3" height="15.0" fill="rgb(225,40,28)" rx="2" ry="2" />
<text text-anchor="" x="1141.21" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Translog.ensureSynced (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Translog.ensureSynced (5 samples, 0.95%)</title><rect x="872.5" y="625" width="11.2" height="15.0" fill="rgb(205,176,40)" rx="2" ry="2" />
<text text-anchor="" x="875.48" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.prepareCreate (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.prepareCreate (3 samples, 0.57%)</title><rect x="541.5" y="593" width="6.7" height="15.0" fill="rgb(228,179,21)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.NioWorker.read (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.NioWorker.read (1 samples, 0.19%)</title><rect x="415.3" y="705" width="2.3" height="15.0" fill="rgb(134,134,192)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.joda.time.format.DateTimeFormatterBuilder$Composite.parseInto (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.joda.time.format.DateTimeFormatterBuilder$Composite.parseInto (1 samples, 0.19%)</title><rect x="541.5" y="353" width="2.2" height="15.0" fill="rgb(250,72,29)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriterFlushControl.doAfterDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriterFlushControl.doAfterDocument (1 samples, 0.19%)</title><rect x="629.3" y="497" width="2.2" height="15.0" fill="rgb(252,155,29)" rx="2" ry="2" />
<text text-anchor="" x="632.27" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.Engine$Index.execute (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.Engine$Index.execute (6 samples, 1.15%)</title><rect x="953.5" y="625" width="13.6" height="15.0" fill="rgb(215,33,13)" rx="2" ry="2" />
<text text-anchor="" x="956.55" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.Channels.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.Channels.write (1 samples, 0.19%)</title><rect x="415.3" y="177" width="2.3" height="15.0" fill="rgb(124,124,235)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Thread.run (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Thread.run (8 samples, 1.53%)</title><rect x="865.7" y="849" width="18.0" height="15.0" fill="rgb(251,44,12)" rx="2" ry="2" />
<text text-anchor="" x="868.73" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.create (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.create (3 samples, 0.57%)</title><rect x="629.3" y="593" width="6.7" height="15.0" fill="rgb(214,111,47)" rx="2" ry="2" />
<text text-anchor="" x="632.27" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels.access$000 (16 samples, 3.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels.access$000 (16 samples, 3.05%)</title><rect x="1032.4" y="609" width="36.0" height="15.0" fill="rgb(232,51,49)" rx="2" ry="2" />
<text text-anchor="" x="1035.37" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >jav..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (1 samples, 0.19%)</title><rect x="969.3" y="721" width="2.3" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="972.31" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction.nodeOperation (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction.nodeOperation (1 samples, 0.19%)</title><rect x="1145.0" y="689" width="2.2" height="15.0" fill="rgb(229,15,44)" rx="2" ry="2" />
<text text-anchor="" x="1147.96" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.io.BufferedInputStream.read (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.io.BufferedInputStream.read (7 samples, 1.34%)</title><rect x="428.9" y="321" width="15.7" height="15.0" fill="rgb(97,97,238)" rx="2" ry="2" />
<text text-anchor="" x="431.85" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.Engine$Create.execute (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.Engine$Create.execute (5 samples, 0.95%)</title><rect x="701.3" y="641" width="11.3" height="15.0" fill="rgb(236,194,14)" rx="2" ry="2" />
<text text-anchor="" x="704.34" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.updateDocument (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.updateDocument (3 samples, 0.57%)</title><rect x="926.5" y="529" width="6.8" height="15.0" fill="rgb(233,96,34)" rx="2" ry="2" />
<text text-anchor="" x="929.53" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.SelectorImpl.select (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.SelectorImpl.select (1 samples, 0.19%)</title><rect x="424.4" y="689" width="2.2" height="15.0" fill="rgb(245,93,11)" rx="2" ry="2" />
<text text-anchor="" x="427.35" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (1 samples, 0.19%)</title><rect x="712.6" y="657" width="2.2" height="15.0" fill="rgb(224,156,41)" rx="2" ry="2" />
<text text-anchor="" x="715.60" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Translog.ensureSynced (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Translog.ensureSynced (3 samples, 0.57%)</title><rect x="505.4" y="625" width="6.8" height="15.0" fill="rgb(205,176,40)" rx="2" ry="2" />
<text text-anchor="" x="508.42" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor$Worker.run (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor$Worker.run (7 samples, 1.34%)</title><rect x="512.2" y="833" width="15.7" height="15.0" fill="rgb(241,183,32)" rx="2" ry="2" />
<text text-anchor="" x="515.18" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriter.updateDocument (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriter.updateDocument (3 samples, 0.57%)</title><rect x="926.5" y="513" width="6.8" height="15.0" fill="rgb(238,61,26)" rx="2" ry="2" />
<text text-anchor="" x="929.53" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (1 samples, 0.19%)</title><rect x="667.6" y="657" width="2.2" height="15.0" fill="rgb(227,28,49)" rx="2" ry="2" />
<text text-anchor="" x="670.56" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.PerThreadIDAndVersionLookup.lookup (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.PerThreadIDAndVersionLookup.lookup (1 samples, 0.19%)</title><rect x="746.4" y="513" width="2.2" height="15.0" fill="rgb(237,190,48)" rx="2" ry="2" />
<text text-anchor="" x="749.37" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.flush (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.flush (5 samples, 0.95%)</title><rect x="701.3" y="449" width="11.3" height="15.0" fill="rgb(248,139,20)" rx="2" ry="2" />
<text text-anchor="" x="704.34" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.ByteSequenceOutputs.read (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.ByteSequenceOutputs.read (1 samples, 0.19%)</title><rect x="973.8" y="385" width="2.3" height="15.0" fill="rgb(107,107,208)" rx="2" ry="2" />
<text text-anchor="" x="976.82" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('Surrogate Locker Thread (Concurrent GC) (90 samples, 17.18%)')" onmouseout="c()" onclick="zoom(this)">
<title>Surrogate Locker Thread (Concurrent GC) (90 samples, 17.18%)</title><rect x="212.7" y="865" width="202.6" height="15.0" fill="rgb(222,136,29)" rx="2" ry="2" />
<text text-anchor="" x="215.67" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Surrogate Locker Thread (C..</text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.writeFromNativeBuffer (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.writeFromNativeBuffer (1 samples, 0.19%)</title><rect x="649.5" y="449" width="2.3" height="15.0" fill="rgb(81,81,230)" rx="2" ry="2" />
<text text-anchor="" x="652.54" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.messageReceived (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.messageReceived (3 samples, 0.57%)</title><rect x="1147.2" y="737" width="6.8" height="15.0" fill="rgb(215,138,0)" rx="2" ry="2" />
<text text-anchor="" x="1150.21" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (2 samples, 0.38%)</title><rect x="728.4" y="737" width="4.5" height="15.0" fill="rgb(247,84,19)" rx="2" ry="2" />
<text text-anchor="" x="731.36" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (5 samples, 0.95%)</title><rect x="458.1" y="721" width="11.3" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="461.13" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.create (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.create (6 samples, 1.15%)</title><rect x="548.2" y="593" width="13.5" height="15.0" fill="rgb(214,111,47)" rx="2" ry="2" />
<text text-anchor="" x="551.21" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.loadCurrentVersionFromIndex (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.loadCurrentVersionFromIndex (1 samples, 0.19%)</title><rect x="514.4" y="561" width="2.3" height="15.0" fill="rgb(224,40,0)" rx="2" ry="2" />
<text text-anchor="" x="517.43" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (2 samples, 0.38%)</title><rect x="728.4" y="593" width="4.5" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="731.36" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (9 samples, 1.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (9 samples, 1.72%)</title><rect x="933.3" y="657" width="20.2" height="15.0" fill="rgb(224,156,41)" rx="2" ry="2" />
<text text-anchor="" x="936.28" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)</title><rect x="926.5" y="161" width="2.3" height="15.0" fill="rgb(119,119,204)" rx="2" ry="2" />
<text text-anchor="" x="929.53" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.Channels.writeToChannel (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.Channels.writeToChannel (5 samples, 0.95%)</title><rect x="872.5" y="561" width="11.2" height="15.0" fill="rgb(134,134,237)" rx="2" ry="2" />
<text text-anchor="" x="875.48" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels.writeFullyImpl (16 samples, 3.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels.writeFullyImpl (16 samples, 3.05%)</title><rect x="1032.4" y="577" width="36.0" height="15.0" fill="rgb(118,118,221)" rx="2" ry="2" />
<text text-anchor="" x="1035.37" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >jav..</text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.DataInput.readVLong (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.DataInput.readVLong (1 samples, 0.19%)</title><rect x="768.9" y="385" width="2.2" height="15.0" fill="rgb(82,82,236)" rx="2" ry="2" />
<text text-anchor="" x="771.89" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (2 samples, 0.38%)</title><rect x="512.2" y="673" width="4.5" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="515.18" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.single.shard.TransportSingleShardAction$ShardTransportHandler.messageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.single.shard.TransportSingleShardAction$ShardTransportHandler.messageReceived (1 samples, 0.19%)</title><rect x="1108.9" y="721" width="2.3" height="15.0" fill="rgb(215,95,42)" rx="2" ry="2" />
<text text-anchor="" x="1111.93" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.fs.UnixChannelFactory.newFileChannel (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.fs.UnixChannelFactory.newFileChannel (6 samples, 1.15%)</title><rect x="953.5" y="257" width="13.6" height="15.0" fill="rgb(229,90,32)" rx="2" ry="2" />
<text text-anchor="" x="956.55" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.create (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.create (2 samples, 0.38%)</title><rect x="980.6" y="609" width="4.5" height="15.0" fill="rgb(206,208,36)" rx="2" ry="2" />
<text text-anchor="" x="983.57" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.index (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.index (1 samples, 0.19%)</title><rect x="624.8" y="625" width="2.2" height="15.0" fill="rgb(248,8,16)" rx="2" ry="2" />
<text text-anchor="" x="627.77" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (5 samples, 0.95%)</title><rect x="872.5" y="641" width="11.2" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="875.48" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.TransportAction$1.onResponse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.TransportAction$1.onResponse (1 samples, 0.19%)</title><rect x="1187.7" y="337" width="2.3" height="15.0" fill="rgb(239,40,41)" rx="2" ry="2" />
<text text-anchor="" x="1190.75" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.nodes.TransportNodesAction.nodeOperation (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.nodes.TransportNodesAction.nodeOperation (1 samples, 0.19%)</title><rect x="1142.7" y="721" width="2.3" height="15.0" fill="rgb(250,67,43)" rx="2" ry="2" />
<text text-anchor="" x="1145.71" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.checkpoint (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.checkpoint (11 samples, 2.10%)</title><rect x="818.4" y="577" width="24.8" height="15.0" fill="rgb(218,30,19)" rx="2" ry="2" />
<text text-anchor="" x="821.44" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportRequestHandler.messageReceived (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportRequestHandler.messageReceived (4 samples, 0.76%)</title><rect x="1115.7" y="753" width="9.0" height="15.0" fill="rgb(243,108,4)" rx="2" ry="2" />
<text text-anchor="" x="1118.69" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.Versions.loadDocIdAndVersion (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.Versions.loadDocIdAndVersion (1 samples, 0.19%)</title><rect x="973.8" y="529" width="2.3" height="15.0" fill="rgb(241,106,30)" rx="2" ry="2" />
<text text-anchor="" x="976.82" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (2 samples, 0.38%)</title><rect x="512.2" y="689" width="4.5" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="515.18" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.PerThreadIDAndVersionLookup.lookup (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.PerThreadIDAndVersionLookup.lookup (1 samples, 0.19%)</title><rect x="780.2" y="513" width="2.2" height="15.0" fill="rgb(237,190,48)" rx="2" ry="2" />
<text text-anchor="" x="783.15" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (6 samples, 1.15%)</title><rect x="843.2" y="737" width="13.5" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="846.21" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriterPerThread.updateDocument (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriterPerThread.updateDocument (5 samples, 0.95%)</title><rect x="701.3" y="513" width="11.3" height="15.0" fill="rgb(245,210,52)" rx="2" ry="2" />
<text text-anchor="" x="704.34" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.NettyTransportChannel.sendResponse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.NettyTransportChannel.sendResponse (1 samples, 0.19%)</title><rect x="1185.5" y="657" width="2.2" height="15.0" fill="rgb(253,134,21)" rx="2" ry="2" />
<text text-anchor="" x="1188.50" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][[sigma_cdn-2017.04.15][0]: Lucene Merge Thread #125] (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][[sigma_cdn-2017.04.15][0]: Lucene Merge Thread #125] (1 samples, 0.19%)</title><rect x="455.9" y="865" width="2.2" height="15.0" fill="rgb(233,211,12)" rx="2" ry="2" />
<text text-anchor="" x="458.88" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.io.BufferedOutputStream.write (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.io.BufferedOutputStream.write (5 samples, 0.95%)</title><rect x="714.8" y="337" width="11.3" height="15.0" fill="rgb(95,95,199)" rx="2" ry="2" />
<text text-anchor="" x="717.85" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.messageReceived (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.messageReceived (2 samples, 0.38%)</title><rect x="1138.2" y="737" width="4.5" height="15.0" fill="rgb(215,138,0)" rx="2" ry="2" />
<text text-anchor="" x="1141.21" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriter.updateDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriter.updateDocument (1 samples, 0.19%)</title><rect x="530.2" y="513" width="2.2" height="15.0" fill="rgb(238,61,26)" rx="2" ry="2" />
<text text-anchor="" x="533.19" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (1 samples, 0.19%)</title><rect x="994.1" y="641" width="2.2" height="15.0" fill="rgb(214,128,2)" rx="2" ry="2" />
<text text-anchor="" x="997.08" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService$4.doRun (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService$4.doRun (8 samples, 1.53%)</title><rect x="482.9" y="785" width="18.0" height="15.0" fill="rgb(205,174,36)" rx="2" ry="2" />
<text text-anchor="" x="485.90" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.fs.UnixNativeDispatcher.open0 (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.fs.UnixNativeDispatcher.open0 (6 samples, 1.15%)</title><rect x="953.5" y="193" width="13.6" height="15.0" fill="rgb(206,79,26)" rx="2" ry="2" />
<text text-anchor="" x="956.55" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriter.updateDocument (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriter.updateDocument (5 samples, 0.95%)</title><rect x="701.3" y="529" width="11.3" height="15.0" fill="rgb(238,61,26)" rx="2" ry="2" />
<text text-anchor="" x="704.34" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (6 samples, 1.15%)</title><rect x="527.9" y="673" width="13.6" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="530.94" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.joda.time.format.DateTimeFormatter.parseMillis (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.joda.time.format.DateTimeFormatter.parseMillis (2 samples, 0.38%)</title><rect x="541.5" y="433" width="4.5" height="15.0" fill="rgb(222,139,39)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (4 samples, 0.76%)</title><rect x="629.3" y="737" width="9.0" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="632.27" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.FST.findTargetArc (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.FST.findTargetArc (1 samples, 0.19%)</title><rect x="514.4" y="481" width="2.3" height="15.0" fill="rgb(249,199,6)" rx="2" ry="2" />
<text text-anchor="" x="517.43" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriterPerThread.updateDocument (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriterPerThread.updateDocument (6 samples, 1.15%)</title><rect x="609.0" y="513" width="13.5" height="15.0" fill="rgb(245,210,52)" rx="2" ry="2" />
<text text-anchor="" x="612.01" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.prepareCreate (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.prepareCreate (1 samples, 0.19%)</title><rect x="469.4" y="625" width="2.2" height="15.0" fill="rgb(228,179,21)" rx="2" ry="2" />
<text text-anchor="" x="472.39" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService$4.doRun (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService$4.doRun (4 samples, 0.76%)</title><rect x="883.7" y="785" width="9.0" height="15.0" fill="rgb(205,174,36)" rx="2" ry="2" />
<text text-anchor="" x="886.74" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (1 samples, 0.19%)</title><rect x="692.3" y="561" width="2.3" height="15.0" fill="rgb(220,105,49)" rx="2" ry="2" />
<text text-anchor="" x="695.33" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Thread.run (10 samples, 1.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Thread.run (10 samples, 1.91%)</title><rect x="606.8" y="849" width="22.5" height="15.0" fill="rgb(251,44,12)" rx="2" ry="2" />
<text text-anchor="" x="609.76" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService$4.doRun (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService$4.doRun (5 samples, 0.95%)</title><rect x="690.1" y="785" width="11.2" height="15.0" fill="rgb(205,174,36)" rx="2" ry="2" />
<text text-anchor="" x="693.08" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.joda.time.format.DateTimeParserBucket.computeMillis (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.joda.time.format.DateTimeParserBucket.computeMillis (1 samples, 0.19%)</title><rect x="543.7" y="401" width="2.3" height="15.0" fill="rgb(207,109,42)" rx="2" ry="2" />
<text text-anchor="" x="546.70" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain$PerField.invert (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain$PerField.invert (1 samples, 0.19%)</title><rect x="971.6" y="449" width="2.2" height="15.0" fill="rgb(243,141,2)" rx="2" ry="2" />
<text text-anchor="" x="974.56" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (3 samples, 0.57%)</title><rect x="762.1" y="561" width="6.8" height="15.0" fill="rgb(220,105,49)" rx="2" ry="2" />
<text text-anchor="" x="765.14" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write0 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write0 (1 samples, 0.19%)</title><rect x="570.7" y="481" width="2.3" height="15.0" fill="rgb(139,139,202)" rx="2" ry="2" />
<text text-anchor="" x="573.73" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService$4.doRun (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService$4.doRun (3 samples, 0.57%)</title><rect x="667.6" y="785" width="6.7" height="15.0" fill="rgb(205,174,36)" rx="2" ry="2" />
<text text-anchor="" x="670.56" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels.writeFullyImpl (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels.writeFullyImpl (1 samples, 0.19%)</title><rect x="892.7" y="241" width="2.3" height="15.0" fill="rgb(118,118,221)" rx="2" ry="2" />
<text text-anchor="" x="895.75" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Translog.ensureSynced (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Translog.ensureSynced (3 samples, 0.57%)</title><rect x="856.7" y="625" width="6.8" height="15.0" fill="rgb(205,176,40)" rx="2" ry="2" />
<text text-anchor="" x="859.72" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (8 samples, 1.53%)</title><rect x="732.9" y="737" width="18.0" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="735.86" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write0 (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write0 (6 samples, 1.15%)</title><rect x="548.2" y="161" width="13.5" height="15.0" fill="rgb(139,139,202)" rx="2" ry="2" />
<text text-anchor="" x="551.21" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.Versions.loadVersion (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.Versions.loadVersion (1 samples, 0.19%)</title><rect x="593.2" y="545" width="2.3" height="15.0" fill="rgb(228,65,45)" rx="2" ry="2" />
<text text-anchor="" x="596.24" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.write (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.write (3 samples, 0.57%)</title><rect x="516.7" y="529" width="6.7" height="15.0" fill="rgb(103,103,204)" rx="2" ry="2" />
<text text-anchor="" x="519.68" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (6 samples, 1.15%)</title><rect x="676.6" y="657" width="13.5" height="15.0" fill="rgb(224,156,41)" rx="2" ry="2" />
<text text-anchor="" x="679.56" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.fs.UnixFileAttributes.get (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.fs.UnixFileAttributes.get (1 samples, 0.19%)</title><rect x="1154.0" y="385" width="2.2" height="15.0" fill="rgb(229,206,0)" rx="2" ry="2" />
<text text-anchor="" x="1156.97" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (1 samples, 0.19%)</title><rect x="969.3" y="737" width="2.3" height="15.0" fill="rgb(247,84,19)" rx="2" ry="2" />
<text text-anchor="" x="972.31" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Object.notifyAll (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Object.notifyAll (1 samples, 0.19%)</title><rect x="503.2" y="449" width="2.2" height="15.0" fill="rgb(217,177,43)" rx="2" ry="2" />
<text text-anchor="" x="506.17" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor$Worker.run (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor$Worker.run (8 samples, 1.53%)</title><rect x="714.8" y="833" width="18.1" height="15.0" fill="rgb(241,183,32)" rx="2" ry="2" />
<text text-anchor="" x="717.85" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force0 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force0 (1 samples, 0.19%)</title><rect x="969.3" y="529" width="2.3" height="15.0" fill="rgb(222,14,30)" rx="2" ry="2" />
<text text-anchor="" x="972.31" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.lucene50.Lucene50StoredFieldsFormat.fieldsWriter (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.lucene50.Lucene50StoredFieldsFormat.fieldsWriter (6 samples, 1.15%)</title><rect x="908.5" y="465" width="13.5" height="15.0" fill="rgb(239,58,54)" rx="2" ry="2" />
<text text-anchor="" x="911.51" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force0 (9 samples, 1.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force0 (9 samples, 1.72%)</title><rect x="933.3" y="529" width="20.2" height="15.0" fill="rgb(222,14,30)" rx="2" ry="2" />
<text text-anchor="" x="936.28" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.Versions.loadVersion (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.Versions.loadVersion (1 samples, 0.19%)</title><rect x="780.2" y="545" width="2.2" height="15.0" fill="rgb(228,65,45)" rx="2" ry="2" />
<text text-anchor="" x="783.15" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.handler.codec.http.HttpMessageEncoder.encode (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.handler.codec.http.HttpMessageEncoder.encode (1 samples, 0.19%)</title><rect x="1187.7" y="113" width="2.3" height="15.0" fill="rgb(219,98,38)" rx="2" ry="2" />
<text text-anchor="" x="1190.75" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.DelegatingTransportChannel.sendResponse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.DelegatingTransportChannel.sendResponse (1 samples, 0.19%)</title><rect x="1108.9" y="513" width="2.3" height="15.0" fill="rgb(218,8,18)" rx="2" ry="2" />
<text text-anchor="" x="1111.93" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.writeCheckpoint (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.writeCheckpoint (1 samples, 0.19%)</title><rect x="649.5" y="561" width="2.3" height="15.0" fill="rgb(132,132,209)" rx="2" ry="2" />
<text text-anchor="" x="652.54" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (1 samples, 0.19%)</title><rect x="991.8" y="641" width="2.3" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="994.83" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.Channels.fireMessageReceived (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.Channels.fireMessageReceived (8 samples, 1.53%)</title><rect x="426.6" y="513" width="18.0" height="15.0" fill="rgb(237,176,18)" rx="2" ry="2" />
<text text-anchor="" x="429.60" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.write (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.write (6 samples, 1.15%)</title><rect x="548.2" y="225" width="13.5" height="15.0" fill="rgb(121,121,206)" rx="2" ry="2" />
<text text-anchor="" x="551.21" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.util.ThreadRenamingRunnable.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.util.ThreadRenamingRunnable.run (1 samples, 0.19%)</title><rect x="422.1" y="785" width="2.3" height="15.0" fill="rgb(247,53,7)" rx="2" ry="2" />
<text text-anchor="" x="425.10" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.Channels.writeToChannel (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.Channels.writeToChannel (1 samples, 0.19%)</title><rect x="863.5" y="561" width="2.2" height="15.0" fill="rgb(134,134,237)" rx="2" ry="2" />
<text text-anchor="" x="866.47" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.create (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.create (1 samples, 0.19%)</title><rect x="692.3" y="609" width="2.3" height="15.0" fill="rgb(206,208,36)" rx="2" ry="2" />
<text text-anchor="" x="695.33" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Checkpoint.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Checkpoint.write (1 samples, 0.19%)</title><rect x="696.8" y="529" width="2.3" height="15.0" fill="rgb(94,94,229)" rx="2" ry="2" />
<text text-anchor="" x="699.83" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader.ramBytesUsed (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader.ramBytesUsed (1 samples, 0.19%)</title><rect x="1149.5" y="593" width="2.2" height="15.0" fill="rgb(219,132,10)" rx="2" ry="2" />
<text text-anchor="" x="1152.47" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels.writeFullyImpl (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels.writeFullyImpl (1 samples, 0.19%)</title><rect x="926.5" y="225" width="2.3" height="15.0" fill="rgb(118,118,221)" rx="2" ry="2" />
<text text-anchor="" x="929.53" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write (2 samples, 0.38%)</title><rect x="595.5" y="497" width="4.5" height="15.0" fill="rgb(119,119,204)" rx="2" ry="2" />
<text text-anchor="" x="598.50" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force (2 samples, 0.38%)</title><rect x="602.3" y="545" width="4.5" height="15.0" fill="rgb(236,18,34)" rx="2" ry="2" />
<text text-anchor="" x="605.25" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.create (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.create (2 samples, 0.38%)</title><rect x="980.6" y="593" width="4.5" height="15.0" fill="rgb(214,111,47)" rx="2" ry="2" />
<text text-anchor="" x="983.57" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.fs.UnixDirectoryStream$UnixDirectoryIterator.readNextEntry (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.fs.UnixDirectoryStream$UnixDirectoryIterator.readNextEntry (4 samples, 0.76%)</title><rect x="1158.5" y="433" width="9.0" height="15.0" fill="rgb(134,134,221)" rx="2" ry="2" />
<text text-anchor="" x="1161.47" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.finishDocument (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.finishDocument (5 samples, 0.95%)</title><rect x="714.8" y="449" width="11.3" height="15.0" fill="rgb(221,219,23)" rx="2" ry="2" />
<text text-anchor="" x="717.85" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.create (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.create (5 samples, 0.95%)</title><rect x="843.2" y="609" width="11.3" height="15.0" fill="rgb(206,208,36)" rx="2" ry="2" />
<text text-anchor="" x="846.21" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.refresh (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.refresh (1 samples, 0.19%)</title><rect x="1181.0" y="769" width="2.2" height="15.0" fill="rgb(218,63,16)" rx="2" ry="2" />
<text text-anchor="" x="1183.99" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.create (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.create (3 samples, 0.57%)</title><rect x="926.5" y="609" width="6.8" height="15.0" fill="rgb(206,208,36)" rx="2" ry="2" />
<text text-anchor="" x="929.53" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.NettyTransportChannel.sendResponse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.NettyTransportChannel.sendResponse (1 samples, 0.19%)</title><rect x="1185.5" y="673" width="2.2" height="15.0" fill="rgb(253,134,21)" rx="2" ry="2" />
<text text-anchor="" x="1188.50" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction.shardOperation (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction.shardOperation (3 samples, 0.57%)</title><rect x="1115.7" y="689" width="6.7" height="15.0" fill="rgb(252,11,24)" rx="2" ry="2" />
<text text-anchor="" x="1118.69" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.NioServerSocketPipelineSink.handleAcceptedSocket (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.NioServerSocketPipelineSink.handleAcceptedSocket (1 samples, 0.19%)</title><rect x="1108.9" y="385" width="2.3" height="15.0" fill="rgb(233,189,14)" rx="2" ry="2" />
<text text-anchor="" x="1111.93" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (11 samples, 2.10%)</title><rect x="775.6" y="801" width="24.8" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="778.65" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction.nodeOperation (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction.nodeOperation (1 samples, 0.19%)</title><rect x="1113.4" y="705" width="2.3" height="15.0" fill="rgb(229,15,44)" rx="2" ry="2" />
<text text-anchor="" x="1116.44" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (7 samples, 1.34%)</title><rect x="782.4" y="657" width="15.8" height="15.0" fill="rgb(224,156,41)" rx="2" ry="2" />
<text text-anchor="" x="785.40" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.SimpleChannelUpstreamHandler.handleUpstream (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.SimpleChannelUpstreamHandler.handleUpstream (1 samples, 0.19%)</title><rect x="1187.7" y="625" width="2.3" height="15.0" fill="rgb(229,89,18)" rx="2" ry="2" />
<text text-anchor="" x="1190.75" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (2 samples, 0.38%)</title><rect x="757.6" y="673" width="4.5" height="15.0" fill="rgb(218,222,0)" rx="2" ry="2" />
<text text-anchor="" x="760.63" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (1 samples, 0.19%)</title><rect x="636.0" y="593" width="2.3" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="639.03" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnReplica (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnReplica (1 samples, 0.19%)</title><rect x="674.3" y="657" width="2.3" height="15.0" fill="rgb(233,15,33)" rx="2" ry="2" />
<text text-anchor="" x="677.31" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)</title><rect x="649.5" y="433" width="2.3" height="15.0" fill="rgb(119,119,204)" rx="2" ry="2" />
<text text-anchor="" x="652.54" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Translog.ensureSynced (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Translog.ensureSynced (2 samples, 0.38%)</title><rect x="771.1" y="625" width="4.5" height="15.0" fill="rgb(205,176,40)" rx="2" ry="2" />
<text text-anchor="" x="774.15" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.TreeMap.getEntry (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.TreeMap.getEntry (1 samples, 0.19%)</title><rect x="1142.7" y="545" width="2.3" height="15.0" fill="rgb(244,50,43)" rx="2" ry="2" />
<text text-anchor="" x="1145.71" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentMapper.parse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentMapper.parse (1 samples, 0.19%)</title><rect x="1005.3" y="577" width="2.3" height="15.0" fill="rgb(239,142,49)" rx="2" ry="2" />
<text text-anchor="" x="1008.34" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.checkpoint (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.checkpoint (2 samples, 0.38%)</title><rect x="669.8" y="577" width="4.5" height="15.0" fill="rgb(218,30,19)" rx="2" ry="2" />
<text text-anchor="" x="672.81" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.writeFromNativeBuffer (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.writeFromNativeBuffer (4 samples, 0.76%)</title><rect x="996.3" y="513" width="9.0" height="15.0" fill="rgb(81,81,230)" rx="2" ry="2" />
<text text-anchor="" x="999.34" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (8 samples, 1.53%)</title><rect x="482.9" y="737" width="18.0" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="485.90" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.updateDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.updateDocument (1 samples, 0.19%)</title><rect x="892.7" y="545" width="2.3" height="15.0" fill="rgb(233,96,34)" rx="2" ry="2" />
<text text-anchor="" x="895.75" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (1 samples, 0.19%)</title><rect x="967.1" y="593" width="2.2" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="970.06" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.joda.time.format.InternalParserDateTimeParser.parseInto (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.joda.time.format.InternalParserDateTimeParser.parseInto (1 samples, 0.19%)</title><rect x="775.6" y="369" width="2.3" height="15.0" fill="rgb(242,16,2)" rx="2" ry="2" />
<text text-anchor="" x="778.65" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.TreeMap.get (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.TreeMap.get (1 samples, 0.19%)</title><rect x="1115.7" y="593" width="2.2" height="15.0" fill="rgb(220,1,51)" rx="2" ry="2" />
<text text-anchor="" x="1118.69" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.addDocument (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.addDocument (6 samples, 1.15%)</title><rect x="609.0" y="561" width="13.5" height="15.0" fill="rgb(227,61,0)" rx="2" ry="2" />
<text text-anchor="" x="612.01" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.indices.IndicesService.stats (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.indices.IndicesService.stats (1 samples, 0.19%)</title><rect x="1145.0" y="657" width="2.2" height="15.0" fill="rgb(247,73,29)" rx="2" ry="2" />
<text text-anchor="" x="1147.96" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.checkpoint (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.checkpoint (6 samples, 1.15%)</title><rect x="676.6" y="577" width="13.5" height="15.0" fill="rgb(218,30,19)" rx="2" ry="2" />
<text text-anchor="" x="679.56" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.fs.UnixFileSystemProvider.newByteChannel (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.fs.UnixFileSystemProvider.newByteChannel (6 samples, 1.15%)</title><rect x="953.5" y="273" width="13.6" height="15.0" fill="rgb(248,16,40)" rx="2" ry="2" />
<text text-anchor="" x="956.55" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (13 samples, 2.48%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (13 samples, 2.48%)</title><rect x="813.9" y="801" width="29.3" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="816.93" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >or..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived (1 samples, 0.19%)</title><rect x="1145.0" y="737" width="2.2" height="15.0" fill="rgb(218,49,53)" rx="2" ry="2" />
<text text-anchor="" x="1147.96" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.updateDocument (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.updateDocument (2 samples, 0.38%)</title><rect x="800.4" y="529" width="4.5" height="15.0" fill="rgb(233,96,34)" rx="2" ry="2" />
<text text-anchor="" x="803.42" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][bulk][T#13] (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][bulk][T#13] (7 samples, 1.34%)</title><rect x="512.2" y="865" width="15.7" height="15.0" fill="rgb(244,11,30)" rx="2" ry="2" />
<text text-anchor="" x="515.18" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.io.BufferedOutputStream.flushBuffer (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.io.BufferedOutputStream.flushBuffer (6 samples, 1.15%)</title><rect x="609.0" y="353" width="13.5" height="15.0" fill="rgb(238,120,29)" rx="2" ry="2" />
<text text-anchor="" x="612.01" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.io.BufferedOutputStream.flushBuffer (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.io.BufferedOutputStream.flushBuffer (5 samples, 0.95%)</title><rect x="701.3" y="353" width="11.3" height="15.0" fill="rgb(238,120,29)" rx="2" ry="2" />
<text text-anchor="" x="704.34" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (4 samples, 0.76%)</title><rect x="800.4" y="641" width="9.0" height="15.0" fill="rgb(214,128,2)" rx="2" ry="2" />
<text text-anchor="" x="803.42" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels.access$000 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels.access$000 (1 samples, 0.19%)</title><rect x="883.7" y="257" width="2.3" height="15.0" fill="rgb(232,51,49)" rx="2" ry="2" />
<text text-anchor="" x="886.74" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.prepareCreate (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.prepareCreate (1 samples, 0.19%)</title><rect x="775.6" y="593" width="2.3" height="15.0" fill="rgb(228,179,21)" rx="2" ry="2" />
<text text-anchor="" x="778.65" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService$4.doRun (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService$4.doRun (1 samples, 0.19%)</title><rect x="1111.2" y="785" width="2.2" height="15.0" fill="rgb(205,174,36)" rx="2" ry="2" />
<text text-anchor="" x="1114.18" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write (16 samples, 3.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write (16 samples, 3.05%)</title><rect x="1032.4" y="513" width="36.0" height="15.0" fill="rgb(119,119,204)" rx="2" ry="2" />
<text text-anchor="" x="1035.37" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sun..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.FieldMapper.parse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.FieldMapper.parse (1 samples, 0.19%)</title><rect x="482.9" y="497" width="2.3" height="15.0" fill="rgb(215,191,25)" rx="2" ry="2" />
<text text-anchor="" x="485.90" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (3 samples, 0.57%)</title><rect x="856.7" y="737" width="6.8" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="859.72" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (2 samples, 0.38%)</title><rect x="753.1" y="753" width="4.5" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="756.13" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Translog.ensureSynced (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Translog.ensureSynced (1 samples, 0.19%)</title><rect x="645.0" y="625" width="2.3" height="15.0" fill="rgb(205,176,40)" rx="2" ry="2" />
<text text-anchor="" x="648.04" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.FSDirectory$FSIndexOutput$1.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.FSDirectory$FSIndexOutput$1.write (1 samples, 0.19%)</title><rect x="883.7" y="289" width="2.3" height="15.0" fill="rgb(121,121,236)" rx="2" ry="2" />
<text text-anchor="" x="886.74" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.ThreadLocal$ThreadLocalMap.getEntryAfterMiss (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ThreadLocal$ThreadLocalMap.getEntryAfterMiss (1 samples, 0.19%)</title><rect x="647.3" y="433" width="2.2" height="15.0" fill="rgb(230,183,15)" rx="2" ry="2" />
<text text-anchor="" x="650.29" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.Channels.fireMessageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.Channels.fireMessageReceived (1 samples, 0.19%)</title><rect x="417.6" y="673" width="2.2" height="15.0" fill="rgb(237,176,18)" rx="2" ry="2" />
<text text-anchor="" x="420.60" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.DelegatingTransportChannel.sendResponse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.DelegatingTransportChannel.sendResponse (1 samples, 0.19%)</title><rect x="1151.7" y="689" width="2.3" height="15.0" fill="rgb(218,8,18)" rx="2" ry="2" />
<text text-anchor="" x="1154.72" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.MessageChannelHandler.handleRequest (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.MessageChannelHandler.handleRequest (1 samples, 0.19%)</title><rect x="417.6" y="433" width="2.2" height="15.0" fill="rgb(230,66,9)" rx="2" ry="2" />
<text text-anchor="" x="420.60" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.doRun (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.doRun (5 samples, 0.95%)</title><rect x="872.5" y="705" width="11.2" height="15.0" fill="rgb(232,57,0)" rx="2" ry="2" />
<text text-anchor="" x="875.48" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.joda.time.format.DateTimeFormatterBuilder$Composite.parseInto (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.joda.time.format.DateTimeFormatterBuilder$Composite.parseInto (1 samples, 0.19%)</title><rect x="541.5" y="257" width="2.2" height="15.0" fill="rgb(250,72,29)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (3 samples, 0.57%)</title><rect x="865.7" y="721" width="6.8" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="868.73" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.TreeMap.get (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.TreeMap.get (1 samples, 0.19%)</title><rect x="1172.0" y="593" width="2.2" height="15.0" fill="rgb(220,1,51)" rx="2" ry="2" />
<text text-anchor="" x="1174.98" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (6 samples, 1.15%)</title><rect x="527.9" y="737" width="13.6" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="530.94" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.SimpleChannelUpstreamHandler.handleUpstream (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.SimpleChannelUpstreamHandler.handleUpstream (8 samples, 1.53%)</title><rect x="426.6" y="577" width="18.0" height="15.0" fill="rgb(229,89,18)" rx="2" ry="2" />
<text text-anchor="" x="429.60" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.zip.CheckedOutputStream.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.zip.CheckedOutputStream.write (1 samples, 0.19%)</title><rect x="883.7" y="305" width="2.3" height="15.0" fill="rgb(106,106,204)" rx="2" ry="2" />
<text text-anchor="" x="886.74" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (6 samples, 1.15%)</title><rect x="714.8" y="705" width="13.6" height="15.0" fill="rgb(222,177,52)" rx="2" ry="2" />
<text text-anchor="" x="717.85" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (2 samples, 0.38%)</title><rect x="989.6" y="737" width="4.5" height="15.0" fill="rgb(247,84,19)" rx="2" ry="2" />
<text text-anchor="" x="992.58" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.doRun (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.doRun (1 samples, 0.19%)</title><rect x="588.7" y="705" width="2.3" height="15.0" fill="rgb(232,57,0)" rx="2" ry="2" />
<text text-anchor="" x="591.74" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (2 samples, 0.38%)</title><rect x="980.6" y="561" width="4.5" height="15.0" fill="rgb(220,105,49)" rx="2" ry="2" />
<text text-anchor="" x="983.57" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.drain (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.drain (1 samples, 0.19%)</title><rect x="422.1" y="641" width="2.3" height="15.0" fill="rgb(216,176,34)" rx="2" ry="2" />
<text text-anchor="" x="425.10" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (11 samples, 2.10%)</title><rect x="541.5" y="753" width="24.7" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (1 samples, 0.19%)</title><rect x="627.0" y="609" width="2.3" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="630.02" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (6 samples, 1.15%)</title><rect x="701.3" y="769" width="13.5" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="704.34" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (11 samples, 2.10%)</title><rect x="541.5" y="705" width="24.7" height="15.0" fill="rgb(222,177,52)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.DocValuesConsumer$3$1.setNext (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.DocValuesConsumer$3$1.setNext (1 samples, 0.19%)</title><rect x="455.9" y="609" width="2.2" height="15.0" fill="rgb(241,161,22)" rx="2" ry="2" />
<text text-anchor="" x="458.88" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentParser.parseValue (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentParser.parseValue (1 samples, 0.19%)</title><rect x="482.9" y="529" width="2.3" height="15.0" fill="rgb(232,168,53)" rx="2" ry="2" />
<text text-anchor="" x="485.90" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.store.Store$StoreStatsCache.refresh (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.store.Store$StoreStatsCache.refresh (1 samples, 0.19%)</title><rect x="1178.7" y="593" width="2.3" height="15.0" fill="rgb(242,91,19)" rx="2" ry="2" />
<text text-anchor="" x="1181.74" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][bulk][T#15] (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][bulk][T#15] (11 samples, 2.10%)</title><rect x="541.5" y="865" width="24.7" height="15.0" fill="rgb(241,136,11)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.FieldMapper.parse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.FieldMapper.parse (1 samples, 0.19%)</title><rect x="732.9" y="497" width="2.2" height="15.0" fill="rgb(215,191,25)" rx="2" ry="2" />
<text text-anchor="" x="735.86" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.checkpoint (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.checkpoint (1 samples, 0.19%)</title><rect x="759.9" y="577" width="2.2" height="15.0" fill="rgb(218,30,19)" rx="2" ry="2" />
<text text-anchor="" x="762.89" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.Channels.fireMessageReceived (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.Channels.fireMessageReceived (5 samples, 0.95%)</title><rect x="444.6" y="513" width="11.3" height="15.0" fill="rgb(237,176,18)" rx="2" ry="2" />
<text text-anchor="" x="447.62" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)</title><rect x="883.7" y="161" width="2.3" height="15.0" fill="rgb(119,119,204)" rx="2" ry="2" />
<text text-anchor="" x="886.74" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (2 samples, 0.38%)</title><rect x="487.4" y="561" width="4.5" height="15.0" fill="rgb(220,105,49)" rx="2" ry="2" />
<text text-anchor="" x="490.40" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.Engine$Create.execute (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.Engine$Create.execute (2 samples, 0.38%)</title><rect x="566.2" y="625" width="4.5" height="15.0" fill="rgb(236,194,14)" rx="2" ry="2" />
<text text-anchor="" x="569.22" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (6 samples, 1.15%)</title><rect x="676.6" y="641" width="13.5" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="679.56" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.handler.codec.frame.FrameDecoder.unfoldAndFireMessageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.handler.codec.frame.FrameDecoder.unfoldAndFireMessageReceived (1 samples, 0.19%)</title><rect x="417.6" y="529" width="2.2" height="15.0" fill="rgb(217,104,2)" rx="2" ry="2" />
<text text-anchor="" x="420.60" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.create (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.create (2 samples, 0.38%)</title><rect x="865.7" y="609" width="4.5" height="15.0" fill="rgb(206,208,36)" rx="2" ry="2" />
<text text-anchor="" x="868.73" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.create (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.create (1 samples, 0.19%)</title><rect x="753.1" y="593" width="2.3" height="15.0" fill="rgb(214,111,47)" rx="2" ry="2" />
<text text-anchor="" x="756.13" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (1 samples, 0.19%)</title><rect x="976.1" y="593" width="2.2" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="979.07" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService$4.doRun (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService$4.doRun (7 samples, 1.34%)</title><rect x="591.0" y="785" width="15.8" height="15.0" fill="rgb(205,174,36)" rx="2" ry="2" />
<text text-anchor="" x="593.99" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (3 samples, 0.57%)</title><rect x="856.7" y="769" width="6.8" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="859.72" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.Versions.getLookupState (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.Versions.getLookupState (1 samples, 0.19%)</title><rect x="647.3" y="513" width="2.2" height="15.0" fill="rgb(222,10,46)" rx="2" ry="2" />
<text text-anchor="" x="650.29" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.prepareCreate (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.prepareCreate (1 samples, 0.19%)</title><rect x="527.9" y="593" width="2.3" height="15.0" fill="rgb(228,179,21)" rx="2" ry="2" />
<text text-anchor="" x="530.94" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerIndex (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerIndex (1 samples, 0.19%)</title><rect x="458.1" y="577" width="2.3" height="15.0" fill="rgb(246,73,49)" rx="2" ry="2" />
<text text-anchor="" x="461.13" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (8 samples, 1.53%)</title><rect x="482.9" y="673" width="18.0" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="485.90" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentMapper.parse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentMapper.parse (1 samples, 0.19%)</title><rect x="775.6" y="577" width="2.3" height="15.0" fill="rgb(239,142,49)" rx="2" ry="2" />
<text text-anchor="" x="778.65" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force0 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force0 (1 samples, 0.19%)</title><rect x="627.0" y="529" width="2.3" height="15.0" fill="rgb(222,14,30)" rx="2" ry="2" />
<text text-anchor="" x="630.02" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.write (1 samples, 0.19%)</title><rect x="928.8" y="209" width="2.2" height="15.0" fill="rgb(103,103,204)" rx="2" ry="2" />
<text text-anchor="" x="931.78" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (6 samples, 1.15%)</title><rect x="843.2" y="801" width="13.5" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="846.21" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write (5 samples, 0.95%)</title><rect x="735.1" y="161" width="11.3" height="15.0" fill="rgb(119,119,204)" rx="2" ry="2" />
<text text-anchor="" x="738.11" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.updateDocument (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.updateDocument (3 samples, 0.57%)</title><rect x="899.5" y="529" width="6.8" height="15.0" fill="rgb(233,96,34)" rx="2" ry="2" />
<text text-anchor="" x="902.50" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][[http_server_worker.default]][T#27]{New I/O worker #92} (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][[http_server_worker.default]][T#27]{New I/O worker #92} (1 samples, 0.19%)</title><rect x="417.6" y="865" width="2.2" height="15.0" fill="rgb(248,180,13)" rx="2" ry="2" />
<text text-anchor="" x="420.60" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (3 samples, 0.57%)</title><rect x="694.6" y="641" width="6.7" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="697.58" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.AbstractNioSelector.registerTask (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.AbstractNioSelector.registerTask (1 samples, 0.19%)</title><rect x="1185.5" y="513" width="2.2" height="15.0" fill="rgb(237,64,33)" rx="2" ry="2" />
<text text-anchor="" x="1188.50" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels$1.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels$1.write (1 samples, 0.19%)</title><rect x="1181.0" y="337" width="2.2" height="15.0" fill="rgb(107,107,220)" rx="2" ry="2" />
<text text-anchor="" x="1183.99" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.write (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.write (4 samples, 0.76%)</title><rect x="996.3" y="529" width="9.0" height="15.0" fill="rgb(103,103,204)" rx="2" ry="2" />
<text text-anchor="" x="999.34" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.create (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.create (1 samples, 0.19%)</title><rect x="647.3" y="593" width="2.2" height="15.0" fill="rgb(214,111,47)" rx="2" ry="2" />
<text text-anchor="" x="650.29" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.RateLimitedFSDirectory.createOutput (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.RateLimitedFSDirectory.createOutput (6 samples, 1.15%)</title><rect x="953.5" y="369" width="13.6" height="15.0" fill="rgb(210,130,52)" rx="2" ry="2" />
<text text-anchor="" x="956.55" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.io.BufferedOutputStream.flushBuffer (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.io.BufferedOutputStream.flushBuffer (5 samples, 0.95%)</title><rect x="714.8" y="321" width="11.3" height="15.0" fill="rgb(238,120,29)" rx="2" ry="2" />
<text text-anchor="" x="717.85" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (1 samples, 0.19%)</title><rect x="503.2" y="561" width="2.2" height="15.0" fill="rgb(220,105,49)" rx="2" ry="2" />
<text text-anchor="" x="506.17" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (1 samples, 0.19%)</title><rect x="503.2" y="657" width="2.2" height="15.0" fill="rgb(227,28,49)" rx="2" ry="2" />
<text text-anchor="" x="506.17" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.checkpoint (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.checkpoint (1 samples, 0.19%)</title><rect x="969.3" y="577" width="2.3" height="15.0" fill="rgb(218,30,19)" rx="2" ry="2" />
<text text-anchor="" x="972.31" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)</title><rect x="561.7" y="497" width="2.3" height="15.0" fill="rgb(119,119,204)" rx="2" ry="2" />
<text text-anchor="" x="564.72" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.addDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.addDocument (1 samples, 0.19%)</title><rect x="530.2" y="545" width="2.2" height="15.0" fill="rgb(227,61,0)" rx="2" ry="2" />
<text text-anchor="" x="533.19" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.PerThreadIDAndVersionLookup.lookup (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.PerThreadIDAndVersionLookup.lookup (1 samples, 0.19%)</title><rect x="633.8" y="513" width="2.2" height="15.0" fill="rgb(237,190,48)" rx="2" ry="2" />
<text text-anchor="" x="636.78" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.SelectorUtil.select (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.SelectorUtil.select (1 samples, 0.19%)</title><rect x="422.1" y="705" width="2.3" height="15.0" fill="rgb(207,113,53)" rx="2" ry="2" />
<text text-anchor="" x="425.10" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Translog.ensureSynced (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Translog.ensureSynced (1 samples, 0.19%)</title><rect x="712.6" y="625" width="2.2" height="15.0" fill="rgb(205,176,40)" rx="2" ry="2" />
<text text-anchor="" x="715.60" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.force (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.force (2 samples, 0.38%)</title><rect x="809.4" y="561" width="4.5" height="15.0" fill="rgb(236,11,41)" rx="2" ry="2" />
<text text-anchor="" x="812.43" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (7 samples, 1.34%)</title><rect x="782.4" y="641" width="15.8" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="785.40" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.LZ4.encodeSequence (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.LZ4.encodeSequence (6 samples, 1.15%)</title><rect x="609.0" y="401" width="13.5" height="15.0" fill="rgb(251,45,21)" rx="2" ry="2" />
<text text-anchor="" x="612.01" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.search.BooleanQuery.createWeight (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.search.BooleanQuery.createWeight (1 samples, 0.19%)</title><rect x="1183.2" y="577" width="2.3" height="15.0" fill="rgb(253,168,52)" rx="2" ry="2" />
<text text-anchor="" x="1186.24" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (10 samples, 1.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (10 samples, 1.91%)</title><rect x="566.2" y="705" width="22.5" height="15.0" fill="rgb(222,177,52)" rx="2" ry="2" />
<text text-anchor="" x="569.22" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.SingleObjectCache.getOrRefresh (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.SingleObjectCache.getOrRefresh (1 samples, 0.19%)</title><rect x="1178.7" y="609" width="2.3" height="15.0" fill="rgb(238,205,14)" rx="2" ry="2" />
<text text-anchor="" x="1181.74" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.SocketDispatcher.read (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.SocketDispatcher.read (1 samples, 0.19%)</title><rect x="419.8" y="641" width="2.3" height="15.0" fill="rgb(89,89,213)" rx="2" ry="2" />
<text text-anchor="" x="422.85" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force (1 samples, 0.19%)</title><rect x="564.0" y="513" width="2.2" height="15.0" fill="rgb(236,18,34)" rx="2" ry="2" />
<text text-anchor="" x="566.97" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write0 (18 samples, 3.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write0 (18 samples, 3.44%)</title><rect x="1068.4" y="497" width="40.5" height="15.0" fill="rgb(139,139,202)" rx="2" ry="2" />
<text text-anchor="" x="1071.40" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sun..</text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.(init) (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.(init) (6 samples, 1.15%)</title><rect x="908.5" y="433" width="13.5" height="15.0" fill="rgb(242,48,51)" rx="2" ry="2" />
<text text-anchor="" x="911.51" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Checkpoint.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Checkpoint.write (1 samples, 0.19%)</title><rect x="600.0" y="529" width="2.3" height="15.0" fill="rgb(94,94,229)" rx="2" ry="2" />
<text text-anchor="" x="603.00" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (1 samples, 0.19%)</title><rect x="798.2" y="785" width="2.2" height="15.0" fill="rgb(228,141,38)" rx="2" ry="2" />
<text text-anchor="" x="801.17" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.updateDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.updateDocument (1 samples, 0.19%)</title><rect x="624.8" y="577" width="2.2" height="15.0" fill="rgb(233,96,34)" rx="2" ry="2" />
<text text-anchor="" x="627.77" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.create (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.create (3 samples, 0.57%)</title><rect x="530.2" y="593" width="6.7" height="15.0" fill="rgb(214,111,47)" rx="2" ry="2" />
<text text-anchor="" x="533.19" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.processDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.processDocument (1 samples, 0.19%)</title><rect x="591.0" y="481" width="2.2" height="15.0" fill="rgb(220,78,24)" rx="2" ry="2" />
<text text-anchor="" x="593.99" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.writeFromNativeBuffer (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.writeFromNativeBuffer (1 samples, 0.19%)</title><rect x="1009.8" y="449" width="2.3" height="15.0" fill="rgb(81,81,230)" rx="2" ry="2" />
<text text-anchor="" x="1012.85" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.readIntoNativeBuffer (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.readIntoNativeBuffer (1 samples, 0.19%)</title><rect x="419.8" y="657" width="2.3" height="15.0" fill="rgb(123,123,203)" rx="2" ry="2" />
<text text-anchor="" x="422.85" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.updateDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.updateDocument (1 samples, 0.19%)</title><rect x="606.8" y="529" width="2.2" height="15.0" fill="rgb(233,96,34)" rx="2" ry="2" />
<text text-anchor="" x="609.76" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)</title><rect x="600.0" y="481" width="2.3" height="15.0" fill="rgb(121,121,206)" rx="2" ry="2" />
<text text-anchor="" x="603.00" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels.access$000 (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels.access$000 (6 samples, 1.15%)</title><rect x="548.2" y="273" width="13.5" height="15.0" fill="rgb(232,51,49)" rx="2" ry="2" />
<text text-anchor="" x="551.21" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (1 samples, 0.19%)</title><rect x="500.9" y="641" width="2.3" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="503.92" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.handler.codec.frame.FrameDecoder.messageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.handler.codec.frame.FrameDecoder.messageReceived (1 samples, 0.19%)</title><rect x="415.3" y="561" width="2.3" height="15.0" fill="rgb(206,159,15)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (4 samples, 0.76%)</title><rect x="629.3" y="673" width="9.0" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="632.27" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor$Worker.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor$Worker.run (1 samples, 0.19%)</title><rect x="422.1" y="833" width="2.3" height="15.0" fill="rgb(241,183,32)" rx="2" ry="2" />
<text text-anchor="" x="425.10" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.checkpoint (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.checkpoint (1 samples, 0.19%)</title><rect x="798.2" y="577" width="2.2" height="15.0" fill="rgb(218,30,19)" rx="2" ry="2" />
<text text-anchor="" x="801.17" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentParser.parseObject (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentParser.parseObject (1 samples, 0.19%)</title><rect x="674.3" y="561" width="2.3" height="15.0" fill="rgb(238,220,50)" rx="2" ry="2" />
<text text-anchor="" x="677.31" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportBulkAction$2.finishHim (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportBulkAction$2.finishHim (1 samples, 0.19%)</title><rect x="1187.7" y="353" width="2.3" height="15.0" fill="rgb(206,158,42)" rx="2" ry="2" />
<text text-anchor="" x="1190.75" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.search.suggest.completion.Completion090PostingsFormat.completionStats (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.search.suggest.completion.Completion090PostingsFormat.completionStats (1 samples, 0.19%)</title><rect x="1145.0" y="609" width="2.2" height="15.0" fill="rgb(225,40,28)" rx="2" ry="2" />
<text text-anchor="" x="1147.96" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (7 samples, 1.34%)</title><rect x="591.0" y="769" width="15.8" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="593.99" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.indices.recovery.RecoveryTarget$FileChunkTransportRequestHandler.messageReceived (22 samples, 4.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.indices.recovery.RecoveryTarget$FileChunkTransportRequestHandler.messageReceived (22 samples, 4.20%)</title><rect x="1018.9" y="737" width="49.5" height="15.0" fill="rgb(218,138,51)" rx="2" ry="2" />
<text text-anchor="" x="1021.85" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org...</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (6 samples, 1.15%)</title><rect x="843.2" y="769" width="13.5" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="846.21" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriterPerThread.updateDocument (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriterPerThread.updateDocument (6 samples, 1.15%)</title><rect x="953.5" y="529" width="13.6" height="15.0" fill="rgb(245,210,52)" rx="2" ry="2" />
<text text-anchor="" x="956.55" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (7 samples, 1.34%)</title><rect x="674.3" y="721" width="15.8" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="677.31" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (3 samples, 0.57%)</title><rect x="899.5" y="561" width="6.8" height="15.0" fill="rgb(220,105,49)" rx="2" ry="2" />
<text text-anchor="" x="902.50" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor$Worker.run (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor$Worker.run (6 samples, 1.15%)</title><rect x="1154.0" y="833" width="13.5" height="15.0" fill="rgb(241,183,32)" rx="2" ry="2" />
<text text-anchor="" x="1156.97" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.FST.readUnpackedNodeTarget (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.FST.readUnpackedNodeTarget (1 samples, 0.19%)</title><rect x="757.6" y="433" width="2.3" height="15.0" fill="rgb(109,109,234)" rx="2" ry="2" />
<text text-anchor="" x="760.63" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.search.suggest.completion.Completion090PostingsFormat.completionStats (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.search.suggest.completion.Completion090PostingsFormat.completionStats (1 samples, 0.19%)</title><rect x="1167.5" y="609" width="2.2" height="15.0" fill="rgb(225,40,28)" rx="2" ry="2" />
<text text-anchor="" x="1170.48" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (12 samples, 2.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (12 samples, 2.29%)</title><rect x="899.5" y="801" width="27.0" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="902.50" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('java.lang.Thread.run (9 samples, 1.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Thread.run (9 samples, 1.72%)</title><rect x="647.3" y="849" width="20.3" height="15.0" fill="rgb(251,44,12)" rx="2" ry="2" />
<text text-anchor="" x="650.29" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (4 samples, 0.76%)</title><rect x="503.2" y="721" width="9.0" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="506.17" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (2 samples, 0.38%)</title><rect x="629.3" y="561" width="4.5" height="15.0" fill="rgb(220,105,49)" rx="2" ry="2" />
<text text-anchor="" x="632.27" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force0 (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force0 (2 samples, 0.38%)</title><rect x="728.4" y="529" width="4.5" height="15.0" fill="rgb(222,14,30)" rx="2" ry="2" />
<text text-anchor="" x="731.36" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.LZ4.encodeLiterals (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.LZ4.encodeLiterals (1 samples, 0.19%)</title><rect x="926.5" y="369" width="2.3" height="15.0" fill="rgb(229,132,7)" rx="2" ry="2" />
<text text-anchor="" x="929.53" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriter.updateDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriter.updateDocument (1 samples, 0.19%)</title><rect x="503.2" y="513" width="2.2" height="15.0" fill="rgb(238,61,26)" rx="2" ry="2" />
<text text-anchor="" x="506.17" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (13 samples, 2.48%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (13 samples, 2.48%)</title><rect x="813.9" y="721" width="29.3" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="816.93" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >or..</text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.handler.codec.frame.FrameDecoder.callDecode (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.handler.codec.frame.FrameDecoder.callDecode (1 samples, 0.19%)</title><rect x="1187.7" y="593" width="2.3" height="15.0" fill="rgb(209,62,24)" rx="2" ry="2" />
<text text-anchor="" x="1190.75" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (4 samples, 0.76%)</title><rect x="482.9" y="641" width="9.0" height="15.0" fill="rgb(214,128,2)" rx="2" ry="2" />
<text text-anchor="" x="485.90" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.loadCurrentVersionFromIndex (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.loadCurrentVersionFromIndex (1 samples, 0.19%)</title><rect x="642.8" y="561" width="2.2" height="15.0" fill="rgb(224,40,0)" rx="2" ry="2" />
<text text-anchor="" x="645.79" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreate (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreate (1 samples, 0.19%)</title><rect x="692.3" y="577" width="2.3" height="15.0" fill="rgb(231,13,44)" rx="2" ry="2" />
<text text-anchor="" x="695.33" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.PerThreadIDAndVersionLookup.lookup (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.PerThreadIDAndVersionLookup.lookup (1 samples, 0.19%)</title><rect x="532.4" y="513" width="2.3" height="15.0" fill="rgb(237,190,48)" rx="2" ry="2" />
<text text-anchor="" x="535.44" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.EPollArrayWrapper.interrupt (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.EPollArrayWrapper.interrupt (1 samples, 0.19%)</title><rect x="415.3" y="33" width="2.3" height="15.0" fill="rgb(224,76,2)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.TreeMap.get (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.TreeMap.get (1 samples, 0.19%)</title><rect x="1113.4" y="561" width="2.3" height="15.0" fill="rgb(220,1,51)" rx="2" ry="2" />
<text text-anchor="" x="1116.44" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriter.updateDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriter.updateDocument (1 samples, 0.19%)</title><rect x="777.9" y="513" width="2.3" height="15.0" fill="rgb(238,61,26)" rx="2" ry="2" />
<text text-anchor="" x="780.90" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.admin.indices.stats.ShardStats.writeTo (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.admin.indices.stats.ShardStats.writeTo (1 samples, 0.19%)</title><rect x="1122.4" y="609" width="2.3" height="15.0" fill="rgb(108,108,239)" rx="2" ry="2" />
<text text-anchor="" x="1125.44" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (8 samples, 1.53%)</title><rect x="647.3" y="673" width="18.0" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="650.29" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Checkpoint.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Checkpoint.write (1 samples, 0.19%)</title><rect x="564.0" y="545" width="2.2" height="15.0" fill="rgb(94,94,229)" rx="2" ry="2" />
<text text-anchor="" x="566.97" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.messageReceived (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.messageReceived (4 samples, 0.76%)</title><rect x="1172.0" y="737" width="9.0" height="15.0" fill="rgb(215,138,0)" rx="2" ry="2" />
<text text-anchor="" x="1174.98" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.blocktree.SegmentTermsEnum.seekExact (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.blocktree.SegmentTermsEnum.seekExact (1 samples, 0.19%)</title><rect x="768.9" y="497" width="2.2" height="15.0" fill="rgb(246,206,36)" rx="2" ry="2" />
<text text-anchor="" x="771.89" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (1 samples, 0.19%)</title><rect x="863.5" y="769" width="2.2" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="866.47" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.fs.UnixFileSystemProvider.newDirectoryStream (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.fs.UnixFileSystemProvider.newDirectoryStream (1 samples, 0.19%)</title><rect x="1156.2" y="433" width="2.3" height="15.0" fill="rgb(249,190,21)" rx="2" ry="2" />
<text text-anchor="" x="1159.22" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (1 samples, 0.19%)</title><rect x="500.9" y="689" width="2.3" height="15.0" fill="rgb(218,222,0)" rx="2" ry="2" />
<text text-anchor="" x="503.92" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (8 samples, 1.53%)</title><rect x="606.8" y="769" width="18.0" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="609.76" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.joda.time.format.DateTimeParserBucket.doParseMillis (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.joda.time.format.DateTimeParserBucket.doParseMillis (1 samples, 0.19%)</title><rect x="775.6" y="417" width="2.3" height="15.0" fill="rgb(212,202,35)" rx="2" ry="2" />
<text text-anchor="" x="778.65" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.DefaultChannelPipeline.sendUpstream (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.DefaultChannelPipeline.sendUpstream (5 samples, 0.95%)</title><rect x="444.6" y="657" width="11.3" height="15.0" fill="rgb(224,124,32)" rx="2" ry="2" />
<text text-anchor="" x="447.62" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.MessageChannelHandler.messageReceived (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.MessageChannelHandler.messageReceived (5 samples, 0.95%)</title><rect x="444.6" y="449" width="11.3" height="15.0" fill="rgb(251,90,6)" rx="2" ry="2" />
<text text-anchor="" x="447.62" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (1 samples, 0.19%)</title><rect x="863.5" y="737" width="2.2" height="15.0" fill="rgb(247,84,19)" rx="2" ry="2" />
<text text-anchor="" x="866.47" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.LZ4.compress (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.LZ4.compress (1 samples, 0.19%)</title><rect x="892.7" y="417" width="2.3" height="15.0" fill="rgb(223,95,34)" rx="2" ry="2" />
<text text-anchor="" x="895.75" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (2 samples, 0.38%)</title><rect x="895.0" y="641" width="4.5" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="898.00" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.processDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.processDocument (1 samples, 0.19%)</title><rect x="624.8" y="529" width="2.2" height="15.0" fill="rgb(220,78,24)" rx="2" ry="2" />
<text text-anchor="" x="627.77" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.doRun (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.doRun (1 samples, 0.19%)</title><rect x="969.3" y="705" width="2.3" height="15.0" fill="rgb(232,57,0)" rx="2" ry="2" />
<text text-anchor="" x="972.31" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.Engine$Create.execute (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.Engine$Create.execute (1 samples, 0.19%)</title><rect x="606.8" y="625" width="2.2" height="15.0" fill="rgb(236,194,14)" rx="2" ry="2" />
<text text-anchor="" x="609.76" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.processField (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.processField (2 samples, 0.38%)</title><rect x="764.4" y="465" width="4.5" height="15.0" fill="rgb(220,68,13)" rx="2" ry="2" />
<text text-anchor="" x="767.39" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (1 samples, 0.19%)</title><rect x="967.1" y="657" width="2.2" height="15.0" fill="rgb(224,156,41)" rx="2" ry="2" />
<text text-anchor="" x="970.06" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentParser.parseObjectOrField (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentParser.parseObjectOrField (1 samples, 0.19%)</title><rect x="527.9" y="513" width="2.3" height="15.0" fill="rgb(205,194,30)" rx="2" ry="2" />
<text text-anchor="" x="530.94" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (8 samples, 1.53%)</title><rect x="732.9" y="769" width="18.0" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="735.86" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (2 samples, 0.38%)</title><rect x="985.1" y="641" width="4.5" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="988.08" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor$Worker.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor$Worker.run (1 samples, 0.19%)</title><rect x="415.3" y="833" width="2.3" height="15.0" fill="rgb(241,183,32)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write0 (16 samples, 3.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write0 (16 samples, 3.05%)</title><rect x="1032.4" y="497" width="36.0" height="15.0" fill="rgb(139,139,202)" rx="2" ry="2" />
<text text-anchor="" x="1035.37" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sun..</text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.updateDocument (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.updateDocument (6 samples, 1.15%)</title><rect x="908.5" y="561" width="13.5" height="15.0" fill="rgb(233,96,34)" rx="2" ry="2" />
<text text-anchor="" x="911.51" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (2 samples, 0.38%)</title><rect x="922.0" y="737" width="4.5" height="15.0" fill="rgb(247,84,19)" rx="2" ry="2" />
<text text-anchor="" x="925.02" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.add (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.add (1 samples, 0.19%)</title><rect x="622.5" y="545" width="2.3" height="15.0" fill="rgb(212,118,12)" rx="2" ry="2" />
<text text-anchor="" x="625.52" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.create (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.create (2 samples, 0.38%)</title><rect x="512.2" y="593" width="4.5" height="15.0" fill="rgb(214,111,47)" rx="2" ry="2" />
<text text-anchor="" x="515.18" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.FilterDirectory.listAll (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.FilterDirectory.listAll (5 samples, 0.95%)</title><rect x="1156.2" y="529" width="11.3" height="15.0" fill="rgb(251,113,6)" rx="2" ry="2" />
<text text-anchor="" x="1159.22" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.Streams.readFully (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.Streams.readFully (5 samples, 0.95%)</title><rect x="444.6" y="337" width="11.3" height="15.0" fill="rgb(115,115,237)" rx="2" ry="2" />
<text text-anchor="" x="447.62" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)</title><rect x="750.9" y="497" width="2.2" height="15.0" fill="rgb(119,119,204)" rx="2" ry="2" />
<text text-anchor="" x="753.88" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.TransportAction$1.onResponse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.TransportAction$1.onResponse (1 samples, 0.19%)</title><rect x="1187.7" y="401" width="2.3" height="15.0" fill="rgb(239,40,41)" rx="2" ry="2" />
<text text-anchor="" x="1190.75" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels.access$000 (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels.access$000 (5 samples, 0.95%)</title><rect x="735.1" y="257" width="11.3" height="15.0" fill="rgb(232,51,49)" rx="2" ry="2" />
<text text-anchor="" x="738.11" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction.shardOperation (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction.shardOperation (3 samples, 0.57%)</title><rect x="1115.7" y="673" width="6.7" height="15.0" fill="rgb(252,11,24)" rx="2" ry="2" />
<text text-anchor="" x="1118.69" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.write (1 samples, 0.19%)</title><rect x="694.6" y="529" width="2.2" height="15.0" fill="rgb(103,103,204)" rx="2" ry="2" />
<text text-anchor="" x="697.58" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.netty.OpenChannelsHandler.handleUpstream (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.netty.OpenChannelsHandler.handleUpstream (5 samples, 0.95%)</title><rect x="444.6" y="625" width="11.3" height="15.0" fill="rgb(234,220,7)" rx="2" ry="2" />
<text text-anchor="" x="447.62" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.DefaultChannelPipeline$DefaultChannelHandlerContext.sendUpstream (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.DefaultChannelPipeline$DefaultChannelHandlerContext.sendUpstream (1 samples, 0.19%)</title><rect x="415.3" y="497" width="2.3" height="15.0" fill="rgb(217,60,45)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.Engine$Create.execute (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.Engine$Create.execute (1 samples, 0.19%)</title><rect x="1007.6" y="625" width="2.2" height="15.0" fill="rgb(236,194,14)" rx="2" ry="2" />
<text text-anchor="" x="1010.60" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.NativeThread.current (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.NativeThread.current (1 samples, 0.19%)</title><rect x="1183.2" y="257" width="2.3" height="15.0" fill="rgb(220,49,1)" rx="2" ry="2" />
<text text-anchor="" x="1186.24" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write (3 samples, 0.57%)</title><rect x="516.7" y="497" width="6.7" height="15.0" fill="rgb(119,119,204)" rx="2" ry="2" />
<text text-anchor="" x="519.68" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.SelectorImpl.lockAndDoSelect (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.SelectorImpl.lockAndDoSelect (1 samples, 0.19%)</title><rect x="424.4" y="673" width="2.2" height="15.0" fill="rgb(213,42,26)" rx="2" ry="2" />
<text text-anchor="" x="427.35" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.LZ4.compress (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.LZ4.compress (1 samples, 0.19%)</title><rect x="883.7" y="401" width="2.3" height="15.0" fill="rgb(223,95,34)" rx="2" ry="2" />
<text text-anchor="" x="886.74" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (1 samples, 0.19%)</title><rect x="750.9" y="753" width="2.2" height="15.0" fill="rgb(247,84,19)" rx="2" ry="2" />
<text text-anchor="" x="753.88" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (2 samples, 0.38%)</title><rect x="561.7" y="641" width="4.5" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="564.72" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.writeFromNativeBuffer (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.writeFromNativeBuffer (2 samples, 0.38%)</title><rect x="595.5" y="513" width="4.5" height="15.0" fill="rgb(81,81,230)" rx="2" ry="2" />
<text text-anchor="" x="598.50" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.LZ4.compress (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.LZ4.compress (1 samples, 0.19%)</title><rect x="638.3" y="417" width="2.2" height="15.0" fill="rgb(223,95,34)" rx="2" ry="2" />
<text text-anchor="" x="641.28" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.FST.readFirstRealTargetArc (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.FST.readFirstRealTargetArc (1 samples, 0.19%)</title><rect x="514.4" y="449" width="2.3" height="15.0" fill="rgb(122,122,215)" rx="2" ry="2" />
<text text-anchor="" x="517.43" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (12 samples, 2.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (12 samples, 2.29%)</title><rect x="926.5" y="689" width="27.0" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="929.53" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (1 samples, 0.19%)</title><rect x="417.6" y="417" width="2.2" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="420.60" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.store.Store.stats (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.store.Store.stats (6 samples, 1.15%)</title><rect x="1154.0" y="609" width="13.5" height="15.0" fill="rgb(230,202,29)" rx="2" ry="2" />
<text text-anchor="" x="1156.97" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (10 samples, 1.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (10 samples, 1.91%)</title><rect x="899.5" y="769" width="22.5" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="902.50" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.search.SearcherManager.refreshIfNeeded (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.search.SearcherManager.refreshIfNeeded (1 samples, 0.19%)</title><rect x="1181.0" y="721" width="2.2" height="15.0" fill="rgb(228,24,11)" rx="2" ry="2" />
<text text-anchor="" x="1183.99" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.fs.UnixNativeDispatcher.readdir (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.fs.UnixNativeDispatcher.readdir (4 samples, 0.76%)</title><rect x="1158.5" y="417" width="9.0" height="15.0" fill="rgb(130,130,238)" rx="2" ry="2" />
<text text-anchor="" x="1161.47" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (1 samples, 0.19%)</title><rect x="750.9" y="593" width="2.2" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="753.88" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.FilterDirectory.createOutput (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.FilterDirectory.createOutput (6 samples, 1.15%)</title><rect x="908.5" y="385" width="13.5" height="15.0" fill="rgb(231,34,24)" rx="2" ry="2" />
<text text-anchor="" x="911.51" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.updateDocument (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.updateDocument (6 samples, 1.15%)</title><rect x="548.2" y="529" width="13.5" height="15.0" fill="rgb(233,96,34)" rx="2" ry="2" />
<text text-anchor="" x="551.21" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.writeFromNativeBuffer (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.writeFromNativeBuffer (5 samples, 0.95%)</title><rect x="735.1" y="177" width="11.3" height="15.0" fill="rgb(81,81,230)" rx="2" ry="2" />
<text text-anchor="" x="738.11" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.AbstractNioWorker.process (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.AbstractNioWorker.process (1 samples, 0.19%)</title><rect x="415.3" y="721" width="2.3" height="15.0" fill="rgb(218,151,11)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreate (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreate (1 samples, 0.19%)</title><rect x="647.3" y="577" width="2.2" height="15.0" fill="rgb(231,13,44)" rx="2" ry="2" />
<text text-anchor="" x="650.29" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (6 samples, 1.15%)</title><rect x="1167.5" y="801" width="13.5" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="1170.48" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.stream.FilterStreamInput.readBytes (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.stream.FilterStreamInput.readBytes (7 samples, 1.34%)</title><rect x="428.9" y="369" width="15.7" height="15.0" fill="rgb(131,131,210)" rx="2" ry="2" />
<text text-anchor="" x="431.85" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor.runWorker (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.runWorker (7 samples, 1.34%)</title><rect x="512.2" y="817" width="15.7" height="15.0" fill="rgb(253,116,23)" rx="2" ry="2" />
<text text-anchor="" x="515.18" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.Channels.fireMessageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.Channels.fireMessageReceived (1 samples, 0.19%)</title><rect x="1187.7" y="561" width="2.3" height="15.0" fill="rgb(237,176,18)" rx="2" ry="2" />
<text text-anchor="" x="1190.75" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.LinkedTransferQueue.xfer (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.LinkedTransferQueue.xfer (1 samples, 0.19%)</title><rect x="417.6" y="177" width="2.2" height="15.0" fill="rgb(248,225,45)" rx="2" ry="2" />
<text text-anchor="" x="420.60" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (5 samples, 0.95%)</title><rect x="516.7" y="737" width="11.2" height="15.0" fill="rgb(247,84,19)" rx="2" ry="2" />
<text text-anchor="" x="519.68" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (18 samples, 3.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (18 samples, 3.44%)</title><rect x="1068.4" y="769" width="40.5" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="1071.40" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org..</text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force (1 samples, 0.19%)</title><rect x="699.1" y="545" width="2.2" height="15.0" fill="rgb(236,18,34)" rx="2" ry="2" />
<text text-anchor="" x="702.08" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels.access$000 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels.access$000 (1 samples, 0.19%)</title><rect x="926.5" y="257" width="2.3" height="15.0" fill="rgb(232,51,49)" rx="2" ry="2" />
<text text-anchor="" x="929.53" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.blocktree.BlockTreeTermsReader.ramBytesUsed (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.blocktree.BlockTreeTermsReader.ramBytesUsed (1 samples, 0.19%)</title><rect x="1169.7" y="561" width="2.3" height="15.0" fill="rgb(210,224,25)" rx="2" ry="2" />
<text text-anchor="" x="1172.73" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentMapper.parse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentMapper.parse (1 samples, 0.19%)</title><rect x="469.4" y="609" width="2.2" height="15.0" fill="rgb(239,142,49)" rx="2" ry="2" />
<text text-anchor="" x="472.39" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.updateDocument (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.updateDocument (3 samples, 0.57%)</title><rect x="762.1" y="529" width="6.8" height="15.0" fill="rgb(233,96,34)" rx="2" ry="2" />
<text text-anchor="" x="765.14" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.node.service.NodeService.stats (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.node.service.NodeService.stats (1 samples, 0.19%)</title><rect x="1142.7" y="673" width="2.3" height="15.0" fill="rgb(230,103,24)" rx="2" ry="2" />
<text text-anchor="" x="1145.71" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (1 samples, 0.19%)</title><rect x="978.3" y="689" width="2.3" height="15.0" fill="rgb(218,222,0)" rx="2" ry="2" />
<text text-anchor="" x="981.32" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (1 samples, 0.19%)</title><rect x="976.1" y="657" width="2.2" height="15.0" fill="rgb(224,156,41)" rx="2" ry="2" />
<text text-anchor="" x="979.07" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.writeCheckpoint (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.writeCheckpoint (1 samples, 0.19%)</title><rect x="1009.8" y="561" width="2.3" height="15.0" fill="rgb(132,132,209)" rx="2" ry="2" />
<text text-anchor="" x="1012.85" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService$4.doRun (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService$4.doRun (6 samples, 1.15%)</title><rect x="714.8" y="785" width="13.6" height="15.0" fill="rgb(205,174,36)" rx="2" ry="2" />
<text text-anchor="" x="717.85" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (6 samples, 1.15%)</title><rect x="1005.3" y="737" width="13.6" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="1008.34" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.fs.UnixFileSystemProvider.newFileChannel (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.fs.UnixFileSystemProvider.newFileChannel (1 samples, 0.19%)</title><rect x="818.4" y="497" width="2.3" height="15.0" fill="rgb(251,186,40)" rx="2" ry="2" />
<text text-anchor="" x="821.44" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (2 samples, 0.38%)</title><rect x="771.1" y="657" width="4.5" height="15.0" fill="rgb(224,156,41)" rx="2" ry="2" />
<text text-anchor="" x="774.15" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (7 samples, 1.34%)</title><rect x="591.0" y="673" width="15.8" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="593.99" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force0 (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force0 (5 samples, 0.95%)</title><rect x="1021.1" y="577" width="11.3" height="15.0" fill="rgb(222,14,30)" rx="2" ry="2" />
<text text-anchor="" x="1024.11" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)</title><rect x="1009.8" y="433" width="2.3" height="15.0" fill="rgb(119,119,204)" rx="2" ry="2" />
<text text-anchor="" x="1012.85" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreate (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreate (1 samples, 0.19%)</title><rect x="892.7" y="593" width="2.3" height="15.0" fill="rgb(231,13,44)" rx="2" ry="2" />
<text text-anchor="" x="895.75" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (1 samples, 0.19%)</title><rect x="645.0" y="785" width="2.3" height="15.0" fill="rgb(228,141,38)" rx="2" ry="2" />
<text text-anchor="" x="648.04" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.io.BufferedInputStream.read (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.io.BufferedInputStream.read (1 samples, 0.19%)</title><rect x="426.6" y="353" width="2.3" height="15.0" fill="rgb(97,97,238)" rx="2" ry="2" />
<text text-anchor="" x="429.60" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.Versions.loadDocIdAndVersion (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.Versions.loadDocIdAndVersion (2 samples, 0.38%)</title><rect x="532.4" y="529" width="4.5" height="15.0" fill="rgb(241,106,30)" rx="2" ry="2" />
<text text-anchor="" x="535.44" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (8 samples, 1.53%)</title><rect x="482.9" y="769" width="18.0" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="485.90" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.search.action.SearchServiceTransportAction$SearchQueryTransportHandler.messageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.search.action.SearchServiceTransportAction$SearchQueryTransportHandler.messageReceived (1 samples, 0.19%)</title><rect x="1185.5" y="721" width="2.2" height="15.0" fill="rgb(233,156,4)" rx="2" ry="2" />
<text text-anchor="" x="1188.50" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.EPollSelectorImpl.doSelect (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.EPollSelectorImpl.doSelect (1 samples, 0.19%)</title><rect x="424.4" y="657" width="2.2" height="15.0" fill="rgb(234,159,35)" rx="2" ry="2" />
<text text-anchor="" x="427.35" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (1 samples, 0.19%)</title><rect x="1185.5" y="785" width="2.2" height="15.0" fill="rgb(228,141,38)" rx="2" ry="2" />
<text text-anchor="" x="1188.50" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (5 samples, 0.95%)</title><rect x="872.5" y="689" width="11.2" height="15.0" fill="rgb(218,222,0)" rx="2" ry="2" />
<text text-anchor="" x="875.48" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.node.service.NodeService.stats (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.node.service.NodeService.stats (5 samples, 0.95%)</title><rect x="1124.7" y="673" width="11.3" height="15.0" fill="rgb(230,103,24)" rx="2" ry="2" />
<text text-anchor="" x="1127.69" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.FilterDirectory.sync (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.FilterDirectory.sync (5 samples, 0.95%)</title><rect x="1021.1" y="705" width="11.3" height="15.0" fill="rgb(241,33,32)" rx="2" ry="2" />
<text text-anchor="" x="1024.11" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor$Worker.run (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor$Worker.run (6 samples, 1.15%)</title><rect x="800.4" y="833" width="13.5" height="15.0" fill="rgb(241,183,32)" rx="2" ry="2" />
<text text-anchor="" x="803.42" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.DefaultChannelPipeline.sendUpstream (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.DefaultChannelPipeline.sendUpstream (1 samples, 0.19%)</title><rect x="415.3" y="641" width="2.3" height="15.0" fill="rgb(224,124,32)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.io.BufferedOutputStream.write (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.io.BufferedOutputStream.write (5 samples, 0.95%)</title><rect x="701.3" y="369" width="11.3" height="15.0" fill="rgb(95,95,199)" rx="2" ry="2" />
<text text-anchor="" x="704.34" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.handler.codec.frame.FrameDecoder.unfoldAndFireMessageReceived (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.handler.codec.frame.FrameDecoder.unfoldAndFireMessageReceived (5 samples, 0.95%)</title><rect x="444.6" y="529" width="11.3" height="15.0" fill="rgb(217,104,2)" rx="2" ry="2" />
<text text-anchor="" x="447.62" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.create (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.create (1 samples, 0.19%)</title><rect x="638.3" y="625" width="2.2" height="15.0" fill="rgb(206,208,36)" rx="2" ry="2" />
<text text-anchor="" x="641.28" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain$PerField.invert (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain$PerField.invert (1 samples, 0.19%)</title><rect x="931.0" y="449" width="2.3" height="15.0" fill="rgb(243,141,2)" rx="2" ry="2" />
<text text-anchor="" x="934.03" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Checkpoint.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Checkpoint.write (1 samples, 0.19%)</title><rect x="462.6" y="545" width="2.3" height="15.0" fill="rgb(94,94,229)" rx="2" ry="2" />
<text text-anchor="" x="465.63" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.create (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.create (2 samples, 0.38%)</title><rect x="487.4" y="593" width="4.5" height="15.0" fill="rgb(214,111,47)" rx="2" ry="2" />
<text text-anchor="" x="490.40" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (5 samples, 0.95%)</title><rect x="516.7" y="769" width="11.2" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="519.68" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor$Worker.run (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor$Worker.run (6 samples, 1.15%)</title><rect x="1167.5" y="833" width="13.5" height="15.0" fill="rgb(241,183,32)" rx="2" ry="2" />
<text text-anchor="" x="1170.48" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.LZ4.encodeSequence (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.LZ4.encodeSequence (5 samples, 0.95%)</title><rect x="735.1" y="385" width="11.3" height="15.0" fill="rgb(251,45,21)" rx="2" ry="2" />
<text text-anchor="" x="738.11" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.LZ4.encodeSequence (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.LZ4.encodeSequence (2 samples, 0.38%)</title><rect x="926.5" y="385" width="4.5" height="15.0" fill="rgb(251,45,21)" rx="2" ry="2" />
<text text-anchor="" x="929.53" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor.runWorker (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.runWorker (1 samples, 0.19%)</title><rect x="1187.7" y="817" width="2.3" height="15.0" fill="rgb(253,116,23)" rx="2" ry="2" />
<text text-anchor="" x="1190.75" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (5 samples, 0.95%)</title><rect x="1113.4" y="769" width="11.3" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="1116.44" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.force (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.force (7 samples, 1.34%)</title><rect x="782.4" y="561" width="15.8" height="15.0" fill="rgb(236,11,41)" rx="2" ry="2" />
<text text-anchor="" x="785.40" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Translog.ensureSynced (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Translog.ensureSynced (3 samples, 0.57%)</title><rect x="694.6" y="625" width="6.7" height="15.0" fill="rgb(205,176,40)" rx="2" ry="2" />
<text text-anchor="" x="697.58" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (11 samples, 2.10%)</title><rect x="458.1" y="801" width="24.8" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="461.13" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.prepareCreateOnPrimary (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.prepareCreateOnPrimary (2 samples, 0.38%)</title><rect x="482.9" y="609" width="4.5" height="15.0" fill="rgb(226,28,48)" rx="2" ry="2" />
<text text-anchor="" x="485.90" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.Engine$Create.execute (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.Engine$Create.execute (4 samples, 0.76%)</title><rect x="762.1" y="625" width="9.0" height="15.0" fill="rgb(236,194,14)" rx="2" ry="2" />
<text text-anchor="" x="765.14" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.processDocument (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.processDocument (2 samples, 0.38%)</title><rect x="980.6" y="481" width="4.5" height="15.0" fill="rgb(220,78,24)" rx="2" ry="2" />
<text text-anchor="" x="983.57" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.create (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.create (4 samples, 0.76%)</title><rect x="800.4" y="593" width="9.0" height="15.0" fill="rgb(214,111,47)" rx="2" ry="2" />
<text text-anchor="" x="803.42" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.create (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.create (2 samples, 0.38%)</title><rect x="487.4" y="609" width="4.5" height="15.0" fill="rgb(206,208,36)" rx="2" ry="2" />
<text text-anchor="" x="490.40" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (1 samples, 0.19%)</title><rect x="588.7" y="721" width="2.3" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="591.74" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.writeFromNativeBuffer (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.writeFromNativeBuffer (1 samples, 0.19%)</title><rect x="636.0" y="513" width="2.3" height="15.0" fill="rgb(81,81,230)" rx="2" ry="2" />
<text text-anchor="" x="639.03" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentParser.parseDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentParser.parseDocument (1 samples, 0.19%)</title><rect x="469.4" y="593" width="2.2" height="15.0" fill="rgb(209,14,21)" rx="2" ry="2" />
<text text-anchor="" x="472.39" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.Engine$Create.execute (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.Engine$Create.execute (5 samples, 0.95%)</title><rect x="843.2" y="625" width="11.3" height="15.0" fill="rgb(236,194,14)" rx="2" ry="2" />
<text text-anchor="" x="846.21" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (2 samples, 0.38%)</title><rect x="753.1" y="673" width="4.5" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="756.13" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.DelegatingTransportChannel.sendResponse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.DelegatingTransportChannel.sendResponse (1 samples, 0.19%)</title><rect x="1108.9" y="689" width="2.3" height="15.0" fill="rgb(218,8,18)" rx="2" ry="2" />
<text text-anchor="" x="1111.93" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (1 samples, 0.19%)</title><rect x="588.7" y="753" width="2.3" height="15.0" fill="rgb(247,84,19)" rx="2" ry="2" />
<text text-anchor="" x="591.74" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.util.internal.DeadLockProofWorker$1.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.util.internal.DeadLockProofWorker$1.run (1 samples, 0.19%)</title><rect x="415.3" y="801" width="2.3" height="15.0" fill="rgb(237,224,40)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentParser.parseObjectOrField (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentParser.parseObjectOrField (1 samples, 0.19%)</title><rect x="775.6" y="513" width="2.3" height="15.0" fill="rgb(205,194,30)" rx="2" ry="2" />
<text text-anchor="" x="778.65" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService$DirectResponseChannel.sendResponse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService$DirectResponseChannel.sendResponse (1 samples, 0.19%)</title><rect x="1108.9" y="657" width="2.3" height="15.0" fill="rgb(251,158,39)" rx="2" ry="2" />
<text text-anchor="" x="1111.93" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)</title><rect x="622.5" y="449" width="2.3" height="15.0" fill="rgb(119,119,204)" rx="2" ry="2" />
<text text-anchor="" x="625.52" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (2 samples, 0.38%)</title><rect x="813.9" y="657" width="4.5" height="15.0" fill="rgb(227,28,49)" rx="2" ry="2" />
<text text-anchor="" x="816.93" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Thread.run (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Thread.run (6 samples, 1.15%)</title><rect x="527.9" y="849" width="13.6" height="15.0" fill="rgb(251,44,12)" rx="2" ry="2" />
<text text-anchor="" x="530.94" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.finishStoredFields (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.finishStoredFields (4 samples, 0.76%)</title><rect x="843.2" y="465" width="9.0" height="15.0" fill="rgb(227,106,27)" rx="2" ry="2" />
<text text-anchor="" x="846.21" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.write (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.write (5 samples, 0.95%)</title><rect x="701.3" y="241" width="11.3" height="15.0" fill="rgb(121,121,206)" rx="2" ry="2" />
<text text-anchor="" x="704.34" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.NettyTransportChannel.sendResponse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.NettyTransportChannel.sendResponse (1 samples, 0.19%)</title><rect x="1108.9" y="481" width="2.3" height="15.0" fill="rgb(253,134,21)" rx="2" ry="2" />
<text text-anchor="" x="1111.93" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force (2 samples, 0.38%)</title><rect x="771.1" y="545" width="4.5" height="15.0" fill="rgb(236,18,34)" rx="2" ry="2" />
<text text-anchor="" x="774.15" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Thread.run (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Thread.run (6 samples, 1.15%)</title><rect x="1167.5" y="849" width="13.5" height="15.0" fill="rgb(251,44,12)" rx="2" ry="2" />
<text text-anchor="" x="1170.48" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][bulk][T#14] (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][bulk][T#14] (6 samples, 1.15%)</title><rect x="527.9" y="865" width="13.6" height="15.0" fill="rgb(244,102,30)" rx="2" ry="2" />
<text text-anchor="" x="530.94" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.LZ4.encodeSequence (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.LZ4.encodeSequence (1 samples, 0.19%)</title><rect x="638.3" y="401" width="2.2" height="15.0" fill="rgb(251,45,21)" rx="2" ry="2" />
<text text-anchor="" x="641.28" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.addDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.addDocument (1 samples, 0.19%)</title><rect x="512.2" y="545" width="2.2" height="15.0" fill="rgb(227,61,0)" rx="2" ry="2" />
<text text-anchor="" x="515.18" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain$PerField.invert (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain$PerField.invert (1 samples, 0.19%)</title><rect x="530.2" y="449" width="2.2" height="15.0" fill="rgb(243,141,2)" rx="2" ry="2" />
<text text-anchor="" x="533.19" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriterPerThread.updateDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriterPerThread.updateDocument (1 samples, 0.19%)</title><rect x="624.8" y="545" width="2.2" height="15.0" fill="rgb(245,210,52)" rx="2" ry="2" />
<text text-anchor="" x="627.77" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (11 samples, 2.10%)</title><rect x="541.5" y="769" width="24.7" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (5 samples, 0.95%)</title><rect x="701.3" y="577" width="11.3" height="15.0" fill="rgb(220,105,49)" rx="2" ry="2" />
<text text-anchor="" x="704.34" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (2 samples, 0.38%)</title><rect x="922.0" y="753" width="4.5" height="15.0" fill="rgb(247,84,19)" rx="2" ry="2" />
<text text-anchor="" x="925.02" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.FST.findTargetArc (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.FST.findTargetArc (1 samples, 0.19%)</title><rect x="807.2" y="481" width="2.2" height="15.0" fill="rgb(249,199,6)" rx="2" ry="2" />
<text text-anchor="" x="810.18" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.AbstractNioWorker.process (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.AbstractNioWorker.process (1 samples, 0.19%)</title><rect x="1187.7" y="721" width="2.3" height="15.0" fill="rgb(218,151,11)" rx="2" ry="2" />
<text text-anchor="" x="1190.75" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (9 samples, 1.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (9 samples, 1.72%)</title><rect x="933.3" y="593" width="20.2" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="936.28" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (1 samples, 0.19%)</title><rect x="748.6" y="609" width="2.3" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="751.63" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels.writeFullyImpl (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels.writeFullyImpl (6 samples, 1.15%)</title><rect x="609.0" y="257" width="13.5" height="15.0" fill="rgb(118,118,221)" rx="2" ry="2" />
<text text-anchor="" x="612.01" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (18 samples, 3.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (18 samples, 3.44%)</title><rect x="1068.4" y="785" width="40.5" height="15.0" fill="rgb(228,141,38)" rx="2" ry="2" />
<text text-anchor="" x="1071.40" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.single.shard.TransportSingleShardAction.doExecute (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.single.shard.TransportSingleShardAction.doExecute (1 samples, 0.19%)</title><rect x="415.3" y="305" width="2.3" height="15.0" fill="rgb(250,107,43)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.zip.Inflater.inflateBytes (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.zip.Inflater.inflateBytes (5 samples, 0.95%)</title><rect x="444.6" y="257" width="11.3" height="15.0" fill="rgb(211,160,54)" rx="2" ry="2" />
<text text-anchor="" x="447.62" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentParser.parseValue (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentParser.parseValue (1 samples, 0.19%)</title><rect x="775.6" y="529" width="2.3" height="15.0" fill="rgb(232,168,53)" rx="2" ry="2" />
<text text-anchor="" x="778.65" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (3 samples, 0.57%)</title><rect x="505.4" y="641" width="6.8" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="508.42" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (2 samples, 0.38%)</title><rect x="753.1" y="705" width="4.5" height="15.0" fill="rgb(222,177,52)" rx="2" ry="2" />
<text text-anchor="" x="756.13" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (1 samples, 0.19%)</title><rect x="863.5" y="785" width="2.2" height="15.0" fill="rgb(228,141,38)" rx="2" ry="2" />
<text text-anchor="" x="866.47" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.Channels.writeToChannel (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.Channels.writeToChannel (1 samples, 0.19%)</title><rect x="622.5" y="513" width="2.3" height="15.0" fill="rgb(134,134,237)" rx="2" ry="2" />
<text text-anchor="" x="625.52" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.search.action.SearchServiceTransportAction$SearchQueryTransportHandler.messageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.search.action.SearchServiceTransportAction$SearchQueryTransportHandler.messageReceived (1 samples, 0.19%)</title><rect x="1183.2" y="737" width="2.3" height="15.0" fill="rgb(233,156,4)" rx="2" ry="2" />
<text text-anchor="" x="1186.24" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (2 samples, 0.38%)</title><rect x="624.8" y="737" width="4.5" height="15.0" fill="rgb(247,84,19)" rx="2" ry="2" />
<text text-anchor="" x="627.77" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.Engine.segmentsStats (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.Engine.segmentsStats (2 samples, 0.38%)</title><rect x="1174.2" y="625" width="4.5" height="15.0" fill="rgb(226,79,4)" rx="2" ry="2" />
<text text-anchor="" x="1177.24" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.FSDirectory.listAll (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.FSDirectory.listAll (5 samples, 0.95%)</title><rect x="1156.2" y="481" width="11.3" height="15.0" fill="rgb(242,135,31)" rx="2" ry="2" />
<text text-anchor="" x="1159.22" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (1 samples, 0.19%)</title><rect x="854.5" y="609" width="2.2" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="857.47" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.updateDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.updateDocument (1 samples, 0.19%)</title><rect x="777.9" y="529" width="2.3" height="15.0" fill="rgb(233,96,34)" rx="2" ry="2" />
<text text-anchor="" x="780.90" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.search.suggest.completion.Completion090PostingsFormat.completionStats (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.search.suggest.completion.Completion090PostingsFormat.completionStats (1 samples, 0.19%)</title><rect x="1172.0" y="625" width="2.2" height="15.0" fill="rgb(225,40,28)" rx="2" ry="2" />
<text text-anchor="" x="1174.98" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.util.ThreadRenamingRunnable.run (9 samples, 1.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.util.ThreadRenamingRunnable.run (9 samples, 1.72%)</title><rect x="424.4" y="785" width="20.2" height="15.0" fill="rgb(247,53,7)" rx="2" ry="2" />
<text text-anchor="" x="427.35" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentParser.parseValue (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentParser.parseValue (1 samples, 0.19%)</title><rect x="527.9" y="529" width="2.3" height="15.0" fill="rgb(232,168,53)" rx="2" ry="2" />
<text text-anchor="" x="530.94" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor$Worker.run (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor$Worker.run (8 samples, 1.53%)</title><rect x="865.7" y="833" width="18.0" height="15.0" fill="rgb(241,183,32)" rx="2" ry="2" />
<text text-anchor="" x="868.73" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.TreeMap.getEntry (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.TreeMap.getEntry (1 samples, 0.19%)</title><rect x="1115.7" y="577" width="2.2" height="15.0" fill="rgb(244,50,43)" rx="2" ry="2" />
<text text-anchor="" x="1118.69" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.Engine$Create.execute (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.Engine$Create.execute (4 samples, 0.76%)</title><rect x="883.7" y="625" width="9.0" height="15.0" fill="rgb(236,194,14)" rx="2" ry="2" />
<text text-anchor="" x="886.74" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (1 samples, 0.19%)</title><rect x="863.5" y="609" width="2.2" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="866.47" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor.runWorker (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.runWorker (1 samples, 0.19%)</title><rect x="1185.5" y="817" width="2.2" height="15.0" fill="rgb(253,116,23)" rx="2" ry="2" />
<text text-anchor="" x="1188.50" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (1 samples, 0.19%)</title><rect x="665.3" y="721" width="2.3" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="668.31" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.ThreadLocal$ThreadLocalMap.getEntry (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ThreadLocal$ThreadLocalMap.getEntry (1 samples, 0.19%)</title><rect x="647.3" y="449" width="2.2" height="15.0" fill="rgb(213,204,25)" rx="2" ry="2" />
<text text-anchor="" x="650.29" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.SimpleChannelUpstreamHandler.handleUpstream (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.SimpleChannelUpstreamHandler.handleUpstream (1 samples, 0.19%)</title><rect x="417.6" y="577" width="2.2" height="15.0" fill="rgb(229,89,18)" rx="2" ry="2" />
<text text-anchor="" x="420.60" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.joda.time.format.DateTimeFormatterBuilder$MatchingParser.parseInto (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.joda.time.format.DateTimeFormatterBuilder$MatchingParser.parseInto (1 samples, 0.19%)</title><rect x="541.5" y="145" width="2.2" height="15.0" fill="rgb(217,47,52)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (6 samples, 1.15%)</title><rect x="843.2" y="689" width="13.5" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="846.21" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (1 samples, 0.19%)</title><rect x="638.3" y="737" width="2.2" height="15.0" fill="rgb(247,84,19)" rx="2" ry="2" />
<text text-anchor="" x="641.28" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.writeFromNativeBuffer (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.writeFromNativeBuffer (5 samples, 0.95%)</title><rect x="714.8" y="177" width="11.3" height="15.0" fill="rgb(81,81,230)" rx="2" ry="2" />
<text text-anchor="" x="717.85" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (5 samples, 0.95%)</title><rect x="735.1" y="561" width="11.3" height="15.0" fill="rgb(220,105,49)" rx="2" ry="2" />
<text text-anchor="" x="738.11" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.AbstractNioSelector.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.AbstractNioSelector.run (1 samples, 0.19%)</title><rect x="422.1" y="737" width="2.3" height="15.0" fill="rgb(213,181,6)" rx="2" ry="2" />
<text text-anchor="" x="425.10" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor.runWorker (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.runWorker (4 samples, 0.76%)</title><rect x="503.2" y="817" width="9.0" height="15.0" fill="rgb(253,116,23)" rx="2" ry="2" />
<text text-anchor="" x="506.17" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.writeFromNativeBuffer (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.writeFromNativeBuffer (4 samples, 0.76%)</title><rect x="491.9" y="513" width="9.0" height="15.0" fill="rgb(81,81,230)" rx="2" ry="2" />
<text text-anchor="" x="494.91" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (2 samples, 0.38%)</title><rect x="669.8" y="641" width="4.5" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="672.81" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService.sendRequest (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService.sendRequest (1 samples, 0.19%)</title><rect x="415.3" y="241" width="2.3" height="15.0" fill="rgb(218,200,16)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (1 samples, 0.19%)</title><rect x="750.9" y="673" width="2.2" height="15.0" fill="rgb(218,222,0)" rx="2" ry="2" />
<text text-anchor="" x="753.88" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.LinkedTransferQueue.offer (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.LinkedTransferQueue.offer (1 samples, 0.19%)</title><rect x="417.6" y="193" width="2.2" height="15.0" fill="rgb(220,52,23)" rx="2" ry="2" />
<text text-anchor="" x="420.60" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)</title><rect x="460.4" y="545" width="2.2" height="15.0" fill="rgb(121,121,206)" rx="2" ry="2" />
<text text-anchor="" x="463.38" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.segmentStats (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.segmentStats (1 samples, 0.19%)</title><rect x="1136.0" y="657" width="2.2" height="15.0" fill="rgb(223,160,15)" rx="2" ry="2" />
<text text-anchor="" x="1138.95" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.FilterDirectory.listAll (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.FilterDirectory.listAll (1 samples, 0.19%)</title><rect x="1178.7" y="529" width="2.3" height="15.0" fill="rgb(251,113,6)" rx="2" ry="2" />
<text text-anchor="" x="1181.74" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.blocktree.SegmentTermsEnum.seekExact (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.blocktree.SegmentTermsEnum.seekExact (1 samples, 0.19%)</title><rect x="633.8" y="497" width="2.2" height="15.0" fill="rgb(246,206,36)" rx="2" ry="2" />
<text text-anchor="" x="636.78" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriter.updateDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriter.updateDocument (1 samples, 0.19%)</title><rect x="638.3" y="529" width="2.2" height="15.0" fill="rgb(238,61,26)" rx="2" ry="2" />
<text text-anchor="" x="641.28" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (1 samples, 0.19%)</title><rect x="813.9" y="561" width="2.3" height="15.0" fill="rgb(220,105,49)" rx="2" ry="2" />
<text text-anchor="" x="816.93" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][bulk][T#18] (10 samples, 1.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][bulk][T#18] (10 samples, 1.91%)</title><rect x="606.8" y="865" width="22.5" height="15.0" fill="rgb(216,228,19)" rx="2" ry="2" />
<text text-anchor="" x="609.76" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (4 samples, 0.76%)</title><rect x="503.2" y="689" width="9.0" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="506.17" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService$4.doRun (10 samples, 1.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService$4.doRun (10 samples, 1.91%)</title><rect x="775.6" y="785" width="22.6" height="15.0" fill="rgb(205,174,36)" rx="2" ry="2" />
<text text-anchor="" x="778.65" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.create (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.create (3 samples, 0.57%)</title><rect x="926.5" y="593" width="6.8" height="15.0" fill="rgb(214,111,47)" rx="2" ry="2" />
<text text-anchor="" x="929.53" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.zip.CheckedOutputStream.write (16 samples, 3.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.zip.CheckedOutputStream.write (16 samples, 3.05%)</title><rect x="1032.4" y="657" width="36.0" height="15.0" fill="rgb(106,106,204)" rx="2" ry="2" />
<text text-anchor="" x="1035.37" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >jav..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.xcontent.json.JsonXContentParser.nextToken (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.xcontent.json.JsonXContentParser.nextToken (1 samples, 0.19%)</title><rect x="690.1" y="529" width="2.2" height="15.0" fill="rgb(239,132,17)" rx="2" ry="2" />
<text text-anchor="" x="693.08" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.FST.readFirstRealTargetArc (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.FST.readFirstRealTargetArc (1 samples, 0.19%)</title><rect x="807.2" y="449" width="2.2" height="15.0" fill="rgb(122,122,215)" rx="2" ry="2" />
<text text-anchor="" x="810.18" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.ConcurrentMergeScheduler.doMerge (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.ConcurrentMergeScheduler.doMerge (1 samples, 0.19%)</title><rect x="455.9" y="817" width="2.2" height="15.0" fill="rgb(208,175,25)" rx="2" ry="2" />
<text text-anchor="" x="458.88" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.addDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.addDocument (1 samples, 0.19%)</title><rect x="503.2" y="545" width="2.2" height="15.0" fill="rgb(227,61,0)" rx="2" ry="2" />
<text text-anchor="" x="506.17" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.file.Files.size (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.file.Files.size (1 samples, 0.19%)</title><rect x="1154.0" y="465" width="2.2" height="15.0" fill="rgb(217,31,46)" rx="2" ry="2" />
<text text-anchor="" x="1156.97" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][bulk][T#1] (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][bulk][T#1] (3 samples, 0.57%)</title><rect x="640.5" y="865" width="6.8" height="15.0" fill="rgb(235,50,22)" rx="2" ry="2" />
<text text-anchor="" x="643.53" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.write (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.write (2 samples, 0.38%)</title><rect x="595.5" y="529" width="4.5" height="15.0" fill="rgb(103,103,204)" rx="2" ry="2" />
<text text-anchor="" x="598.50" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.Channels.writeToChannel (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.Channels.writeToChannel (1 samples, 0.19%)</title><rect x="649.5" y="497" width="2.3" height="15.0" fill="rgb(134,134,237)" rx="2" ry="2" />
<text text-anchor="" x="652.54" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.Versions.loadDocIdAndVersion (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.Versions.loadDocIdAndVersion (1 samples, 0.19%)</title><rect x="647.3" y="529" width="2.2" height="15.0" fill="rgb(241,106,30)" rx="2" ry="2" />
<text text-anchor="" x="650.29" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.checkpoint (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.checkpoint (1 samples, 0.19%)</title><rect x="987.3" y="577" width="2.3" height="15.0" fill="rgb(218,30,19)" rx="2" ry="2" />
<text text-anchor="" x="990.33" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (3 samples, 0.57%)</title><rect x="667.6" y="769" width="6.7" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="670.56" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.finishDocument (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.finishDocument (5 samples, 0.95%)</title><rect x="701.3" y="465" width="11.3" height="15.0" fill="rgb(221,219,23)" rx="2" ry="2" />
<text text-anchor="" x="704.34" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.index (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.index (1 samples, 0.19%)</title><rect x="458.1" y="593" width="2.3" height="15.0" fill="rgb(242,61,12)" rx="2" ry="2" />
<text text-anchor="" x="461.13" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry$TransportChannelWrapper.sendResponse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry$TransportChannelWrapper.sendResponse (1 samples, 0.19%)</title><rect x="1108.9" y="705" width="2.3" height="15.0" fill="rgb(213,178,5)" rx="2" ry="2" />
<text text-anchor="" x="1111.93" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.zip.Inflater.inflateBytes (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.zip.Inflater.inflateBytes (6 samples, 1.15%)</title><rect x="431.1" y="257" width="13.5" height="15.0" fill="rgb(211,160,54)" rx="2" ry="2" />
<text text-anchor="" x="434.11" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.util.internal.DeadLockProofWorker$1.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.util.internal.DeadLockProofWorker$1.run (1 samples, 0.19%)</title><rect x="419.8" y="801" width="2.3" height="15.0" fill="rgb(237,224,40)" rx="2" ry="2" />
<text text-anchor="" x="422.85" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.zip.InflaterInputStream.read (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.zip.InflaterInputStream.read (6 samples, 1.15%)</title><rect x="431.1" y="289" width="13.5" height="15.0" fill="rgb(94,94,203)" rx="2" ry="2" />
<text text-anchor="" x="434.11" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.joda.time.format.DateTimeFormatter.parseMillis (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.joda.time.format.DateTimeFormatter.parseMillis (1 samples, 0.19%)</title><rect x="1005.3" y="433" width="2.3" height="15.0" fill="rgb(222,139,39)" rx="2" ry="2" />
<text text-anchor="" x="1008.34" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.FieldMapper.parse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.FieldMapper.parse (1 samples, 0.19%)</title><rect x="485.2" y="529" width="2.2" height="15.0" fill="rgb(215,191,25)" rx="2" ry="2" />
<text text-anchor="" x="488.15" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)</title><rect x="895.0" y="481" width="2.3" height="15.0" fill="rgb(121,121,206)" rx="2" ry="2" />
<text text-anchor="" x="898.00" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Checkpoint.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Checkpoint.write (1 samples, 0.19%)</title><rect x="573.0" y="545" width="2.2" height="15.0" fill="rgb(94,94,229)" rx="2" ry="2" />
<text text-anchor="" x="575.98" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction.nodeOperation (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction.nodeOperation (6 samples, 1.15%)</title><rect x="1154.0" y="705" width="13.5" height="15.0" fill="rgb(229,15,44)" rx="2" ry="2" />
<text text-anchor="" x="1156.97" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)</title><rect x="696.8" y="433" width="2.3" height="15.0" fill="rgb(119,119,204)" rx="2" ry="2" />
<text text-anchor="" x="699.83" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.Versions.getLookupState (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.Versions.getLookupState (1 samples, 0.19%)</title><rect x="534.7" y="513" width="2.2" height="15.0" fill="rgb(222,10,46)" rx="2" ry="2" />
<text text-anchor="" x="537.69" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.PerThreadIDAndVersionLookup.lookup (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.PerThreadIDAndVersionLookup.lookup (1 samples, 0.19%)</title><rect x="973.8" y="513" width="2.3" height="15.0" fill="rgb(237,190,48)" rx="2" ry="2" />
<text text-anchor="" x="976.82" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write0 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write0 (1 samples, 0.19%)</title><rect x="622.5" y="433" width="2.3" height="15.0" fill="rgb(139,139,202)" rx="2" ry="2" />
<text text-anchor="" x="625.52" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.write (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.write (4 samples, 0.76%)</title><rect x="491.9" y="545" width="9.0" height="15.0" fill="rgb(121,121,206)" rx="2" ry="2" />
<text text-anchor="" x="494.91" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (1 samples, 0.19%)</title><rect x="748.6" y="593" width="2.3" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="751.63" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write (6 samples, 1.15%)</title><rect x="609.0" y="193" width="13.5" height="15.0" fill="rgb(119,119,204)" rx="2" ry="2" />
<text text-anchor="" x="612.01" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (1 samples, 0.19%)</title><rect x="978.3" y="721" width="2.3" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="981.32" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels$1.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels$1.write (1 samples, 0.19%)</title><rect x="692.3" y="273" width="2.3" height="15.0" fill="rgb(107,107,220)" rx="2" ry="2" />
<text text-anchor="" x="695.33" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived (1 samples, 0.19%)</title><rect x="1113.4" y="753" width="2.3" height="15.0" fill="rgb(218,49,53)" rx="2" ry="2" />
<text text-anchor="" x="1116.44" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.write (1 samples, 0.19%)</title><rect x="750.9" y="529" width="2.2" height="15.0" fill="rgb(103,103,204)" rx="2" ry="2" />
<text text-anchor="" x="753.88" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.Versions.loadVersion (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.Versions.loadVersion (1 samples, 0.19%)</title><rect x="514.4" y="545" width="2.3" height="15.0" fill="rgb(228,65,45)" rx="2" ry="2" />
<text text-anchor="" x="517.43" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force0 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force0 (1 samples, 0.19%)</title><rect x="991.8" y="497" width="2.3" height="15.0" fill="rgb(222,14,30)" rx="2" ry="2" />
<text text-anchor="" x="994.83" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriterFlushControl.doAfterDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriterFlushControl.doAfterDocument (1 samples, 0.19%)</title><rect x="899.5" y="497" width="2.3" height="15.0" fill="rgb(252,155,29)" rx="2" ry="2" />
<text text-anchor="" x="902.50" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.zip.Inflater.inflate (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.zip.Inflater.inflate (1 samples, 0.19%)</title><rect x="426.6" y="305" width="2.3" height="15.0" fill="rgb(239,0,10)" rx="2" ry="2" />
<text text-anchor="" x="429.60" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.indices.IndicesService.stats (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.indices.IndicesService.stats (2 samples, 0.38%)</title><rect x="1167.5" y="657" width="4.5" height="15.0" fill="rgb(247,73,29)" rx="2" ry="2" />
<text text-anchor="" x="1170.48" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.fs.UnixNativeDispatcher.open0 (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.fs.UnixNativeDispatcher.open0 (6 samples, 1.15%)</title><rect x="908.5" y="193" width="13.5" height="15.0" fill="rgb(206,79,26)" rx="2" ry="2" />
<text text-anchor="" x="911.51" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.loadCurrentVersionFromIndex (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.loadCurrentVersionFromIndex (1 samples, 0.19%)</title><rect x="768.9" y="561" width="2.2" height="15.0" fill="rgb(224,40,0)" rx="2" ry="2" />
<text text-anchor="" x="771.89" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force (6 samples, 1.15%)</title><rect x="575.2" y="545" width="13.5" height="15.0" fill="rgb(236,18,34)" rx="2" ry="2" />
<text text-anchor="" x="578.23" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.store.Store$StoreStatsCache.estimateSize (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.store.Store$StoreStatsCache.estimateSize (1 samples, 0.19%)</title><rect x="1178.7" y="561" width="2.3" height="15.0" fill="rgb(224,134,41)" rx="2" ry="2" />
<text text-anchor="" x="1181.74" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService$4.doRun (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService$4.doRun (4 samples, 0.76%)</title><rect x="980.6" y="785" width="9.0" height="15.0" fill="rgb(205,174,36)" rx="2" ry="2" />
<text text-anchor="" x="983.57" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.EPollArrayWrapper.interrupt (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.EPollArrayWrapper.interrupt (1 samples, 0.19%)</title><rect x="415.3" y="49" width="2.3" height="15.0" fill="rgb(224,76,2)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.fs.UnixDirectoryStream$UnixDirectoryIterator.hasNext (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.fs.UnixDirectoryStream$UnixDirectoryIterator.hasNext (1 samples, 0.19%)</title><rect x="1178.7" y="465" width="2.3" height="15.0" fill="rgb(212,129,45)" rx="2" ry="2" />
<text text-anchor="" x="1181.74" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.joda.time.format.InternalParserDateTimeParser.parseInto (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.joda.time.format.InternalParserDateTimeParser.parseInto (1 samples, 0.19%)</title><rect x="541.5" y="321" width="2.2" height="15.0" fill="rgb(242,16,2)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.regex.Pattern$BmpCharProperty.match (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.regex.Pattern$BmpCharProperty.match (1 samples, 0.19%)</title><rect x="732.9" y="353" width="2.2" height="15.0" fill="rgb(213,73,2)" rx="2" ry="2" />
<text text-anchor="" x="735.86" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.writeFromNativeBuffer (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.writeFromNativeBuffer (1 samples, 0.19%)</title><rect x="600.0" y="449" width="2.3" height="15.0" fill="rgb(81,81,230)" rx="2" ry="2" />
<text text-anchor="" x="603.00" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction.shardOperation (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction.shardOperation (2 samples, 0.38%)</title><rect x="1138.2" y="673" width="4.5" height="15.0" fill="rgb(252,11,24)" rx="2" ry="2" />
<text text-anchor="" x="1141.21" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.fasterxml.jackson.core.json.UTF8StreamJsonParser.nextToken (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.fasterxml.jackson.core.json.UTF8StreamJsonParser.nextToken (1 samples, 0.19%)</title><rect x="469.4" y="545" width="2.2" height="15.0" fill="rgb(251,199,20)" rx="2" ry="2" />
<text text-anchor="" x="472.39" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.search.SearcherManager.refreshIfNeeded (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.search.SearcherManager.refreshIfNeeded (1 samples, 0.19%)</title><rect x="1181.0" y="705" width="2.2" height="15.0" fill="rgb(228,24,11)" rx="2" ry="2" />
<text text-anchor="" x="1183.99" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (9 samples, 1.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (9 samples, 1.72%)</title><rect x="732.9" y="801" width="20.2" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="735.86" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (1 samples, 0.19%)</title><rect x="665.3" y="689" width="2.3" height="15.0" fill="rgb(218,222,0)" rx="2" ry="2" />
<text text-anchor="" x="668.31" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor$Worker.run (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor$Worker.run (5 samples, 0.95%)</title><rect x="444.6" y="833" width="11.3" height="15.0" fill="rgb(241,183,32)" rx="2" ry="2" />
<text text-anchor="" x="447.62" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.util.internal.DeadLockProofWorker$1.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.util.internal.DeadLockProofWorker$1.run (1 samples, 0.19%)</title><rect x="417.6" y="801" width="2.2" height="15.0" fill="rgb(237,224,40)" rx="2" ry="2" />
<text text-anchor="" x="420.60" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.admin.indices.stats.CommonStats.(init) (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.admin.indices.stats.CommonStats.(init) (3 samples, 0.57%)</title><rect x="1115.7" y="657" width="6.7" height="15.0" fill="rgb(246,201,12)" rx="2" ry="2" />
<text text-anchor="" x="1118.69" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (10 samples, 1.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (10 samples, 1.91%)</title><rect x="566.2" y="673" width="22.5" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="569.22" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (8 samples, 1.53%)</title><rect x="606.8" y="673" width="18.0" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="609.76" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.joda.time.format.InternalParserDateTimeParser.parseInto (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.joda.time.format.InternalParserDateTimeParser.parseInto (1 samples, 0.19%)</title><rect x="541.5" y="225" width="2.2" height="15.0" fill="rgb(242,16,2)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.FileSwitchDirectory.fileLength (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.FileSwitchDirectory.fileLength (1 samples, 0.19%)</title><rect x="1154.0" y="497" width="2.2" height="15.0" fill="rgb(250,81,36)" rx="2" ry="2" />
<text text-anchor="" x="1156.97" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.joda.time.format.DateTimeParserBucket$SavedField.set (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.joda.time.format.DateTimeParserBucket$SavedField.set (1 samples, 0.19%)</title><rect x="1005.3" y="385" width="2.3" height="15.0" fill="rgb(215,224,40)" rx="2" ry="2" />
<text text-anchor="" x="1008.34" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (1 samples, 0.19%)</title><rect x="500.9" y="753" width="2.3" height="15.0" fill="rgb(247,84,19)" rx="2" ry="2" />
<text text-anchor="" x="503.92" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.io.FilePermission.(init) (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.io.FilePermission.(init) (1 samples, 0.19%)</title><rect x="1124.7" y="353" width="2.2" height="15.0" fill="rgb(236,97,53)" rx="2" ry="2" />
<text text-anchor="" x="1127.69" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (10 samples, 1.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (10 samples, 1.91%)</title><rect x="899.5" y="721" width="22.5" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="902.50" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)</title><rect x="985.1" y="497" width="2.2" height="15.0" fill="rgb(119,119,204)" rx="2" ry="2" />
<text text-anchor="" x="988.08" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force (3 samples, 0.57%)</title><rect x="1012.1" y="545" width="6.8" height="15.0" fill="rgb(236,18,34)" rx="2" ry="2" />
<text text-anchor="" x="1015.10" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.TransportAction.execute (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.TransportAction.execute (1 samples, 0.19%)</title><rect x="415.3" y="353" width="2.3" height="15.0" fill="rgb(251,159,20)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.core.DateFieldMapper.innerParseCreateField (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.core.DateFieldMapper.innerParseCreateField (1 samples, 0.19%)</title><rect x="482.9" y="465" width="2.3" height="15.0" fill="rgb(250,177,44)" rx="2" ry="2" />
<text text-anchor="" x="485.90" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor.runWorker (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.runWorker (6 samples, 1.15%)</title><rect x="527.9" y="817" width="13.6" height="15.0" fill="rgb(253,116,23)" rx="2" ry="2" />
<text text-anchor="" x="530.94" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.admin.indices.stats.CommonStats.(init) (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.admin.indices.stats.CommonStats.(init) (2 samples, 0.38%)</title><rect x="1147.2" y="657" width="4.5" height="15.0" fill="rgb(246,201,12)" rx="2" ry="2" />
<text text-anchor="" x="1150.21" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.FSDirectory.fsync (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.FSDirectory.fsync (5 samples, 0.95%)</title><rect x="1021.1" y="641" width="11.3" height="15.0" fill="rgb(223,30,36)" rx="2" ry="2" />
<text text-anchor="" x="1024.11" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnReplica (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnReplica (5 samples, 0.95%)</title><rect x="701.3" y="657" width="11.3" height="15.0" fill="rgb(233,15,33)" rx="2" ry="2" />
<text text-anchor="" x="704.34" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.force (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.force (1 samples, 0.19%)</title><rect x="976.1" y="529" width="2.2" height="15.0" fill="rgb(236,11,41)" rx="2" ry="2" />
<text text-anchor="" x="979.07" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.handler.codec.frame.FrameDecoder.callDecode (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.handler.codec.frame.FrameDecoder.callDecode (1 samples, 0.19%)</title><rect x="415.3" y="545" width="2.3" height="15.0" fill="rgb(209,62,24)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor.runWorker (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.runWorker (3 samples, 0.57%)</title><rect x="640.5" y="817" width="6.8" height="15.0" fill="rgb(253,116,23)" rx="2" ry="2" />
<text text-anchor="" x="643.53" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.loadCurrentVersionFromIndex (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.loadCurrentVersionFromIndex (2 samples, 0.38%)</title><rect x="532.4" y="561" width="4.5" height="15.0" fill="rgb(224,40,0)" rx="2" ry="2" />
<text text-anchor="" x="535.44" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (1 samples, 0.19%)</title><rect x="870.2" y="609" width="2.3" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="873.23" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (2 samples, 0.38%)</title><rect x="809.4" y="721" width="4.5" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="812.43" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.write (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.write (5 samples, 0.95%)</title><rect x="701.3" y="225" width="11.3" height="15.0" fill="rgb(103,103,204)" rx="2" ry="2" />
<text text-anchor="" x="704.34" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.AbstractNioWorker.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.AbstractNioWorker.run (1 samples, 0.19%)</title><rect x="415.3" y="753" width="2.3" height="15.0" fill="rgb(231,103,19)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (1 samples, 0.19%)</title><rect x="753.1" y="641" width="2.3" height="15.0" fill="rgb(214,128,2)" rx="2" ry="2" />
<text text-anchor="" x="756.13" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.zip.InflaterInputStream.read (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.zip.InflaterInputStream.read (5 samples, 0.95%)</title><rect x="444.6" y="289" width="11.3" height="15.0" fill="rgb(94,94,203)" rx="2" ry="2" />
<text text-anchor="" x="447.62" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.fs.UnixChannelFactory.open (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.fs.UnixChannelFactory.open (6 samples, 1.15%)</title><rect x="953.5" y="225" width="13.6" height="15.0" fill="rgb(246,9,0)" rx="2" ry="2" />
<text text-anchor="" x="956.55" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (4 samples, 0.76%)</title><rect x="996.3" y="609" width="9.0" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="999.34" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (5 samples, 0.95%)</title><rect x="516.7" y="753" width="11.2" height="15.0" fill="rgb(247,84,19)" rx="2" ry="2" />
<text text-anchor="" x="519.68" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (2 samples, 0.38%)</title><rect x="757.6" y="753" width="4.5" height="15.0" fill="rgb(247,84,19)" rx="2" ry="2" />
<text text-anchor="" x="760.63" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentParser.parseValue (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentParser.parseValue (1 samples, 0.19%)</title><rect x="1005.3" y="529" width="2.3" height="15.0" fill="rgb(232,168,53)" rx="2" ry="2" />
<text text-anchor="" x="1008.34" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (4 samples, 0.76%)</title><rect x="491.9" y="641" width="9.0" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="494.91" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.write (1 samples, 0.19%)</title><rect x="755.4" y="465" width="2.2" height="15.0" fill="rgb(103,103,204)" rx="2" ry="2" />
<text text-anchor="" x="758.38" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.flush (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.flush (1 samples, 0.19%)</title><rect x="638.3" y="449" width="2.2" height="15.0" fill="rgb(248,139,20)" rx="2" ry="2" />
<text text-anchor="" x="641.28" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.TermContext.build (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.TermContext.build (1 samples, 0.19%)</title><rect x="1183.2" y="433" width="2.3" height="15.0" fill="rgb(224,214,2)" rx="2" ry="2" />
<text text-anchor="" x="1186.24" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.checkpoint (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.checkpoint (2 samples, 0.38%)</title><rect x="771.1" y="577" width="4.5" height="15.0" fill="rgb(218,30,19)" rx="2" ry="2" />
<text text-anchor="" x="774.15" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][bulk][T#2] (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][bulk][T#2] (6 samples, 1.15%)</title><rect x="843.2" y="865" width="13.5" height="15.0" fill="rgb(213,219,25)" rx="2" ry="2" />
<text text-anchor="" x="846.21" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.processDocument (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.processDocument (6 samples, 1.15%)</title><rect x="548.2" y="481" width="13.5" height="15.0" fill="rgb(220,78,24)" rx="2" ry="2" />
<text text-anchor="" x="551.21" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor.runWorker (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.runWorker (6 samples, 1.15%)</title><rect x="762.1" y="817" width="13.5" height="15.0" fill="rgb(253,116,23)" rx="2" ry="2" />
<text text-anchor="" x="765.14" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction.shardOperation (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction.shardOperation (4 samples, 0.76%)</title><rect x="1172.0" y="673" width="9.0" height="15.0" fill="rgb(252,11,24)" rx="2" ry="2" />
<text text-anchor="" x="1174.98" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (1 samples, 0.19%)</title><rect x="991.8" y="593" width="2.3" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="994.83" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.fs.UnixChannelFactory.newFileChannel (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.fs.UnixChannelFactory.newFileChannel (6 samples, 1.15%)</title><rect x="908.5" y="257" width="13.5" height="15.0" fill="rgb(229,90,32)" rx="2" ry="2" />
<text text-anchor="" x="911.51" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.writeFromNativeBuffer (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.writeFromNativeBuffer (6 samples, 1.15%)</title><rect x="609.0" y="209" width="13.5" height="15.0" fill="rgb(81,81,230)" rx="2" ry="2" />
<text text-anchor="" x="612.01" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.updateDocument (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.updateDocument (5 samples, 0.95%)</title><rect x="701.3" y="545" width="11.3" height="15.0" fill="rgb(233,96,34)" rx="2" ry="2" />
<text text-anchor="" x="704.34" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Thread.run (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Thread.run (11 samples, 2.10%)</title><rect x="690.1" y="849" width="24.7" height="15.0" fill="rgb(251,44,12)" rx="2" ry="2" />
<text text-anchor="" x="693.08" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsWriter.addSortedSetField (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsWriter.addSortedSetField (1 samples, 0.19%)</title><rect x="1181.0" y="497" width="2.2" height="15.0" fill="rgb(206,52,30)" rx="2" ry="2" />
<text text-anchor="" x="1183.99" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force (1 samples, 0.19%)</title><rect x="976.1" y="513" width="2.2" height="15.0" fill="rgb(236,18,34)" rx="2" ry="2" />
<text text-anchor="" x="979.07" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.finishStoredFields (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.finishStoredFields (5 samples, 0.95%)</title><rect x="735.1" y="465" width="11.3" height="15.0" fill="rgb(227,106,27)" rx="2" ry="2" />
<text text-anchor="" x="738.11" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.flush (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.flush (2 samples, 0.38%)</title><rect x="926.5" y="433" width="4.5" height="15.0" fill="rgb(248,139,20)" rx="2" ry="2" />
<text text-anchor="" x="929.53" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels.writeFully (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels.writeFully (6 samples, 1.15%)</title><rect x="548.2" y="257" width="13.5" height="15.0" fill="rgb(137,137,198)" rx="2" ry="2" />
<text text-anchor="" x="551.21" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.writeCheckpoint (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.writeCheckpoint (1 samples, 0.19%)</title><rect x="573.0" y="561" width="2.2" height="15.0" fill="rgb(132,132,209)" rx="2" ry="2" />
<text text-anchor="" x="575.98" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.SimpleChannelUpstreamHandler.handleUpstream (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.SimpleChannelUpstreamHandler.handleUpstream (1 samples, 0.19%)</title><rect x="415.3" y="465" width="2.3" height="15.0" fill="rgb(229,89,18)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (8 samples, 1.53%)</title><rect x="647.3" y="769" width="18.0" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="650.29" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (1 samples, 0.19%)</title><rect x="755.4" y="593" width="2.2" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="758.38" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.finishStoredFields (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.finishStoredFields (1 samples, 0.19%)</title><rect x="638.3" y="481" width="2.2" height="15.0" fill="rgb(227,106,27)" rx="2" ry="2" />
<text text-anchor="" x="641.28" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.FST.readNextRealArc (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.FST.readNextRealArc (1 samples, 0.19%)</title><rect x="757.6" y="449" width="2.3" height="15.0" fill="rgb(136,136,222)" rx="2" ry="2" />
<text text-anchor="" x="760.63" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor.runWorker (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.runWorker (6 samples, 1.15%)</title><rect x="1005.3" y="817" width="13.6" height="15.0" fill="rgb(253,116,23)" rx="2" ry="2" />
<text text-anchor="" x="1008.34" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.loadCurrentVersionFromIndex (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.loadCurrentVersionFromIndex (2 samples, 0.38%)</title><rect x="865.7" y="561" width="4.5" height="15.0" fill="rgb(224,40,0)" rx="2" ry="2" />
<text text-anchor="" x="868.73" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.write (1 samples, 0.19%)</title><rect x="561.7" y="529" width="2.3" height="15.0" fill="rgb(103,103,204)" rx="2" ry="2" />
<text text-anchor="" x="564.72" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][bulk][T#31] (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][bulk][T#31] (8 samples, 1.53%)</title><rect x="865.7" y="865" width="18.0" height="15.0" fill="rgb(215,155,9)" rx="2" ry="2" />
<text text-anchor="" x="868.73" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (4 samples, 0.76%)</title><rect x="971.6" y="801" width="9.0" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="974.56" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.force (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.force (1 samples, 0.19%)</title><rect x="665.3" y="561" width="2.3" height="15.0" fill="rgb(236,11,41)" rx="2" ry="2" />
<text text-anchor="" x="668.31" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][bulk][T#6] (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][bulk][T#6] (4 samples, 0.76%)</title><rect x="971.6" y="865" width="9.0" height="15.0" fill="rgb(244,1,35)" rx="2" ry="2" />
<text text-anchor="" x="974.56" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (3 samples, 0.57%)</title><rect x="667.6" y="689" width="6.7" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="670.56" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.FST.findTargetArc (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.FST.findTargetArc (1 samples, 0.19%)</title><rect x="973.8" y="465" width="2.3" height="15.0" fill="rgb(249,199,6)" rx="2" ry="2" />
<text text-anchor="" x="976.82" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (7 samples, 1.34%)</title><rect x="883.7" y="801" width="15.8" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="886.74" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentParser.parseObject (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentParser.parseObject (1 samples, 0.19%)</title><rect x="482.9" y="545" width="2.3" height="15.0" fill="rgb(238,220,50)" rx="2" ry="2" />
<text text-anchor="" x="485.90" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.loadCurrentVersionFromIndex (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.loadCurrentVersionFromIndex (1 samples, 0.19%)</title><rect x="647.3" y="561" width="2.2" height="15.0" fill="rgb(224,40,0)" rx="2" ry="2" />
<text text-anchor="" x="650.29" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (6 samples, 1.15%)</title><rect x="469.4" y="689" width="13.5" height="15.0" fill="rgb(218,222,0)" rx="2" ry="2" />
<text text-anchor="" x="472.39" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (1 samples, 0.19%)</title><rect x="665.3" y="753" width="2.3" height="15.0" fill="rgb(247,84,19)" rx="2" ry="2" />
<text text-anchor="" x="668.31" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ConcurrentLinkedQueue.offer (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ConcurrentLinkedQueue.offer (1 samples, 0.19%)</title><rect x="1108.9" y="353" width="2.3" height="15.0" fill="rgb(213,213,21)" rx="2" ry="2" />
<text text-anchor="" x="1111.93" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force (2 samples, 0.38%)</title><rect x="523.4" y="545" width="4.5" height="15.0" fill="rgb(236,18,34)" rx="2" ry="2" />
<text text-anchor="" x="526.44" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.force (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.force (1 samples, 0.19%)</title><rect x="748.6" y="561" width="2.3" height="15.0" fill="rgb(236,11,41)" rx="2" ry="2" />
<text text-anchor="" x="751.63" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (1 samples, 0.19%)</title><rect x="645.0" y="737" width="2.3" height="15.0" fill="rgb(247,84,19)" rx="2" ry="2" />
<text text-anchor="" x="648.04" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (3 samples, 0.57%)</title><rect x="694.6" y="609" width="6.7" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="697.58" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.fs.UnixDirectoryStream$UnixDirectoryIterator.hasNext (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.fs.UnixDirectoryStream$UnixDirectoryIterator.hasNext (4 samples, 0.76%)</title><rect x="1158.5" y="449" width="9.0" height="15.0" fill="rgb(212,129,45)" rx="2" ry="2" />
<text text-anchor="" x="1161.47" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.blocktree.SegmentTermsEnum.seekExact (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.blocktree.SegmentTermsEnum.seekExact (1 samples, 0.19%)</title><rect x="973.8" y="497" width="2.3" height="15.0" fill="rgb(246,206,36)" rx="2" ry="2" />
<text text-anchor="" x="976.82" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.finishDocument (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.finishDocument (4 samples, 0.76%)</title><rect x="843.2" y="449" width="9.0" height="15.0" fill="rgb(221,219,23)" rx="2" ry="2" />
<text text-anchor="" x="846.21" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.core.DateFieldMapper$DateFieldType.parseStringValue (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.core.DateFieldMapper$DateFieldType.parseStringValue (2 samples, 0.38%)</title><rect x="541.5" y="449" width="4.5" height="15.0" fill="rgb(218,44,50)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (6 samples, 1.15%)</title><rect x="714.8" y="737" width="13.6" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="717.85" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.stream.BytesStreamOutput.ensureCapacity (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.stream.BytesStreamOutput.ensureCapacity (1 samples, 0.19%)</title><rect x="1151.7" y="497" width="2.3" height="15.0" fill="rgb(205,22,12)" rx="2" ry="2" />
<text text-anchor="" x="1154.72" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (6 samples, 1.15%)</title><rect x="701.3" y="785" width="13.5" height="15.0" fill="rgb(228,141,38)" rx="2" ry="2" />
<text text-anchor="" x="704.34" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (5 samples, 0.95%)</title><rect x="595.5" y="641" width="11.3" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="598.50" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.Channels.writeToChannel (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.Channels.writeToChannel (1 samples, 0.19%)</title><rect x="573.0" y="497" width="2.2" height="15.0" fill="rgb(134,134,237)" rx="2" ry="2" />
<text text-anchor="" x="575.98" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels.writeFully (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels.writeFully (5 samples, 0.95%)</title><rect x="735.1" y="241" width="11.3" height="15.0" fill="rgb(137,137,198)" rx="2" ry="2" />
<text text-anchor="" x="738.11" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.stream.StreamOutput.writeOptionalStreamable (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.stream.StreamOutput.writeOptionalStreamable (1 samples, 0.19%)</title><rect x="1151.7" y="625" width="2.3" height="15.0" fill="rgb(119,119,222)" rx="2" ry="2" />
<text text-anchor="" x="1154.72" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.finishStoredFields (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.finishStoredFields (2 samples, 0.38%)</title><rect x="926.5" y="465" width="4.5" height="15.0" fill="rgb(227,106,27)" rx="2" ry="2" />
<text text-anchor="" x="929.53" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.FST.findTargetArc (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.FST.findTargetArc (1 samples, 0.19%)</title><rect x="633.8" y="481" width="2.2" height="15.0" fill="rgb(249,199,6)" rx="2" ry="2" />
<text text-anchor="" x="636.78" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.DefaultChannelPipeline$DefaultChannelHandlerContext.sendUpstream (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.DefaultChannelPipeline$DefaultChannelHandlerContext.sendUpstream (5 samples, 0.95%)</title><rect x="444.6" y="609" width="11.3" height="15.0" fill="rgb(217,60,45)" rx="2" ry="2" />
<text text-anchor="" x="447.62" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.DefaultChannelPipeline.sendUpstream (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.DefaultChannelPipeline.sendUpstream (5 samples, 0.95%)</title><rect x="444.6" y="481" width="11.3" height="15.0" fill="rgb(224,124,32)" rx="2" ry="2" />
<text text-anchor="" x="447.62" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.file.Files.newDirectoryStream (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.file.Files.newDirectoryStream (1 samples, 0.19%)</title><rect x="1156.2" y="449" width="2.3" height="15.0" fill="rgb(248,159,26)" rx="2" ry="2" />
<text text-anchor="" x="1159.22" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.fs.UnixChannelFactory.newFileChannel (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.fs.UnixChannelFactory.newFileChannel (1 samples, 0.19%)</title><rect x="818.4" y="465" width="2.3" height="15.0" fill="rgb(229,90,32)" rx="2" ry="2" />
<text text-anchor="" x="821.44" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService$4.doRun (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService$4.doRun (4 samples, 0.76%)</title><rect x="629.3" y="785" width="9.0" height="15.0" fill="rgb(205,174,36)" rx="2" ry="2" />
<text text-anchor="" x="632.27" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.Channels.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.Channels.write (1 samples, 0.19%)</title><rect x="1185.5" y="609" width="2.2" height="15.0" fill="rgb(124,124,235)" rx="2" ry="2" />
<text text-anchor="" x="1188.50" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (5 samples, 0.95%)</title><rect x="458.1" y="689" width="11.3" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="461.13" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.finishStoredFields (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.finishStoredFields (6 samples, 1.15%)</title><rect x="548.2" y="465" width="13.5" height="15.0" fill="rgb(227,106,27)" rx="2" ry="2" />
<text text-anchor="" x="551.21" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (6 samples, 1.15%)</title><rect x="714.8" y="657" width="13.6" height="15.0" fill="rgb(227,28,49)" rx="2" ry="2" />
<text text-anchor="" x="717.85" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.loadCurrentVersionFromIndex (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.loadCurrentVersionFromIndex (1 samples, 0.19%)</title><rect x="780.2" y="561" width="2.2" height="15.0" fill="rgb(224,40,0)" rx="2" ry="2" />
<text text-anchor="" x="783.15" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.http.netty.pipelining.HttpPipeliningHandler.handleDownstream (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.http.netty.pipelining.HttpPipeliningHandler.handleDownstream (1 samples, 0.19%)</title><rect x="1187.7" y="209" width="2.3" height="15.0" fill="rgb(245,71,12)" rx="2" ry="2" />
<text text-anchor="" x="1190.75" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (2 samples, 0.38%)</title><rect x="757.6" y="721" width="4.5" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="760.63" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentParser.parseDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentParser.parseDocument (1 samples, 0.19%)</title><rect x="674.3" y="593" width="2.3" height="15.0" fill="rgb(209,14,21)" rx="2" ry="2" />
<text text-anchor="" x="677.31" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.writeCheckpoint (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.writeCheckpoint (1 samples, 0.19%)</title><rect x="755.4" y="561" width="2.2" height="15.0" fill="rgb(132,132,209)" rx="2" ry="2" />
<text text-anchor="" x="758.38" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (2 samples, 0.38%)</title><rect x="561.7" y="593" width="4.5" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="564.72" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.create (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.create (2 samples, 0.38%)</title><rect x="865.7" y="593" width="4.5" height="15.0" fill="rgb(214,111,47)" rx="2" ry="2" />
<text text-anchor="" x="868.73" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.admin.indices.stats.CommonStats.(init) (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.admin.indices.stats.CommonStats.(init) (4 samples, 0.76%)</title><rect x="1172.0" y="657" width="9.0" height="15.0" fill="rgb(246,201,12)" rx="2" ry="2" />
<text text-anchor="" x="1174.98" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (1 samples, 0.19%)</title><rect x="500.9" y="609" width="2.3" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="503.92" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (1 samples, 0.19%)</title><rect x="976.1" y="641" width="2.2" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="979.07" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.Outputs.readFinalOutput (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.Outputs.readFinalOutput (1 samples, 0.19%)</title><rect x="973.8" y="417" width="2.3" height="15.0" fill="rgb(131,131,202)" rx="2" ry="2" />
<text text-anchor="" x="976.82" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriterPerThread.updateDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriterPerThread.updateDocument (1 samples, 0.19%)</title><rect x="606.8" y="497" width="2.2" height="15.0" fill="rgb(245,210,52)" rx="2" ry="2" />
<text text-anchor="" x="609.76" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (8 samples, 1.53%)</title><rect x="482.9" y="753" width="18.0" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="485.90" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (3 samples, 0.57%)</title><rect x="775.6" y="641" width="6.8" height="15.0" fill="rgb(214,128,2)" rx="2" ry="2" />
<text text-anchor="" x="778.65" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)</title><rect x="750.9" y="545" width="2.2" height="15.0" fill="rgb(121,121,206)" rx="2" ry="2" />
<text text-anchor="" x="753.88" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService$4.doRun (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService$4.doRun (1 samples, 0.19%)</title><rect x="1142.7" y="785" width="2.3" height="15.0" fill="rgb(205,174,36)" rx="2" ry="2" />
<text text-anchor="" x="1145.71" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (2 samples, 0.38%)</title><rect x="753.1" y="737" width="4.5" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="756.13" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.PerThreadIDAndVersionLookup.lookup (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.PerThreadIDAndVersionLookup.lookup (1 samples, 0.19%)</title><rect x="868.0" y="513" width="2.2" height="15.0" fill="rgb(237,190,48)" rx="2" ry="2" />
<text text-anchor="" x="870.98" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (1 samples, 0.19%)</title><rect x="969.3" y="689" width="2.3" height="15.0" fill="rgb(218,222,0)" rx="2" ry="2" />
<text text-anchor="" x="972.31" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor$Worker.run (22 samples, 4.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor$Worker.run (22 samples, 4.20%)</title><rect x="1018.9" y="833" width="49.5" height="15.0" fill="rgb(241,183,32)" rx="2" ry="2" />
<text text-anchor="" x="1021.85" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (4 samples, 0.76%)</title><rect x="883.7" y="737" width="9.0" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="886.74" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.flush (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.flush (3 samples, 0.57%)</title><rect x="516.7" y="577" width="6.7" height="15.0" fill="rgb(228,191,52)" rx="2" ry="2" />
<text text-anchor="" x="519.68" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.loadCurrentVersionFromIndex (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.loadCurrentVersionFromIndex (2 samples, 0.38%)</title><rect x="566.2" y="561" width="4.5" height="15.0" fill="rgb(224,40,0)" rx="2" ry="2" />
<text text-anchor="" x="569.22" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (5 samples, 0.95%)</title><rect x="690.1" y="769" width="11.2" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="693.08" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReroutePhase.finishOnSuccess (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReroutePhase.finishOnSuccess (1 samples, 0.19%)</title><rect x="1187.7" y="433" width="2.3" height="15.0" fill="rgb(230,24,35)" rx="2" ry="2" />
<text text-anchor="" x="1190.75" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (2 samples, 0.38%)</title><rect x="771.1" y="641" width="4.5" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="774.15" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (2 samples, 0.38%)</title><rect x="728.4" y="753" width="4.5" height="15.0" fill="rgb(247,84,19)" rx="2" ry="2" />
<text text-anchor="" x="731.36" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (2 samples, 0.38%)</title><rect x="728.4" y="769" width="4.5" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="731.36" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentParser.parseObject (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentParser.parseObject (1 samples, 0.19%)</title><rect x="690.1" y="545" width="2.2" height="15.0" fill="rgb(238,220,50)" rx="2" ry="2" />
<text text-anchor="" x="693.08" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Thread.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Thread.run (1 samples, 0.19%)</title><rect x="1181.0" y="849" width="2.2" height="15.0" fill="rgb(251,44,12)" rx="2" ry="2" />
<text text-anchor="" x="1183.99" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][bulk][T#27] (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][bulk][T#27] (11 samples, 2.10%)</title><rect x="775.6" y="865" width="24.8" height="15.0" fill="rgb(242,123,36)" rx="2" ry="2" />
<text text-anchor="" x="778.65" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][[http_server_worker.default]][T#56]{New I/O worker #121} (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][[http_server_worker.default]][T#56]{New I/O worker #121} (1 samples, 0.19%)</title><rect x="422.1" y="865" width="2.3" height="15.0" fill="rgb(215,110,4)" rx="2" ry="2" />
<text text-anchor="" x="425.10" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.create (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.create (1 samples, 0.19%)</title><rect x="1007.6" y="593" width="2.2" height="15.0" fill="rgb(214,111,47)" rx="2" ry="2" />
<text text-anchor="" x="1010.60" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (2 samples, 0.38%)</title><rect x="985.1" y="609" width="4.5" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="988.08" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.updateDocument (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.updateDocument (2 samples, 0.38%)</title><rect x="980.6" y="529" width="4.5" height="15.0" fill="rgb(233,96,34)" rx="2" ry="2" />
<text text-anchor="" x="983.57" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreate (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreate (1 samples, 0.19%)</title><rect x="757.6" y="593" width="2.3" height="15.0" fill="rgb(231,13,44)" rx="2" ry="2" />
<text text-anchor="" x="760.63" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.processField (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.processField (1 samples, 0.19%)</title><rect x="931.0" y="465" width="2.3" height="15.0" fill="rgb(220,68,13)" rx="2" ry="2" />
<text text-anchor="" x="934.03" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.single.shard.TransportSingleShardAction$TransportHandler$1.onResponse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.single.shard.TransportSingleShardAction$TransportHandler$1.onResponse (1 samples, 0.19%)</title><rect x="1108.9" y="561" width="2.3" height="15.0" fill="rgb(226,165,22)" rx="2" ry="2" />
<text text-anchor="" x="1111.93" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (8 samples, 1.53%)</title><rect x="647.3" y="689" width="18.0" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="650.29" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.onShardOperation (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.onShardOperation (4 samples, 0.76%)</title><rect x="1172.0" y="705" width="9.0" height="15.0" fill="rgb(219,4,42)" rx="2" ry="2" />
<text text-anchor="" x="1174.98" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentParser.parseObject (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentParser.parseObject (1 samples, 0.19%)</title><rect x="775.6" y="545" width="2.3" height="15.0" fill="rgb(238,220,50)" rx="2" ry="2" />
<text text-anchor="" x="778.65" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.storeStats (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.storeStats (1 samples, 0.19%)</title><rect x="1178.7" y="641" width="2.3" height="15.0" fill="rgb(229,139,45)" rx="2" ry="2" />
<text text-anchor="" x="1181.74" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.write (16 samples, 3.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.write (16 samples, 3.05%)</title><rect x="1032.4" y="545" width="36.0" height="15.0" fill="rgb(103,103,204)" rx="2" ry="2" />
<text text-anchor="" x="1035.37" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sun..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Translog.ensureSynced (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Translog.ensureSynced (4 samples, 0.76%)</title><rect x="460.4" y="625" width="9.0" height="15.0" fill="rgb(205,176,40)" rx="2" ry="2" />
<text text-anchor="" x="463.38" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.create (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.create (2 samples, 0.38%)</title><rect x="971.6" y="609" width="4.5" height="15.0" fill="rgb(206,208,36)" rx="2" ry="2" />
<text text-anchor="" x="974.56" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (4 samples, 0.76%)</title><rect x="800.4" y="769" width="9.0" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="803.42" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.FST.readFirstRealTargetArc (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.FST.readFirstRealTargetArc (1 samples, 0.19%)</title><rect x="746.4" y="449" width="2.2" height="15.0" fill="rgb(122,122,215)" rx="2" ry="2" />
<text text-anchor="" x="749.37" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.checkpoint (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.checkpoint (4 samples, 0.76%)</title><rect x="1009.8" y="577" width="9.1" height="15.0" fill="rgb(218,30,19)" rx="2" ry="2" />
<text text-anchor="" x="1012.85" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (1 samples, 0.19%)</title><rect x="500.9" y="769" width="2.3" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="503.92" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.netty.OpenChannelsHandler.handleUpstream (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.netty.OpenChannelsHandler.handleUpstream (8 samples, 1.53%)</title><rect x="426.6" y="625" width="18.0" height="15.0" fill="rgb(234,220,7)" rx="2" ry="2" />
<text text-anchor="" x="429.60" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.CloseableThreadLocal.get (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.CloseableThreadLocal.get (1 samples, 0.19%)</title><rect x="647.3" y="497" width="2.2" height="15.0" fill="rgb(249,54,32)" rx="2" ry="2" />
<text text-anchor="" x="650.29" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.Versions.loadDocIdAndVersion (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.Versions.loadDocIdAndVersion (1 samples, 0.19%)</title><rect x="994.1" y="529" width="2.2" height="15.0" fill="rgb(241,106,30)" rx="2" ry="2" />
<text text-anchor="" x="997.08" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.drain (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.drain (1 samples, 0.19%)</title><rect x="424.4" y="641" width="2.2" height="15.0" fill="rgb(216,176,34)" rx="2" ry="2" />
<text text-anchor="" x="427.35" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (1 samples, 0.19%)</title><rect x="798.2" y="689" width="2.2" height="15.0" fill="rgb(218,222,0)" rx="2" ry="2" />
<text text-anchor="" x="801.17" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriterPerThread.updateDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriterPerThread.updateDocument (1 samples, 0.19%)</title><rect x="591.0" y="497" width="2.2" height="15.0" fill="rgb(245,210,52)" rx="2" ry="2" />
<text text-anchor="" x="593.99" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.Channels.writeToChannel (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.Channels.writeToChannel (1 samples, 0.19%)</title><rect x="750.9" y="561" width="2.2" height="15.0" fill="rgb(134,134,237)" rx="2" ry="2" />
<text text-anchor="" x="753.88" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.store.Store$StoreStatsCache.refresh (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.store.Store$StoreStatsCache.refresh (6 samples, 1.15%)</title><rect x="1154.0" y="561" width="13.5" height="15.0" fill="rgb(242,91,19)" rx="2" ry="2" />
<text text-anchor="" x="1156.97" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.ByteSequenceOutputs.read (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.ByteSequenceOutputs.read (1 samples, 0.19%)</title><rect x="532.4" y="401" width="2.3" height="15.0" fill="rgb(107,107,208)" rx="2" ry="2" />
<text text-anchor="" x="535.44" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriterPerThread.updateDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriterPerThread.updateDocument (1 samples, 0.19%)</title><rect x="1007.6" y="497" width="2.2" height="15.0" fill="rgb(245,210,52)" rx="2" ry="2" />
<text text-anchor="" x="1010.60" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels.access$000 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels.access$000 (1 samples, 0.19%)</title><rect x="638.3" y="273" width="2.2" height="15.0" fill="rgb(232,51,49)" rx="2" ry="2" />
<text text-anchor="" x="641.28" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (12 samples, 2.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (12 samples, 2.29%)</title><rect x="926.5" y="721" width="27.0" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="929.53" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.AbstractNioWorker.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.AbstractNioWorker.run (1 samples, 0.19%)</title><rect x="1187.7" y="753" width="2.3" height="15.0" fill="rgb(231,103,19)" rx="2" ry="2" />
<text text-anchor="" x="1190.75" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor$Worker.run (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor$Worker.run (6 samples, 1.15%)</title><rect x="762.1" y="833" width="13.5" height="15.0" fill="rgb(241,183,32)" rx="2" ry="2" />
<text text-anchor="" x="765.14" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.processField (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.processField (1 samples, 0.19%)</title><rect x="777.9" y="465" width="2.3" height="15.0" fill="rgb(220,68,13)" rx="2" ry="2" />
<text text-anchor="" x="780.90" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)</title><rect x="1009.8" y="481" width="2.3" height="15.0" fill="rgb(121,121,206)" rx="2" ry="2" />
<text text-anchor="" x="1012.85" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.writeFromNativeBuffer (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.writeFromNativeBuffer (1 samples, 0.19%)</title><rect x="926.5" y="177" width="2.3" height="15.0" fill="rgb(81,81,230)" rx="2" ry="2" />
<text text-anchor="" x="929.53" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.addDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.addDocument (1 samples, 0.19%)</title><rect x="640.5" y="545" width="2.3" height="15.0" fill="rgb(227,61,0)" rx="2" ry="2" />
<text text-anchor="" x="643.53" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (1 samples, 0.19%)</title><rect x="415.3" y="417" width="2.3" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (1 samples, 0.19%)</title><rect x="748.6" y="657" width="2.3" height="15.0" fill="rgb(224,156,41)" rx="2" ry="2" />
<text text-anchor="" x="751.63" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.stream.StreamOutput.writeBytes (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.stream.StreamOutput.writeBytes (1 samples, 0.19%)</title><rect x="1151.7" y="529" width="2.3" height="15.0" fill="rgb(137,137,203)" rx="2" ry="2" />
<text text-anchor="" x="1154.72" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.joda.time.format.DateTimeFormatterBuilder$MatchingParser.parseInto (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.joda.time.format.DateTimeFormatterBuilder$MatchingParser.parseInto (1 samples, 0.19%)</title><rect x="541.5" y="385" width="2.2" height="15.0" fill="rgb(217,47,52)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (3 samples, 0.57%)</title><rect x="856.7" y="609" width="6.8" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="859.72" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportRequestHandler.messageReceived (18 samples, 3.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportRequestHandler.messageReceived (18 samples, 3.44%)</title><rect x="1068.4" y="753" width="40.5" height="15.0" fill="rgb(243,108,4)" rx="2" ry="2" />
<text text-anchor="" x="1071.40" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (2 samples, 0.38%)</title><rect x="809.4" y="593" width="4.5" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="812.43" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][bulk][T#25] (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][bulk][T#25] (4 samples, 0.76%)</title><rect x="753.1" y="865" width="9.0" height="15.0" fill="rgb(221,145,43)" rx="2" ry="2" />
<text text-anchor="" x="756.13" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (2 samples, 0.38%)</title><rect x="985.1" y="593" width="4.5" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="988.08" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (5 samples, 0.95%)</title><rect x="516.7" y="657" width="11.2" height="15.0" fill="rgb(224,156,41)" rx="2" ry="2" />
<text text-anchor="" x="519.68" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.joda.time.format.DateTimeFormatter.parseMillis (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.joda.time.format.DateTimeFormatter.parseMillis (1 samples, 0.19%)</title><rect x="775.6" y="433" width="2.3" height="15.0" fill="rgb(222,139,39)" rx="2" ry="2" />
<text text-anchor="" x="778.65" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (1 samples, 0.19%)</title><rect x="638.3" y="769" width="2.2" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="641.28" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.writeFromNativeBuffer (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.writeFromNativeBuffer (1 samples, 0.19%)</title><rect x="638.3" y="193" width="2.2" height="15.0" fill="rgb(81,81,230)" rx="2" ry="2" />
<text text-anchor="" x="641.28" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.force (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.force (1 samples, 0.19%)</title><rect x="897.3" y="529" width="2.2" height="15.0" fill="rgb(236,11,41)" rx="2" ry="2" />
<text text-anchor="" x="900.25" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.core.NumberFieldMapper.parseCreateField (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.core.NumberFieldMapper.parseCreateField (2 samples, 0.38%)</title><rect x="541.5" y="481" width="4.5" height="15.0" fill="rgb(206,191,38)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force0 (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force0 (6 samples, 1.15%)</title><rect x="575.2" y="529" width="13.5" height="15.0" fill="rgb(222,14,30)" rx="2" ry="2" />
<text text-anchor="" x="578.23" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.doRun (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.doRun (1 samples, 0.19%)</title><rect x="500.9" y="705" width="2.3" height="15.0" fill="rgb(232,57,0)" rx="2" ry="2" />
<text text-anchor="" x="503.92" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.writeFromNativeBuffer (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.writeFromNativeBuffer (5 samples, 0.95%)</title><rect x="872.5" y="513" width="11.2" height="15.0" fill="rgb(81,81,230)" rx="2" ry="2" />
<text text-anchor="" x="875.48" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.Channels.writeToChannel (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.Channels.writeToChannel (1 samples, 0.19%)</title><rect x="649.5" y="513" width="2.3" height="15.0" fill="rgb(134,134,237)" rx="2" ry="2" />
<text text-anchor="" x="652.54" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.write (1 samples, 0.19%)</title><rect x="570.7" y="529" width="2.3" height="15.0" fill="rgb(103,103,204)" rx="2" ry="2" />
<text text-anchor="" x="573.73" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.LZ4.encodeSequence (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.LZ4.encodeSequence (1 samples, 0.19%)</title><rect x="692.3" y="385" width="2.3" height="15.0" fill="rgb(251,45,21)" rx="2" ry="2" />
<text text-anchor="" x="695.33" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.create (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.create (1 samples, 0.19%)</title><rect x="994.1" y="593" width="2.2" height="15.0" fill="rgb(214,111,47)" rx="2" ry="2" />
<text text-anchor="" x="997.08" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)</title><rect x="928.8" y="177" width="2.2" height="15.0" fill="rgb(119,119,204)" rx="2" ry="2" />
<text text-anchor="" x="931.78" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.TreeMap.get (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.TreeMap.get (1 samples, 0.19%)</title><rect x="1138.2" y="593" width="2.3" height="15.0" fill="rgb(220,1,51)" rx="2" ry="2" />
<text text-anchor="" x="1141.21" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentParser.parseDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentParser.parseDocument (1 samples, 0.19%)</title><rect x="775.6" y="561" width="2.3" height="15.0" fill="rgb(209,14,21)" rx="2" ry="2" />
<text text-anchor="" x="778.65" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.FilterDirectory.fileLength (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.FilterDirectory.fileLength (1 samples, 0.19%)</title><rect x="1154.0" y="529" width="2.2" height="15.0" fill="rgb(242,106,54)" rx="2" ry="2" />
<text text-anchor="" x="1156.97" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (1 samples, 0.19%)</title><rect x="969.3" y="753" width="2.3" height="15.0" fill="rgb(247,84,19)" rx="2" ry="2" />
<text text-anchor="" x="972.31" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force0 (10 samples, 1.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force0 (10 samples, 1.91%)</title><rect x="820.7" y="529" width="22.5" height="15.0" fill="rgb(222,14,30)" rx="2" ry="2" />
<text text-anchor="" x="823.69" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Translog.ensureSynced (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Translog.ensureSynced (11 samples, 2.10%)</title><rect x="818.4" y="625" width="24.8" height="15.0" fill="rgb(205,176,40)" rx="2" ry="2" />
<text text-anchor="" x="821.44" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.DefaultChannelPipeline.sendUpstream (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.DefaultChannelPipeline.sendUpstream (1 samples, 0.19%)</title><rect x="417.6" y="593" width="2.2" height="15.0" fill="rgb(224,124,32)" rx="2" ry="2" />
<text text-anchor="" x="420.60" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.updateDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.updateDocument (1 samples, 0.19%)</title><rect x="971.6" y="529" width="2.2" height="15.0" fill="rgb(233,96,34)" rx="2" ry="2" />
<text text-anchor="" x="974.56" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreate (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreate (2 samples, 0.38%)</title><rect x="971.6" y="577" width="4.5" height="15.0" fill="rgb(231,13,44)" rx="2" ry="2" />
<text text-anchor="" x="974.56" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.getReader (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.getReader (1 samples, 0.19%)</title><rect x="1181.0" y="609" width="2.2" height="15.0" fill="rgb(241,22,20)" rx="2" ry="2" />
<text text-anchor="" x="1183.99" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreate (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreate (2 samples, 0.38%)</title><rect x="566.2" y="577" width="4.5" height="15.0" fill="rgb(231,13,44)" rx="2" ry="2" />
<text text-anchor="" x="569.22" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.writeFromNativeBuffer (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.writeFromNativeBuffer (1 samples, 0.19%)</title><rect x="561.7" y="513" width="2.3" height="15.0" fill="rgb(81,81,230)" rx="2" ry="2" />
<text text-anchor="" x="564.72" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.stream.StreamInput.readBytesReference (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.stream.StreamInput.readBytesReference (7 samples, 1.34%)</title><rect x="428.9" y="401" width="15.7" height="15.0" fill="rgb(85,85,200)" rx="2" ry="2" />
<text text-anchor="" x="431.85" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.DefaultChannelPipeline.sendUpstream (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.DefaultChannelPipeline.sendUpstream (8 samples, 1.53%)</title><rect x="426.6" y="593" width="18.0" height="15.0" fill="rgb(224,124,32)" rx="2" ry="2" />
<text text-anchor="" x="429.60" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (4 samples, 0.76%)</title><rect x="856.7" y="801" width="9.0" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="859.72" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.regex.Pattern.split (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.regex.Pattern.split (1 samples, 0.19%)</title><rect x="732.9" y="433" width="2.2" height="15.0" fill="rgb(245,209,51)" rx="2" ry="2" />
<text text-anchor="" x="735.86" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService$DirectResponseChannel.sendResponse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService$DirectResponseChannel.sendResponse (1 samples, 0.19%)</title><rect x="1108.9" y="673" width="2.3" height="15.0" fill="rgb(251,158,39)" rx="2" ry="2" />
<text text-anchor="" x="1111.93" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (4 samples, 0.76%)</title><rect x="883.7" y="689" width="9.0" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="886.74" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (5 samples, 0.95%)</title><rect x="872.5" y="593" width="11.2" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="875.48" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.LZ4.encodeSequence (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.LZ4.encodeSequence (5 samples, 0.95%)</title><rect x="714.8" y="385" width="11.3" height="15.0" fill="rgb(251,45,21)" rx="2" ry="2" />
<text text-anchor="" x="717.85" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.NettyTransportChannel.sendResponse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.NettyTransportChannel.sendResponse (1 samples, 0.19%)</title><rect x="1151.7" y="673" width="2.3" height="15.0" fill="rgb(253,134,21)" rx="2" ry="2" />
<text text-anchor="" x="1154.72" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.lucene54.Lucene54DocValuesConsumer.addNumericField (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.lucene54.Lucene54DocValuesConsumer.addNumericField (1 samples, 0.19%)</title><rect x="455.9" y="673" width="2.2" height="15.0" fill="rgb(234,148,46)" rx="2" ry="2" />
<text text-anchor="" x="458.88" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (10 samples, 1.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (10 samples, 1.91%)</title><rect x="899.5" y="753" width="22.5" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="902.50" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('java.lang.ThreadLocal$ThreadLocalMap.getEntry (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ThreadLocal$ThreadLocalMap.getEntry (1 samples, 0.19%)</title><rect x="534.7" y="449" width="2.2" height="15.0" fill="rgb(213,204,25)" rx="2" ry="2" />
<text text-anchor="" x="537.69" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)</title><rect x="694.6" y="497" width="2.2" height="15.0" fill="rgb(119,119,204)" rx="2" ry="2" />
<text text-anchor="" x="697.58" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.create (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.create (2 samples, 0.38%)</title><rect x="813.9" y="609" width="4.5" height="15.0" fill="rgb(206,208,36)" rx="2" ry="2" />
<text text-anchor="" x="816.93" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.search.BooleanWeight.(init) (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.search.BooleanWeight.(init) (1 samples, 0.19%)</title><rect x="1183.2" y="561" width="2.3" height="15.0" fill="rgb(219,188,4)" rx="2" ry="2" />
<text text-anchor="" x="1186.24" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (13 samples, 2.48%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (13 samples, 2.48%)</title><rect x="813.9" y="673" width="29.3" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="816.93" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >or..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.internal.FieldNamesFieldMapper.postParse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.internal.FieldNamesFieldMapper.postParse (1 samples, 0.19%)</title><rect x="485.2" y="545" width="2.2" height="15.0" fill="rgb(213,39,34)" rx="2" ry="2" />
<text text-anchor="" x="488.15" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.Engine$Index.execute (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.Engine$Index.execute (6 samples, 1.15%)</title><rect x="908.5" y="625" width="13.5" height="15.0" fill="rgb(215,33,13)" rx="2" ry="2" />
<text text-anchor="" x="911.51" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived (6 samples, 1.15%)</title><rect x="1154.0" y="753" width="13.5" height="15.0" fill="rgb(218,49,53)" rx="2" ry="2" />
<text text-anchor="" x="1156.97" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.file.Files.size (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.file.Files.size (1 samples, 0.19%)</title><rect x="1124.7" y="465" width="2.2" height="15.0" fill="rgb(217,31,46)" rx="2" ry="2" />
<text text-anchor="" x="1127.69" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.processField (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.processField (1 samples, 0.19%)</title><rect x="971.6" y="465" width="2.2" height="15.0" fill="rgb(220,68,13)" rx="2" ry="2" />
<text text-anchor="" x="974.56" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (1 samples, 0.19%)</title><rect x="863.5" y="721" width="2.2" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="866.47" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.CodecReader.ramBytesUsed (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.CodecReader.ramBytesUsed (1 samples, 0.19%)</title><rect x="1149.5" y="609" width="2.2" height="15.0" fill="rgb(226,165,47)" rx="2" ry="2" />
<text text-anchor="" x="1152.47" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Thread.run (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Thread.run (7 samples, 1.34%)</title><rect x="512.2" y="849" width="15.7" height="15.0" fill="rgb(251,44,12)" rx="2" ry="2" />
<text text-anchor="" x="515.18" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.joda.time.format.DateTimeParserBucket$SavedField.set (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.joda.time.format.DateTimeParserBucket$SavedField.set (1 samples, 0.19%)</title><rect x="543.7" y="385" width="2.3" height="15.0" fill="rgb(215,224,40)" rx="2" ry="2" />
<text text-anchor="" x="546.70" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (1 samples, 0.19%)</title><rect x="665.3" y="641" width="2.3" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="668.31" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.Versions.loadDocIdAndVersion (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.Versions.loadDocIdAndVersion (2 samples, 0.38%)</title><rect x="804.9" y="529" width="4.5" height="15.0" fill="rgb(241,106,30)" rx="2" ry="2" />
<text text-anchor="" x="807.92" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (6 samples, 1.15%)</title><rect x="762.1" y="801" width="13.5" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="765.14" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels.writeFullyImpl (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels.writeFullyImpl (1 samples, 0.19%)</title><rect x="1181.0" y="289" width="2.2" height="15.0" fill="rgb(118,118,221)" rx="2" ry="2" />
<text text-anchor="" x="1183.99" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.blocktree.BlockTreeTermsReader.terms (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.blocktree.BlockTreeTermsReader.terms (1 samples, 0.19%)</title><rect x="1145.0" y="577" width="2.2" height="15.0" fill="rgb(234,195,1)" rx="2" ry="2" />
<text text-anchor="" x="1147.96" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (1 samples, 0.19%)</title><rect x="863.5" y="689" width="2.2" height="15.0" fill="rgb(218,222,0)" rx="2" ry="2" />
<text text-anchor="" x="866.47" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.blocktree.BlockTreeTermsReader.terms (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.blocktree.BlockTreeTermsReader.terms (1 samples, 0.19%)</title><rect x="1113.4" y="577" width="2.3" height="15.0" fill="rgb(234,195,1)" rx="2" ry="2" />
<text text-anchor="" x="1116.44" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.xcontent.json.JsonXContentParser.nextToken (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.xcontent.json.JsonXContentParser.nextToken (1 samples, 0.19%)</title><rect x="978.3" y="561" width="2.3" height="15.0" fill="rgb(239,132,17)" rx="2" ry="2" />
<text text-anchor="" x="981.32" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.checkpoint (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.checkpoint (2 samples, 0.38%)</title><rect x="536.9" y="577" width="4.6" height="15.0" fill="rgb(218,30,19)" rx="2" ry="2" />
<text text-anchor="" x="539.95" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force0 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force0 (1 samples, 0.19%)</title><rect x="976.1" y="497" width="2.2" height="15.0" fill="rgb(222,14,30)" rx="2" ry="2" />
<text text-anchor="" x="979.07" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (6 samples, 1.15%)</title><rect x="527.9" y="801" width="13.6" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="530.94" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)</title><rect x="692.3" y="161" width="2.3" height="15.0" fill="rgb(119,119,204)" rx="2" ry="2" />
<text text-anchor="" x="695.33" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (1 samples, 0.19%)</title><rect x="755.4" y="657" width="2.2" height="15.0" fill="rgb(224,156,41)" rx="2" ry="2" />
<text text-anchor="" x="758.38" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (2 samples, 0.38%)</title><rect x="624.8" y="785" width="4.5" height="15.0" fill="rgb(228,141,38)" rx="2" ry="2" />
<text text-anchor="" x="627.77" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService$4.doRun (10 samples, 1.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService$4.doRun (10 samples, 1.91%)</title><rect x="899.5" y="785" width="22.5" height="15.0" fill="rgb(205,174,36)" rx="2" ry="2" />
<text text-anchor="" x="902.50" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (1 samples, 0.19%)</title><rect x="750.9" y="769" width="2.2" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="753.88" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.TransportAction.doExecute (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.TransportAction.doExecute (1 samples, 0.19%)</title><rect x="415.3" y="321" width="2.3" height="15.0" fill="rgb(232,16,4)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.checkpoint (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.checkpoint (1 samples, 0.19%)</title><rect x="564.0" y="577" width="2.2" height="15.0" fill="rgb(218,30,19)" rx="2" ry="2" />
<text text-anchor="" x="566.97" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.search.query.QueryPhase.execute (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.search.query.QueryPhase.execute (1 samples, 0.19%)</title><rect x="1183.2" y="673" width="2.3" height="15.0" fill="rgb(245,154,29)" rx="2" ry="2" />
<text text-anchor="" x="1186.24" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.prepareCreateOnPrimary (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.prepareCreateOnPrimary (3 samples, 0.57%)</title><rect x="541.5" y="609" width="6.7" height="15.0" fill="rgb(226,28,48)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (5 samples, 0.95%)</title><rect x="516.7" y="785" width="11.2" height="15.0" fill="rgb(228,141,38)" rx="2" ry="2" />
<text text-anchor="" x="519.68" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (6 samples, 1.15%)</title><rect x="1005.3" y="689" width="13.6" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="1008.34" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force (1 samples, 0.19%)</title><rect x="854.5" y="545" width="2.2" height="15.0" fill="rgb(236,18,34)" rx="2" ry="2" />
<text text-anchor="" x="857.47" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (9 samples, 1.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (9 samples, 1.72%)</title><rect x="482.9" y="801" width="20.3" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="485.90" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.flush (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.flush (4 samples, 0.76%)</title><rect x="843.2" y="433" width="9.0" height="15.0" fill="rgb(248,139,20)" rx="2" ry="2" />
<text text-anchor="" x="846.21" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.finishStoredFields (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.finishStoredFields (1 samples, 0.19%)</title><rect x="883.7" y="465" width="2.3" height="15.0" fill="rgb(227,106,27)" rx="2" ry="2" />
<text text-anchor="" x="886.74" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.implCloseChannel (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.implCloseChannel (1 samples, 0.19%)</title><rect x="462.6" y="513" width="2.3" height="15.0" fill="rgb(217,13,26)" rx="2" ry="2" />
<text text-anchor="" x="465.63" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.netty.OpenChannelsHandler.handleUpstream (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.netty.OpenChannelsHandler.handleUpstream (1 samples, 0.19%)</title><rect x="415.3" y="625" width="2.3" height="15.0" fill="rgb(234,220,7)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnReplica (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnReplica (1 samples, 0.19%)</title><rect x="469.4" y="657" width="2.2" height="15.0" fill="rgb(233,15,33)" rx="2" ry="2" />
<text text-anchor="" x="472.39" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Translog.ensureSynced (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Translog.ensureSynced (5 samples, 0.95%)</title><rect x="516.7" y="625" width="11.2" height="15.0" fill="rgb(205,176,40)" rx="2" ry="2" />
<text text-anchor="" x="519.68" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.Engine$Create.execute (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.Engine$Create.execute (4 samples, 0.76%)</title><rect x="899.5" y="625" width="9.0" height="15.0" fill="rgb(236,194,14)" rx="2" ry="2" />
<text text-anchor="" x="902.50" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (1 samples, 0.19%)</title><rect x="627.0" y="593" width="2.3" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="630.02" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.FSDirectory$FSIndexOutput$1.write (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.FSDirectory$FSIndexOutput$1.write (5 samples, 0.95%)</title><rect x="714.8" y="289" width="11.3" height="15.0" fill="rgb(121,121,236)" rx="2" ry="2" />
<text text-anchor="" x="717.85" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.blocktree.SegmentTermsEnum.seekExact (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.blocktree.SegmentTermsEnum.seekExact (1 samples, 0.19%)</title><rect x="757.6" y="513" width="2.3" height="15.0" fill="rgb(246,206,36)" rx="2" ry="2" />
<text text-anchor="" x="760.63" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.Engine$Create.execute (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.Engine$Create.execute (1 samples, 0.19%)</title><rect x="994.1" y="625" width="2.2" height="15.0" fill="rgb(236,194,14)" rx="2" ry="2" />
<text text-anchor="" x="997.08" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.writeFromNativeBuffer (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.writeFromNativeBuffer (5 samples, 0.95%)</title><rect x="701.3" y="209" width="11.3" height="15.0" fill="rgb(81,81,230)" rx="2" ry="2" />
<text text-anchor="" x="704.34" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.indices.IndicesService.stats (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.indices.IndicesService.stats (5 samples, 0.95%)</title><rect x="1124.7" y="657" width="11.3" height="15.0" fill="rgb(247,73,29)" rx="2" ry="2" />
<text text-anchor="" x="1127.69" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force (6 samples, 1.15%)</title><rect x="676.6" y="545" width="13.5" height="15.0" fill="rgb(236,18,34)" rx="2" ry="2" />
<text text-anchor="" x="679.56" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.io.BufferedOutputStream.flushBuffer (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.io.BufferedOutputStream.flushBuffer (6 samples, 1.15%)</title><rect x="548.2" y="337" width="13.5" height="15.0" fill="rgb(238,120,29)" rx="2" ry="2" />
<text text-anchor="" x="551.21" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Checkpoint.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Checkpoint.write (1 samples, 0.19%)</title><rect x="645.0" y="545" width="2.3" height="15.0" fill="rgb(94,94,229)" rx="2" ry="2" />
<text text-anchor="" x="648.04" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.write (1 samples, 0.19%)</title><rect x="573.0" y="465" width="2.2" height="15.0" fill="rgb(103,103,204)" rx="2" ry="2" />
<text text-anchor="" x="575.98" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.util.internal.DeadLockProofWorker$1.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.util.internal.DeadLockProofWorker$1.run (1 samples, 0.19%)</title><rect x="1187.7" y="801" width="2.3" height="15.0" fill="rgb(237,224,40)" rx="2" ry="2" />
<text text-anchor="" x="1190.75" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (3 samples, 0.57%)</title><rect x="971.6" y="673" width="6.7" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="974.56" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.joda.time.format.InternalParserDateTimeParser.parseInto (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.joda.time.format.InternalParserDateTimeParser.parseInto (1 samples, 0.19%)</title><rect x="541.5" y="129" width="2.2" height="15.0" fill="rgb(242,16,2)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.startStoredFields (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.startStoredFields (6 samples, 1.15%)</title><rect x="953.5" y="497" width="13.6" height="15.0" fill="rgb(236,54,49)" rx="2" ry="2" />
<text text-anchor="" x="956.55" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (5 samples, 0.95%)</title><rect x="1142.7" y="801" width="11.3" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="1145.71" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.force (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.force (2 samples, 0.38%)</title><rect x="464.9" y="561" width="4.5" height="15.0" fill="rgb(236,11,41)" rx="2" ry="2" />
<text text-anchor="" x="467.89" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.create (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.create (1 samples, 0.19%)</title><rect x="606.8" y="593" width="2.2" height="15.0" fill="rgb(214,111,47)" rx="2" ry="2" />
<text text-anchor="" x="609.76" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.AbstractChannel.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.AbstractChannel.write (1 samples, 0.19%)</title><rect x="1108.9" y="465" width="2.3" height="15.0" fill="rgb(125,125,195)" rx="2" ry="2" />
<text text-anchor="" x="1111.93" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.NioWorker.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.NioWorker.run (1 samples, 0.19%)</title><rect x="419.8" y="769" width="2.3" height="15.0" fill="rgb(239,83,22)" rx="2" ry="2" />
<text text-anchor="" x="422.85" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.writeFromNativeBuffer (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.writeFromNativeBuffer (1 samples, 0.19%)</title><rect x="928.8" y="193" width="2.2" height="15.0" fill="rgb(81,81,230)" rx="2" ry="2" />
<text text-anchor="" x="931.78" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreate (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreate (3 samples, 0.57%)</title><rect x="926.5" y="577" width="6.8" height="15.0" fill="rgb(231,13,44)" rx="2" ry="2" />
<text text-anchor="" x="929.53" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.zip.CheckedOutputStream.write (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.zip.CheckedOutputStream.write (5 samples, 0.95%)</title><rect x="714.8" y="305" width="11.3" height="15.0" fill="rgb(106,106,204)" rx="2" ry="2" />
<text text-anchor="" x="717.85" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (8 samples, 1.53%)</title><rect x="570.7" y="657" width="18.0" height="15.0" fill="rgb(224,156,41)" rx="2" ry="2" />
<text text-anchor="" x="573.73" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.node.service.NodeService.stats (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.node.service.NodeService.stats (1 samples, 0.19%)</title><rect x="1113.4" y="673" width="2.3" height="15.0" fill="rgb(230,103,24)" rx="2" ry="2" />
<text text-anchor="" x="1116.44" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.single.shard.TransportSingleShardAction$ShardTransportHandler.messageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.single.shard.TransportSingleShardAction$ShardTransportHandler.messageReceived (1 samples, 0.19%)</title><rect x="1111.2" y="737" width="2.2" height="15.0" fill="rgb(215,95,42)" rx="2" ry="2" />
<text text-anchor="" x="1114.18" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.io.BufferedOutputStream.write (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.io.BufferedOutputStream.write (6 samples, 1.15%)</title><rect x="548.2" y="353" width="13.5" height="15.0" fill="rgb(95,95,199)" rx="2" ry="2" />
<text text-anchor="" x="551.21" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriter.updateDocument (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriter.updateDocument (5 samples, 0.95%)</title><rect x="843.2" y="513" width="11.3" height="15.0" fill="rgb(238,61,26)" rx="2" ry="2" />
<text text-anchor="" x="846.21" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.file.spi.FileSystemProvider.newOutputStream (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.file.spi.FileSystemProvider.newOutputStream (6 samples, 1.15%)</title><rect x="953.5" y="289" width="13.6" height="15.0" fill="rgb(234,56,10)" rx="2" ry="2" />
<text text-anchor="" x="956.55" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (6 samples, 1.15%)</title><rect x="1154.0" y="769" width="13.5" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="1156.97" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.Engine$Index.execute (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.Engine$Index.execute (1 samples, 0.19%)</title><rect x="458.1" y="625" width="2.3" height="15.0" fill="rgb(215,33,13)" rx="2" ry="2" />
<text text-anchor="" x="461.13" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (6 samples, 1.15%)</title><rect x="701.3" y="689" width="13.5" height="15.0" fill="rgb(218,222,0)" rx="2" ry="2" />
<text text-anchor="" x="704.34" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (2 samples, 0.38%)</title><rect x="757.6" y="689" width="4.5" height="15.0" fill="rgb(218,222,0)" rx="2" ry="2" />
<text text-anchor="" x="760.63" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.Channels.fireMessageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.Channels.fireMessageReceived (1 samples, 0.19%)</title><rect x="415.3" y="673" width="2.3" height="15.0" fill="rgb(237,176,18)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsWriter.addSortedNumericField (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.perfield.PerFieldDocValuesFormat$FieldsWriter.addSortedNumericField (1 samples, 0.19%)</title><rect x="455.9" y="705" width="2.2" height="15.0" fill="rgb(232,88,50)" rx="2" ry="2" />
<text text-anchor="" x="458.88" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.NIOFSDirectory$NIOFSIndexInput.readInternal (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.NIOFSDirectory$NIOFSIndexInput.readInternal (1 samples, 0.19%)</title><rect x="1183.2" y="321" width="2.3" height="15.0" fill="rgb(132,132,226)" rx="2" ry="2" />
<text text-anchor="" x="1186.24" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (5 samples, 0.95%)</title><rect x="994.1" y="705" width="11.2" height="15.0" fill="rgb(222,177,52)" rx="2" ry="2" />
<text text-anchor="" x="997.08" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriterPerThread.updateDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriterPerThread.updateDocument (1 samples, 0.19%)</title><rect x="692.3" y="497" width="2.3" height="15.0" fill="rgb(245,210,52)" rx="2" ry="2" />
<text text-anchor="" x="695.33" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.write (1 samples, 0.19%)</title><rect x="883.7" y="193" width="2.3" height="15.0" fill="rgb(103,103,204)" rx="2" ry="2" />
<text text-anchor="" x="886.74" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.NioWorker.run (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.NioWorker.run (5 samples, 0.95%)</title><rect x="444.6" y="769" width="11.3" height="15.0" fill="rgb(239,83,22)" rx="2" ry="2" />
<text text-anchor="" x="447.62" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.joda.time.format.DateTimeParserBucket.doParseMillis (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.joda.time.format.DateTimeParserBucket.doParseMillis (1 samples, 0.19%)</title><rect x="482.9" y="417" width="2.3" height="15.0" fill="rgb(212,202,35)" rx="2" ry="2" />
<text text-anchor="" x="485.90" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.io.UnixFileSystem.canonicalize0 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.io.UnixFileSystem.canonicalize0 (1 samples, 0.19%)</title><rect x="1124.7" y="241" width="2.2" height="15.0" fill="rgb(234,226,24)" rx="2" ry="2" />
<text text-anchor="" x="1127.69" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.blocktree.SegmentTermsEnum.seekExact (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.blocktree.SegmentTermsEnum.seekExact (1 samples, 0.19%)</title><rect x="868.0" y="497" width="2.2" height="15.0" fill="rgb(246,206,36)" rx="2" ry="2" />
<text text-anchor="" x="870.98" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.TreeMap.getFirstEntry (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.TreeMap.getFirstEntry (1 samples, 0.19%)</title><rect x="1120.2" y="545" width="2.2" height="15.0" fill="rgb(230,46,46)" rx="2" ry="2" />
<text text-anchor="" x="1123.19" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (6 samples, 1.15%)</title><rect x="1005.3" y="673" width="13.6" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="1008.34" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (5 samples, 0.95%)</title><rect x="458.1" y="705" width="11.3" height="15.0" fill="rgb(222,177,52)" rx="2" ry="2" />
<text text-anchor="" x="461.13" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.FSDirectory$FSIndexOutput$1.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.FSDirectory$FSIndexOutput$1.write (1 samples, 0.19%)</title><rect x="1181.0" y="353" width="2.2" height="15.0" fill="rgb(121,121,236)" rx="2" ry="2" />
<text text-anchor="" x="1183.99" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write0 (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write0 (5 samples, 0.95%)</title><rect x="701.3" y="177" width="11.3" height="15.0" fill="rgb(139,139,202)" rx="2" ry="2" />
<text text-anchor="" x="704.34" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.force (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.force (1 samples, 0.19%)</title><rect x="967.1" y="561" width="2.2" height="15.0" fill="rgb(236,11,41)" rx="2" ry="2" />
<text text-anchor="" x="970.06" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.io.BufferedOutputStream.flushBuffer (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.io.BufferedOutputStream.flushBuffer (1 samples, 0.19%)</title><rect x="926.5" y="321" width="2.3" height="15.0" fill="rgb(238,120,29)" rx="2" ry="2" />
<text text-anchor="" x="929.53" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force (10 samples, 1.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force (10 samples, 1.91%)</title><rect x="820.7" y="545" width="22.5" height="15.0" fill="rgb(236,18,34)" rx="2" ry="2" />
<text text-anchor="" x="823.69" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.processDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.processDocument (1 samples, 0.19%)</title><rect x="606.8" y="481" width="2.2" height="15.0" fill="rgb(220,78,24)" rx="2" ry="2" />
<text text-anchor="" x="609.76" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (1 samples, 0.19%)</title><rect x="1108.9" y="801" width="2.3" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="1111.93" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.http.netty.ESHttpResponseEncoder.encode (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.http.netty.ESHttpResponseEncoder.encode (1 samples, 0.19%)</title><rect x="1187.7" y="129" width="2.3" height="15.0" fill="rgb(218,142,47)" rx="2" ry="2" />
<text text-anchor="" x="1190.75" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (2 samples, 0.38%)</title><rect x="771.1" y="609" width="4.5" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="774.15" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.addDocument (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.addDocument (2 samples, 0.38%)</title><rect x="487.4" y="545" width="4.5" height="15.0" fill="rgb(227,61,0)" rx="2" ry="2" />
<text text-anchor="" x="490.40" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.stream.BytesStreamOutput.writeByte (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.stream.BytesStreamOutput.writeByte (1 samples, 0.19%)</title><rect x="1122.4" y="545" width="2.3" height="15.0" fill="rgb(114,114,201)" rx="2" ry="2" />
<text text-anchor="" x="1125.44" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (5 samples, 0.95%)</title><rect x="690.1" y="721" width="11.2" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="693.08" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.NioWorker.read (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.NioWorker.read (8 samples, 1.53%)</title><rect x="426.6" y="705" width="18.0" height="15.0" fill="rgb(134,134,192)" rx="2" ry="2" />
<text text-anchor="" x="429.60" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.zip.CheckedOutputStream.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.zip.CheckedOutputStream.write (1 samples, 0.19%)</title><rect x="892.7" y="321" width="2.3" height="15.0" fill="rgb(106,106,204)" rx="2" ry="2" />
<text text-anchor="" x="895.75" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write (5 samples, 0.95%)</title><rect x="471.6" y="497" width="11.3" height="15.0" fill="rgb(119,119,204)" rx="2" ry="2" />
<text text-anchor="" x="474.64" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.xcontent.json.JsonXContentParser.currentName (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.xcontent.json.JsonXContentParser.currentName (1 samples, 0.19%)</title><rect x="674.3" y="465" width="2.3" height="15.0" fill="rgb(207,31,9)" rx="2" ry="2" />
<text text-anchor="" x="677.31" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.write (1 samples, 0.19%)</title><rect x="692.3" y="193" width="2.3" height="15.0" fill="rgb(103,103,204)" rx="2" ry="2" />
<text text-anchor="" x="695.33" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write0 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write0 (1 samples, 0.19%)</title><rect x="755.4" y="417" width="2.2" height="15.0" fill="rgb(139,139,202)" rx="2" ry="2" />
<text text-anchor="" x="758.38" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force0 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force0 (1 samples, 0.19%)</title><rect x="897.3" y="497" width="2.2" height="15.0" fill="rgb(222,14,30)" rx="2" ry="2" />
<text text-anchor="" x="900.25" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (11 samples, 2.10%)</title><rect x="818.4" y="609" width="24.8" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="821.44" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.DefaultChannelPipeline.sendUpstream (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.DefaultChannelPipeline.sendUpstream (8 samples, 1.53%)</title><rect x="426.6" y="481" width="18.0" height="15.0" fill="rgb(224,124,32)" rx="2" ry="2" />
<text text-anchor="" x="429.60" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.refresh (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.refresh (1 samples, 0.19%)</title><rect x="1181.0" y="785" width="2.2" height="15.0" fill="rgb(210,142,51)" rx="2" ry="2" />
<text text-anchor="" x="1183.99" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService$4.doRun (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService$4.doRun (6 samples, 1.15%)</title><rect x="843.2" y="785" width="13.5" height="15.0" fill="rgb(205,174,36)" rx="2" ry="2" />
<text text-anchor="" x="846.21" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][[http_server_worker.default]][T#28]{New I/O worker #93} (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][[http_server_worker.default]][T#28]{New I/O worker #93} (1 samples, 0.19%)</title><rect x="419.8" y="865" width="2.3" height="15.0" fill="rgb(222,138,1)" rx="2" ry="2" />
<text text-anchor="" x="422.85" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.SimpleChannelUpstreamHandler.handleUpstream (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.SimpleChannelUpstreamHandler.handleUpstream (1 samples, 0.19%)</title><rect x="415.3" y="577" width="2.3" height="15.0" fill="rgb(229,89,18)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (5 samples, 0.95%)</title><rect x="595.5" y="657" width="11.3" height="15.0" fill="rgb(224,156,41)" rx="2" ry="2" />
<text text-anchor="" x="598.50" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain$PerField.invert (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain$PerField.invert (1 samples, 0.19%)</title><rect x="631.5" y="449" width="2.3" height="15.0" fill="rgb(243,141,2)" rx="2" ry="2" />
<text text-anchor="" x="634.53" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (2 samples, 0.38%)</title><rect x="922.0" y="609" width="4.5" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="925.02" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.Channels.writeToChannel (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.Channels.writeToChannel (1 samples, 0.19%)</title><rect x="694.6" y="561" width="2.2" height="15.0" fill="rgb(134,134,237)" rx="2" ry="2" />
<text text-anchor="" x="697.58" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportRequestHandler.messageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportRequestHandler.messageReceived (1 samples, 0.19%)</title><rect x="1185.5" y="753" width="2.2" height="15.0" fill="rgb(243,108,4)" rx="2" ry="2" />
<text text-anchor="" x="1188.50" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (3 samples, 0.57%)</title><rect x="694.6" y="657" width="6.7" height="15.0" fill="rgb(224,156,41)" rx="2" ry="2" />
<text text-anchor="" x="697.58" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.write (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.write (4 samples, 0.76%)</title><rect x="996.3" y="545" width="9.0" height="15.0" fill="rgb(121,121,206)" rx="2" ry="2" />
<text text-anchor="" x="999.34" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService$4.doRun (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService$4.doRun (2 samples, 0.38%)</title><rect x="753.1" y="785" width="4.5" height="15.0" fill="rgb(205,174,36)" rx="2" ry="2" />
<text text-anchor="" x="756.13" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (1 samples, 0.19%)</title><rect x="863.5" y="593" width="2.2" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="866.47" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (3 samples, 0.57%)</title><rect x="856.7" y="753" width="6.8" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="859.72" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReroutePhase.performAction (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReroutePhase.performAction (1 samples, 0.19%)</title><rect x="417.6" y="289" width="2.2" height="15.0" fill="rgb(219,179,11)" rx="2" ry="2" />
<text text-anchor="" x="420.60" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction.doExecute (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction.doExecute (1 samples, 0.19%)</title><rect x="417.6" y="353" width="2.2" height="15.0" fill="rgb(218,79,10)" rx="2" ry="2" />
<text text-anchor="" x="420.60" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.checkpoint (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.checkpoint (1 samples, 0.19%)</title><rect x="755.4" y="577" width="2.2" height="15.0" fill="rgb(218,30,19)" rx="2" ry="2" />
<text text-anchor="" x="758.38" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.stream.StreamInput.readVInt (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.stream.StreamInput.readVInt (1 samples, 0.19%)</title><rect x="426.6" y="401" width="2.3" height="15.0" fill="rgb(111,111,205)" rx="2" ry="2" />
<text text-anchor="" x="429.60" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (8 samples, 1.53%)</title><rect x="647.3" y="753" width="18.0" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="650.29" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreate (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreate (6 samples, 1.15%)</title><rect x="714.8" y="577" width="13.6" height="15.0" fill="rgb(231,13,44)" rx="2" ry="2" />
<text text-anchor="" x="717.85" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][bulk][T#9] (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][bulk][T#9] (6 samples, 1.15%)</title><rect x="1005.3" y="865" width="13.6" height="15.0" fill="rgb(211,140,51)" rx="2" ry="2" />
<text text-anchor="" x="1008.34" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.finishDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.finishDocument (1 samples, 0.19%)</title><rect x="892.7" y="465" width="2.3" height="15.0" fill="rgb(221,219,23)" rx="2" ry="2" />
<text text-anchor="" x="895.75" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor.runWorker (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.runWorker (1 samples, 0.19%)</title><rect x="422.1" y="817" width="2.3" height="15.0" fill="rgb(253,116,23)" rx="2" ry="2" />
<text text-anchor="" x="425.10" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.Versions.loadVersion (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.Versions.loadVersion (1 samples, 0.19%)</title><rect x="726.1" y="545" width="2.3" height="15.0" fill="rgb(228,65,45)" rx="2" ry="2" />
<text text-anchor="" x="729.11" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (2 samples, 0.38%)</title><rect x="512.2" y="721" width="4.5" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="515.18" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.util.ThreadRenamingRunnable.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.util.ThreadRenamingRunnable.run (1 samples, 0.19%)</title><rect x="415.3" y="785" width="2.3" height="15.0" fill="rgb(247,53,7)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain$PerField.invert (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain$PerField.invert (1 samples, 0.19%)</title><rect x="777.9" y="449" width="2.3" height="15.0" fill="rgb(243,141,2)" rx="2" ry="2" />
<text text-anchor="" x="780.90" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (22 samples, 4.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (22 samples, 4.20%)</title><rect x="1018.9" y="801" width="49.5" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="1021.85" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org...</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.SingleObjectCache.getOrRefresh (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.SingleObjectCache.getOrRefresh (6 samples, 1.15%)</title><rect x="1154.0" y="593" width="13.5" height="15.0" fill="rgb(238,205,14)" rx="2" ry="2" />
<text text-anchor="" x="1156.97" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.stream.FilterStreamInput.readBytes (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.stream.FilterStreamInput.readBytes (5 samples, 0.95%)</title><rect x="444.6" y="369" width="11.3" height="15.0" fill="rgb(131,131,210)" rx="2" ry="2" />
<text text-anchor="" x="447.62" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)</title><rect x="696.8" y="481" width="2.3" height="15.0" fill="rgb(121,121,206)" rx="2" ry="2" />
<text text-anchor="" x="699.83" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (4 samples, 0.76%)</title><rect x="1009.8" y="593" width="9.1" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="1012.85" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.DefaultChannelPipeline$DefaultChannelHandlerContext.sendUpstream (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.DefaultChannelPipeline$DefaultChannelHandlerContext.sendUpstream (5 samples, 0.95%)</title><rect x="444.6" y="497" width="11.3" height="15.0" fill="rgb(217,60,45)" rx="2" ry="2" />
<text text-anchor="" x="447.62" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.force (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.force (1 samples, 0.19%)</title><rect x="759.9" y="561" width="2.2" height="15.0" fill="rgb(236,11,41)" rx="2" ry="2" />
<text text-anchor="" x="762.89" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.CompressionMode$LZ4FastCompressor.compress (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.CompressionMode$LZ4FastCompressor.compress (1 samples, 0.19%)</title><rect x="892.7" y="433" width="2.3" height="15.0" fill="rgb(229,154,40)" rx="2" ry="2" />
<text text-anchor="" x="895.75" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force (1 samples, 0.19%)</title><rect x="897.3" y="513" width="2.2" height="15.0" fill="rgb(236,18,34)" rx="2" ry="2" />
<text text-anchor="" x="900.25" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (5 samples, 0.95%)</title><rect x="872.5" y="657" width="11.2" height="15.0" fill="rgb(224,156,41)" rx="2" ry="2" />
<text text-anchor="" x="875.48" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor.runWorker (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.runWorker (11 samples, 2.10%)</title><rect x="566.2" y="817" width="24.8" height="15.0" fill="rgb(253,116,23)" rx="2" ry="2" />
<text text-anchor="" x="569.22" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (3 samples, 0.57%)</title><rect x="926.5" y="657" width="6.8" height="15.0" fill="rgb(227,28,49)" rx="2" ry="2" />
<text text-anchor="" x="929.53" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (10 samples, 1.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (10 samples, 1.91%)</title><rect x="566.2" y="689" width="22.5" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="569.22" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (8 samples, 1.53%)</title><rect x="482.9" y="705" width="18.0" height="15.0" fill="rgb(222,177,52)" rx="2" ry="2" />
<text text-anchor="" x="485.90" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.TransportAction.execute (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.TransportAction.execute (1 samples, 0.19%)</title><rect x="415.3" y="337" width="2.3" height="15.0" fill="rgb(251,159,20)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (6 samples, 1.15%)</title><rect x="469.4" y="753" width="13.5" height="15.0" fill="rgb(247,84,19)" rx="2" ry="2" />
<text text-anchor="" x="472.39" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.updateDocument (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.updateDocument (5 samples, 0.95%)</title><rect x="843.2" y="529" width="11.3" height="15.0" fill="rgb(233,96,34)" rx="2" ry="2" />
<text text-anchor="" x="846.21" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.stream.StreamOutput.writeVLong (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.stream.StreamOutput.writeVLong (1 samples, 0.19%)</title><rect x="1122.4" y="561" width="2.3" height="15.0" fill="rgb(100,100,237)" rx="2" ry="2" />
<text text-anchor="" x="1125.44" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor$Worker.run (13 samples, 2.48%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor$Worker.run (13 samples, 2.48%)</title><rect x="813.9" y="833" width="29.3" height="15.0" fill="rgb(241,183,32)" rx="2" ry="2" />
<text text-anchor="" x="816.93" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ja..</text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.writeFromNativeBuffer (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.writeFromNativeBuffer (1 samples, 0.19%)</title><rect x="460.4" y="513" width="2.2" height="15.0" fill="rgb(81,81,230)" rx="2" ry="2" />
<text text-anchor="" x="463.38" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreate (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreate (4 samples, 0.76%)</title><rect x="883.7" y="577" width="9.0" height="15.0" fill="rgb(231,13,44)" rx="2" ry="2" />
<text text-anchor="" x="886.74" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor$Worker.run (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor$Worker.run (8 samples, 1.53%)</title><rect x="1124.7" y="833" width="18.0" height="15.0" fill="rgb(241,183,32)" rx="2" ry="2" />
<text text-anchor="" x="1127.69" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.ByteSequenceOutputs.read (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.ByteSequenceOutputs.read (1 samples, 0.19%)</title><rect x="746.4" y="401" width="2.2" height="15.0" fill="rgb(107,107,208)" rx="2" ry="2" />
<text text-anchor="" x="749.37" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (8 samples, 1.53%)</title><rect x="606.8" y="753" width="18.0" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="609.76" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (1 samples, 0.19%)</title><rect x="588.7" y="657" width="2.3" height="15.0" fill="rgb(224,156,41)" rx="2" ry="2" />
<text text-anchor="" x="591.74" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.flush (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.flush (1 samples, 0.19%)</title><rect x="622.5" y="529" width="2.3" height="15.0" fill="rgb(228,191,52)" rx="2" ry="2" />
<text text-anchor="" x="625.52" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.xcontent.json.JsonXContentParser.nextToken (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.xcontent.json.JsonXContentParser.nextToken (1 samples, 0.19%)</title><rect x="469.4" y="561" width="2.2" height="15.0" fill="rgb(239,132,17)" rx="2" ry="2" />
<text text-anchor="" x="472.39" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.NioWorker.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.NioWorker.run (1 samples, 0.19%)</title><rect x="1187.7" y="769" width="2.3" height="15.0" fill="rgb(239,83,22)" rx="2" ry="2" />
<text text-anchor="" x="1190.75" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.io.BufferedInputStream.read (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.io.BufferedInputStream.read (5 samples, 0.95%)</title><rect x="444.6" y="321" width="11.3" height="15.0" fill="rgb(97,97,238)" rx="2" ry="2" />
<text text-anchor="" x="447.62" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.prepareCreateOnReplica (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.prepareCreateOnReplica (1 samples, 0.19%)</title><rect x="978.3" y="641" width="2.3" height="15.0" fill="rgb(209,213,18)" rx="2" ry="2" />
<text text-anchor="" x="981.32" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.TreeMap.get (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.TreeMap.get (1 samples, 0.19%)</title><rect x="1145.0" y="561" width="2.2" height="15.0" fill="rgb(220,1,51)" rx="2" ry="2" />
<text text-anchor="" x="1147.96" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels.writeFully (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels.writeFully (1 samples, 0.19%)</title><rect x="928.8" y="257" width="2.2" height="15.0" fill="rgb(137,137,198)" rx="2" ry="2" />
<text text-anchor="" x="931.78" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.writeCheckpoint (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.writeCheckpoint (1 samples, 0.19%)</title><rect x="991.8" y="561" width="2.3" height="15.0" fill="rgb(132,132,209)" rx="2" ry="2" />
<text text-anchor="" x="994.83" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.checkpoint (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.checkpoint (2 samples, 0.38%)</title><rect x="696.8" y="577" width="4.5" height="15.0" fill="rgb(218,30,19)" rx="2" ry="2" />
<text text-anchor="" x="699.83" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.CodecReader.ramBytesUsed (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.CodecReader.ramBytesUsed (1 samples, 0.19%)</title><rect x="1136.0" y="625" width="2.2" height="15.0" fill="rgb(226,165,47)" rx="2" ry="2" />
<text text-anchor="" x="1138.95" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.Engine$Create.execute (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.Engine$Create.execute (6 samples, 1.15%)</title><rect x="548.2" y="625" width="13.5" height="15.0" fill="rgb(236,194,14)" rx="2" ry="2" />
<text text-anchor="" x="551.21" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Thread.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Thread.run (1 samples, 0.19%)</title><rect x="415.3" y="849" width="2.3" height="15.0" fill="rgb(251,44,12)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (2 samples, 0.38%)</title><rect x="809.4" y="737" width="4.5" height="15.0" fill="rgb(247,84,19)" rx="2" ry="2" />
<text text-anchor="" x="812.43" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (1 samples, 0.19%)</title><rect x="798.2" y="753" width="2.2" height="15.0" fill="rgb(247,84,19)" rx="2" ry="2" />
<text text-anchor="" x="801.17" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.joda.time.format.DateTimeFormatterBuilder$MatchingParser.parseInto (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.joda.time.format.DateTimeFormatterBuilder$MatchingParser.parseInto (1 samples, 0.19%)</title><rect x="541.5" y="241" width="2.2" height="15.0" fill="rgb(217,47,52)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.PerThreadIDAndVersionLookup.lookup (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.PerThreadIDAndVersionLookup.lookup (2 samples, 0.38%)</title><rect x="888.2" y="513" width="4.5" height="15.0" fill="rgb(237,190,48)" rx="2" ry="2" />
<text text-anchor="" x="891.24" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentParser.parseObject (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentParser.parseObject (1 samples, 0.19%)</title><rect x="674.3" y="529" width="2.3" height="15.0" fill="rgb(238,220,50)" rx="2" ry="2" />
<text text-anchor="" x="677.31" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnReplica (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnReplica (1 samples, 0.19%)</title><rect x="978.3" y="657" width="2.3" height="15.0" fill="rgb(233,15,33)" rx="2" ry="2" />
<text text-anchor="" x="981.32" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.checkpoint (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.checkpoint (1 samples, 0.19%)</title><rect x="627.0" y="577" width="2.3" height="15.0" fill="rgb(218,30,19)" rx="2" ry="2" />
<text text-anchor="" x="630.02" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.TreeMap.getEntry (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.TreeMap.getEntry (1 samples, 0.19%)</title><rect x="1172.0" y="577" width="2.2" height="15.0" fill="rgb(244,50,43)" rx="2" ry="2" />
<text text-anchor="" x="1174.98" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels.access$000 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels.access$000 (1 samples, 0.19%)</title><rect x="692.3" y="257" width="2.3" height="15.0" fill="rgb(232,51,49)" rx="2" ry="2" />
<text text-anchor="" x="695.33" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write0 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write0 (1 samples, 0.19%)</title><rect x="712.6" y="481" width="2.2" height="15.0" fill="rgb(139,139,202)" rx="2" ry="2" />
<text text-anchor="" x="715.60" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService$4.doRun (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService$4.doRun (4 samples, 0.76%)</title><rect x="503.2" y="785" width="9.0" height="15.0" fill="rgb(205,174,36)" rx="2" ry="2" />
<text text-anchor="" x="506.17" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.StandardDirectoryReader.doOpenIfChanged (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.StandardDirectoryReader.doOpenIfChanged (1 samples, 0.19%)</title><rect x="1181.0" y="657" width="2.2" height="15.0" fill="rgb(244,110,34)" rx="2" ry="2" />
<text text-anchor="" x="1183.99" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.FileChannel.open (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.FileChannel.open (1 samples, 0.19%)</title><rect x="818.4" y="529" width="2.3" height="15.0" fill="rgb(226,137,3)" rx="2" ry="2" />
<text text-anchor="" x="821.44" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (2 samples, 0.38%)</title><rect x="809.4" y="609" width="4.5" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="812.43" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Thread.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Thread.run (1 samples, 0.19%)</title><rect x="419.8" y="849" width="2.3" height="15.0" fill="rgb(251,44,12)" rx="2" ry="2" />
<text text-anchor="" x="422.85" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.create (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.create (2 samples, 0.38%)</title><rect x="971.6" y="593" width="4.5" height="15.0" fill="rgb(214,111,47)" rx="2" ry="2" />
<text text-anchor="" x="974.56" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][bulk][T#29] (13 samples, 2.48%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][bulk][T#29] (13 samples, 2.48%)</title><rect x="813.9" y="865" width="29.3" height="15.0" fill="rgb(253,19,27)" rx="2" ry="2" />
<text text-anchor="" x="816.93" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >el..</text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsReader.terms (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsReader.terms (1 samples, 0.19%)</title><rect x="1138.2" y="609" width="2.3" height="15.0" fill="rgb(205,192,34)" rx="2" ry="2" />
<text text-anchor="" x="1141.21" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.processField (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.processField (1 samples, 0.19%)</title><rect x="813.9" y="465" width="2.3" height="15.0" fill="rgb(220,68,13)" rx="2" ry="2" />
<text text-anchor="" x="816.93" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (7 samples, 1.34%)</title><rect x="674.3" y="769" width="15.8" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="677.31" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.joda.time.format.DateTimeFormatterBuilder$MatchingParser.parseInto (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.joda.time.format.DateTimeFormatterBuilder$MatchingParser.parseInto (1 samples, 0.19%)</title><rect x="541.5" y="81" width="2.2" height="15.0" fill="rgb(217,47,52)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor$Worker.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor$Worker.run (1 samples, 0.19%)</title><rect x="1111.2" y="833" width="2.2" height="15.0" fill="rgb(241,183,32)" rx="2" ry="2" />
<text text-anchor="" x="1114.18" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (6 samples, 1.15%)</title><rect x="1005.3" y="721" width="13.6" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="1008.34" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.writeFromNativeBuffer (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.writeFromNativeBuffer (1 samples, 0.19%)</title><rect x="892.7" y="193" width="2.3" height="15.0" fill="rgb(81,81,230)" rx="2" ry="2" />
<text text-anchor="" x="895.75" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.fs.UnixDirectoryStream$UnixDirectoryIterator.hasNext (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.fs.UnixDirectoryStream$UnixDirectoryIterator.hasNext (4 samples, 0.76%)</title><rect x="1126.9" y="449" width="9.1" height="15.0" fill="rgb(212,129,45)" rx="2" ry="2" />
<text text-anchor="" x="1129.95" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (3 samples, 0.57%)</title><rect x="865.7" y="673" width="6.8" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="868.73" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.flush (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.flush (1 samples, 0.19%)</title><rect x="1181.0" y="545" width="2.2" height="15.0" fill="rgb(225,183,45)" rx="2" ry="2" />
<text text-anchor="" x="1183.99" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force0 (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force0 (6 samples, 1.15%)</title><rect x="676.6" y="529" width="13.5" height="15.0" fill="rgb(222,14,30)" rx="2" ry="2" />
<text text-anchor="" x="679.56" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (3 samples, 0.57%)</title><rect x="775.6" y="657" width="6.8" height="15.0" fill="rgb(227,28,49)" rx="2" ry="2" />
<text text-anchor="" x="778.65" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force (1 samples, 0.19%)</title><rect x="967.1" y="545" width="2.2" height="15.0" fill="rgb(236,18,34)" rx="2" ry="2" />
<text text-anchor="" x="970.06" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (10 samples, 1.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (10 samples, 1.91%)</title><rect x="775.6" y="737" width="22.6" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="778.65" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (2 samples, 0.38%)</title><rect x="640.5" y="689" width="4.5" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="643.53" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentParser.parseObjectOrField (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentParser.parseObjectOrField (2 samples, 0.38%)</title><rect x="541.5" y="513" width="4.5" height="15.0" fill="rgb(205,194,30)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.processDocument (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.processDocument (5 samples, 0.95%)</title><rect x="714.8" y="481" width="11.3" height="15.0" fill="rgb(220,78,24)" rx="2" ry="2" />
<text text-anchor="" x="717.85" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.create (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.create (3 samples, 0.57%)</title><rect x="530.2" y="609" width="6.7" height="15.0" fill="rgb(206,208,36)" rx="2" ry="2" />
<text text-anchor="" x="533.19" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentParser.parseDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentParser.parseDocument (1 samples, 0.19%)</title><rect x="1005.3" y="561" width="2.3" height="15.0" fill="rgb(209,14,21)" rx="2" ry="2" />
<text text-anchor="" x="1008.34" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.write (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.write (3 samples, 0.57%)</title><rect x="845.5" y="209" width="6.7" height="15.0" fill="rgb(103,103,204)" rx="2" ry="2" />
<text text-anchor="" x="848.46" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (6 samples, 1.15%)</title><rect x="676.6" y="609" width="13.5" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="679.56" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Thread.run (12 samples, 2.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Thread.run (12 samples, 2.29%)</title><rect x="899.5" y="849" width="27.0" height="15.0" fill="rgb(251,44,12)" rx="2" ry="2" />
<text text-anchor="" x="902.50" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.store.Store$StoreStatsCache.refresh (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.store.Store$StoreStatsCache.refresh (5 samples, 0.95%)</title><rect x="1124.7" y="577" width="11.3" height="15.0" fill="rgb(242,91,19)" rx="2" ry="2" />
<text text-anchor="" x="1127.69" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriter.doFlush (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriter.doFlush (1 samples, 0.19%)</title><rect x="1181.0" y="577" width="2.2" height="15.0" fill="rgb(212,69,9)" rx="2" ry="2" />
<text text-anchor="" x="1183.99" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.Versions.loadDocIdAndVersion (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.Versions.loadDocIdAndVersion (1 samples, 0.19%)</title><rect x="746.4" y="529" width="2.2" height="15.0" fill="rgb(241,106,30)" rx="2" ry="2" />
<text text-anchor="" x="749.37" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (1 samples, 0.19%)</title><rect x="755.4" y="641" width="2.2" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="758.38" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.create (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.create (1 samples, 0.19%)</title><rect x="989.6" y="609" width="2.2" height="15.0" fill="rgb(214,111,47)" rx="2" ry="2" />
<text text-anchor="" x="992.58" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][bulk][T#21] (10 samples, 1.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][bulk][T#21] (10 samples, 1.91%)</title><rect x="667.6" y="865" width="22.5" height="15.0" fill="rgb(251,143,24)" rx="2" ry="2" />
<text text-anchor="" x="670.56" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels.access$000 (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels.access$000 (6 samples, 1.15%)</title><rect x="609.0" y="289" width="13.5" height="15.0" fill="rgb(232,51,49)" rx="2" ry="2" />
<text text-anchor="" x="612.01" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (6 samples, 1.15%)</title><rect x="469.4" y="785" width="13.5" height="15.0" fill="rgb(228,141,38)" rx="2" ry="2" />
<text text-anchor="" x="472.39" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.write (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.write (5 samples, 0.95%)</title><rect x="872.5" y="545" width="11.2" height="15.0" fill="rgb(121,121,206)" rx="2" ry="2" />
<text text-anchor="" x="875.48" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.create (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.create (2 samples, 0.38%)</title><rect x="640.5" y="593" width="4.5" height="15.0" fill="rgb(214,111,47)" rx="2" ry="2" />
<text text-anchor="" x="643.53" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.addDocument (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.addDocument (5 samples, 0.95%)</title><rect x="701.3" y="561" width="11.3" height="15.0" fill="rgb(227,61,0)" rx="2" ry="2" />
<text text-anchor="" x="704.34" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor.runWorker (9 samples, 1.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.runWorker (9 samples, 1.72%)</title><rect x="482.9" y="817" width="20.3" height="15.0" fill="rgb(253,116,23)" rx="2" ry="2" />
<text text-anchor="" x="485.90" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (1 samples, 0.19%)</title><rect x="638.3" y="721" width="2.2" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="641.28" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.writeCheckpoint (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.writeCheckpoint (1 samples, 0.19%)</title><rect x="564.0" y="561" width="2.2" height="15.0" fill="rgb(132,132,209)" rx="2" ry="2" />
<text text-anchor="" x="566.97" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (3 samples, 0.57%)</title><rect x="865.7" y="769" width="6.8" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="868.73" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.updateDocument (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.updateDocument (5 samples, 0.95%)</title><rect x="714.8" y="529" width="11.3" height="15.0" fill="rgb(233,96,34)" rx="2" ry="2" />
<text text-anchor="" x="717.85" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.doRun (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.doRun (1 samples, 0.19%)</title><rect x="750.9" y="705" width="2.2" height="15.0" fill="rgb(232,57,0)" rx="2" ry="2" />
<text text-anchor="" x="753.88" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.FSDirectory$FSIndexOutput$1.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.FSDirectory$FSIndexOutput$1.write (1 samples, 0.19%)</title><rect x="928.8" y="305" width="2.2" height="15.0" fill="rgb(121,121,236)" rx="2" ry="2" />
<text text-anchor="" x="931.78" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.completionStats (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.completionStats (1 samples, 0.19%)</title><rect x="1138.2" y="641" width="2.3" height="15.0" fill="rgb(216,18,14)" rx="2" ry="2" />
<text text-anchor="" x="1141.21" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.fs.LinuxFileSystemProvider.readAttributes (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.fs.LinuxFileSystemProvider.readAttributes (1 samples, 0.19%)</title><rect x="1154.0" y="433" width="2.2" height="15.0" fill="rgb(134,134,233)" rx="2" ry="2" />
<text text-anchor="" x="1156.97" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentMapper.parse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentMapper.parse (1 samples, 0.19%)</title><rect x="674.3" y="609" width="2.3" height="15.0" fill="rgb(239,142,49)" rx="2" ry="2" />
<text text-anchor="" x="677.31" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write0 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write0 (1 samples, 0.19%)</title><rect x="588.7" y="481" width="2.3" height="15.0" fill="rgb(139,139,202)" rx="2" ry="2" />
<text text-anchor="" x="591.74" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.FSDirectory.createOutput (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.FSDirectory.createOutput (6 samples, 1.15%)</title><rect x="953.5" y="337" width="13.6" height="15.0" fill="rgb(247,213,54)" rx="2" ry="2" />
<text text-anchor="" x="956.55" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.fasterxml.jackson.core.json.UTF8StreamJsonParser._parseName (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.fasterxml.jackson.core.json.UTF8StreamJsonParser._parseName (1 samples, 0.19%)</title><rect x="690.1" y="497" width="2.2" height="15.0" fill="rgb(221,10,24)" rx="2" ry="2" />
<text text-anchor="" x="693.08" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Thread.run (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Thread.run (11 samples, 2.10%)</title><rect x="775.6" y="849" width="24.8" height="15.0" fill="rgb(251,44,12)" rx="2" ry="2" />
<text text-anchor="" x="778.65" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.AbstractNioWorker.run (9 samples, 1.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.AbstractNioWorker.run (9 samples, 1.72%)</title><rect x="424.4" y="753" width="20.2" height="15.0" fill="rgb(231,103,19)" rx="2" ry="2" />
<text text-anchor="" x="427.35" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (6 samples, 1.15%)</title><rect x="800.4" y="801" width="13.5" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="803.42" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (7 samples, 1.34%)</title><rect x="591.0" y="721" width="15.8" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="593.99" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriter.updateDocument (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriter.updateDocument (5 samples, 0.95%)</title><rect x="714.8" y="513" width="11.3" height="15.0" fill="rgb(238,61,26)" rx="2" ry="2" />
<text text-anchor="" x="717.85" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.Versions.loadVersion (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.Versions.loadVersion (1 samples, 0.19%)</title><rect x="906.3" y="545" width="2.2" height="15.0" fill="rgb(228,65,45)" rx="2" ry="2" />
<text text-anchor="" x="909.26" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (4 samples, 0.76%)</title><rect x="491.9" y="657" width="9.0" height="15.0" fill="rgb(224,156,41)" rx="2" ry="2" />
<text text-anchor="" x="494.91" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.IOUtils.fsync (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.IOUtils.fsync (5 samples, 0.95%)</title><rect x="1021.1" y="625" width="11.3" height="15.0" fill="rgb(239,114,45)" rx="2" ry="2" />
<text text-anchor="" x="1024.11" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][bulk][T#8] (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][bulk][T#8] (5 samples, 0.95%)</title><rect x="994.1" y="865" width="11.2" height="15.0" fill="rgb(225,115,48)" rx="2" ry="2" />
<text text-anchor="" x="997.08" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.FSDirectory.listAll (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.FSDirectory.listAll (1 samples, 0.19%)</title><rect x="1178.7" y="497" width="2.3" height="15.0" fill="rgb(242,135,31)" rx="2" ry="2" />
<text text-anchor="" x="1181.74" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (6 samples, 1.15%)</title><rect x="714.8" y="689" width="13.6" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="717.85" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.search.suggest.completion.Completion090PostingsFormat.completionStats (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.search.suggest.completion.Completion090PostingsFormat.completionStats (1 samples, 0.19%)</title><rect x="1115.7" y="625" width="2.2" height="15.0" fill="rgb(225,40,28)" rx="2" ry="2" />
<text text-anchor="" x="1118.69" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.close (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.close (1 samples, 0.19%)</title><rect x="462.6" y="497" width="2.3" height="15.0" fill="rgb(207,91,17)" rx="2" ry="2" />
<text text-anchor="" x="465.63" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.checkpoint (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.checkpoint (1 samples, 0.19%)</title><rect x="967.1" y="577" width="2.2" height="15.0" fill="rgb(218,30,19)" rx="2" ry="2" />
<text text-anchor="" x="970.06" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (2 samples, 0.38%)</title><rect x="809.4" y="753" width="4.5" height="15.0" fill="rgb(247,84,19)" rx="2" ry="2" />
<text text-anchor="" x="812.43" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor$Worker.run (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor$Worker.run (5 samples, 0.95%)</title><rect x="994.1" y="833" width="11.2" height="15.0" fill="rgb(241,183,32)" rx="2" ry="2" />
<text text-anchor="" x="997.08" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.processDocument (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.processDocument (2 samples, 0.38%)</title><rect x="487.4" y="481" width="4.5" height="15.0" fill="rgb(220,78,24)" rx="2" ry="2" />
<text text-anchor="" x="490.40" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService$4.doRun (10 samples, 1.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService$4.doRun (10 samples, 1.91%)</title><rect x="566.2" y="785" width="22.5" height="15.0" fill="rgb(205,174,36)" rx="2" ry="2" />
<text text-anchor="" x="569.22" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriterStallControl.updateStalled (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriterStallControl.updateStalled (2 samples, 0.38%)</title><rect x="800.4" y="465" width="4.5" height="15.0" fill="rgb(243,96,40)" rx="2" ry="2" />
<text text-anchor="" x="803.42" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.segmentStats (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.segmentStats (2 samples, 0.38%)</title><rect x="1174.2" y="641" width="4.5" height="15.0" fill="rgb(223,160,15)" rx="2" ry="2" />
<text text-anchor="" x="1177.24" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.Versions.loadVersion (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.Versions.loadVersion (1 samples, 0.19%)</title><rect x="816.2" y="545" width="2.2" height="15.0" fill="rgb(228,65,45)" rx="2" ry="2" />
<text text-anchor="" x="819.18" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (3 samples, 0.57%)</title><rect x="926.5" y="561" width="6.8" height="15.0" fill="rgb(220,105,49)" rx="2" ry="2" />
<text text-anchor="" x="929.53" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.NioWorker.read (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.NioWorker.read (1 samples, 0.19%)</title><rect x="417.6" y="705" width="2.2" height="15.0" fill="rgb(134,134,192)" rx="2" ry="2" />
<text text-anchor="" x="420.60" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentParser.parseObjectOrField (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentParser.parseObjectOrField (1 samples, 0.19%)</title><rect x="1005.3" y="513" width="2.3" height="15.0" fill="rgb(205,194,30)" rx="2" ry="2" />
<text text-anchor="" x="1008.34" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.store.Store$StoreStatsCache.estimateSize (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.store.Store$StoreStatsCache.estimateSize (6 samples, 1.15%)</title><rect x="1154.0" y="545" width="13.5" height="15.0" fill="rgb(224,134,41)" rx="2" ry="2" />
<text text-anchor="" x="1156.97" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (5 samples, 0.95%)</title><rect x="872.5" y="737" width="11.2" height="15.0" fill="rgb(247,84,19)" rx="2" ry="2" />
<text text-anchor="" x="875.48" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.write (1 samples, 0.19%)</title><rect x="712.6" y="529" width="2.2" height="15.0" fill="rgb(103,103,204)" rx="2" ry="2" />
<text text-anchor="" x="715.60" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (5 samples, 0.95%)</title><rect x="872.5" y="753" width="11.2" height="15.0" fill="rgb(247,84,19)" rx="2" ry="2" />
<text text-anchor="" x="875.48" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.NioServerSocketPipelineSink.eventSunk (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.NioServerSocketPipelineSink.eventSunk (1 samples, 0.19%)</title><rect x="1185.5" y="577" width="2.2" height="15.0" fill="rgb(245,155,7)" rx="2" ry="2" />
<text text-anchor="" x="1188.50" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.NettyTransportChannel.sendResponse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.NettyTransportChannel.sendResponse (1 samples, 0.19%)</title><rect x="1122.4" y="673" width="2.3" height="15.0" fill="rgb(253,134,21)" rx="2" ry="2" />
<text text-anchor="" x="1125.44" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.FST.findTargetArc (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.FST.findTargetArc (1 samples, 0.19%)</title><rect x="890.5" y="481" width="2.2" height="15.0" fill="rgb(249,199,6)" rx="2" ry="2" />
<text text-anchor="" x="893.50" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService$4.doRun (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService$4.doRun (8 samples, 1.53%)</title><rect x="606.8" y="785" width="18.0" height="15.0" fill="rgb(205,174,36)" rx="2" ry="2" />
<text text-anchor="" x="609.76" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived (1 samples, 0.19%)</title><rect x="1145.0" y="753" width="2.2" height="15.0" fill="rgb(218,49,53)" rx="2" ry="2" />
<text text-anchor="" x="1147.96" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force (2 samples, 0.38%)</title><rect x="922.0" y="545" width="4.5" height="15.0" fill="rgb(236,18,34)" rx="2" ry="2" />
<text text-anchor="" x="925.02" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (2 samples, 0.38%)</title><rect x="771.1" y="593" width="4.5" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="774.15" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived (2 samples, 0.38%)</title><rect x="1167.5" y="737" width="4.5" height="15.0" fill="rgb(218,49,53)" rx="2" ry="2" />
<text text-anchor="" x="1170.48" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (1 samples, 0.19%)</title><rect x="647.3" y="657" width="2.2" height="15.0" fill="rgb(227,28,49)" rx="2" ry="2" />
<text text-anchor="" x="650.29" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.Engine$Create.execute (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.Engine$Create.execute (2 samples, 0.38%)</title><rect x="512.2" y="625" width="4.5" height="15.0" fill="rgb(236,194,14)" rx="2" ry="2" />
<text text-anchor="" x="515.18" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (1 samples, 0.19%)</title><rect x="798.2" y="641" width="2.2" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="801.17" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.Engine$Create.execute (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.Engine$Create.execute (2 samples, 0.38%)</title><rect x="971.6" y="625" width="4.5" height="15.0" fill="rgb(236,194,14)" rx="2" ry="2" />
<text text-anchor="" x="974.56" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (2 samples, 0.38%)</title><rect x="809.4" y="689" width="4.5" height="15.0" fill="rgb(218,222,0)" rx="2" ry="2" />
<text text-anchor="" x="812.43" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (13 samples, 2.48%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (13 samples, 2.48%)</title><rect x="813.9" y="753" width="29.3" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="816.93" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >or..</text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][[http_server_worker.default]][T#16]{New I/O worker #81} (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][[http_server_worker.default]][T#16]{New I/O worker #81} (1 samples, 0.19%)</title><rect x="415.3" y="865" width="2.3" height="15.0" fill="rgb(225,40,27)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.OutputStreamIndexOutput.writeBytes (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.OutputStreamIndexOutput.writeBytes (1 samples, 0.19%)</title><rect x="1181.0" y="417" width="2.2" height="15.0" fill="rgb(115,115,201)" rx="2" ry="2" />
<text text-anchor="" x="1183.99" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor$Worker.run (10 samples, 1.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor$Worker.run (10 samples, 1.91%)</title><rect x="667.6" y="833" width="22.5" height="15.0" fill="rgb(241,183,32)" rx="2" ry="2" />
<text text-anchor="" x="670.56" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.processField (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.processField (1 samples, 0.19%)</title><rect x="1007.6" y="465" width="2.2" height="15.0" fill="rgb(220,68,13)" rx="2" ry="2" />
<text text-anchor="" x="1010.60" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)</title><rect x="460.4" y="497" width="2.2" height="15.0" fill="rgb(119,119,204)" rx="2" ry="2" />
<text text-anchor="" x="463.38" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriterFlushControl.doAfterDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriterFlushControl.doAfterDocument (1 samples, 0.19%)</title><rect x="503.2" y="497" width="2.2" height="15.0" fill="rgb(252,155,29)" rx="2" ry="2" />
<text text-anchor="" x="506.17" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreate (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreate (1 samples, 0.19%)</title><rect x="753.1" y="577" width="2.3" height="15.0" fill="rgb(231,13,44)" rx="2" ry="2" />
<text text-anchor="" x="756.13" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (4 samples, 0.76%)</title><rect x="996.3" y="593" width="9.0" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="999.34" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.get.ShardGetService.innerGet (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.get.ShardGetService.innerGet (1 samples, 0.19%)</title><rect x="1111.2" y="657" width="2.2" height="15.0" fill="rgb(238,21,8)" rx="2" ry="2" />
<text text-anchor="" x="1114.18" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Thread.run (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Thread.run (11 samples, 2.10%)</title><rect x="566.2" y="849" width="24.8" height="15.0" fill="rgb(251,44,12)" rx="2" ry="2" />
<text text-anchor="" x="569.22" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreate (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreate (4 samples, 0.76%)</title><rect x="899.5" y="577" width="9.0" height="15.0" fill="rgb(231,13,44)" rx="2" ry="2" />
<text text-anchor="" x="902.50" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.handler.codec.frame.FrameDecoder.callDecode (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.handler.codec.frame.FrameDecoder.callDecode (8 samples, 1.53%)</title><rect x="426.6" y="545" width="18.0" height="15.0" fill="rgb(209,62,24)" rx="2" ry="2" />
<text text-anchor="" x="429.60" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Thread.run (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Thread.run (11 samples, 2.10%)</title><rect x="541.5" y="849" width="24.7" height="15.0" fill="rgb(251,44,12)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.util.ThreadRenamingRunnable.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.util.ThreadRenamingRunnable.run (1 samples, 0.19%)</title><rect x="1187.7" y="785" width="2.3" height="15.0" fill="rgb(247,53,7)" rx="2" ry="2" />
<text text-anchor="" x="1190.75" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (9 samples, 1.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (9 samples, 1.72%)</title><rect x="541.5" y="657" width="20.2" height="15.0" fill="rgb(227,28,49)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (6 samples, 1.15%)</title><rect x="527.9" y="753" width="13.6" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="530.94" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriter.updateDocument (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriter.updateDocument (5 samples, 0.95%)</title><rect x="735.1" y="513" width="11.3" height="15.0" fill="rgb(238,61,26)" rx="2" ry="2" />
<text text-anchor="" x="738.11" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (3 samples, 0.57%)</title><rect x="505.4" y="657" width="6.8" height="15.0" fill="rgb(224,156,41)" rx="2" ry="2" />
<text text-anchor="" x="508.42" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.Engine$Create.execute (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.Engine$Create.execute (1 samples, 0.19%)</title><rect x="753.1" y="625" width="2.3" height="15.0" fill="rgb(236,194,14)" rx="2" ry="2" />
<text text-anchor="" x="756.13" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.blocktree.BlockTreeTermsReader.ramBytesUsed (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.blocktree.BlockTreeTermsReader.ramBytesUsed (2 samples, 0.38%)</title><rect x="1117.9" y="577" width="4.5" height="15.0" fill="rgb(210,224,25)" rx="2" ry="2" />
<text text-anchor="" x="1120.94" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][bulk][T#10] (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][bulk][T#10] (11 samples, 2.10%)</title><rect x="458.1" y="865" width="24.8" height="15.0" fill="rgb(206,87,7)" rx="2" ry="2" />
<text text-anchor="" x="461.13" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor.runWorker (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.runWorker (1 samples, 0.19%)</title><rect x="419.8" y="817" width="2.3" height="15.0" fill="rgb(253,116,23)" rx="2" ry="2" />
<text text-anchor="" x="422.85" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.AbstractNioSelector.run (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.AbstractNioSelector.run (5 samples, 0.95%)</title><rect x="444.6" y="737" width="11.3" height="15.0" fill="rgb(213,181,6)" rx="2" ry="2" />
<text text-anchor="" x="447.62" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.finishStoredFields (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.finishStoredFields (5 samples, 0.95%)</title><rect x="701.3" y="481" width="11.3" height="15.0" fill="rgb(227,106,27)" rx="2" ry="2" />
<text text-anchor="" x="704.34" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('all (524 samples, 100%)')" onmouseout="c()" onclick="zoom(this)">
<title>all (524 samples, 100%)</title><rect x="10.0" y="881" width="1180.0" height="15.0" fill="rgb(236,151,20)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.DefaultChannelPipeline.sendUpstream (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.DefaultChannelPipeline.sendUpstream (1 samples, 0.19%)</title><rect x="415.3" y="657" width="2.3" height="15.0" fill="rgb(224,124,32)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.addDocument (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.addDocument (3 samples, 0.57%)</title><rect x="899.5" y="545" width="6.8" height="15.0" fill="rgb(227,61,0)" rx="2" ry="2" />
<text text-anchor="" x="902.50" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force0 (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force0 (2 samples, 0.38%)</title><rect x="536.9" y="529" width="4.6" height="15.0" fill="rgb(222,14,30)" rx="2" ry="2" />
<text text-anchor="" x="539.95" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)</title><rect x="692.3" y="209" width="2.3" height="15.0" fill="rgb(121,121,206)" rx="2" ry="2" />
<text text-anchor="" x="695.33" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][bulk][T#3] (12 samples, 2.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][bulk][T#3] (12 samples, 2.29%)</title><rect x="899.5" y="865" width="27.0" height="15.0" fill="rgb(219,163,18)" rx="2" ry="2" />
<text text-anchor="" x="902.50" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (1 samples, 0.19%)</title><rect x="750.9" y="785" width="2.2" height="15.0" fill="rgb(228,141,38)" rx="2" ry="2" />
<text text-anchor="" x="753.88" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.rest.action.support.RestResponseListener.processResponse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.rest.action.support.RestResponseListener.processResponse (1 samples, 0.19%)</title><rect x="1187.7" y="289" width="2.3" height="15.0" fill="rgb(226,136,25)" rx="2" ry="2" />
<text text-anchor="" x="1190.75" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.file.Files.newOutputStream (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.file.Files.newOutputStream (6 samples, 1.15%)</title><rect x="908.5" y="305" width="13.5" height="15.0" fill="rgb(249,195,27)" rx="2" ry="2" />
<text text-anchor="" x="911.51" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (2 samples, 0.38%)</title><rect x="561.7" y="609" width="4.5" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="564.72" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.stream.StreamInput.readString (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.stream.StreamInput.readString (1 samples, 0.19%)</title><rect x="426.6" y="417" width="2.3" height="15.0" fill="rgb(90,90,227)" rx="2" ry="2" />
<text text-anchor="" x="429.60" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Translog.ensureSynced (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Translog.ensureSynced (1 samples, 0.19%)</title><rect x="500.9" y="625" width="2.3" height="15.0" fill="rgb(205,176,40)" rx="2" ry="2" />
<text text-anchor="" x="503.92" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (4 samples, 0.76%)</title><rect x="503.2" y="753" width="9.0" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="506.17" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.core.DateFieldMapper$DateFieldType.parseStringValue (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.core.DateFieldMapper$DateFieldType.parseStringValue (1 samples, 0.19%)</title><rect x="775.6" y="449" width="2.3" height="15.0" fill="rgb(218,44,50)" rx="2" ry="2" />
<text text-anchor="" x="778.65" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.Engine$Create.execute (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.Engine$Create.execute (1 samples, 0.19%)</title><rect x="692.3" y="625" width="2.3" height="15.0" fill="rgb(236,194,14)" rx="2" ry="2" />
<text text-anchor="" x="695.33" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (8 samples, 1.53%)</title><rect x="953.5" y="801" width="18.1" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="956.55" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriter.updateDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriter.updateDocument (1 samples, 0.19%)</title><rect x="512.2" y="513" width="2.2" height="15.0" fill="rgb(238,61,26)" rx="2" ry="2" />
<text text-anchor="" x="515.18" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (3 samples, 0.57%)</title><rect x="971.6" y="737" width="6.7" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="974.56" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (1 samples, 0.19%)</title><rect x="636.0" y="641" width="2.3" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="639.03" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.updateDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.updateDocument (1 samples, 0.19%)</title><rect x="883.7" y="529" width="2.3" height="15.0" fill="rgb(233,96,34)" rx="2" ry="2" />
<text text-anchor="" x="886.74" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.Channels.writeToChannel (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.Channels.writeToChannel (2 samples, 0.38%)</title><rect x="595.5" y="561" width="4.5" height="15.0" fill="rgb(134,134,237)" rx="2" ry="2" />
<text text-anchor="" x="598.50" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.processDocument (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.processDocument (6 samples, 1.15%)</title><rect x="609.0" y="497" width="13.5" height="15.0" fill="rgb(220,78,24)" rx="2" ry="2" />
<text text-anchor="" x="612.01" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (4 samples, 0.76%)</title><rect x="460.4" y="657" width="9.0" height="15.0" fill="rgb(224,156,41)" rx="2" ry="2" />
<text text-anchor="" x="463.38" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (2 samples, 0.38%)</title><rect x="922.0" y="593" width="4.5" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="925.02" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (1 samples, 0.19%)</title><rect x="863.5" y="657" width="2.2" height="15.0" fill="rgb(224,156,41)" rx="2" ry="2" />
<text text-anchor="" x="866.47" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (12 samples, 2.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (12 samples, 2.29%)</title><rect x="926.5" y="737" width="27.0" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="929.53" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.LZ4.encodeSequence (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.LZ4.encodeSequence (1 samples, 0.19%)</title><rect x="883.7" y="385" width="2.3" height="15.0" fill="rgb(251,45,21)" rx="2" ry="2" />
<text text-anchor="" x="886.74" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportRequestHandler.messageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportRequestHandler.messageReceived (1 samples, 0.19%)</title><rect x="1183.2" y="753" width="2.3" height="15.0" fill="rgb(243,108,4)" rx="2" ry="2" />
<text text-anchor="" x="1186.24" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (1 samples, 0.19%)</title><rect x="798.2" y="737" width="2.2" height="15.0" fill="rgb(247,84,19)" rx="2" ry="2" />
<text text-anchor="" x="801.17" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.core.DateFieldMapper$DateFieldType.parseStringValue (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.core.DateFieldMapper$DateFieldType.parseStringValue (1 samples, 0.19%)</title><rect x="482.9" y="449" width="2.3" height="15.0" fill="rgb(218,44,50)" rx="2" ry="2" />
<text text-anchor="" x="485.90" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (4 samples, 0.76%)</title><rect x="527.9" y="641" width="9.0" height="15.0" fill="rgb(214,128,2)" rx="2" ry="2" />
<text text-anchor="" x="530.94" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreate (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreate (2 samples, 0.38%)</title><rect x="640.5" y="577" width="4.5" height="15.0" fill="rgb(231,13,44)" rx="2" ry="2" />
<text text-anchor="" x="643.53" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.FST.findTargetArc (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.FST.findTargetArc (1 samples, 0.19%)</title><rect x="973.8" y="481" width="2.3" height="15.0" fill="rgb(249,199,6)" rx="2" ry="2" />
<text text-anchor="" x="976.82" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.ThreadLocal$ThreadLocalMap.getEntryAfterMiss (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ThreadLocal$ThreadLocalMap.getEntryAfterMiss (1 samples, 0.19%)</title><rect x="534.7" y="433" width="2.2" height="15.0" fill="rgb(230,183,15)" rx="2" ry="2" />
<text text-anchor="" x="537.69" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.FST.findTargetArc (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.FST.findTargetArc (1 samples, 0.19%)</title><rect x="532.4" y="465" width="2.3" height="15.0" fill="rgb(249,199,6)" rx="2" ry="2" />
<text text-anchor="" x="535.44" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (6 samples, 1.15%)</title><rect x="469.4" y="673" width="13.5" height="15.0" fill="rgb(218,222,0)" rx="2" ry="2" />
<text text-anchor="" x="472.39" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.Channels.writeToChannel (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.Channels.writeToChannel (1 samples, 0.19%)</title><rect x="600.0" y="513" width="2.3" height="15.0" fill="rgb(134,134,237)" rx="2" ry="2" />
<text text-anchor="" x="603.00" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.DefaultChannelPipeline.sendDownstream (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.DefaultChannelPipeline.sendDownstream (1 samples, 0.19%)</title><rect x="1185.5" y="593" width="2.2" height="15.0" fill="rgb(220,223,7)" rx="2" ry="2" />
<text text-anchor="" x="1188.50" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.admin.indices.stats.CommonStats.(init) (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.admin.indices.stats.CommonStats.(init) (1 samples, 0.19%)</title><rect x="1142.7" y="641" width="2.3" height="15.0" fill="rgb(246,201,12)" rx="2" ry="2" />
<text text-anchor="" x="1145.71" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (5 samples, 0.95%)</title><rect x="872.5" y="769" width="11.2" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="875.48" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.fasterxml.jackson.core.json.UTF8StreamJsonParser.nextToken (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.fasterxml.jackson.core.json.UTF8StreamJsonParser.nextToken (1 samples, 0.19%)</title><rect x="978.3" y="545" width="2.3" height="15.0" fill="rgb(251,199,20)" rx="2" ry="2" />
<text text-anchor="" x="981.32" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)</title><rect x="985.1" y="545" width="2.2" height="15.0" fill="rgb(121,121,206)" rx="2" ry="2" />
<text text-anchor="" x="988.08" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.write (1 samples, 0.19%)</title><rect x="926.5" y="193" width="2.3" height="15.0" fill="rgb(103,103,204)" rx="2" ry="2" />
<text text-anchor="" x="929.53" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.admin.indices.stats.CommonStats.(init) (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.admin.indices.stats.CommonStats.(init) (2 samples, 0.38%)</title><rect x="1167.5" y="641" width="4.5" height="15.0" fill="rgb(246,201,12)" rx="2" ry="2" />
<text text-anchor="" x="1170.48" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.doRun (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.doRun (2 samples, 0.38%)</title><rect x="624.8" y="705" width="4.5" height="15.0" fill="rgb(232,57,0)" rx="2" ry="2" />
<text text-anchor="" x="627.77" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.zip.CheckedOutputStream.write (18 samples, 3.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.zip.CheckedOutputStream.write (18 samples, 3.44%)</title><rect x="1068.4" y="657" width="40.5" height="15.0" fill="rgb(106,106,204)" rx="2" ry="2" />
<text text-anchor="" x="1071.40" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >jav..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.EsThreadPoolExecutor.execute (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.EsThreadPoolExecutor.execute (1 samples, 0.19%)</title><rect x="417.6" y="241" width="2.2" height="15.0" fill="rgb(245,217,4)" rx="2" ry="2" />
<text text-anchor="" x="420.60" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][bulk][T#19] (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][bulk][T#19] (5 samples, 0.95%)</title><rect x="629.3" y="865" width="11.2" height="15.0" fill="rgb(246,118,50)" rx="2" ry="2" />
<text text-anchor="" x="632.27" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)</title><rect x="863.5" y="497" width="2.2" height="15.0" fill="rgb(119,119,204)" rx="2" ry="2" />
<text text-anchor="" x="866.47" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (5 samples, 0.95%)</title><rect x="872.5" y="721" width="11.2" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="875.48" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force0 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force0 (1 samples, 0.19%)</title><rect x="748.6" y="529" width="2.3" height="15.0" fill="rgb(222,14,30)" rx="2" ry="2" />
<text text-anchor="" x="751.63" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (7 samples, 1.34%)</title><rect x="782.4" y="593" width="15.8" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="785.40" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (13 samples, 2.48%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (13 samples, 2.48%)</title><rect x="813.9" y="705" width="29.3" height="15.0" fill="rgb(222,177,52)" rx="2" ry="2" />
<text text-anchor="" x="816.93" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >or..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (11 samples, 2.10%)</title><rect x="541.5" y="801" width="24.7" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.write (1 samples, 0.19%)</title><rect x="600.0" y="465" width="2.3" height="15.0" fill="rgb(103,103,204)" rx="2" ry="2" />
<text text-anchor="" x="603.00" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.create (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.create (1 samples, 0.19%)</title><rect x="638.3" y="609" width="2.2" height="15.0" fill="rgb(214,111,47)" rx="2" ry="2" />
<text text-anchor="" x="641.28" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Thread.run (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Thread.run (6 samples, 1.15%)</title><rect x="843.2" y="849" width="13.5" height="15.0" fill="rgb(251,44,12)" rx="2" ry="2" />
<text text-anchor="" x="846.21" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.create (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.create (1 samples, 0.19%)</title><rect x="503.2" y="593" width="2.2" height="15.0" fill="rgb(214,111,47)" rx="2" ry="2" />
<text text-anchor="" x="506.17" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (2 samples, 0.38%)</title><rect x="536.9" y="593" width="4.6" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="539.95" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.force (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.force (1 samples, 0.19%)</title><rect x="987.3" y="561" width="2.3" height="15.0" fill="rgb(236,11,41)" rx="2" ry="2" />
<text text-anchor="" x="990.33" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.FileSwitchDirectory.createOutput (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.FileSwitchDirectory.createOutput (6 samples, 1.15%)</title><rect x="953.5" y="353" width="13.6" height="15.0" fill="rgb(233,42,37)" rx="2" ry="2" />
<text text-anchor="" x="956.55" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.loadCurrentVersionFromIndex (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.loadCurrentVersionFromIndex (1 samples, 0.19%)</title><rect x="633.8" y="561" width="2.2" height="15.0" fill="rgb(224,40,0)" rx="2" ry="2" />
<text text-anchor="" x="636.78" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (1 samples, 0.19%)</title><rect x="638.3" y="785" width="2.2" height="15.0" fill="rgb(228,141,38)" rx="2" ry="2" />
<text text-anchor="" x="641.28" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.addDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.addDocument (1 samples, 0.19%)</title><rect x="692.3" y="545" width="2.3" height="15.0" fill="rgb(227,61,0)" rx="2" ry="2" />
<text text-anchor="" x="695.33" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.force (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.force (2 samples, 0.38%)</title><rect x="602.3" y="561" width="4.5" height="15.0" fill="rgb(236,11,41)" rx="2" ry="2" />
<text text-anchor="" x="605.25" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentParser.parseObject (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentParser.parseObject (1 samples, 0.19%)</title><rect x="667.6" y="545" width="2.2" height="15.0" fill="rgb(238,220,50)" rx="2" ry="2" />
<text text-anchor="" x="670.56" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Thread.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Thread.run (1 samples, 0.19%)</title><rect x="422.1" y="849" width="2.3" height="15.0" fill="rgb(251,44,12)" rx="2" ry="2" />
<text text-anchor="" x="425.10" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (1 samples, 0.19%)</title><rect x="512.2" y="561" width="2.2" height="15.0" fill="rgb(220,105,49)" rx="2" ry="2" />
<text text-anchor="" x="515.18" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.fs.UnixFileSystemProvider.newByteChannel (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.fs.UnixFileSystemProvider.newByteChannel (6 samples, 1.15%)</title><rect x="908.5" y="273" width="13.5" height="15.0" fill="rgb(248,16,40)" rx="2" ry="2" />
<text text-anchor="" x="911.51" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.checkpoint (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.checkpoint (1 samples, 0.19%)</title><rect x="665.3" y="577" width="2.3" height="15.0" fill="rgb(218,30,19)" rx="2" ry="2" />
<text text-anchor="" x="668.31" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.io.BufferedInputStream.read1 (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.io.BufferedInputStream.read1 (5 samples, 0.95%)</title><rect x="444.6" y="305" width="11.3" height="15.0" fill="rgb(91,91,194)" rx="2" ry="2" />
<text text-anchor="" x="447.62" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.single.shard.TransportSingleShardAction$AsyncSingleAction.start (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.single.shard.TransportSingleShardAction$AsyncSingleAction.start (1 samples, 0.19%)</title><rect x="415.3" y="273" width="2.3" height="15.0" fill="rgb(214,192,3)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (4 samples, 0.76%)</title><rect x="491.9" y="609" width="9.0" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="494.91" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Thread.run (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Thread.run (4 samples, 0.76%)</title><rect x="753.1" y="849" width="9.0" height="15.0" fill="rgb(251,44,12)" rx="2" ry="2" />
<text text-anchor="" x="756.13" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.search.IndexSearcher.search (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.search.IndexSearcher.search (1 samples, 0.19%)</title><rect x="1183.2" y="641" width="2.3" height="15.0" fill="rgb(234,167,3)" rx="2" ry="2" />
<text text-anchor="" x="1186.24" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentParser.parseObject (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentParser.parseObject (1 samples, 0.19%)</title><rect x="469.4" y="577" width="2.2" height="15.0" fill="rgb(238,220,50)" rx="2" ry="2" />
<text text-anchor="" x="472.39" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (4 samples, 0.76%)</title><rect x="629.3" y="769" width="9.0" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="632.27" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (1 samples, 0.19%)</title><rect x="969.3" y="609" width="2.3" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="972.31" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService.sendRequest (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService.sendRequest (1 samples, 0.19%)</title><rect x="415.3" y="225" width="2.3" height="15.0" fill="rgb(218,200,16)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.AbstractNioWorker.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.AbstractNioWorker.run (1 samples, 0.19%)</title><rect x="419.8" y="753" width="2.3" height="15.0" fill="rgb(231,103,19)" rx="2" ry="2" />
<text text-anchor="" x="422.85" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentParser.parseObject (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentParser.parseObject (1 samples, 0.19%)</title><rect x="527.9" y="545" width="2.3" height="15.0" fill="rgb(238,220,50)" rx="2" ry="2" />
<text text-anchor="" x="530.94" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (2 samples, 0.38%)</title><rect x="591.0" y="657" width="4.5" height="15.0" fill="rgb(227,28,49)" rx="2" ry="2" />
<text text-anchor="" x="593.99" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived (6 samples, 1.15%)</title><rect x="1154.0" y="737" width="13.5" height="15.0" fill="rgb(218,49,53)" rx="2" ry="2" />
<text text-anchor="" x="1156.97" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.search.action.SearchServiceTransportAction$SearchQueryTransportHandler.messageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.search.action.SearchServiceTransportAction$SearchQueryTransportHandler.messageReceived (1 samples, 0.19%)</title><rect x="1183.2" y="721" width="2.3" height="15.0" fill="rgb(233,156,4)" rx="2" ry="2" />
<text text-anchor="" x="1186.24" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.write (1 samples, 0.19%)</title><rect x="1181.0" y="257" width="2.2" height="15.0" fill="rgb(103,103,204)" rx="2" ry="2" />
<text text-anchor="" x="1183.99" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.DataInput.readVLong (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.DataInput.readVLong (1 samples, 0.19%)</title><rect x="768.9" y="401" width="2.2" height="15.0" fill="rgb(82,82,236)" rx="2" ry="2" />
<text text-anchor="" x="771.89" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.DefaultChannelPipeline.sendUpstream (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.DefaultChannelPipeline.sendUpstream (1 samples, 0.19%)</title><rect x="1187.7" y="529" width="2.3" height="15.0" fill="rgb(224,124,32)" rx="2" ry="2" />
<text text-anchor="" x="1190.75" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (2 samples, 0.38%)</title><rect x="971.6" y="641" width="4.5" height="15.0" fill="rgb(214,128,2)" rx="2" ry="2" />
<text text-anchor="" x="974.56" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.indices.recovery.RecoveryFileChunkRequest.readFrom (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.indices.recovery.RecoveryFileChunkRequest.readFrom (5 samples, 0.95%)</title><rect x="444.6" y="417" width="11.3" height="15.0" fill="rgb(136,136,217)" rx="2" ry="2" />
<text text-anchor="" x="447.62" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.write (1 samples, 0.19%)</title><rect x="649.5" y="465" width="2.3" height="15.0" fill="rgb(103,103,204)" rx="2" ry="2" />
<text text-anchor="" x="652.54" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.initStoredFieldsWriter (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.initStoredFieldsWriter (6 samples, 1.15%)</title><rect x="908.5" y="481" width="13.5" height="15.0" fill="rgb(228,165,54)" rx="2" ry="2" />
<text text-anchor="" x="911.51" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.Channels.writeToChannel (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.Channels.writeToChannel (3 samples, 0.57%)</title><rect x="516.7" y="561" width="6.7" height="15.0" fill="rgb(134,134,237)" rx="2" ry="2" />
<text text-anchor="" x="519.68" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (7 samples, 1.34%)</title><rect x="649.5" y="641" width="15.8" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="652.54" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (2 samples, 0.38%)</title><rect x="640.5" y="737" width="4.5" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="643.53" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.AbstractNioSelector.select (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.AbstractNioSelector.select (1 samples, 0.19%)</title><rect x="424.4" y="721" width="2.2" height="15.0" fill="rgb(221,132,27)" rx="2" ry="2" />
<text text-anchor="" x="427.35" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.finishDocument (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.finishDocument (5 samples, 0.95%)</title><rect x="735.1" y="449" width="11.3" height="15.0" fill="rgb(221,219,23)" rx="2" ry="2" />
<text text-anchor="" x="738.11" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force0 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force0 (1 samples, 0.19%)</title><rect x="854.5" y="529" width="2.2" height="15.0" fill="rgb(222,14,30)" rx="2" ry="2" />
<text text-anchor="" x="857.47" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (3 samples, 0.57%)</title><rect x="865.7" y="737" width="6.8" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="868.73" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor.runWorker (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.runWorker (8 samples, 1.53%)</title><rect x="1124.7" y="817" width="18.0" height="15.0" fill="rgb(253,116,23)" rx="2" ry="2" />
<text text-anchor="" x="1127.69" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][management][T#20] (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][management][T#20] (6 samples, 1.15%)</title><rect x="1167.5" y="865" width="13.5" height="15.0" fill="rgb(240,89,16)" rx="2" ry="2" />
<text text-anchor="" x="1170.48" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.blocktree.SegmentTermsEnum.seekExact (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.blocktree.SegmentTermsEnum.seekExact (1 samples, 0.19%)</title><rect x="1183.2" y="417" width="2.3" height="15.0" fill="rgb(246,206,36)" rx="2" ry="2" />
<text text-anchor="" x="1186.24" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.Versions.loadVersion (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.Versions.loadVersion (1 samples, 0.19%)</title><rect x="994.1" y="545" width="2.2" height="15.0" fill="rgb(228,65,45)" rx="2" ry="2" />
<text text-anchor="" x="997.08" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)</title><rect x="895.0" y="433" width="2.3" height="15.0" fill="rgb(119,119,204)" rx="2" ry="2" />
<text text-anchor="" x="898.00" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (2 samples, 0.38%)</title><rect x="669.8" y="657" width="4.5" height="15.0" fill="rgb(224,156,41)" rx="2" ry="2" />
<text text-anchor="" x="672.81" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write0 (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write0 (3 samples, 0.57%)</title><rect x="845.5" y="161" width="6.7" height="15.0" fill="rgb(139,139,202)" rx="2" ry="2" />
<text text-anchor="" x="848.46" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.flush (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.flush (1 samples, 0.19%)</title><rect x="636.0" y="577" width="2.3" height="15.0" fill="rgb(228,191,52)" rx="2" ry="2" />
<text text-anchor="" x="639.03" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.writeFromNativeBuffer (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.writeFromNativeBuffer (1 samples, 0.19%)</title><rect x="588.7" y="513" width="2.3" height="15.0" fill="rgb(81,81,230)" rx="2" ry="2" />
<text text-anchor="" x="591.74" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Translog.ensureSynced (9 samples, 1.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Translog.ensureSynced (9 samples, 1.72%)</title><rect x="933.3" y="625" width="20.2" height="15.0" fill="rgb(205,176,40)" rx="2" ry="2" />
<text text-anchor="" x="936.28" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor$Worker.run (10 samples, 1.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor$Worker.run (10 samples, 1.91%)</title><rect x="606.8" y="833" width="22.5" height="15.0" fill="rgb(241,183,32)" rx="2" ry="2" />
<text text-anchor="" x="609.76" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.single.shard.TransportSingleShardAction$ShardTransportHandler.messageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.single.shard.TransportSingleShardAction$ShardTransportHandler.messageReceived (1 samples, 0.19%)</title><rect x="1108.9" y="737" width="2.3" height="15.0" fill="rgb(215,95,42)" rx="2" ry="2" />
<text text-anchor="" x="1111.93" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.joda.time.format.DateTimeFormatterBuilder$MatchingParser.parseInto (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.joda.time.format.DateTimeFormatterBuilder$MatchingParser.parseInto (1 samples, 0.19%)</title><rect x="775.6" y="385" width="2.3" height="15.0" fill="rgb(217,47,52)" rx="2" ry="2" />
<text text-anchor="" x="778.65" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write0 (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write0 (4 samples, 0.76%)</title><rect x="491.9" y="481" width="9.0" height="15.0" fill="rgb(139,139,202)" rx="2" ry="2" />
<text text-anchor="" x="494.91" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriter.updateDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriter.updateDocument (1 samples, 0.19%)</title><rect x="971.6" y="513" width="2.2" height="15.0" fill="rgb(238,61,26)" rx="2" ry="2" />
<text text-anchor="" x="974.56" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.DefaultChannelPipeline$DefaultChannelHandlerContext.sendUpstream (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.DefaultChannelPipeline$DefaultChannelHandlerContext.sendUpstream (1 samples, 0.19%)</title><rect x="417.6" y="609" width="2.2" height="15.0" fill="rgb(217,60,45)" rx="2" ry="2" />
<text text-anchor="" x="420.60" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.OutputStreamIndexOutput.writeByte (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.OutputStreamIndexOutput.writeByte (6 samples, 1.15%)</title><rect x="609.0" y="385" width="13.5" height="15.0" fill="rgb(94,94,236)" rx="2" ry="2" />
<text text-anchor="" x="612.01" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.flush (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.flush (6 samples, 1.15%)</title><rect x="609.0" y="449" width="13.5" height="15.0" fill="rgb(248,139,20)" rx="2" ry="2" />
<text text-anchor="" x="612.01" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor.runWorker (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.runWorker (11 samples, 2.10%)</title><rect x="690.1" y="817" width="24.7" height="15.0" fill="rgb(253,116,23)" rx="2" ry="2" />
<text text-anchor="" x="693.08" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s('java.io.BufferedOutputStream.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.io.BufferedOutputStream.write (1 samples, 0.19%)</title><rect x="692.3" y="337" width="2.3" height="15.0" fill="rgb(95,95,199)" rx="2" ry="2" />
<text text-anchor="" x="695.33" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriterPerThread.updateDocument (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriterPerThread.updateDocument (5 samples, 0.95%)</title><rect x="714.8" y="497" width="11.3" height="15.0" fill="rgb(245,210,52)" rx="2" ry="2" />
<text text-anchor="" x="717.85" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (2 samples, 0.38%)</title><rect x="536.9" y="609" width="4.6" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="539.95" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels$1.write (16 samples, 3.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels$1.write (16 samples, 3.05%)</title><rect x="1032.4" y="625" width="36.0" height="15.0" fill="rgb(107,107,220)" rx="2" ry="2" />
<text text-anchor="" x="1035.37" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >jav..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportRequestHandler.messageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportRequestHandler.messageReceived (1 samples, 0.19%)</title><rect x="415.3" y="401" width="2.3" height="15.0" fill="rgb(243,108,4)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.AbstractNioSelector.select (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.AbstractNioSelector.select (1 samples, 0.19%)</title><rect x="422.1" y="721" width="2.3" height="15.0" fill="rgb(221,132,27)" rx="2" ry="2" />
<text text-anchor="" x="425.10" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.single.shard.TransportSingleShardAction.doExecute (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.single.shard.TransportSingleShardAction.doExecute (1 samples, 0.19%)</title><rect x="415.3" y="289" width="2.3" height="15.0" fill="rgb(250,107,43)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force0 (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force0 (2 samples, 0.38%)</title><rect x="809.4" y="529" width="4.5" height="15.0" fill="rgb(222,14,30)" rx="2" ry="2" />
<text text-anchor="" x="812.43" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.TermsHashPerField.add (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.TermsHashPerField.add (1 samples, 0.19%)</title><rect x="904.0" y="433" width="2.3" height="15.0" fill="rgb(228,23,21)" rx="2" ry="2" />
<text text-anchor="" x="907.01" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (1 samples, 0.19%)</title><rect x="645.0" y="689" width="2.3" height="15.0" fill="rgb(218,222,0)" rx="2" ry="2" />
<text text-anchor="" x="648.04" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.AbstractNioSelector.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.AbstractNioSelector.run (1 samples, 0.19%)</title><rect x="419.8" y="737" width="2.3" height="15.0" fill="rgb(213,181,6)" rx="2" ry="2" />
<text text-anchor="" x="422.85" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (7 samples, 1.34%)</title><rect x="782.4" y="609" width="15.8" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="785.40" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.checkpoint (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.checkpoint (7 samples, 1.34%)</title><rect x="573.0" y="577" width="15.7" height="15.0" fill="rgb(218,30,19)" rx="2" ry="2" />
<text text-anchor="" x="575.98" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.flush (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.flush (1 samples, 0.19%)</title><rect x="883.7" y="433" width="2.3" height="15.0" fill="rgb(248,139,20)" rx="2" ry="2" />
<text text-anchor="" x="886.74" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.processDocument (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.processDocument (2 samples, 0.38%)</title><rect x="901.8" y="481" width="4.5" height="15.0" fill="rgb(220,78,24)" rx="2" ry="2" />
<text text-anchor="" x="904.76" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.force (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.force (1 samples, 0.19%)</title><rect x="870.2" y="561" width="2.3" height="15.0" fill="rgb(236,11,41)" rx="2" ry="2" />
<text text-anchor="" x="873.23" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (11 samples, 2.10%)</title><rect x="690.1" y="801" width="24.7" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="693.08" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.Channels.writeToChannel (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.Channels.writeToChannel (1 samples, 0.19%)</title><rect x="460.4" y="561" width="2.2" height="15.0" fill="rgb(134,134,237)" rx="2" ry="2" />
<text text-anchor="" x="463.38" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (1 samples, 0.19%)</title><rect x="991.8" y="609" width="2.3" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="994.83" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (1 samples, 0.19%)</title><rect x="755.4" y="609" width="2.2" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="758.38" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force (6 samples, 1.15%)</title><rect x="651.8" y="545" width="13.5" height="15.0" fill="rgb(236,18,34)" rx="2" ry="2" />
<text text-anchor="" x="654.79" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels$1.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels$1.write (1 samples, 0.19%)</title><rect x="928.8" y="289" width="2.2" height="15.0" fill="rgb(107,107,220)" rx="2" ry="2" />
<text text-anchor="" x="931.78" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.Versions.loadVersion (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.Versions.loadVersion (1 samples, 0.19%)</title><rect x="757.6" y="561" width="2.3" height="15.0" fill="rgb(228,65,45)" rx="2" ry="2" />
<text text-anchor="" x="760.63" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.AbstractNioWorker.process (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.AbstractNioWorker.process (1 samples, 0.19%)</title><rect x="417.6" y="721" width="2.2" height="15.0" fill="rgb(218,151,11)" rx="2" ry="2" />
<text text-anchor="" x="420.60" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreate (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreate (3 samples, 0.57%)</title><rect x="530.2" y="577" width="6.7" height="15.0" fill="rgb(231,13,44)" rx="2" ry="2" />
<text text-anchor="" x="533.19" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.NioWorker.read (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.NioWorker.read (1 samples, 0.19%)</title><rect x="1187.7" y="705" width="2.3" height="15.0" fill="rgb(134,134,192)" rx="2" ry="2" />
<text text-anchor="" x="1190.75" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.fs.UnixNativeDispatcher.readdir (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.fs.UnixNativeDispatcher.readdir (4 samples, 0.76%)</title><rect x="1126.9" y="417" width="9.1" height="15.0" fill="rgb(130,130,238)" rx="2" ry="2" />
<text text-anchor="" x="1129.95" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write0 (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write0 (5 samples, 0.95%)</title><rect x="714.8" y="145" width="11.3" height="15.0" fill="rgb(139,139,202)" rx="2" ry="2" />
<text text-anchor="" x="717.85" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (6 samples, 1.15%)</title><rect x="953.5" y="657" width="13.6" height="15.0" fill="rgb(227,28,49)" rx="2" ry="2" />
<text text-anchor="" x="956.55" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.write (1 samples, 0.19%)</title><rect x="985.1" y="529" width="2.2" height="15.0" fill="rgb(103,103,204)" rx="2" ry="2" />
<text text-anchor="" x="988.08" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.MessageChannelHandler.messageReceived (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.MessageChannelHandler.messageReceived (8 samples, 1.53%)</title><rect x="426.6" y="449" width="18.0" height="15.0" fill="rgb(251,90,6)" rx="2" ry="2" />
<text text-anchor="" x="429.60" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor.runWorker (10 samples, 1.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.runWorker (10 samples, 1.91%)</title><rect x="606.8" y="817" width="22.5" height="15.0" fill="rgb(253,116,23)" rx="2" ry="2" />
<text text-anchor="" x="609.76" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][get][T#30] (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][get][T#30] (1 samples, 0.19%)</title><rect x="1108.9" y="865" width="2.3" height="15.0" fill="rgb(225,136,6)" rx="2" ry="2" />
<text text-anchor="" x="1111.93" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Thread.run (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Thread.run (8 samples, 1.53%)</title><rect x="1124.7" y="849" width="18.0" height="15.0" fill="rgb(251,44,12)" rx="2" ry="2" />
<text text-anchor="" x="1127.69" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels$1.write (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels$1.write (5 samples, 0.95%)</title><rect x="735.1" y="273" width="11.3" height="15.0" fill="rgb(107,107,220)" rx="2" ry="2" />
<text text-anchor="" x="738.11" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.TreeMap.getEntry (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.TreeMap.getEntry (1 samples, 0.19%)</title><rect x="1145.0" y="545" width="2.2" height="15.0" fill="rgb(244,50,43)" rx="2" ry="2" />
<text text-anchor="" x="1147.96" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.ByteSequenceOutputs.read (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.ByteSequenceOutputs.read (1 samples, 0.19%)</title><rect x="532.4" y="385" width="2.3" height="15.0" fill="rgb(107,107,208)" rx="2" ry="2" />
<text text-anchor="" x="535.44" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (1 samples, 0.19%)</title><rect x="665.3" y="785" width="2.3" height="15.0" fill="rgb(228,141,38)" rx="2" ry="2" />
<text text-anchor="" x="668.31" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.MessageChannelHandler.handleRequest (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.MessageChannelHandler.handleRequest (8 samples, 1.53%)</title><rect x="426.6" y="433" width="18.0" height="15.0" fill="rgb(230,66,9)" rx="2" ry="2" />
<text text-anchor="" x="429.60" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.writeFromNativeBuffer (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.writeFromNativeBuffer (3 samples, 0.57%)</title><rect x="516.7" y="513" width="6.7" height="15.0" fill="rgb(81,81,230)" rx="2" ry="2" />
<text text-anchor="" x="519.68" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.read (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.read (1 samples, 0.19%)</title><rect x="419.8" y="673" width="2.3" height="15.0" fill="rgb(116,116,211)" rx="2" ry="2" />
<text text-anchor="" x="422.85" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force (2 samples, 0.38%)</title><rect x="669.8" y="545" width="4.5" height="15.0" fill="rgb(236,18,34)" rx="2" ry="2" />
<text text-anchor="" x="672.81" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (8 samples, 1.53%)</title><rect x="714.8" y="801" width="18.1" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="717.85" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.search.SearchService.loadOrExecuteQueryPhase (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.search.SearchService.loadOrExecuteQueryPhase (1 samples, 0.19%)</title><rect x="1183.2" y="689" width="2.3" height="15.0" fill="rgb(218,55,33)" rx="2" ry="2" />
<text text-anchor="" x="1186.24" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write0 (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write0 (5 samples, 0.95%)</title><rect x="872.5" y="481" width="11.2" height="15.0" fill="rgb(139,139,202)" rx="2" ry="2" />
<text text-anchor="" x="875.48" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreate (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreate (3 samples, 0.57%)</title><rect x="629.3" y="577" width="6.7" height="15.0" fill="rgb(231,13,44)" rx="2" ry="2" />
<text text-anchor="" x="632.27" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Translog.ensureSynced (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Translog.ensureSynced (2 samples, 0.38%)</title><rect x="669.8" y="625" width="4.5" height="15.0" fill="rgb(205,176,40)" rx="2" ry="2" />
<text text-anchor="" x="672.81" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.stream.StreamInput.readBytesReference (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.stream.StreamInput.readBytesReference (7 samples, 1.34%)</title><rect x="428.9" y="385" width="15.7" height="15.0" fill="rgb(85,85,200)" rx="2" ry="2" />
<text text-anchor="" x="431.85" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.close0 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.close0 (1 samples, 0.19%)</title><rect x="462.6" y="481" width="2.3" height="15.0" fill="rgb(242,67,18)" rx="2" ry="2" />
<text text-anchor="" x="465.63" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.write (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.write (6 samples, 1.15%)</title><rect x="609.0" y="241" width="13.5" height="15.0" fill="rgb(121,121,206)" rx="2" ry="2" />
<text text-anchor="" x="612.01" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Object.notifyAll (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Object.notifyAll (1 samples, 0.19%)</title><rect x="629.3" y="449" width="2.2" height="15.0" fill="rgb(217,177,43)" rx="2" ry="2" />
<text text-anchor="" x="632.27" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.FST.readNextRealArc (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.FST.readNextRealArc (1 samples, 0.19%)</title><rect x="532.4" y="433" width="2.3" height="15.0" fill="rgb(136,136,222)" rx="2" ry="2" />
<text text-anchor="" x="535.44" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.single.shard.TransportSingleShardAction$AsyncSingleAction$2.handleResponse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.single.shard.TransportSingleShardAction$AsyncSingleAction$2.handleResponse (1 samples, 0.19%)</title><rect x="1108.9" y="609" width="2.3" height="15.0" fill="rgb(241,87,25)" rx="2" ry="2" />
<text text-anchor="" x="1111.93" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriterFlushControl.doAfterDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriterFlushControl.doAfterDocument (1 samples, 0.19%)</title><rect x="458.1" y="529" width="2.3" height="15.0" fill="rgb(252,155,29)" rx="2" ry="2" />
<text text-anchor="" x="461.13" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (10 samples, 1.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (10 samples, 1.91%)</title><rect x="899.5" y="689" width="22.5" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="902.50" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.processDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.processDocument (1 samples, 0.19%)</title><rect x="692.3" y="481" width="2.3" height="15.0" fill="rgb(220,78,24)" rx="2" ry="2" />
<text text-anchor="" x="695.33" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)</title><rect x="638.3" y="177" width="2.2" height="15.0" fill="rgb(119,119,204)" rx="2" ry="2" />
<text text-anchor="" x="641.28" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (4 samples, 0.76%)</title><rect x="800.4" y="689" width="9.0" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="803.42" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.DefaultChannelPipeline.sendUpstream (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.DefaultChannelPipeline.sendUpstream (5 samples, 0.95%)</title><rect x="444.6" y="641" width="11.3" height="15.0" fill="rgb(224,124,32)" rx="2" ry="2" />
<text text-anchor="" x="447.62" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction.doExecute (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction.doExecute (1 samples, 0.19%)</title><rect x="417.6" y="337" width="2.2" height="15.0" fill="rgb(218,79,10)" rx="2" ry="2" />
<text text-anchor="" x="420.60" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.PerThreadIDAndVersionLookup.lookup (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.PerThreadIDAndVersionLookup.lookup (1 samples, 0.19%)</title><rect x="642.8" y="513" width="2.2" height="15.0" fill="rgb(237,190,48)" rx="2" ry="2" />
<text text-anchor="" x="645.79" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriter.updateDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriter.updateDocument (1 samples, 0.19%)</title><rect x="692.3" y="513" width="2.3" height="15.0" fill="rgb(238,61,26)" rx="2" ry="2" />
<text text-anchor="" x="695.33" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor$Worker.run (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor$Worker.run (6 samples, 1.15%)</title><rect x="980.6" y="833" width="13.5" height="15.0" fill="rgb(241,183,32)" rx="2" ry="2" />
<text text-anchor="" x="983.57" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriterPerThread.updateDocument (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriterPerThread.updateDocument (2 samples, 0.38%)</title><rect x="901.8" y="497" width="4.5" height="15.0" fill="rgb(245,210,52)" rx="2" ry="2" />
<text text-anchor="" x="904.76" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.force (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.force (5 samples, 0.95%)</title><rect x="1021.1" y="609" width="11.3" height="15.0" fill="rgb(236,11,41)" rx="2" ry="2" />
<text text-anchor="" x="1024.11" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels.writeFullyImpl (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels.writeFullyImpl (5 samples, 0.95%)</title><rect x="714.8" y="225" width="11.3" height="15.0" fill="rgb(118,118,221)" rx="2" ry="2" />
<text text-anchor="" x="717.85" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)</title><rect x="892.7" y="225" width="2.3" height="15.0" fill="rgb(121,121,206)" rx="2" ry="2" />
<text text-anchor="" x="895.75" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.updateDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.updateDocument (1 samples, 0.19%)</title><rect x="512.2" y="529" width="2.2" height="15.0" fill="rgb(233,96,34)" rx="2" ry="2" />
<text text-anchor="" x="515.18" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (2 samples, 0.38%)</title><rect x="1005.3" y="657" width="4.5" height="15.0" fill="rgb(227,28,49)" rx="2" ry="2" />
<text text-anchor="" x="1008.34" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (1 samples, 0.19%)</title><rect x="870.2" y="657" width="2.3" height="15.0" fill="rgb(224,156,41)" rx="2" ry="2" />
<text text-anchor="" x="873.23" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.Versions.loadVersion (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.Versions.loadVersion (1 samples, 0.19%)</title><rect x="973.8" y="545" width="2.3" height="15.0" fill="rgb(228,65,45)" rx="2" ry="2" />
<text text-anchor="" x="976.82" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.writeCheckpoint (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.writeCheckpoint (1 samples, 0.19%)</title><rect x="600.0" y="561" width="2.3" height="15.0" fill="rgb(132,132,209)" rx="2" ry="2" />
<text text-anchor="" x="603.00" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain$PerField.invert (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain$PerField.invert (1 samples, 0.19%)</title><rect x="813.9" y="449" width="2.3" height="15.0" fill="rgb(243,141,2)" rx="2" ry="2" />
<text text-anchor="" x="816.93" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.fs.UnixChannelFactory.open (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.fs.UnixChannelFactory.open (1 samples, 0.19%)</title><rect x="818.4" y="449" width="2.3" height="15.0" fill="rgb(246,9,0)" rx="2" ry="2" />
<text text-anchor="" x="821.44" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.writeCheckpoint (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.writeCheckpoint (1 samples, 0.19%)</title><rect x="976.1" y="561" width="2.2" height="15.0" fill="rgb(132,132,209)" rx="2" ry="2" />
<text text-anchor="" x="979.07" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (22 samples, 4.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (22 samples, 4.20%)</title><rect x="1018.9" y="785" width="49.5" height="15.0" fill="rgb(228,141,38)" rx="2" ry="2" />
<text text-anchor="" x="1021.85" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org...</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Translog.ensureSynced (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Translog.ensureSynced (1 samples, 0.19%)</title><rect x="991.8" y="625" width="2.3" height="15.0" fill="rgb(205,176,40)" rx="2" ry="2" />
<text text-anchor="" x="994.83" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.regex.Pattern$Start.match (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.regex.Pattern$Start.match (1 samples, 0.19%)</title><rect x="732.9" y="369" width="2.2" height="15.0" fill="rgb(208,119,34)" rx="2" ry="2" />
<text text-anchor="" x="735.86" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.processDocument (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.processDocument (3 samples, 0.57%)</title><rect x="926.5" y="481" width="6.8" height="15.0" fill="rgb(220,78,24)" rx="2" ry="2" />
<text text-anchor="" x="929.53" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.checkpoint (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.checkpoint (1 samples, 0.19%)</title><rect x="645.0" y="577" width="2.3" height="15.0" fill="rgb(218,30,19)" rx="2" ry="2" />
<text text-anchor="" x="648.04" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Checkpoint.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Checkpoint.write (1 samples, 0.19%)</title><rect x="1009.8" y="545" width="2.3" height="15.0" fill="rgb(94,94,229)" rx="2" ry="2" />
<text text-anchor="" x="1012.85" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.Channels.writeToChannel (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.Channels.writeToChannel (1 samples, 0.19%)</title><rect x="712.6" y="561" width="2.2" height="15.0" fill="rgb(134,134,237)" rx="2" ry="2" />
<text text-anchor="" x="715.60" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (7 samples, 1.34%)</title><rect x="732.9" y="641" width="15.7" height="15.0" fill="rgb(214,128,2)" rx="2" ry="2" />
<text text-anchor="" x="735.86" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor.runWorker (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.runWorker (5 samples, 0.95%)</title><rect x="994.1" y="817" width="11.2" height="15.0" fill="rgb(253,116,23)" rx="2" ry="2" />
<text text-anchor="" x="997.08" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (1 samples, 0.19%)</title><rect x="588.7" y="769" width="2.3" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="591.74" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write0 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write0 (1 samples, 0.19%)</title><rect x="573.0" y="417" width="2.2" height="15.0" fill="rgb(139,139,202)" rx="2" ry="2" />
<text text-anchor="" x="575.98" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (4 samples, 0.76%)</title><rect x="1009.8" y="609" width="9.1" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="1012.85" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (1 samples, 0.19%)</title><rect x="753.1" y="657" width="2.3" height="15.0" fill="rgb(227,28,49)" rx="2" ry="2" />
<text text-anchor="" x="756.13" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.force (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.force (6 samples, 1.15%)</title><rect x="651.8" y="561" width="13.5" height="15.0" fill="rgb(236,11,41)" rx="2" ry="2" />
<text text-anchor="" x="654.79" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.FST.findTargetArc (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.FST.findTargetArc (1 samples, 0.19%)</title><rect x="514.4" y="465" width="2.3" height="15.0" fill="rgb(249,199,6)" rx="2" ry="2" />
<text text-anchor="" x="517.43" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.Versions.loadDocIdAndVersion (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.Versions.loadDocIdAndVersion (1 samples, 0.19%)</title><rect x="757.6" y="545" width="2.3" height="15.0" fill="rgb(241,106,30)" rx="2" ry="2" />
<text text-anchor="" x="760.63" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService$4.doRun (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService$4.doRun (5 samples, 0.95%)</title><rect x="994.1" y="785" width="11.2" height="15.0" fill="rgb(205,174,36)" rx="2" ry="2" />
<text text-anchor="" x="997.08" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.Engine$Create.execute (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.Engine$Create.execute (1 samples, 0.19%)</title><rect x="892.7" y="641" width="2.3" height="15.0" fill="rgb(236,194,14)" rx="2" ry="2" />
<text text-anchor="" x="895.75" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels$1.write (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels$1.write (5 samples, 0.95%)</title><rect x="714.8" y="273" width="11.3" height="15.0" fill="rgb(107,107,220)" rx="2" ry="2" />
<text text-anchor="" x="717.85" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.nodes.TransportNodesAction.nodeOperation (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.nodes.TransportNodesAction.nodeOperation (6 samples, 1.15%)</title><rect x="1154.0" y="721" width="13.5" height="15.0" fill="rgb(250,67,43)" rx="2" ry="2" />
<text text-anchor="" x="1156.97" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.updateDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.updateDocument (1 samples, 0.19%)</title><rect x="503.2" y="529" width="2.2" height="15.0" fill="rgb(233,96,34)" rx="2" ry="2" />
<text text-anchor="" x="506.17" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportRequestHandler.messageReceived (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportRequestHandler.messageReceived (4 samples, 0.76%)</title><rect x="1172.0" y="753" width="9.0" height="15.0" fill="rgb(243,108,4)" rx="2" ry="2" />
<text text-anchor="" x="1174.98" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.OutputStreamIndexOutput.writeBytes (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.OutputStreamIndexOutput.writeBytes (1 samples, 0.19%)</title><rect x="892.7" y="369" width="2.3" height="15.0" fill="rgb(115,115,201)" rx="2" ry="2" />
<text text-anchor="" x="895.75" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.handler.codec.oneone.OneToOneEncoder.handleDownstream (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.handler.codec.oneone.OneToOneEncoder.handleDownstream (1 samples, 0.19%)</title><rect x="1187.7" y="161" width="2.3" height="15.0" fill="rgb(232,41,51)" rx="2" ry="2" />
<text text-anchor="" x="1190.75" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.CodecReader.ramBytesUsed (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.CodecReader.ramBytesUsed (1 samples, 0.19%)</title><rect x="1169.7" y="593" width="2.3" height="15.0" fill="rgb(226,165,47)" rx="2" ry="2" />
<text text-anchor="" x="1172.73" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreate (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreate (2 samples, 0.38%)</title><rect x="813.9" y="577" width="4.5" height="15.0" fill="rgb(231,13,44)" rx="2" ry="2" />
<text text-anchor="" x="816.93" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.SingletonSortedNumericDocValues.setDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.SingletonSortedNumericDocValues.setDocument (1 samples, 0.19%)</title><rect x="455.9" y="593" width="2.2" height="15.0" fill="rgb(251,107,28)" rx="2" ry="2" />
<text text-anchor="" x="458.88" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.flush (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.flush (5 samples, 0.95%)</title><rect x="714.8" y="433" width="11.3" height="15.0" fill="rgb(248,139,20)" rx="2" ry="2" />
<text text-anchor="" x="717.85" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Translog.ensureSynced (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Translog.ensureSynced (1 samples, 0.19%)</title><rect x="588.7" y="625" width="2.3" height="15.0" fill="rgb(205,176,40)" rx="2" ry="2" />
<text text-anchor="" x="591.74" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (1 samples, 0.19%)</title><rect x="969.3" y="785" width="2.3" height="15.0" fill="rgb(228,141,38)" rx="2" ry="2" />
<text text-anchor="" x="972.31" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor$Worker.run (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor$Worker.run (3 samples, 0.57%)</title><rect x="640.5" y="833" width="6.8" height="15.0" fill="rgb(241,183,32)" rx="2" ry="2" />
<text text-anchor="" x="643.53" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.Versions.loadDocIdAndVersion (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.Versions.loadDocIdAndVersion (1 samples, 0.19%)</title><rect x="989.6" y="545" width="2.2" height="15.0" fill="rgb(241,106,30)" rx="2" ry="2" />
<text text-anchor="" x="992.58" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.addDocument (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.addDocument (6 samples, 1.15%)</title><rect x="548.2" y="545" width="13.5" height="15.0" fill="rgb(227,61,0)" rx="2" ry="2" />
<text text-anchor="" x="551.21" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.admin.indices.stats.CommonStats.(init) (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.admin.indices.stats.CommonStats.(init) (6 samples, 1.15%)</title><rect x="1154.0" y="641" width="13.5" height="15.0" fill="rgb(246,201,12)" rx="2" ry="2" />
<text text-anchor="" x="1156.97" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels.writeFullyImpl (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels.writeFullyImpl (1 samples, 0.19%)</title><rect x="692.3" y="225" width="2.3" height="15.0" fill="rgb(118,118,221)" rx="2" ry="2" />
<text text-anchor="" x="695.33" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.Versions.loadVersion (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.Versions.loadVersion (2 samples, 0.38%)</title><rect x="865.7" y="545" width="4.5" height="15.0" fill="rgb(228,65,45)" rx="2" ry="2" />
<text text-anchor="" x="868.73" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (1 samples, 0.19%)</title><rect x="417.6" y="321" width="2.2" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="420.60" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.CompressingStoredFieldsFormat.fieldsWriter (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.CompressingStoredFieldsFormat.fieldsWriter (6 samples, 1.15%)</title><rect x="953.5" y="449" width="13.6" height="15.0" fill="rgb(252,111,49)" rx="2" ry="2" />
<text text-anchor="" x="956.55" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.blocktree.SegmentTermsEnum.seekExact (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.blocktree.SegmentTermsEnum.seekExact (1 samples, 0.19%)</title><rect x="532.4" y="497" width="2.3" height="15.0" fill="rgb(246,206,36)" rx="2" ry="2" />
<text text-anchor="" x="535.44" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (4 samples, 0.76%)</title><rect x="980.6" y="737" width="9.0" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="983.57" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.TermsHashPerField.add (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.TermsHashPerField.add (1 samples, 0.19%)</title><rect x="530.2" y="433" width="2.2" height="15.0" fill="rgb(228,23,21)" rx="2" ry="2" />
<text text-anchor="" x="533.19" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write (5 samples, 0.95%)</title><rect x="701.3" y="193" width="11.3" height="15.0" fill="rgb(119,119,204)" rx="2" ry="2" />
<text text-anchor="" x="704.34" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.processDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.processDocument (1 samples, 0.19%)</title><rect x="638.3" y="497" width="2.2" height="15.0" fill="rgb(220,78,24)" rx="2" ry="2" />
<text text-anchor="" x="641.28" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.EPollSelectorImpl.wakeup (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.EPollSelectorImpl.wakeup (1 samples, 0.19%)</title><rect x="1185.5" y="497" width="2.2" height="15.0" fill="rgb(229,131,30)" rx="2" ry="2" />
<text text-anchor="" x="1188.50" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor.runWorker (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.runWorker (1 samples, 0.19%)</title><rect x="417.6" y="817" width="2.2" height="15.0" fill="rgb(253,116,23)" rx="2" ry="2" />
<text text-anchor="" x="420.60" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Thread.run (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Thread.run (8 samples, 1.53%)</title><rect x="953.5" y="849" width="18.1" height="15.0" fill="rgb(251,44,12)" rx="2" ry="2" />
<text text-anchor="" x="956.55" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.AbstractChannel.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.AbstractChannel.write (1 samples, 0.19%)</title><rect x="1185.5" y="641" width="2.2" height="15.0" fill="rgb(125,125,195)" rx="2" ry="2" />
<text text-anchor="" x="1188.50" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.search.ReferenceManager.maybeRefreshBlocking (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.search.ReferenceManager.maybeRefreshBlocking (1 samples, 0.19%)</title><rect x="1181.0" y="753" width="2.2" height="15.0" fill="rgb(227,146,38)" rx="2" ry="2" />
<text text-anchor="" x="1183.99" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService$4.doRun (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService$4.doRun (6 samples, 1.15%)</title><rect x="1154.0" y="785" width="13.5" height="15.0" fill="rgb(205,174,36)" rx="2" ry="2" />
<text text-anchor="" x="1156.97" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.joda.time.format.DateTimeFormatterBuilder$MatchingParser.parseInto (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.joda.time.format.DateTimeFormatterBuilder$MatchingParser.parseInto (1 samples, 0.19%)</title><rect x="541.5" y="337" width="2.2" height="15.0" fill="rgb(217,47,52)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (6 samples, 1.15%)</title><rect x="714.8" y="753" width="13.6" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="717.85" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (5 samples, 0.95%)</title><rect x="872.5" y="673" width="11.2" height="15.0" fill="rgb(218,222,0)" rx="2" ry="2" />
<text text-anchor="" x="875.48" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.single.shard.TransportSingleShardAction$TransportHandler$1.onResponse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.single.shard.TransportSingleShardAction$TransportHandler$1.onResponse (1 samples, 0.19%)</title><rect x="1108.9" y="545" width="2.3" height="15.0" fill="rgb(226,165,22)" rx="2" ry="2" />
<text text-anchor="" x="1111.93" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.lucene54.Lucene54DocValuesConsumer.addNumericField (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.lucene54.Lucene54DocValuesConsumer.addNumericField (1 samples, 0.19%)</title><rect x="455.9" y="657" width="2.2" height="15.0" fill="rgb(234,148,46)" rx="2" ry="2" />
<text text-anchor="" x="458.88" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.NioWorker.scheduleWriteIfNecessary (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.NioWorker.scheduleWriteIfNecessary (1 samples, 0.19%)</title><rect x="415.3" y="97" width="2.3" height="15.0" fill="rgb(219,175,22)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.flush (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.flush (5 samples, 0.95%)</title><rect x="471.6" y="577" width="11.3" height="15.0" fill="rgb(228,191,52)" rx="2" ry="2" />
<text text-anchor="" x="474.64" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (10 samples, 1.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (10 samples, 1.91%)</title><rect x="899.5" y="657" width="22.5" height="15.0" fill="rgb(227,28,49)" rx="2" ry="2" />
<text text-anchor="" x="902.50" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.AbstractNioSelector.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.AbstractNioSelector.run (1 samples, 0.19%)</title><rect x="415.3" y="737" width="2.3" height="15.0" fill="rgb(213,181,6)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (2 samples, 0.38%)</title><rect x="728.4" y="609" width="4.5" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="731.36" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.Engine$Create.execute (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.Engine$Create.execute (2 samples, 0.38%)</title><rect x="487.4" y="625" width="4.5" height="15.0" fill="rgb(236,194,14)" rx="2" ry="2" />
<text text-anchor="" x="490.40" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.EPollArrayWrapper.interrupt (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.EPollArrayWrapper.interrupt (1 samples, 0.19%)</title><rect x="1185.5" y="465" width="2.2" height="15.0" fill="rgb(224,76,2)" rx="2" ry="2" />
<text text-anchor="" x="1188.50" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (1 samples, 0.19%)</title><rect x="1185.5" y="769" width="2.2" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="1188.50" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (8 samples, 1.53%)</title><rect x="570.7" y="641" width="18.0" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="573.73" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (3 samples, 0.57%)</title><rect x="856.7" y="593" width="6.8" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="859.72" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Checkpoint.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Checkpoint.write (1 samples, 0.19%)</title><rect x="991.8" y="545" width="2.3" height="15.0" fill="rgb(94,94,229)" rx="2" ry="2" />
<text text-anchor="" x="994.83" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (5 samples, 0.95%)</title><rect x="516.7" y="609" width="11.2" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="519.68" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.checkpoint (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.checkpoint (3 samples, 0.57%)</title><rect x="600.0" y="577" width="6.8" height="15.0" fill="rgb(218,30,19)" rx="2" ry="2" />
<text text-anchor="" x="603.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (1 samples, 0.19%)</title><rect x="976.1" y="609" width="2.2" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="979.07" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.index (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.index (6 samples, 1.15%)</title><rect x="953.5" y="593" width="13.6" height="15.0" fill="rgb(242,61,12)" rx="2" ry="2" />
<text text-anchor="" x="956.55" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.segmentStats (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.segmentStats (2 samples, 0.38%)</title><rect x="1117.9" y="641" width="4.5" height="15.0" fill="rgb(223,160,15)" rx="2" ry="2" />
<text text-anchor="" x="1120.94" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.internal.FieldNamesFieldMapper.postParse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.internal.FieldNamesFieldMapper.postParse (1 samples, 0.19%)</title><rect x="546.0" y="545" width="2.2" height="15.0" fill="rgb(213,39,34)" rx="2" ry="2" />
<text text-anchor="" x="548.95" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.AbstractNioWorker.writeFromUserCode (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.AbstractNioWorker.writeFromUserCode (1 samples, 0.19%)</title><rect x="1185.5" y="545" width="2.2" height="15.0" fill="rgb(105,105,211)" rx="2" ry="2" />
<text text-anchor="" x="1188.50" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (1 samples, 0.19%)</title><rect x="854.5" y="641" width="2.2" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="857.47" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.create (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.create (5 samples, 0.95%)</title><rect x="843.2" y="593" width="11.3" height="15.0" fill="rgb(214,111,47)" rx="2" ry="2" />
<text text-anchor="" x="846.21" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (1 samples, 0.19%)</title><rect x="500.9" y="785" width="2.3" height="15.0" fill="rgb(228,141,38)" rx="2" ry="2" />
<text text-anchor="" x="503.92" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor.runWorker (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.runWorker (6 samples, 1.15%)</title><rect x="843.2" y="817" width="13.5" height="15.0" fill="rgb(253,116,23)" rx="2" ry="2" />
<text text-anchor="" x="846.21" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.create (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.create (2 samples, 0.38%)</title><rect x="566.2" y="593" width="4.5" height="15.0" fill="rgb(214,111,47)" rx="2" ry="2" />
<text text-anchor="" x="569.22" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.write (1 samples, 0.19%)</title><rect x="892.7" y="209" width="2.3" height="15.0" fill="rgb(103,103,204)" rx="2" ry="2" />
<text text-anchor="" x="895.75" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (7 samples, 1.34%)</title><rect x="649.5" y="657" width="15.8" height="15.0" fill="rgb(224,156,41)" rx="2" ry="2" />
<text text-anchor="" x="652.54" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.SelectorImpl.select (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.SelectorImpl.select (1 samples, 0.19%)</title><rect x="422.1" y="689" width="2.3" height="15.0" fill="rgb(245,93,11)" rx="2" ry="2" />
<text text-anchor="" x="425.10" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.Engine$Create.execute (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.Engine$Create.execute (3 samples, 0.57%)</title><rect x="530.2" y="625" width="6.7" height="15.0" fill="rgb(236,194,14)" rx="2" ry="2" />
<text text-anchor="" x="533.19" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (2 samples, 0.38%)</title><rect x="512.2" y="641" width="4.5" height="15.0" fill="rgb(214,128,2)" rx="2" ry="2" />
<text text-anchor="" x="515.18" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (4 samples, 0.76%)</title><rect x="800.4" y="657" width="9.0" height="15.0" fill="rgb(227,28,49)" rx="2" ry="2" />
<text text-anchor="" x="803.42" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.StandardDirectoryReader.doOpenFromWriter (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.StandardDirectoryReader.doOpenFromWriter (1 samples, 0.19%)</title><rect x="1181.0" y="625" width="2.2" height="15.0" fill="rgb(238,23,26)" rx="2" ry="2" />
<text text-anchor="" x="1183.99" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentParser.parseObject (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentParser.parseObject (1 samples, 0.19%)</title><rect x="978.3" y="577" width="2.3" height="15.0" fill="rgb(238,220,50)" rx="2" ry="2" />
<text text-anchor="" x="981.32" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.FST.readFirstRealTargetArc (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.FST.readFirstRealTargetArc (1 samples, 0.19%)</title><rect x="633.8" y="449" width="2.2" height="15.0" fill="rgb(122,122,215)" rx="2" ry="2" />
<text text-anchor="" x="636.78" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.store.StoreStats.writeTo (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.store.StoreStats.writeTo (1 samples, 0.19%)</title><rect x="1122.4" y="577" width="2.3" height="15.0" fill="rgb(116,116,212)" rx="2" ry="2" />
<text text-anchor="" x="1125.44" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Thread.run (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Thread.run (6 samples, 1.15%)</title><rect x="762.1" y="849" width="13.5" height="15.0" fill="rgb(251,44,12)" rx="2" ry="2" />
<text text-anchor="" x="765.14" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.util.internal.DeadLockProofWorker$1.run (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.util.internal.DeadLockProofWorker$1.run (5 samples, 0.95%)</title><rect x="444.6" y="801" width="11.3" height="15.0" fill="rgb(237,224,40)" rx="2" ry="2" />
<text text-anchor="" x="447.62" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.flush (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.flush (1 samples, 0.19%)</title><rect x="692.3" y="433" width="2.3" height="15.0" fill="rgb(248,139,20)" rx="2" ry="2" />
<text text-anchor="" x="695.33" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.Channels.writeToChannel (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.Channels.writeToChannel (1 samples, 0.19%)</title><rect x="1009.8" y="513" width="2.3" height="15.0" fill="rgb(134,134,237)" rx="2" ry="2" />
<text text-anchor="" x="1012.85" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.admin.indices.stats.CommonStats.writeTo (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.admin.indices.stats.CommonStats.writeTo (1 samples, 0.19%)</title><rect x="1122.4" y="593" width="2.3" height="15.0" fill="rgb(116,116,216)" rx="2" ry="2" />
<text text-anchor="" x="1125.44" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (1 samples, 0.19%)</title><rect x="1183.2" y="801" width="2.3" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="1186.24" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.processDocument (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.processDocument (5 samples, 0.95%)</title><rect x="735.1" y="481" width="11.3" height="15.0" fill="rgb(220,78,24)" rx="2" ry="2" />
<text text-anchor="" x="738.11" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriter.updateDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriter.updateDocument (1 samples, 0.19%)</title><rect x="606.8" y="513" width="2.2" height="15.0" fill="rgb(238,61,26)" rx="2" ry="2" />
<text text-anchor="" x="609.76" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.stream.StreamOutput.writeOptionalStreamable (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.stream.StreamOutput.writeOptionalStreamable (1 samples, 0.19%)</title><rect x="1122.4" y="625" width="2.3" height="15.0" fill="rgb(119,119,222)" rx="2" ry="2" />
<text text-anchor="" x="1125.44" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor$Worker.run (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor$Worker.run (11 samples, 2.10%)</title><rect x="541.5" y="833" width="24.7" height="15.0" fill="rgb(241,183,32)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (1 samples, 0.19%)</title><rect x="588.7" y="641" width="2.3" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="591.74" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriterStallControl.updateStalled (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriterStallControl.updateStalled (1 samples, 0.19%)</title><rect x="899.5" y="465" width="2.3" height="15.0" fill="rgb(243,96,40)" rx="2" ry="2" />
<text text-anchor="" x="902.50" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.TransportAction$1.onResponse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.TransportAction$1.onResponse (1 samples, 0.19%)</title><rect x="1108.9" y="577" width="2.3" height="15.0" fill="rgb(239,40,41)" rx="2" ry="2" />
<text text-anchor="" x="1111.93" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (10 samples, 1.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (10 samples, 1.91%)</title><rect x="899.5" y="705" width="22.5" height="15.0" fill="rgb(222,177,52)" rx="2" ry="2" />
<text text-anchor="" x="902.50" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Checkpoint.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Checkpoint.write (1 samples, 0.19%)</title><rect x="649.5" y="545" width="2.3" height="15.0" fill="rgb(94,94,229)" rx="2" ry="2" />
<text text-anchor="" x="652.54" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.ip.IpFieldMapper.ipToLong (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.ip.IpFieldMapper.ipToLong (1 samples, 0.19%)</title><rect x="732.9" y="449" width="2.2" height="15.0" fill="rgb(250,13,42)" rx="2" ry="2" />
<text text-anchor="" x="735.86" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (2 samples, 0.38%)</title><rect x="813.9" y="641" width="4.5" height="15.0" fill="rgb(214,128,2)" rx="2" ry="2" />
<text text-anchor="" x="816.93" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels.access$000 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels.access$000 (1 samples, 0.19%)</title><rect x="892.7" y="273" width="2.3" height="15.0" fill="rgb(232,51,49)" rx="2" ry="2" />
<text text-anchor="" x="895.75" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.create (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.create (6 samples, 1.15%)</title><rect x="714.8" y="593" width="13.6" height="15.0" fill="rgb(214,111,47)" rx="2" ry="2" />
<text text-anchor="" x="717.85" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.io.BufferedOutputStream.flushBuffer (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.io.BufferedOutputStream.flushBuffer (1 samples, 0.19%)</title><rect x="928.8" y="337" width="2.2" height="15.0" fill="rgb(238,120,29)" rx="2" ry="2" />
<text text-anchor="" x="931.78" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.FieldMapper.parse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.FieldMapper.parse (1 samples, 0.19%)</title><rect x="546.0" y="529" width="2.2" height="15.0" fill="rgb(215,191,25)" rx="2" ry="2" />
<text text-anchor="" x="548.95" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.doRun (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.doRun (7 samples, 1.34%)</title><rect x="674.3" y="705" width="15.8" height="15.0" fill="rgb(232,57,0)" rx="2" ry="2" />
<text text-anchor="" x="677.31" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.fs.UnixPath.getPathForPermissionCheck (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.fs.UnixPath.getPathForPermissionCheck (1 samples, 0.19%)</title><rect x="1156.2" y="401" width="2.3" height="15.0" fill="rgb(220,0,32)" rx="2" ry="2" />
<text text-anchor="" x="1159.22" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (1 samples, 0.19%)</title><rect x="638.3" y="753" width="2.2" height="15.0" fill="rgb(247,84,19)" rx="2" ry="2" />
<text text-anchor="" x="641.28" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)</title><rect x="883.7" y="209" width="2.3" height="15.0" fill="rgb(121,121,206)" rx="2" ry="2" />
<text text-anchor="" x="886.74" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor$Worker.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor$Worker.run (1 samples, 0.19%)</title><rect x="419.8" y="833" width="2.3" height="15.0" fill="rgb(241,183,32)" rx="2" ry="2" />
<text text-anchor="" x="422.85" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.util.ThreadRenamingRunnable.run (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.util.ThreadRenamingRunnable.run (5 samples, 0.95%)</title><rect x="444.6" y="785" width="11.3" height="15.0" fill="rgb(247,53,7)" rx="2" ry="2" />
<text text-anchor="" x="447.62" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (3 samples, 0.57%)</title><rect x="856.7" y="721" width="6.8" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="859.72" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force (1 samples, 0.19%)</title><rect x="627.0" y="545" width="2.3" height="15.0" fill="rgb(236,18,34)" rx="2" ry="2" />
<text text-anchor="" x="630.02" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.DefaultChannelPipeline.sendDownstream (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.DefaultChannelPipeline.sendDownstream (1 samples, 0.19%)</title><rect x="415.3" y="145" width="2.3" height="15.0" fill="rgb(220,223,7)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentMapper.parse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentMapper.parse (1 samples, 0.19%)</title><rect x="732.9" y="577" width="2.2" height="15.0" fill="rgb(239,142,49)" rx="2" ry="2" />
<text text-anchor="" x="735.86" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentMapper.parse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentMapper.parse (1 samples, 0.19%)</title><rect x="690.1" y="577" width="2.2" height="15.0" fill="rgb(239,142,49)" rx="2" ry="2" />
<text text-anchor="" x="693.08" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.DefaultChannelPipeline.sendUpstream (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.DefaultChannelPipeline.sendUpstream (1 samples, 0.19%)</title><rect x="1187.7" y="641" width="2.3" height="15.0" fill="rgb(224,124,32)" rx="2" ry="2" />
<text text-anchor="" x="1190.75" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Thread.run (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Thread.run (3 samples, 0.57%)</title><rect x="640.5" y="849" width="6.8" height="15.0" fill="rgb(251,44,12)" rx="2" ry="2" />
<text text-anchor="" x="643.53" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (1 samples, 0.19%)</title><rect x="750.9" y="689" width="2.2" height="15.0" fill="rgb(218,222,0)" rx="2" ry="2" />
<text text-anchor="" x="753.88" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (1 samples, 0.19%)</title><rect x="588.7" y="673" width="2.3" height="15.0" fill="rgb(218,222,0)" rx="2" ry="2" />
<text text-anchor="" x="591.74" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.fasterxml.jackson.core.json.UTF8StreamJsonParser.parseMediumName (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.fasterxml.jackson.core.json.UTF8StreamJsonParser.parseMediumName (1 samples, 0.19%)</title><rect x="690.1" y="481" width="2.2" height="15.0" fill="rgb(231,192,19)" rx="2" ry="2" />
<text text-anchor="" x="693.08" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.completionStats (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.completionStats (1 samples, 0.19%)</title><rect x="1145.0" y="625" width="2.2" height="15.0" fill="rgb(216,18,14)" rx="2" ry="2" />
<text text-anchor="" x="1147.96" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (11 samples, 2.10%)</title><rect x="541.5" y="689" width="24.7" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('java.util.TreeMap$Values.iterator (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.TreeMap$Values.iterator (1 samples, 0.19%)</title><rect x="1120.2" y="561" width="2.2" height="15.0" fill="rgb(253,164,45)" rx="2" ry="2" />
<text text-anchor="" x="1123.19" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (5 samples, 0.95%)</title><rect x="629.3" y="801" width="11.2" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="632.27" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.core.DateFieldMapper$DateFieldType.parseStringValue (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.core.DateFieldMapper$DateFieldType.parseStringValue (1 samples, 0.19%)</title><rect x="1005.3" y="449" width="2.3" height="15.0" fill="rgb(218,44,50)" rx="2" ry="2" />
<text text-anchor="" x="1008.34" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (4 samples, 0.76%)</title><rect x="491.9" y="593" width="9.0" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="494.91" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.flush (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.flush (1 samples, 0.19%)</title><rect x="460.4" y="577" width="2.2" height="15.0" fill="rgb(228,191,52)" rx="2" ry="2" />
<text text-anchor="" x="463.38" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.indices.IndicesService.stats (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.indices.IndicesService.stats (1 samples, 0.19%)</title><rect x="1113.4" y="657" width="2.3" height="15.0" fill="rgb(247,73,29)" rx="2" ry="2" />
<text text-anchor="" x="1116.44" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriter.updateDocument (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriter.updateDocument (3 samples, 0.57%)</title><rect x="762.1" y="513" width="6.8" height="15.0" fill="rgb(238,61,26)" rx="2" ry="2" />
<text text-anchor="" x="765.14" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write0 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write0 (1 samples, 0.19%)</title><rect x="926.5" y="145" width="2.3" height="15.0" fill="rgb(139,139,202)" rx="2" ry="2" />
<text text-anchor="" x="929.53" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived (6 samples, 1.15%)</title><rect x="1124.7" y="753" width="13.5" height="15.0" fill="rgb(218,49,53)" rx="2" ry="2" />
<text text-anchor="" x="1127.69" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.io.BufferedOutputStream.flushBuffer (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.io.BufferedOutputStream.flushBuffer (1 samples, 0.19%)</title><rect x="892.7" y="337" width="2.3" height="15.0" fill="rgb(238,120,29)" rx="2" ry="2" />
<text text-anchor="" x="895.75" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.joda.time.format.DateTimeParserBucket.doParseMillis (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.joda.time.format.DateTimeParserBucket.doParseMillis (1 samples, 0.19%)</title><rect x="1005.3" y="417" width="2.3" height="15.0" fill="rgb(212,202,35)" rx="2" ry="2" />
<text text-anchor="" x="1008.34" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (2 samples, 0.38%)</title><rect x="809.4" y="769" width="4.5" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="812.43" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.doRun (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.doRun (2 samples, 0.38%)</title><rect x="728.4" y="705" width="4.5" height="15.0" fill="rgb(232,57,0)" rx="2" ry="2" />
<text text-anchor="" x="731.36" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write0 (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write0 (3 samples, 0.57%)</title><rect x="516.7" y="481" width="6.7" height="15.0" fill="rgb(139,139,202)" rx="2" ry="2" />
<text text-anchor="" x="519.68" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.FST.readFirstRealTargetArc (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.FST.readFirstRealTargetArc (1 samples, 0.19%)</title><rect x="973.8" y="449" width="2.3" height="15.0" fill="rgb(122,122,215)" rx="2" ry="2" />
<text text-anchor="" x="976.82" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (2 samples, 0.38%)</title><rect x="753.1" y="689" width="4.5" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="756.13" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (10 samples, 1.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (10 samples, 1.91%)</title><rect x="775.6" y="721" width="22.6" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="778.65" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Translog.ensureSynced (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Translog.ensureSynced (5 samples, 0.95%)</title><rect x="595.5" y="625" width="11.3" height="15.0" fill="rgb(205,176,40)" rx="2" ry="2" />
<text text-anchor="" x="598.50" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.joda.time.format.DateTimeFormatter.parseMillis (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.joda.time.format.DateTimeFormatter.parseMillis (1 samples, 0.19%)</title><rect x="482.9" y="433" width="2.3" height="15.0" fill="rgb(222,139,39)" rx="2" ry="2" />
<text text-anchor="" x="485.90" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.FST.findTargetArc (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.FST.findTargetArc (1 samples, 0.19%)</title><rect x="642.8" y="465" width="2.2" height="15.0" fill="rgb(249,199,6)" rx="2" ry="2" />
<text text-anchor="" x="645.79" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.OutputStreamIndexOutput.writeBytes (18 samples, 3.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.OutputStreamIndexOutput.writeBytes (18 samples, 3.44%)</title><rect x="1068.4" y="689" width="40.5" height="15.0" fill="rgb(115,115,201)" rx="2" ry="2" />
<text text-anchor="" x="1071.40" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (7 samples, 1.34%)</title><rect x="512.2" y="801" width="15.7" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="515.18" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (2 samples, 0.38%)</title><rect x="624.8" y="753" width="4.5" height="15.0" fill="rgb(247,84,19)" rx="2" ry="2" />
<text text-anchor="" x="627.77" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriterPerThread.updateDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriterPerThread.updateDocument (1 samples, 0.19%)</title><rect x="638.3" y="513" width="2.2" height="15.0" fill="rgb(245,210,52)" rx="2" ry="2" />
<text text-anchor="" x="641.28" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (8 samples, 1.53%)</title><rect x="1124.7" y="801" width="18.0" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="1127.69" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentParser.parseObjectOrField (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentParser.parseObjectOrField (1 samples, 0.19%)</title><rect x="674.3" y="497" width="2.3" height="15.0" fill="rgb(205,194,30)" rx="2" ry="2" />
<text text-anchor="" x="677.31" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.write (1 samples, 0.19%)</title><rect x="1009.8" y="465" width="2.3" height="15.0" fill="rgb(103,103,204)" rx="2" ry="2" />
<text text-anchor="" x="1012.85" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (1 samples, 0.19%)</title><rect x="777.9" y="561" width="2.3" height="15.0" fill="rgb(220,105,49)" rx="2" ry="2" />
<text text-anchor="" x="780.90" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Translog.ensureSynced (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Translog.ensureSynced (4 samples, 0.76%)</title><rect x="491.9" y="625" width="9.0" height="15.0" fill="rgb(205,176,40)" rx="2" ry="2" />
<text text-anchor="" x="494.91" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.DefaultChannelPipeline.sendUpstream (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.DefaultChannelPipeline.sendUpstream (1 samples, 0.19%)</title><rect x="415.3" y="593" width="2.3" height="15.0" fill="rgb(224,124,32)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreate (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreate (1 samples, 0.19%)</title><rect x="606.8" y="577" width="2.2" height="15.0" fill="rgb(231,13,44)" rx="2" ry="2" />
<text text-anchor="" x="609.76" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnReplica (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnReplica (1 samples, 0.19%)</title><rect x="757.6" y="657" width="2.3" height="15.0" fill="rgb(233,15,33)" rx="2" ry="2" />
<text text-anchor="" x="760.63" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.store.Store$StoreStatsCache.refresh (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.store.Store$StoreStatsCache.refresh (1 samples, 0.19%)</title><rect x="1178.7" y="577" width="2.3" height="15.0" fill="rgb(242,91,19)" rx="2" ry="2" />
<text text-anchor="" x="1181.74" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.handler.codec.oneone.OneToOneEncoder.doEncode (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.handler.codec.oneone.OneToOneEncoder.doEncode (1 samples, 0.19%)</title><rect x="1187.7" y="145" width="2.3" height="15.0" fill="rgb(205,190,49)" rx="2" ry="2" />
<text text-anchor="" x="1190.75" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (9 samples, 1.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (9 samples, 1.72%)</title><rect x="933.3" y="609" width="20.2" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="936.28" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.mergeMiddle (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.mergeMiddle (1 samples, 0.19%)</title><rect x="455.9" y="785" width="2.2" height="15.0" fill="rgb(210,68,40)" rx="2" ry="2" />
<text text-anchor="" x="458.88" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write0 (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write0 (2 samples, 0.38%)</title><rect x="595.5" y="481" width="4.5" height="15.0" fill="rgb(139,139,202)" rx="2" ry="2" />
<text text-anchor="" x="598.50" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.write (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.write (3 samples, 0.57%)</title><rect x="845.5" y="225" width="6.7" height="15.0" fill="rgb(121,121,206)" rx="2" ry="2" />
<text text-anchor="" x="848.46" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.create (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.create (1 samples, 0.19%)</title><rect x="892.7" y="609" width="2.3" height="15.0" fill="rgb(214,111,47)" rx="2" ry="2" />
<text text-anchor="" x="895.75" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain$PerField.invert (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain$PerField.invert (1 samples, 0.19%)</title><rect x="852.2" y="449" width="2.3" height="15.0" fill="rgb(243,141,2)" rx="2" ry="2" />
<text text-anchor="" x="855.21" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (6 samples, 1.15%)</title><rect x="762.1" y="769" width="13.5" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="765.14" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.DefaultChannelPipeline.sendUpstream (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.DefaultChannelPipeline.sendUpstream (8 samples, 1.53%)</title><rect x="426.6" y="641" width="18.0" height="15.0" fill="rgb(224,124,32)" rx="2" ry="2" />
<text text-anchor="" x="429.60" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.flush (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.flush (6 samples, 1.15%)</title><rect x="548.2" y="433" width="13.5" height="15.0" fill="rgb(248,139,20)" rx="2" ry="2" />
<text text-anchor="" x="551.21" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.indices.recovery.RecoveryTarget$FileChunkTransportRequestHandler.messageReceived (18 samples, 3.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.indices.recovery.RecoveryTarget$FileChunkTransportRequestHandler.messageReceived (18 samples, 3.44%)</title><rect x="1068.4" y="737" width="40.5" height="15.0" fill="rgb(218,138,51)" rx="2" ry="2" />
<text text-anchor="" x="1071.40" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (8 samples, 1.53%)</title><rect x="606.8" y="641" width="18.0" height="15.0" fill="rgb(214,128,2)" rx="2" ry="2" />
<text text-anchor="" x="609.76" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.Channels.fireMessageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.Channels.fireMessageReceived (1 samples, 0.19%)</title><rect x="1187.7" y="673" width="2.3" height="15.0" fill="rgb(237,176,18)" rx="2" ry="2" />
<text text-anchor="" x="1190.75" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (4 samples, 0.76%)</title><rect x="883.7" y="721" width="9.0" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="886.74" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor$Worker.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor$Worker.run (1 samples, 0.19%)</title><rect x="1185.5" y="833" width="2.2" height="15.0" fill="rgb(241,183,32)" rx="2" ry="2" />
<text text-anchor="" x="1188.50" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.Channels.writeToChannel (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.Channels.writeToChannel (5 samples, 0.95%)</title><rect x="471.6" y="561" width="11.3" height="15.0" fill="rgb(134,134,237)" rx="2" ry="2" />
<text text-anchor="" x="474.64" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor$Worker.run (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor$Worker.run (11 samples, 2.10%)</title><rect x="775.6" y="833" width="24.8" height="15.0" fill="rgb(241,183,32)" rx="2" ry="2" />
<text text-anchor="" x="778.65" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriter.updateDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriter.updateDocument (1 samples, 0.19%)</title><rect x="892.7" y="529" width="2.3" height="15.0" fill="rgb(238,61,26)" rx="2" ry="2" />
<text text-anchor="" x="895.75" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor.runWorker (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.runWorker (4 samples, 0.76%)</title><rect x="856.7" y="817" width="9.0" height="15.0" fill="rgb(253,116,23)" rx="2" ry="2" />
<text text-anchor="" x="859.72" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor.execute (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.execute (1 samples, 0.19%)</title><rect x="417.6" y="225" width="2.2" height="15.0" fill="rgb(217,45,23)" rx="2" ry="2" />
<text text-anchor="" x="420.60" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction.shardOperation (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction.shardOperation (2 samples, 0.38%)</title><rect x="1147.2" y="689" width="4.5" height="15.0" fill="rgb(252,11,24)" rx="2" ry="2" />
<text text-anchor="" x="1150.21" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (2 samples, 0.38%)</title><rect x="809.4" y="641" width="4.5" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="812.43" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.util.ThreadRenamingRunnable.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.util.ThreadRenamingRunnable.run (1 samples, 0.19%)</title><rect x="417.6" y="785" width="2.2" height="15.0" fill="rgb(247,53,7)" rx="2" ry="2" />
<text text-anchor="" x="420.60" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels.writeFullyImpl (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels.writeFullyImpl (5 samples, 0.95%)</title><rect x="735.1" y="225" width="11.3" height="15.0" fill="rgb(118,118,221)" rx="2" ry="2" />
<text text-anchor="" x="738.11" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.write (1 samples, 0.19%)</title><rect x="460.4" y="529" width="2.2" height="15.0" fill="rgb(103,103,204)" rx="2" ry="2" />
<text text-anchor="" x="463.38" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.flush (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.flush (1 samples, 0.19%)</title><rect x="750.9" y="577" width="2.2" height="15.0" fill="rgb(228,191,52)" rx="2" ry="2" />
<text text-anchor="" x="753.88" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentParser.parseDocument (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentParser.parseDocument (3 samples, 0.57%)</title><rect x="541.5" y="561" width="6.7" height="15.0" fill="rgb(209,14,21)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.updateDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.updateDocument (1 samples, 0.19%)</title><rect x="692.3" y="529" width="2.3" height="15.0" fill="rgb(233,96,34)" rx="2" ry="2" />
<text text-anchor="" x="695.33" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.zip.CheckedOutputStream.write (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.zip.CheckedOutputStream.write (6 samples, 1.15%)</title><rect x="609.0" y="337" width="13.5" height="15.0" fill="rgb(106,106,204)" rx="2" ry="2" />
<text text-anchor="" x="612.01" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (7 samples, 1.34%)</title><rect x="953.5" y="753" width="15.8" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="956.55" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels.writeFully (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels.writeFully (1 samples, 0.19%)</title><rect x="638.3" y="257" width="2.2" height="15.0" fill="rgb(137,137,198)" rx="2" ry="2" />
<text text-anchor="" x="641.28" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (7 samples, 1.34%)</title><rect x="953.5" y="721" width="15.8" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="956.55" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.create (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.create (2 samples, 0.38%)</title><rect x="512.2" y="609" width="4.5" height="15.0" fill="rgb(206,208,36)" rx="2" ry="2" />
<text text-anchor="" x="515.18" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels.access$000 (18 samples, 3.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels.access$000 (18 samples, 3.44%)</title><rect x="1068.4" y="609" width="40.5" height="15.0" fill="rgb(232,51,49)" rx="2" ry="2" />
<text text-anchor="" x="1071.40" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >jav..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.create (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.create (1 samples, 0.19%)</title><rect x="994.1" y="609" width="2.2" height="15.0" fill="rgb(206,208,36)" rx="2" ry="2" />
<text text-anchor="" x="997.08" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (2 samples, 0.38%)</title><rect x="561.7" y="657" width="4.5" height="15.0" fill="rgb(224,156,41)" rx="2" ry="2" />
<text text-anchor="" x="564.72" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.Channels.writeToChannel (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.Channels.writeToChannel (3 samples, 0.57%)</title><rect x="856.7" y="561" width="6.8" height="15.0" fill="rgb(134,134,237)" rx="2" ry="2" />
<text text-anchor="" x="859.72" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.create (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.create (2 samples, 0.38%)</title><rect x="777.9" y="593" width="4.5" height="15.0" fill="rgb(214,111,47)" rx="2" ry="2" />
<text text-anchor="" x="780.90" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.Engine.segmentsStats (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.Engine.segmentsStats (1 samples, 0.19%)</title><rect x="1149.5" y="625" width="2.2" height="15.0" fill="rgb(226,79,4)" rx="2" ry="2" />
<text text-anchor="" x="1152.47" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.Channels.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.Channels.write (1 samples, 0.19%)</title><rect x="1185.5" y="625" width="2.2" height="15.0" fill="rgb(124,124,235)" rx="2" ry="2" />
<text text-anchor="" x="1188.50" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreate (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreate (2 samples, 0.38%)</title><rect x="512.2" y="577" width="4.5" height="15.0" fill="rgb(231,13,44)" rx="2" ry="2" />
<text text-anchor="" x="515.18" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.updateDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.updateDocument (1 samples, 0.19%)</title><rect x="458.1" y="561" width="2.3" height="15.0" fill="rgb(233,96,34)" rx="2" ry="2" />
<text text-anchor="" x="461.13" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreate (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreate (1 samples, 0.19%)</title><rect x="989.6" y="593" width="2.2" height="15.0" fill="rgb(231,13,44)" rx="2" ry="2" />
<text text-anchor="" x="992.58" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][management][T#19] (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][management][T#19] (6 samples, 1.15%)</title><rect x="1154.0" y="865" width="13.5" height="15.0" fill="rgb(212,223,0)" rx="2" ry="2" />
<text text-anchor="" x="1156.97" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.prepareCreate (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.prepareCreate (1 samples, 0.19%)</title><rect x="667.6" y="593" width="2.2" height="15.0" fill="rgb(228,179,21)" rx="2" ry="2" />
<text text-anchor="" x="670.56" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService$4.doRun (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService$4.doRun (3 samples, 0.57%)</title><rect x="971.6" y="785" width="6.7" height="15.0" fill="rgb(205,174,36)" rx="2" ry="2" />
<text text-anchor="" x="974.56" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.processDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.processDocument (1 samples, 0.19%)</title><rect x="971.6" y="481" width="2.2" height="15.0" fill="rgb(220,78,24)" rx="2" ry="2" />
<text text-anchor="" x="974.56" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.index.TransportIndexAction.prepareIndexOperationOnPrimary (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.index.TransportIndexAction.prepareIndexOperationOnPrimary (1 samples, 0.19%)</title><rect x="690.1" y="625" width="2.2" height="15.0" fill="rgb(213,102,12)" rx="2" ry="2" />
<text text-anchor="" x="693.08" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (2 samples, 0.38%)</title><rect x="1005.3" y="641" width="4.5" height="15.0" fill="rgb(214,128,2)" rx="2" ry="2" />
<text text-anchor="" x="1008.34" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor.runWorker (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.runWorker (8 samples, 1.53%)</title><rect x="714.8" y="817" width="18.1" height="15.0" fill="rgb(253,116,23)" rx="2" ry="2" />
<text text-anchor="" x="717.85" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.blocktree.SegmentTermsEnum.seekExact (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.blocktree.SegmentTermsEnum.seekExact (2 samples, 0.38%)</title><rect x="566.2" y="497" width="4.5" height="15.0" fill="rgb(246,206,36)" rx="2" ry="2" />
<text text-anchor="" x="569.22" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)</title><rect x="600.0" y="433" width="2.3" height="15.0" fill="rgb(119,119,204)" rx="2" ry="2" />
<text text-anchor="" x="603.00" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.Channels.writeToChannel (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.Channels.writeToChannel (1 samples, 0.19%)</title><rect x="985.1" y="561" width="2.2" height="15.0" fill="rgb(134,134,237)" rx="2" ry="2" />
<text text-anchor="" x="988.08" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (2 samples, 0.38%)</title><rect x="640.5" y="657" width="4.5" height="15.0" fill="rgb(227,28,49)" rx="2" ry="2" />
<text text-anchor="" x="643.53" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.CompressionMode$LZ4FastCompressor.compress (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.CompressionMode$LZ4FastCompressor.compress (5 samples, 0.95%)</title><rect x="701.3" y="433" width="11.3" height="15.0" fill="rgb(229,154,40)" rx="2" ry="2" />
<text text-anchor="" x="704.34" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (7 samples, 1.34%)</title><rect x="674.3" y="673" width="15.8" height="15.0" fill="rgb(218,222,0)" rx="2" ry="2" />
<text text-anchor="" x="677.31" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.blocktree.SegmentTermsEnum.seekExact (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.blocktree.SegmentTermsEnum.seekExact (1 samples, 0.19%)</title><rect x="746.4" y="497" width="2.2" height="15.0" fill="rgb(246,206,36)" rx="2" ry="2" />
<text text-anchor="" x="749.37" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreate (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreate (1 samples, 0.19%)</title><rect x="1007.6" y="577" width="2.2" height="15.0" fill="rgb(231,13,44)" rx="2" ry="2" />
<text text-anchor="" x="1010.60" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.writeCheckpoint (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.writeCheckpoint (1 samples, 0.19%)</title><rect x="645.0" y="561" width="2.3" height="15.0" fill="rgb(132,132,209)" rx="2" ry="2" />
<text text-anchor="" x="648.04" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.create (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.create (1 samples, 0.19%)</title><rect x="892.7" y="625" width="2.3" height="15.0" fill="rgb(206,208,36)" rx="2" ry="2" />
<text text-anchor="" x="895.75" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.write (18 samples, 3.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.write (18 samples, 3.44%)</title><rect x="1068.4" y="561" width="40.5" height="15.0" fill="rgb(121,121,206)" rx="2" ry="2" />
<text text-anchor="" x="1071.40" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sun..</text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.FilterDirectory.listAll (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.FilterDirectory.listAll (5 samples, 0.95%)</title><rect x="1156.2" y="513" width="11.3" height="15.0" fill="rgb(251,113,6)" rx="2" ry="2" />
<text text-anchor="" x="1159.22" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels.writeFullyImpl (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels.writeFullyImpl (1 samples, 0.19%)</title><rect x="638.3" y="241" width="2.2" height="15.0" fill="rgb(118,118,221)" rx="2" ry="2" />
<text text-anchor="" x="641.28" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (2 samples, 0.38%)</title><rect x="971.6" y="657" width="4.5" height="15.0" fill="rgb(227,28,49)" rx="2" ry="2" />
<text text-anchor="" x="974.56" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Translog.ensureSynced (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Translog.ensureSynced (1 samples, 0.19%)</title><rect x="627.0" y="625" width="2.3" height="15.0" fill="rgb(205,176,40)" rx="2" ry="2" />
<text text-anchor="" x="630.02" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.finishDocument (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.CompressingStoredFieldsWriter.finishDocument (2 samples, 0.38%)</title><rect x="926.5" y="449" width="4.5" height="15.0" fill="rgb(221,219,23)" rx="2" ry="2" />
<text text-anchor="" x="929.53" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.AbstractNioChannel$WriteRequestQueue.offer (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.AbstractNioChannel$WriteRequestQueue.offer (1 samples, 0.19%)</title><rect x="1108.9" y="369" width="2.3" height="15.0" fill="rgb(214,53,14)" rx="2" ry="2" />
<text text-anchor="" x="1111.93" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.SelectorUtil.select (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.SelectorUtil.select (1 samples, 0.19%)</title><rect x="424.4" y="705" width="2.2" height="15.0" fill="rgb(207,113,53)" rx="2" ry="2" />
<text text-anchor="" x="427.35" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.FST.readFirstRealTargetArc (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.FST.readFirstRealTargetArc (1 samples, 0.19%)</title><rect x="768.9" y="449" width="2.2" height="15.0" fill="rgb(122,122,215)" rx="2" ry="2" />
<text text-anchor="" x="771.89" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.EPollSelectorImpl.doSelect (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.EPollSelectorImpl.doSelect (1 samples, 0.19%)</title><rect x="422.1" y="657" width="2.3" height="15.0" fill="rgb(234,159,35)" rx="2" ry="2" />
<text text-anchor="" x="425.10" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels.writeFully (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels.writeFully (5 samples, 0.95%)</title><rect x="701.3" y="273" width="11.3" height="15.0" fill="rgb(137,137,198)" rx="2" ry="2" />
<text text-anchor="" x="704.34" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (5 samples, 0.95%)</title><rect x="843.2" y="657" width="11.3" height="15.0" fill="rgb(227,28,49)" rx="2" ry="2" />
<text text-anchor="" x="846.21" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.LZ4.encodeSequence (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.LZ4.encodeSequence (6 samples, 1.15%)</title><rect x="548.2" y="385" width="13.5" height="15.0" fill="rgb(251,45,21)" rx="2" ry="2" />
<text text-anchor="" x="551.21" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (5 samples, 0.95%)</title><rect x="690.1" y="753" width="11.2" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="693.08" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (11 samples, 2.10%)</title><rect x="818.4" y="657" width="24.8" height="15.0" fill="rgb(224,156,41)" rx="2" ry="2" />
<text text-anchor="" x="821.44" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('java.lang.Object.notifyAll (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Object.notifyAll (1 samples, 0.19%)</title><rect x="899.5" y="449" width="2.3" height="15.0" fill="rgb(217,177,43)" rx="2" ry="2" />
<text text-anchor="" x="902.50" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)</title><rect x="1181.0" y="273" width="2.2" height="15.0" fill="rgb(121,121,206)" rx="2" ry="2" />
<text text-anchor="" x="1183.99" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.DefaultChannelPipeline$DefaultChannelHandlerContext.sendUpstream (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.DefaultChannelPipeline$DefaultChannelHandlerContext.sendUpstream (1 samples, 0.19%)</title><rect x="1187.7" y="545" width="2.3" height="15.0" fill="rgb(217,60,45)" rx="2" ry="2" />
<text text-anchor="" x="1190.75" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.Engine$Create.execute (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.Engine$Create.execute (6 samples, 1.15%)</title><rect x="714.8" y="625" width="13.6" height="15.0" fill="rgb(236,194,14)" rx="2" ry="2" />
<text text-anchor="" x="717.85" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriterPerThread.updateDocument (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriterPerThread.updateDocument (5 samples, 0.95%)</title><rect x="735.1" y="497" width="11.3" height="15.0" fill="rgb(245,210,52)" rx="2" ry="2" />
<text text-anchor="" x="738.11" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (8 samples, 1.53%)</title><rect x="865.7" y="801" width="18.0" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="868.73" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Translog.ensureSynced (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Translog.ensureSynced (4 samples, 0.76%)</title><rect x="1009.8" y="625" width="9.1" height="15.0" fill="rgb(205,176,40)" rx="2" ry="2" />
<text text-anchor="" x="1012.85" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force (2 samples, 0.38%)</title><rect x="809.4" y="545" width="4.5" height="15.0" fill="rgb(236,18,34)" rx="2" ry="2" />
<text text-anchor="" x="812.43" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][get][T#6] (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][get][T#6] (1 samples, 0.19%)</title><rect x="1111.2" y="865" width="2.2" height="15.0" fill="rgb(234,184,44)" rx="2" ry="2" />
<text text-anchor="" x="1114.18" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (1 samples, 0.19%)</title><rect x="748.6" y="641" width="2.3" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="751.63" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.create (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.create (1 samples, 0.19%)</title><rect x="989.6" y="625" width="2.2" height="15.0" fill="rgb(206,208,36)" rx="2" ry="2" />
<text text-anchor="" x="992.58" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.fs.UnixChannelFactory.newFileChannel (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.fs.UnixChannelFactory.newFileChannel (6 samples, 1.15%)</title><rect x="953.5" y="241" width="13.6" height="15.0" fill="rgb(229,90,32)" rx="2" ry="2" />
<text text-anchor="" x="956.55" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.FSDirectory$FSIndexOutput$1.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.FSDirectory$FSIndexOutput$1.write (1 samples, 0.19%)</title><rect x="892.7" y="305" width="2.3" height="15.0" fill="rgb(121,121,236)" rx="2" ry="2" />
<text text-anchor="" x="895.75" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (5 samples, 0.95%)</title><rect x="690.1" y="673" width="11.2" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="693.08" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.FST.findTargetArc (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.FST.findTargetArc (1 samples, 0.19%)</title><rect x="532.4" y="481" width="2.3" height="15.0" fill="rgb(249,199,6)" rx="2" ry="2" />
<text text-anchor="" x="535.44" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (1 samples, 0.19%)</title><rect x="969.3" y="769" width="2.3" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="972.31" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerIndex (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerIndex (1 samples, 0.19%)</title><rect x="624.8" y="593" width="2.2" height="15.0" fill="rgb(246,73,49)" rx="2" ry="2" />
<text text-anchor="" x="627.77" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels.writeFullyImpl (18 samples, 3.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels.writeFullyImpl (18 samples, 3.44%)</title><rect x="1068.4" y="577" width="40.5" height="15.0" fill="rgb(118,118,221)" rx="2" ry="2" />
<text text-anchor="" x="1071.40" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >jav..</text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.ByteSequenceOutputs.read (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.ByteSequenceOutputs.read (1 samples, 0.19%)</title><rect x="746.4" y="385" width="2.2" height="15.0" fill="rgb(107,107,208)" rx="2" ry="2" />
<text text-anchor="" x="749.37" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (2 samples, 0.38%)</title><rect x="989.6" y="785" width="4.5" height="15.0" fill="rgb(228,141,38)" rx="2" ry="2" />
<text text-anchor="" x="992.58" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.FST.findTargetArc (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.FST.findTargetArc (1 samples, 0.19%)</title><rect x="746.4" y="481" width="2.2" height="15.0" fill="rgb(249,199,6)" rx="2" ry="2" />
<text text-anchor="" x="749.37" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (4 samples, 0.76%)</title><rect x="996.3" y="641" width="9.0" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="999.34" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.fs.LinuxFileSystemProvider.readAttributes (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.fs.LinuxFileSystemProvider.readAttributes (1 samples, 0.19%)</title><rect x="1124.7" y="433" width="2.2" height="15.0" fill="rgb(134,134,233)" rx="2" ry="2" />
<text text-anchor="" x="1127.69" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (4 samples, 0.76%)</title><rect x="629.3" y="753" width="9.0" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="632.27" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.Channels.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.Channels.write (1 samples, 0.19%)</title><rect x="1108.9" y="449" width="2.3" height="15.0" fill="rgb(124,124,235)" rx="2" ry="2" />
<text text-anchor="" x="1111.93" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (1 samples, 0.19%)</title><rect x="712.6" y="593" width="2.2" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="715.60" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.Outputs.readFinalOutput (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.Outputs.readFinalOutput (1 samples, 0.19%)</title><rect x="746.4" y="417" width="2.2" height="15.0" fill="rgb(131,131,202)" rx="2" ry="2" />
<text text-anchor="" x="749.37" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.DataInput.readVLong (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.DataInput.readVLong (1 samples, 0.19%)</title><rect x="757.6" y="401" width="2.3" height="15.0" fill="rgb(82,82,236)" rx="2" ry="2" />
<text text-anchor="" x="760.63" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (2 samples, 0.38%)</title><rect x="809.4" y="785" width="4.5" height="15.0" fill="rgb(228,141,38)" rx="2" ry="2" />
<text text-anchor="" x="812.43" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.lucene54.Lucene54DocValuesConsumer.addBinaryField (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.lucene54.Lucene54DocValuesConsumer.addBinaryField (1 samples, 0.19%)</title><rect x="1181.0" y="433" width="2.2" height="15.0" fill="rgb(235,20,23)" rx="2" ry="2" />
<text text-anchor="" x="1183.99" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Translog.ensureSynced (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Translog.ensureSynced (1 samples, 0.19%)</title><rect x="976.1" y="625" width="2.2" height="15.0" fill="rgb(205,176,40)" rx="2" ry="2" />
<text text-anchor="" x="979.07" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write0 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write0 (1 samples, 0.19%)</title><rect x="892.7" y="161" width="2.3" height="15.0" fill="rgb(139,139,202)" rx="2" ry="2" />
<text text-anchor="" x="895.75" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][bulk][T#22] (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][bulk][T#22] (11 samples, 2.10%)</title><rect x="690.1" y="865" width="24.7" height="15.0" fill="rgb(227,210,43)" rx="2" ry="2" />
<text text-anchor="" x="693.08" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.create (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.create (2 samples, 0.38%)</title><rect x="566.2" y="609" width="4.5" height="15.0" fill="rgb(206,208,36)" rx="2" ry="2" />
<text text-anchor="" x="569.22" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (4 samples, 0.76%)</title><rect x="460.4" y="641" width="9.0" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="463.38" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriterStallControl.updateStalled (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriterStallControl.updateStalled (1 samples, 0.19%)</title><rect x="762.1" y="465" width="2.3" height="15.0" fill="rgb(243,96,40)" rx="2" ry="2" />
<text text-anchor="" x="765.14" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.handler.codec.frame.FrameDecoder.unfoldAndFireMessageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.handler.codec.frame.FrameDecoder.unfoldAndFireMessageReceived (1 samples, 0.19%)</title><rect x="415.3" y="529" width="2.3" height="15.0" fill="rgb(217,104,2)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.flush (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.flush (1 samples, 0.19%)</title><rect x="588.7" y="577" width="2.3" height="15.0" fill="rgb(228,191,52)" rx="2" ry="2" />
<text text-anchor="" x="591.74" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.OutputStreamIndexOutput.writeByte (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.OutputStreamIndexOutput.writeByte (6 samples, 1.15%)</title><rect x="548.2" y="369" width="13.5" height="15.0" fill="rgb(94,94,236)" rx="2" ry="2" />
<text text-anchor="" x="551.21" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)</title><rect x="570.7" y="545" width="2.3" height="15.0" fill="rgb(121,121,206)" rx="2" ry="2" />
<text text-anchor="" x="573.73" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.Channels.writeToChannel (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.Channels.writeToChannel (4 samples, 0.76%)</title><rect x="491.9" y="561" width="9.0" height="15.0" fill="rgb(134,134,237)" rx="2" ry="2" />
<text text-anchor="" x="494.91" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (1 samples, 0.19%)</title><rect x="854.5" y="657" width="2.2" height="15.0" fill="rgb(224,156,41)" rx="2" ry="2" />
<text text-anchor="" x="857.47" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (1 samples, 0.19%)</title><rect x="892.7" y="577" width="2.3" height="15.0" fill="rgb(220,105,49)" rx="2" ry="2" />
<text text-anchor="" x="895.75" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreate (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreate (4 samples, 0.76%)</title><rect x="800.4" y="577" width="9.0" height="15.0" fill="rgb(231,13,44)" rx="2" ry="2" />
<text text-anchor="" x="803.42" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (12 samples, 2.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (12 samples, 2.29%)</title><rect x="926.5" y="673" width="27.0" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="929.53" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.admin.indices.stats.CommonStats.(init) (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.admin.indices.stats.CommonStats.(init) (5 samples, 0.95%)</title><rect x="1124.7" y="641" width="11.3" height="15.0" fill="rgb(246,201,12)" rx="2" ry="2" />
<text text-anchor="" x="1127.69" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.Versions.loadVersion (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.Versions.loadVersion (2 samples, 0.38%)</title><rect x="804.9" y="545" width="4.5" height="15.0" fill="rgb(228,65,45)" rx="2" ry="2" />
<text text-anchor="" x="807.92" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.file.Files.readAttributes (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.file.Files.readAttributes (1 samples, 0.19%)</title><rect x="1124.7" y="449" width="2.2" height="15.0" fill="rgb(138,138,234)" rx="2" ry="2" />
<text text-anchor="" x="1127.69" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (8 samples, 1.53%)</title><rect x="732.9" y="753" width="18.0" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="735.86" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Translog.ensureSynced (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Translog.ensureSynced (7 samples, 1.34%)</title><rect x="649.5" y="625" width="15.8" height="15.0" fill="rgb(205,176,40)" rx="2" ry="2" />
<text text-anchor="" x="652.54" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.Channels.fireMessageReceived (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.Channels.fireMessageReceived (8 samples, 1.53%)</title><rect x="426.6" y="673" width="18.0" height="15.0" fill="rgb(237,176,18)" rx="2" ry="2" />
<text text-anchor="" x="429.60" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.io.BufferedOutputStream.write (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.io.BufferedOutputStream.write (5 samples, 0.95%)</title><rect x="735.1" y="337" width="11.3" height="15.0" fill="rgb(95,95,199)" rx="2" ry="2" />
<text text-anchor="" x="738.11" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force (1 samples, 0.19%)</title><rect x="870.2" y="545" width="2.3" height="15.0" fill="rgb(236,18,34)" rx="2" ry="2" />
<text text-anchor="" x="873.23" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.io.BufferedOutputStream.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.io.BufferedOutputStream.write (1 samples, 0.19%)</title><rect x="883.7" y="337" width="2.3" height="15.0" fill="rgb(95,95,199)" rx="2" ry="2" />
<text text-anchor="" x="886.74" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (1 samples, 0.19%)</title><rect x="870.2" y="641" width="2.3" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="873.23" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.OutputStreamIndexOutput.writeBytes (16 samples, 3.05%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.OutputStreamIndexOutput.writeBytes (16 samples, 3.05%)</title><rect x="1032.4" y="689" width="36.0" height="15.0" fill="rgb(115,115,201)" rx="2" ry="2" />
<text text-anchor="" x="1035.37" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.store.Store.stats (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.store.Store.stats (5 samples, 0.95%)</title><rect x="1124.7" y="609" width="11.3" height="15.0" fill="rgb(230,202,29)" rx="2" ry="2" />
<text text-anchor="" x="1127.69" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.DefaultChannelPipeline.sendDownstream (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.DefaultChannelPipeline.sendDownstream (1 samples, 0.19%)</title><rect x="1187.7" y="225" width="2.3" height="15.0" fill="rgb(220,223,7)" rx="2" ry="2" />
<text text-anchor="" x="1190.75" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.prepareCreateOnPrimary (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.prepareCreateOnPrimary (1 samples, 0.19%)</title><rect x="732.9" y="609" width="2.2" height="15.0" fill="rgb(226,28,48)" rx="2" ry="2" />
<text text-anchor="" x="735.86" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.create (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.create (1 samples, 0.19%)</title><rect x="757.6" y="609" width="2.3" height="15.0" fill="rgb(214,111,47)" rx="2" ry="2" />
<text text-anchor="" x="760.63" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.indices.recovery.RecoveryTarget$FileChunkTransportRequestHandler.messageReceived (18 samples, 3.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.indices.recovery.RecoveryTarget$FileChunkTransportRequestHandler.messageReceived (18 samples, 3.44%)</title><rect x="1068.4" y="721" width="40.5" height="15.0" fill="rgb(218,138,51)" rx="2" ry="2" />
<text text-anchor="" x="1071.40" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org..</text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.lucene54.Lucene54DocValuesConsumer.addSortedSetField (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.lucene54.Lucene54DocValuesConsumer.addSortedSetField (1 samples, 0.19%)</title><rect x="1181.0" y="481" width="2.2" height="15.0" fill="rgb(205,169,8)" rx="2" ry="2" />
<text text-anchor="" x="1183.99" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor$Worker.run (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor$Worker.run (8 samples, 1.53%)</title><rect x="953.5" y="833" width="18.1" height="15.0" fill="rgb(241,183,32)" rx="2" ry="2" />
<text text-anchor="" x="956.55" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.AbstractNioWorker.process (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.AbstractNioWorker.process (5 samples, 0.95%)</title><rect x="444.6" y="721" width="11.3" height="15.0" fill="rgb(218,151,11)" rx="2" ry="2" />
<text text-anchor="" x="447.62" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write0 (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write0 (5 samples, 0.95%)</title><rect x="735.1" y="145" width="11.3" height="15.0" fill="rgb(139,139,202)" rx="2" ry="2" />
<text text-anchor="" x="738.11" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][bulk][T#23] (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][bulk][T#23] (8 samples, 1.53%)</title><rect x="714.8" y="865" width="18.1" height="15.0" fill="rgb(253,227,17)" rx="2" ry="2" />
<text text-anchor="" x="717.85" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.messageReceived (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.messageReceived (4 samples, 0.76%)</title><rect x="1115.7" y="721" width="9.0" height="15.0" fill="rgb(215,138,0)" rx="2" ry="2" />
<text text-anchor="" x="1118.69" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels.writeFully (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels.writeFully (3 samples, 0.57%)</title><rect x="845.5" y="257" width="6.7" height="15.0" fill="rgb(137,137,198)" rx="2" ry="2" />
<text text-anchor="" x="848.46" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.Versions.loadDocIdAndVersion (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.Versions.loadDocIdAndVersion (1 samples, 0.19%)</title><rect x="780.2" y="529" width="2.2" height="15.0" fill="rgb(241,106,30)" rx="2" ry="2" />
<text text-anchor="" x="783.15" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.LZ4.encodeLiterals (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.LZ4.encodeLiterals (1 samples, 0.19%)</title><rect x="638.3" y="385" width="2.2" height="15.0" fill="rgb(229,132,7)" rx="2" ry="2" />
<text text-anchor="" x="641.28" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.completionStats (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.completionStats (1 samples, 0.19%)</title><rect x="1147.2" y="641" width="2.3" height="15.0" fill="rgb(216,18,14)" rx="2" ry="2" />
<text text-anchor="" x="1150.21" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Thread.run (22 samples, 4.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Thread.run (22 samples, 4.20%)</title><rect x="1018.9" y="849" width="49.5" height="15.0" fill="rgb(251,44,12)" rx="2" ry="2" />
<text text-anchor="" x="1021.85" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >java..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (4 samples, 0.76%)</title><rect x="980.6" y="753" width="9.0" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="983.57" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (6 samples, 1.15%)</title><rect x="762.1" y="737" width="13.5" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="765.14" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (2 samples, 0.38%)</title><rect x="566.2" y="641" width="4.5" height="15.0" fill="rgb(214,128,2)" rx="2" ry="2" />
<text text-anchor="" x="569.22" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.flush (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.flush (1 samples, 0.19%)</title><rect x="863.5" y="577" width="2.2" height="15.0" fill="rgb(228,191,52)" rx="2" ry="2" />
<text text-anchor="" x="866.47" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Checkpoint.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Checkpoint.write (1 samples, 0.19%)</title><rect x="573.0" y="529" width="2.2" height="15.0" fill="rgb(94,94,229)" rx="2" ry="2" />
<text text-anchor="" x="575.98" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreate (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreate (2 samples, 0.38%)</title><rect x="487.4" y="577" width="4.5" height="15.0" fill="rgb(231,13,44)" rx="2" ry="2" />
<text text-anchor="" x="490.40" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.force (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.force (1 samples, 0.19%)</title><rect x="645.0" y="529" width="2.3" height="15.0" fill="rgb(236,11,41)" rx="2" ry="2" />
<text text-anchor="" x="648.04" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.Channels.writeToChannel (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.Channels.writeToChannel (1 samples, 0.19%)</title><rect x="895.0" y="513" width="2.3" height="15.0" fill="rgb(134,134,237)" rx="2" ry="2" />
<text text-anchor="" x="898.00" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor.runWorker (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.runWorker (1 samples, 0.19%)</title><rect x="1108.9" y="817" width="2.3" height="15.0" fill="rgb(253,116,23)" rx="2" ry="2" />
<text text-anchor="" x="1111.93" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.RateLimitedFSDirectory.createOutput (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.RateLimitedFSDirectory.createOutput (6 samples, 1.15%)</title><rect x="908.5" y="369" width="13.5" height="15.0" fill="rgb(210,130,52)" rx="2" ry="2" />
<text text-anchor="" x="911.51" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (4 samples, 0.76%)</title><rect x="1009.8" y="641" width="9.1" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="1012.85" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (10 samples, 1.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (10 samples, 1.91%)</title><rect x="667.6" y="801" width="22.5" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="670.56" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (2 samples, 0.38%)</title><rect x="989.6" y="689" width="4.5" height="15.0" fill="rgb(218,222,0)" rx="2" ry="2" />
<text text-anchor="" x="992.58" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (3 samples, 0.57%)</title><rect x="667.6" y="705" width="6.7" height="15.0" fill="rgb(222,177,52)" rx="2" ry="2" />
<text text-anchor="" x="670.56" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.LZ4.compress (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.LZ4.compress (2 samples, 0.38%)</title><rect x="926.5" y="401" width="4.5" height="15.0" fill="rgb(223,95,34)" rx="2" ry="2" />
<text text-anchor="" x="929.53" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels$1.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels$1.write (1 samples, 0.19%)</title><rect x="638.3" y="289" width="2.2" height="15.0" fill="rgb(107,107,220)" rx="2" ry="2" />
<text text-anchor="" x="641.28" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.zip.CheckedOutputStream.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.zip.CheckedOutputStream.write (1 samples, 0.19%)</title><rect x="1181.0" y="369" width="2.2" height="15.0" fill="rgb(106,106,204)" rx="2" ry="2" />
<text text-anchor="" x="1183.99" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Translog.ensureSynced (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Translog.ensureSynced (6 samples, 1.15%)</title><rect x="676.6" y="625" width="13.5" height="15.0" fill="rgb(205,176,40)" rx="2" ry="2" />
<text text-anchor="" x="679.56" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.Channels.writeToChannel (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.Channels.writeToChannel (1 samples, 0.19%)</title><rect x="600.0" y="497" width="2.3" height="15.0" fill="rgb(134,134,237)" rx="2" ry="2" />
<text text-anchor="" x="603.00" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.create (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.create (1 samples, 0.19%)</title><rect x="1007.6" y="609" width="2.2" height="15.0" fill="rgb(206,208,36)" rx="2" ry="2" />
<text text-anchor="" x="1010.60" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Translog.ensureSynced (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Translog.ensureSynced (2 samples, 0.38%)</title><rect x="561.7" y="625" width="4.5" height="15.0" fill="rgb(205,176,40)" rx="2" ry="2" />
<text text-anchor="" x="564.72" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.loadCurrentVersionFromIndex (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.loadCurrentVersionFromIndex (1 samples, 0.19%)</title><rect x="989.6" y="577" width="2.2" height="15.0" fill="rgb(224,40,0)" rx="2" ry="2" />
<text text-anchor="" x="992.58" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.CompressionMode$LZ4FastCompressor.compress (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.CompressionMode$LZ4FastCompressor.compress (6 samples, 1.15%)</title><rect x="548.2" y="417" width="13.5" height="15.0" fill="rgb(229,154,40)" rx="2" ry="2" />
<text text-anchor="" x="551.21" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (10 samples, 1.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (10 samples, 1.91%)</title><rect x="899.5" y="641" width="22.5" height="15.0" fill="rgb(214,128,2)" rx="2" ry="2" />
<text text-anchor="" x="902.50" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('java.io.BufferedOutputStream.write (18 samples, 3.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.io.BufferedOutputStream.write (18 samples, 3.44%)</title><rect x="1068.4" y="673" width="40.5" height="15.0" fill="rgb(95,95,199)" rx="2" ry="2" />
<text text-anchor="" x="1071.40" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >jav..</text>
</g>
<g class="func_g" onmouseover="s('java.lang.SecurityManager.checkRead (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.SecurityManager.checkRead (1 samples, 0.19%)</title><rect x="1124.7" y="369" width="2.2" height="15.0" fill="rgb(213,190,17)" rx="2" ry="2" />
<text text-anchor="" x="1127.69" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write0 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write0 (1 samples, 0.19%)</title><rect x="692.3" y="145" width="2.3" height="15.0" fill="rgb(139,139,202)" rx="2" ry="2" />
<text text-anchor="" x="695.33" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)</title><rect x="755.4" y="481" width="2.2" height="15.0" fill="rgb(121,121,206)" rx="2" ry="2" />
<text text-anchor="" x="758.38" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.rest.action.support.RestActionListener.onResponse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.rest.action.support.RestActionListener.onResponse (1 samples, 0.19%)</title><rect x="1187.7" y="305" width="2.3" height="15.0" fill="rgb(242,128,49)" rx="2" ry="2" />
<text text-anchor="" x="1190.75" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.checkpoint (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.checkpoint (2 samples, 0.38%)</title><rect x="895.0" y="577" width="4.5" height="15.0" fill="rgb(218,30,19)" rx="2" ry="2" />
<text text-anchor="" x="898.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.handler.codec.frame.FrameDecoder.unfoldAndFireMessageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.handler.codec.frame.FrameDecoder.unfoldAndFireMessageReceived (1 samples, 0.19%)</title><rect x="1187.7" y="577" width="2.3" height="15.0" fill="rgb(217,104,2)" rx="2" ry="2" />
<text text-anchor="" x="1190.75" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (1 samples, 0.19%)</title><rect x="969.3" y="593" width="2.3" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="972.31" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.Engine.segmentsStats (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.Engine.segmentsStats (1 samples, 0.19%)</title><rect x="1169.7" y="609" width="2.3" height="15.0" fill="rgb(226,79,4)" rx="2" ry="2" />
<text text-anchor="" x="1172.73" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.FST.readFirstRealTargetArc (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.FST.readFirstRealTargetArc (1 samples, 0.19%)</title><rect x="757.6" y="465" width="2.3" height="15.0" fill="rgb(122,122,215)" rx="2" ry="2" />
<text text-anchor="" x="760.63" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (1 samples, 0.19%)</title><rect x="978.3" y="673" width="2.3" height="15.0" fill="rgb(218,222,0)" rx="2" ry="2" />
<text text-anchor="" x="981.32" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.FilterDirectory.listAll (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.FilterDirectory.listAll (4 samples, 0.76%)</title><rect x="1126.9" y="513" width="9.1" height="15.0" fill="rgb(251,113,6)" rx="2" ry="2" />
<text text-anchor="" x="1129.95" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (2 samples, 0.38%)</title><rect x="757.6" y="769" width="4.5" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="760.63" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Translog.ensureSynced (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Translog.ensureSynced (1 samples, 0.19%)</title><rect x="748.6" y="625" width="2.3" height="15.0" fill="rgb(205,176,40)" rx="2" ry="2" />
<text text-anchor="" x="751.63" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Thread.run (9 samples, 1.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Thread.run (9 samples, 1.72%)</title><rect x="424.4" y="849" width="20.2" height="15.0" fill="rgb(251,44,12)" rx="2" ry="2" />
<text text-anchor="" x="427.35" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][[http_server_worker.default]][T#57]{New I/O worker #122} (9 samples, 1.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][[http_server_worker.default]][T#57]{New I/O worker #122} (9 samples, 1.72%)</title><rect x="424.4" y="865" width="20.2" height="15.0" fill="rgb(207,2,23)" rx="2" ry="2" />
<text text-anchor="" x="427.35" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.store.FsDirectoryService$1.listAll (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.store.FsDirectoryService$1.listAll (4 samples, 0.76%)</title><rect x="1126.9" y="497" width="9.1" height="15.0" fill="rgb(218,152,3)" rx="2" ry="2" />
<text text-anchor="" x="1129.95" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportRequestHandler.messageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportRequestHandler.messageReceived (1 samples, 0.19%)</title><rect x="1108.9" y="753" width="2.3" height="15.0" fill="rgb(243,108,4)" rx="2" ry="2" />
<text text-anchor="" x="1111.93" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService$4.doRun (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService$4.doRun (11 samples, 2.10%)</title><rect x="541.5" y="785" width="24.7" height="15.0" fill="rgb(205,174,36)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.blocktree.BlockTreeTermsReader.terms (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.blocktree.BlockTreeTermsReader.terms (1 samples, 0.19%)</title><rect x="1142.7" y="577" width="2.3" height="15.0" fill="rgb(234,195,1)" rx="2" ry="2" />
<text text-anchor="" x="1145.71" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (4 samples, 0.76%)</title><rect x="629.3" y="721" width="9.0" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="632.27" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.Channels.fireMessageReceived (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.Channels.fireMessageReceived (5 samples, 0.95%)</title><rect x="444.6" y="673" width="11.3" height="15.0" fill="rgb(237,176,18)" rx="2" ry="2" />
<text text-anchor="" x="447.62" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (8 samples, 1.53%)</title><rect x="570.7" y="593" width="18.0" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="573.73" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.PerThreadIDAndVersionLookup.lookup (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.PerThreadIDAndVersionLookup.lookup (1 samples, 0.19%)</title><rect x="989.6" y="529" width="2.2" height="15.0" fill="rgb(237,190,48)" rx="2" ry="2" />
<text text-anchor="" x="992.58" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Translog.ensureSynced (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Translog.ensureSynced (5 samples, 0.95%)</title><rect x="471.6" y="625" width="11.3" height="15.0" fill="rgb(205,176,40)" rx="2" ry="2" />
<text text-anchor="" x="474.64" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.io.BufferedOutputStream.flushBuffer (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.io.BufferedOutputStream.flushBuffer (1 samples, 0.19%)</title><rect x="692.3" y="321" width="2.3" height="15.0" fill="rgb(238,120,29)" rx="2" ry="2" />
<text text-anchor="" x="695.33" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsReader.terms (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsReader.terms (1 samples, 0.19%)</title><rect x="1145.0" y="593" width="2.2" height="15.0" fill="rgb(205,192,34)" rx="2" ry="2" />
<text text-anchor="" x="1147.96" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (11 samples, 2.10%)</title><rect x="818.4" y="593" width="24.8" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="821.44" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.create (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.create (4 samples, 0.76%)</title><rect x="800.4" y="609" width="9.0" height="15.0" fill="rgb(206,208,36)" rx="2" ry="2" />
<text text-anchor="" x="803.42" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Object.notifyAll (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Object.notifyAll (2 samples, 0.38%)</title><rect x="800.4" y="449" width="4.5" height="15.0" fill="rgb(217,177,43)" rx="2" ry="2" />
<text text-anchor="" x="803.42" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry$TransportChannelWrapper.sendResponse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry$TransportChannelWrapper.sendResponse (1 samples, 0.19%)</title><rect x="1108.9" y="529" width="2.3" height="15.0" fill="rgb(213,178,5)" rx="2" ry="2" />
<text text-anchor="" x="1111.93" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService$4.doRun (13 samples, 2.48%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService$4.doRun (13 samples, 2.48%)</title><rect x="813.9" y="785" width="29.3" height="15.0" fill="rgb(205,174,36)" rx="2" ry="2" />
<text text-anchor="" x="816.93" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >or..</text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write0 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write0 (1 samples, 0.19%)</title><rect x="985.1" y="481" width="2.2" height="15.0" fill="rgb(139,139,202)" rx="2" ry="2" />
<text text-anchor="" x="988.08" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.processDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.processDocument (1 samples, 0.19%)</title><rect x="883.7" y="481" width="2.3" height="15.0" fill="rgb(220,78,24)" rx="2" ry="2" />
<text text-anchor="" x="886.74" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (3 samples, 0.57%)</title><rect x="629.3" y="641" width="6.7" height="15.0" fill="rgb(214,128,2)" rx="2" ry="2" />
<text text-anchor="" x="632.27" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][bulk][T#11] (9 samples, 1.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][bulk][T#11] (9 samples, 1.72%)</title><rect x="482.9" y="865" width="20.3" height="15.0" fill="rgb(252,13,26)" rx="2" ry="2" />
<text text-anchor="" x="485.90" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)</title><rect x="863.5" y="545" width="2.2" height="15.0" fill="rgb(121,121,206)" rx="2" ry="2" />
<text text-anchor="" x="866.47" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriter.flushAllThreads (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriter.flushAllThreads (1 samples, 0.19%)</title><rect x="1181.0" y="593" width="2.2" height="15.0" fill="rgb(243,75,6)" rx="2" ry="2" />
<text text-anchor="" x="1183.99" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force0 (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force0 (2 samples, 0.38%)</title><rect x="771.1" y="529" width="4.5" height="15.0" fill="rgb(222,14,30)" rx="2" ry="2" />
<text text-anchor="" x="774.15" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force0 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force0 (1 samples, 0.19%)</title><rect x="967.1" y="529" width="2.2" height="15.0" fill="rgb(222,14,30)" rx="2" ry="2" />
<text text-anchor="" x="970.06" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (2 samples, 0.38%)</title><rect x="989.6" y="769" width="4.5" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="992.58" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.processField (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.processField (1 samples, 0.19%)</title><rect x="852.2" y="465" width="2.3" height="15.0" fill="rgb(220,68,13)" rx="2" ry="2" />
<text text-anchor="" x="855.21" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Translog.ensureSynced (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Translog.ensureSynced (1 samples, 0.19%)</title><rect x="759.9" y="625" width="2.2" height="15.0" fill="rgb(205,176,40)" rx="2" ry="2" />
<text text-anchor="" x="762.89" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.force (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.force (1 samples, 0.19%)</title><rect x="798.2" y="561" width="2.2" height="15.0" fill="rgb(236,11,41)" rx="2" ry="2" />
<text text-anchor="" x="801.17" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.addDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.addDocument (1 samples, 0.19%)</title><rect x="591.0" y="545" width="2.2" height="15.0" fill="rgb(227,61,0)" rx="2" ry="2" />
<text text-anchor="" x="593.99" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (1 samples, 0.19%)</title><rect x="665.3" y="769" width="2.3" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="668.31" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriterStallControl.updateStalled (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriterStallControl.updateStalled (1 samples, 0.19%)</title><rect x="503.2" y="465" width="2.2" height="15.0" fill="rgb(243,96,40)" rx="2" ry="2" />
<text text-anchor="" x="506.17" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.AbstractNioSelector.run (9 samples, 1.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.AbstractNioSelector.run (9 samples, 1.72%)</title><rect x="424.4" y="737" width="20.2" height="15.0" fill="rgb(213,181,6)" rx="2" ry="2" />
<text text-anchor="" x="427.35" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (1 samples, 0.19%)</title><rect x="978.3" y="769" width="2.3" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="981.32" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][bulk][T#24] (9 samples, 1.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][bulk][T#24] (9 samples, 1.72%)</title><rect x="732.9" y="865" width="20.2" height="15.0" fill="rgb(210,58,14)" rx="2" ry="2" />
<text text-anchor="" x="735.86" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService$4.doRun (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService$4.doRun (5 samples, 0.95%)</title><rect x="458.1" y="785" width="11.3" height="15.0" fill="rgb(205,174,36)" rx="2" ry="2" />
<text text-anchor="" x="461.13" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (13 samples, 2.48%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (13 samples, 2.48%)</title><rect x="813.9" y="689" width="29.3" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="816.93" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >or..</text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write0 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write0 (1 samples, 0.19%)</title><rect x="750.9" y="481" width="2.2" height="15.0" fill="rgb(139,139,202)" rx="2" ry="2" />
<text text-anchor="" x="753.88" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (1 samples, 0.19%)</title><rect x="530.2" y="561" width="2.2" height="15.0" fill="rgb(220,105,49)" rx="2" ry="2" />
<text text-anchor="" x="533.19" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (2 samples, 0.38%)</title><rect x="922.0" y="689" width="4.5" height="15.0" fill="rgb(218,222,0)" rx="2" ry="2" />
<text text-anchor="" x="925.02" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.writeFromNativeBuffer (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.writeFromNativeBuffer (1 samples, 0.19%)</title><rect x="1181.0" y="241" width="2.2" height="15.0" fill="rgb(81,81,230)" rx="2" ry="2" />
<text text-anchor="" x="1183.99" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor$Worker.run (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor$Worker.run (11 samples, 2.10%)</title><rect x="566.2" y="833" width="24.8" height="15.0" fill="rgb(241,183,32)" rx="2" ry="2" />
<text text-anchor="" x="569.22" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (1 samples, 0.19%)</title><rect x="759.9" y="641" width="2.2" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="762.89" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.write (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.write (5 samples, 0.95%)</title><rect x="872.5" y="529" width="11.2" height="15.0" fill="rgb(103,103,204)" rx="2" ry="2" />
<text text-anchor="" x="875.48" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.FSDirectory$FSIndexOutput$1.write (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.FSDirectory$FSIndexOutput$1.write (6 samples, 1.15%)</title><rect x="609.0" y="321" width="13.5" height="15.0" fill="rgb(121,121,236)" rx="2" ry="2" />
<text text-anchor="" x="612.01" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor.runWorker (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.runWorker (5 samples, 0.95%)</title><rect x="444.6" y="817" width="11.3" height="15.0" fill="rgb(253,116,23)" rx="2" ry="2" />
<text text-anchor="" x="447.62" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (2 samples, 0.38%)</title><rect x="512.2" y="657" width="4.5" height="15.0" fill="rgb(227,28,49)" rx="2" ry="2" />
<text text-anchor="" x="515.18" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction.nodeOperation (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction.nodeOperation (6 samples, 1.15%)</title><rect x="1154.0" y="689" width="13.5" height="15.0" fill="rgb(229,15,44)" rx="2" ry="2" />
<text text-anchor="" x="1156.97" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.create (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.create (6 samples, 1.15%)</title><rect x="735.1" y="593" width="13.5" height="15.0" fill="rgb(214,111,47)" rx="2" ry="2" />
<text text-anchor="" x="738.11" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.joda.time.format.InternalParserDateTimeParser.parseInto (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.joda.time.format.InternalParserDateTimeParser.parseInto (1 samples, 0.19%)</title><rect x="541.5" y="97" width="2.2" height="15.0" fill="rgb(242,16,2)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('com.fasterxml.jackson.core.json.UTF8StreamJsonParser.parseMediumName (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>com.fasterxml.jackson.core.json.UTF8StreamJsonParser.parseMediumName (1 samples, 0.19%)</title><rect x="469.4" y="513" width="2.2" height="15.0" fill="rgb(231,192,19)" rx="2" ry="2" />
<text text-anchor="" x="472.39" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (6 samples, 1.15%)</title><rect x="1167.5" y="785" width="13.5" height="15.0" fill="rgb(228,141,38)" rx="2" ry="2" />
<text text-anchor="" x="1170.48" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (4 samples, 0.76%)</title><rect x="883.7" y="705" width="9.0" height="15.0" fill="rgb(222,177,52)" rx="2" ry="2" />
<text text-anchor="" x="886.74" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (1 samples, 0.19%)</title><rect x="750.9" y="609" width="2.2" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="753.88" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.joda.time.format.DateTimeFormatterBuilder$Composite.parseInto (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.joda.time.format.DateTimeFormatterBuilder$Composite.parseInto (1 samples, 0.19%)</title><rect x="541.5" y="209" width="2.2" height="15.0" fill="rgb(250,72,29)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (1 samples, 0.19%)</title><rect x="994.1" y="657" width="2.2" height="15.0" fill="rgb(227,28,49)" rx="2" ry="2" />
<text text-anchor="" x="997.08" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.checkpoint (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.checkpoint (2 samples, 0.38%)</title><rect x="523.4" y="577" width="4.5" height="15.0" fill="rgb(218,30,19)" rx="2" ry="2" />
<text text-anchor="" x="526.44" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (1 samples, 0.19%)</title><rect x="503.2" y="641" width="2.2" height="15.0" fill="rgb(214,128,2)" rx="2" ry="2" />
<text text-anchor="" x="506.17" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (11 samples, 2.10%)</title><rect x="818.4" y="641" width="24.8" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="821.44" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][[http_server_worker.default]][T#58]{New I/O worker #123} (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][[http_server_worker.default]][T#58]{New I/O worker #123} (5 samples, 0.95%)</title><rect x="444.6" y="865" width="11.3" height="15.0" fill="rgb(241,53,2)" rx="2" ry="2" />
<text text-anchor="" x="447.62" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (5 samples, 0.95%)</title><rect x="516.7" y="641" width="11.2" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="519.68" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.Channels.fireMessageReceived (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.Channels.fireMessageReceived (8 samples, 1.53%)</title><rect x="426.6" y="689" width="18.0" height="15.0" fill="rgb(237,176,18)" rx="2" ry="2" />
<text text-anchor="" x="429.60" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction.shardOperation (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction.shardOperation (2 samples, 0.38%)</title><rect x="1147.2" y="673" width="4.5" height="15.0" fill="rgb(252,11,24)" rx="2" ry="2" />
<text text-anchor="" x="1150.21" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.writeCheckpoint (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.writeCheckpoint (1 samples, 0.19%)</title><rect x="818.4" y="561" width="2.3" height="15.0" fill="rgb(132,132,209)" rx="2" ry="2" />
<text text-anchor="" x="821.44" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (1 samples, 0.19%)</title><rect x="798.2" y="673" width="2.2" height="15.0" fill="rgb(218,222,0)" rx="2" ry="2" />
<text text-anchor="" x="801.17" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.AbstractNioSelector.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.AbstractNioSelector.run (1 samples, 0.19%)</title><rect x="1187.7" y="737" width="2.3" height="15.0" fill="rgb(213,181,6)" rx="2" ry="2" />
<text text-anchor="" x="1190.75" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentParser.parseDocument (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentParser.parseDocument (2 samples, 0.38%)</title><rect x="482.9" y="561" width="4.5" height="15.0" fill="rgb(209,14,21)" rx="2" ry="2" />
<text text-anchor="" x="485.90" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.AbstractNioSelector.registerTask (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.AbstractNioSelector.registerTask (1 samples, 0.19%)</title><rect x="415.3" y="81" width="2.3" height="15.0" fill="rgb(237,64,33)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (2 samples, 0.38%)</title><rect x="640.5" y="721" width="4.5" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="643.53" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.DefaultChannelPipeline.sendUpstream (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.DefaultChannelPipeline.sendUpstream (8 samples, 1.53%)</title><rect x="426.6" y="657" width="18.0" height="15.0" fill="rgb(224,124,32)" rx="2" ry="2" />
<text text-anchor="" x="429.60" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.finishStoredFields (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.finishStoredFields (1 samples, 0.19%)</title><rect x="892.7" y="481" width="2.3" height="15.0" fill="rgb(227,106,27)" rx="2" ry="2" />
<text text-anchor="" x="895.75" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Translog.ensureSynced (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Translog.ensureSynced (2 samples, 0.38%)</title><rect x="985.1" y="625" width="4.5" height="15.0" fill="rgb(205,176,40)" rx="2" ry="2" />
<text text-anchor="" x="988.08" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.OutputStreamIndexOutput.writeByte (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.OutputStreamIndexOutput.writeByte (5 samples, 0.95%)</title><rect x="701.3" y="385" width="11.3" height="15.0" fill="rgb(94,94,236)" rx="2" ry="2" />
<text text-anchor="" x="704.34" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (2 samples, 0.38%)</title><rect x="728.4" y="673" width="4.5" height="15.0" fill="rgb(218,222,0)" rx="2" ry="2" />
<text text-anchor="" x="731.36" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction.nodeOperation (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction.nodeOperation (1 samples, 0.19%)</title><rect x="1145.0" y="705" width="2.2" height="15.0" fill="rgb(229,15,44)" rx="2" ry="2" />
<text text-anchor="" x="1147.96" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (3 samples, 0.57%)</title><rect x="892.7" y="689" width="6.8" height="15.0" fill="rgb(218,222,0)" rx="2" ry="2" />
<text text-anchor="" x="895.75" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][search][T#14] (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][search][T#14] (1 samples, 0.19%)</title><rect x="1183.2" y="865" width="2.3" height="15.0" fill="rgb(232,184,7)" rx="2" ry="2" />
<text text-anchor="" x="1186.24" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.TrackingDirectoryWrapper.createOutput (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.TrackingDirectoryWrapper.createOutput (6 samples, 1.15%)</title><rect x="908.5" y="417" width="13.5" height="15.0" fill="rgb(205,105,20)" rx="2" ry="2" />
<text text-anchor="" x="911.51" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor.runWorker (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.runWorker (5 samples, 0.95%)</title><rect x="1113.4" y="817" width="11.3" height="15.0" fill="rgb(253,116,23)" rx="2" ry="2" />
<text text-anchor="" x="1116.44" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write0 (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write0 (6 samples, 1.15%)</title><rect x="609.0" y="177" width="13.5" height="15.0" fill="rgb(139,139,202)" rx="2" ry="2" />
<text text-anchor="" x="612.01" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (6 samples, 1.15%)</title><rect x="762.1" y="721" width="13.5" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="765.14" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.write (1 samples, 0.19%)</title><rect x="636.0" y="529" width="2.3" height="15.0" fill="rgb(103,103,204)" rx="2" ry="2" />
<text text-anchor="" x="639.03" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Checkpoint.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Checkpoint.write (1 samples, 0.19%)</title><rect x="755.4" y="545" width="2.2" height="15.0" fill="rgb(94,94,229)" rx="2" ry="2" />
<text text-anchor="" x="758.38" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriterFlushControl.updateStallState (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriterFlushControl.updateStallState (1 samples, 0.19%)</title><rect x="503.2" y="481" width="2.2" height="15.0" fill="rgb(210,96,34)" rx="2" ry="2" />
<text text-anchor="" x="506.17" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)</title><rect x="588.7" y="497" width="2.3" height="15.0" fill="rgb(119,119,204)" rx="2" ry="2" />
<text text-anchor="" x="591.74" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.CompressionMode$LZ4FastCompressor.compress (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.CompressionMode$LZ4FastCompressor.compress (5 samples, 0.95%)</title><rect x="714.8" y="417" width="11.3" height="15.0" fill="rgb(229,154,40)" rx="2" ry="2" />
<text text-anchor="" x="717.85" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (7 samples, 1.34%)</title><rect x="591.0" y="705" width="15.8" height="15.0" fill="rgb(222,177,52)" rx="2" ry="2" />
<text text-anchor="" x="593.99" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnReplica (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnReplica (1 samples, 0.19%)</title><rect x="989.6" y="657" width="2.2" height="15.0" fill="rgb(233,15,33)" rx="2" ry="2" />
<text text-anchor="" x="992.58" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.Engine.segmentsStats (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.Engine.segmentsStats (1 samples, 0.19%)</title><rect x="1140.5" y="625" width="2.2" height="15.0" fill="rgb(226,79,4)" rx="2" ry="2" />
<text text-anchor="" x="1143.46" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.io.UnixFileSystem.canonicalize (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.io.UnixFileSystem.canonicalize (1 samples, 0.19%)</title><rect x="1124.7" y="257" width="2.2" height="15.0" fill="rgb(249,54,25)" rx="2" ry="2" />
<text text-anchor="" x="1127.69" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.onShardOperation (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.onShardOperation (3 samples, 0.57%)</title><rect x="1115.7" y="705" width="6.7" height="15.0" fill="rgb(219,4,42)" rx="2" ry="2" />
<text text-anchor="" x="1118.69" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.FST.findTargetArc (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.FST.findTargetArc (1 samples, 0.19%)</title><rect x="868.0" y="465" width="2.2" height="15.0" fill="rgb(249,199,6)" rx="2" ry="2" />
<text text-anchor="" x="870.98" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService$4.doRun (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService$4.doRun (8 samples, 1.53%)</title><rect x="647.3" y="785" width="18.0" height="15.0" fill="rgb(205,174,36)" rx="2" ry="2" />
<text text-anchor="" x="650.29" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.write (1 samples, 0.19%)</title><rect x="638.3" y="209" width="2.2" height="15.0" fill="rgb(103,103,204)" rx="2" ry="2" />
<text text-anchor="" x="641.28" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.create (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.create (1 samples, 0.19%)</title><rect x="692.3" y="593" width="2.3" height="15.0" fill="rgb(214,111,47)" rx="2" ry="2" />
<text text-anchor="" x="695.33" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.finishStoredFields (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.finishStoredFields (6 samples, 1.15%)</title><rect x="609.0" y="481" width="13.5" height="15.0" fill="rgb(227,106,27)" rx="2" ry="2" />
<text text-anchor="" x="612.01" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (11 samples, 2.10%)</title><rect x="541.5" y="737" width="24.7" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.core.NumberFieldMapper.parseCreateField (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.core.NumberFieldMapper.parseCreateField (1 samples, 0.19%)</title><rect x="1005.3" y="481" width="2.3" height="15.0" fill="rgb(206,191,38)" rx="2" ry="2" />
<text text-anchor="" x="1008.34" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor$Worker.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor$Worker.run (1 samples, 0.19%)</title><rect x="1187.7" y="833" width="2.3" height="15.0" fill="rgb(241,183,32)" rx="2" ry="2" />
<text text-anchor="" x="1190.75" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.index (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.index (1 samples, 0.19%)</title><rect x="458.1" y="609" width="2.3" height="15.0" fill="rgb(248,8,16)" rx="2" ry="2" />
<text text-anchor="" x="461.13" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (1 samples, 0.19%)</title><rect x="645.0" y="769" width="2.3" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="648.04" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.NettyTransportChannel.sendResponse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.NettyTransportChannel.sendResponse (1 samples, 0.19%)</title><rect x="1151.7" y="657" width="2.3" height="15.0" fill="rgb(253,134,21)" rx="2" ry="2" />
<text text-anchor="" x="1154.72" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.zip.Inflater.inflate (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.zip.Inflater.inflate (6 samples, 1.15%)</title><rect x="431.1" y="273" width="13.5" height="15.0" fill="rgb(239,0,10)" rx="2" ry="2" />
<text text-anchor="" x="434.11" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force (1 samples, 0.19%)</title><rect x="987.3" y="545" width="2.3" height="15.0" fill="rgb(236,18,34)" rx="2" ry="2" />
<text text-anchor="" x="990.33" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.Channels.fireMessageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.Channels.fireMessageReceived (1 samples, 0.19%)</title><rect x="415.3" y="689" width="2.3" height="15.0" fill="rgb(237,176,18)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentParser.parseValue (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentParser.parseValue (1 samples, 0.19%)</title><rect x="732.9" y="529" width="2.2" height="15.0" fill="rgb(232,168,53)" rx="2" ry="2" />
<text text-anchor="" x="735.86" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.StandardDirectoryReader.doOpenIfChanged (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.StandardDirectoryReader.doOpenIfChanged (1 samples, 0.19%)</title><rect x="1181.0" y="641" width="2.2" height="15.0" fill="rgb(244,110,34)" rx="2" ry="2" />
<text text-anchor="" x="1183.99" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (4 samples, 0.76%)</title><rect x="1145.0" y="769" width="9.0" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="1147.96" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.Versions.loadVersion (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.Versions.loadVersion (2 samples, 0.38%)</title><rect x="532.4" y="545" width="4.5" height="15.0" fill="rgb(228,65,45)" rx="2" ry="2" />
<text text-anchor="" x="535.44" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.prepareCreate (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.prepareCreate (1 samples, 0.19%)</title><rect x="690.1" y="593" width="2.2" height="15.0" fill="rgb(228,179,21)" rx="2" ry="2" />
<text text-anchor="" x="693.08" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force0 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force0 (1 samples, 0.19%)</title><rect x="665.3" y="529" width="2.3" height="15.0" fill="rgb(222,14,30)" rx="2" ry="2" />
<text text-anchor="" x="668.31" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.index (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.index (1 samples, 0.19%)</title><rect x="624.8" y="609" width="2.2" height="15.0" fill="rgb(242,61,12)" rx="2" ry="2" />
<text text-anchor="" x="627.77" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (7 samples, 1.34%)</title><rect x="591.0" y="753" width="15.8" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="593.99" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (2 samples, 0.38%)</title><rect x="624.8" y="721" width="4.5" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="627.77" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.stream.FilterStreamInput.readByte (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.stream.FilterStreamInput.readByte (1 samples, 0.19%)</title><rect x="426.6" y="385" width="2.3" height="15.0" fill="rgb(80,80,235)" rx="2" ry="2" />
<text text-anchor="" x="429.60" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (1 samples, 0.19%)</title><rect x="854.5" y="593" width="2.2" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="857.47" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (22 samples, 4.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (22 samples, 4.20%)</title><rect x="1018.9" y="769" width="49.5" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="1021.85" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org...</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.Versions.loadDocIdAndVersion (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.Versions.loadDocIdAndVersion (1 samples, 0.19%)</title><rect x="906.3" y="529" width="2.2" height="15.0" fill="rgb(241,106,30)" rx="2" ry="2" />
<text text-anchor="" x="909.26" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.joda.time.format.DateTimeParserBucket.doParseMillis (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.joda.time.format.DateTimeParserBucket.doParseMillis (2 samples, 0.38%)</title><rect x="541.5" y="417" width="4.5" height="15.0" fill="rgb(212,202,35)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (3 samples, 0.57%)</title><rect x="892.7" y="785" width="6.8" height="15.0" fill="rgb(228,141,38)" rx="2" ry="2" />
<text text-anchor="" x="895.75" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.CompressionMode$LZ4FastCompressor.compress (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.CompressionMode$LZ4FastCompressor.compress (1 samples, 0.19%)</title><rect x="638.3" y="433" width="2.2" height="15.0" fill="rgb(229,154,40)" rx="2" ry="2" />
<text text-anchor="" x="641.28" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels.writeFully (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels.writeFully (5 samples, 0.95%)</title><rect x="714.8" y="241" width="11.3" height="15.0" fill="rgb(137,137,198)" rx="2" ry="2" />
<text text-anchor="" x="717.85" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (3 samples, 0.57%)</title><rect x="667.6" y="721" width="6.7" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="670.56" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.blocktree.SegmentTermsEnum.seekExact (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.blocktree.SegmentTermsEnum.seekExact (1 samples, 0.19%)</title><rect x="906.3" y="497" width="2.2" height="15.0" fill="rgb(246,206,36)" rx="2" ry="2" />
<text text-anchor="" x="909.26" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (1 samples, 0.19%)</title><rect x="638.3" y="673" width="2.2" height="15.0" fill="rgb(218,222,0)" rx="2" ry="2" />
<text text-anchor="" x="641.28" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.io.BufferedOutputStream.flushBuffer (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.io.BufferedOutputStream.flushBuffer (1 samples, 0.19%)</title><rect x="1181.0" y="385" width="2.2" height="15.0" fill="rgb(238,120,29)" rx="2" ry="2" />
<text text-anchor="" x="1183.99" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.search.suggest.completion.Completion090PostingsFormat.completionStats (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.search.suggest.completion.Completion090PostingsFormat.completionStats (1 samples, 0.19%)</title><rect x="1147.2" y="625" width="2.3" height="15.0" fill="rgb(225,40,28)" rx="2" ry="2" />
<text text-anchor="" x="1150.21" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (5 samples, 0.95%)</title><rect x="516.7" y="673" width="11.2" height="15.0" fill="rgb(218,222,0)" rx="2" ry="2" />
<text text-anchor="" x="519.68" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.util.internal.DeadLockProofWorker$1.run (9 samples, 1.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.util.internal.DeadLockProofWorker$1.run (9 samples, 1.72%)</title><rect x="424.4" y="801" width="20.2" height="15.0" fill="rgb(237,224,40)" rx="2" ry="2" />
<text text-anchor="" x="427.35" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (1 samples, 0.19%)</title><rect x="969.3" y="641" width="2.3" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="972.31" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write0 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write0 (1 samples, 0.19%)</title><rect x="928.8" y="161" width="2.2" height="15.0" fill="rgb(139,139,202)" rx="2" ry="2" />
<text text-anchor="" x="931.78" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.writeFromNativeBuffer (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.writeFromNativeBuffer (1 samples, 0.19%)</title><rect x="750.9" y="513" width="2.2" height="15.0" fill="rgb(81,81,230)" rx="2" ry="2" />
<text text-anchor="" x="753.88" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.DelegatingTransportChannel.sendResponse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.DelegatingTransportChannel.sendResponse (1 samples, 0.19%)</title><rect x="1122.4" y="689" width="2.3" height="15.0" fill="rgb(218,8,18)" rx="2" ry="2" />
<text text-anchor="" x="1125.44" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write0 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write0 (1 samples, 0.19%)</title><rect x="883.7" y="145" width="2.3" height="15.0" fill="rgb(139,139,202)" rx="2" ry="2" />
<text text-anchor="" x="886.74" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (8 samples, 1.53%)</title><rect x="606.8" y="737" width="18.0" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="609.76" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (8 samples, 1.53%)</title><rect x="732.9" y="689" width="18.0" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="735.86" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.stream.BytesStreamOutput.ensureCapacity (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.stream.BytesStreamOutput.ensureCapacity (1 samples, 0.19%)</title><rect x="1122.4" y="529" width="2.3" height="15.0" fill="rgb(205,22,12)" rx="2" ry="2" />
<text text-anchor="" x="1125.44" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force (9 samples, 1.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force (9 samples, 1.72%)</title><rect x="933.3" y="545" width="20.2" height="15.0" fill="rgb(236,18,34)" rx="2" ry="2" />
<text text-anchor="" x="936.28" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsReader.terms (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsReader.terms (1 samples, 0.19%)</title><rect x="1172.0" y="609" width="2.2" height="15.0" fill="rgb(205,192,34)" rx="2" ry="2" />
<text text-anchor="" x="1174.98" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.create (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.create (1 samples, 0.19%)</title><rect x="757.6" y="625" width="2.3" height="15.0" fill="rgb(206,208,36)" rx="2" ry="2" />
<text text-anchor="" x="760.63" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.prepareCreateOnPrimary (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.prepareCreateOnPrimary (1 samples, 0.19%)</title><rect x="527.9" y="609" width="2.3" height="15.0" fill="rgb(226,28,48)" rx="2" ry="2" />
<text text-anchor="" x="530.94" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (1 samples, 0.19%)</title><rect x="1111.2" y="801" width="2.2" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="1114.18" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.AbstractNioWorker.writeFromUserCode (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.AbstractNioWorker.writeFromUserCode (1 samples, 0.19%)</title><rect x="415.3" y="113" width="2.3" height="15.0" fill="rgb(105,105,211)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (2 samples, 0.38%)</title><rect x="669.8" y="593" width="4.5" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="672.81" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Checkpoint.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Checkpoint.write (1 samples, 0.19%)</title><rect x="755.4" y="529" width="2.2" height="15.0" fill="rgb(94,94,229)" rx="2" ry="2" />
<text text-anchor="" x="758.38" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreate (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreate (2 samples, 0.38%)</title><rect x="777.9" y="577" width="4.5" height="15.0" fill="rgb(231,13,44)" rx="2" ry="2" />
<text text-anchor="" x="780.90" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor.runWorker (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.runWorker (8 samples, 1.53%)</title><rect x="953.5" y="817" width="18.1" height="15.0" fill="rgb(253,116,23)" rx="2" ry="2" />
<text text-anchor="" x="956.55" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force (5 samples, 0.95%)</title><rect x="1021.1" y="593" width="11.3" height="15.0" fill="rgb(236,18,34)" rx="2" ry="2" />
<text text-anchor="" x="1024.11" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Checkpoint.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Checkpoint.write (1 samples, 0.19%)</title><rect x="696.8" y="545" width="2.3" height="15.0" fill="rgb(94,94,229)" rx="2" ry="2" />
<text text-anchor="" x="699.83" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (10 samples, 1.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (10 samples, 1.91%)</title><rect x="775.6" y="689" width="22.6" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="778.65" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)</title><rect x="638.3" y="225" width="2.2" height="15.0" fill="rgb(121,121,206)" rx="2" ry="2" />
<text text-anchor="" x="641.28" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (2 samples, 0.38%)</title><rect x="757.6" y="737" width="4.5" height="15.0" fill="rgb(247,84,19)" rx="2" ry="2" />
<text text-anchor="" x="760.63" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriter.updateDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriter.updateDocument (1 samples, 0.19%)</title><rect x="624.8" y="561" width="2.2" height="15.0" fill="rgb(238,61,26)" rx="2" ry="2" />
<text text-anchor="" x="627.77" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.Channels.writeToChannel (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.Channels.writeToChannel (1 samples, 0.19%)</title><rect x="636.0" y="561" width="2.3" height="15.0" fill="rgb(134,134,237)" rx="2" ry="2" />
<text text-anchor="" x="639.03" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.fs.UnixNativeDispatcher.readdir (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.fs.UnixNativeDispatcher.readdir (1 samples, 0.19%)</title><rect x="1178.7" y="433" width="2.3" height="15.0" fill="rgb(130,130,238)" rx="2" ry="2" />
<text text-anchor="" x="1181.74" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.prepareCreateOnPrimary (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.prepareCreateOnPrimary (1 samples, 0.19%)</title><rect x="1005.3" y="609" width="2.3" height="15.0" fill="rgb(226,28,48)" rx="2" ry="2" />
<text text-anchor="" x="1008.34" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (4 samples, 0.76%)</title><rect x="753.1" y="801" width="9.0" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="756.13" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (3 samples, 0.57%)</title><rect x="971.6" y="689" width="6.7" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="974.56" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write (4 samples, 0.76%)</title><rect x="491.9" y="497" width="9.0" height="15.0" fill="rgb(119,119,204)" rx="2" ry="2" />
<text text-anchor="" x="494.91" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.NioWorker.read (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.NioWorker.read (1 samples, 0.19%)</title><rect x="419.8" y="705" width="2.3" height="15.0" fill="rgb(134,134,192)" rx="2" ry="2" />
<text text-anchor="" x="422.85" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.AttributeSource.clearAttributes (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.AttributeSource.clearAttributes (1 samples, 0.19%)</title><rect x="931.0" y="417" width="2.3" height="15.0" fill="rgb(225,58,33)" rx="2" ry="2" />
<text text-anchor="" x="934.03" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.blocktree.SegmentTermsEnum.seekExact (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.blocktree.SegmentTermsEnum.seekExact (1 samples, 0.19%)</title><rect x="780.2" y="497" width="2.2" height="15.0" fill="rgb(246,206,36)" rx="2" ry="2" />
<text text-anchor="" x="783.15" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.Outputs.readFinalOutput (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.Outputs.readFinalOutput (1 samples, 0.19%)</title><rect x="532.4" y="417" width="2.3" height="15.0" fill="rgb(131,131,202)" rx="2" ry="2" />
<text text-anchor="" x="535.44" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.nodes.TransportNodesAction$NodeTransportHandler.messageReceived (2 samples, 0.38%)</title><rect x="1167.5" y="753" width="4.5" height="15.0" fill="rgb(218,49,53)" rx="2" ry="2" />
<text text-anchor="" x="1170.48" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (5 samples, 0.95%)</title><rect x="690.1" y="737" width="11.2" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="693.08" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (1 samples, 0.19%)</title><rect x="798.2" y="609" width="2.2" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="801.17" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreate (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreate (1 samples, 0.19%)</title><rect x="994.1" y="577" width="2.2" height="15.0" fill="rgb(231,13,44)" rx="2" ry="2" />
<text text-anchor="" x="997.08" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.OutputStreamIndexOutput.writeBytes (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.OutputStreamIndexOutput.writeBytes (1 samples, 0.19%)</title><rect x="883.7" y="353" width="2.3" height="15.0" fill="rgb(115,115,201)" rx="2" ry="2" />
<text text-anchor="" x="886.74" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.fs.UnixChannelFactory.open (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.fs.UnixChannelFactory.open (6 samples, 1.15%)</title><rect x="908.5" y="225" width="13.5" height="15.0" fill="rgb(246,9,0)" rx="2" ry="2" />
<text text-anchor="" x="911.51" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.Channels.writeToChannel (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.Channels.writeToChannel (1 samples, 0.19%)</title><rect x="755.4" y="497" width="2.2" height="15.0" fill="rgb(134,134,237)" rx="2" ry="2" />
<text text-anchor="" x="758.38" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.create (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.create (1 samples, 0.19%)</title><rect x="647.3" y="609" width="2.2" height="15.0" fill="rgb(206,208,36)" rx="2" ry="2" />
<text text-anchor="" x="650.29" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.fs.UnixFileAttributeViews$Basic.readAttributes (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.fs.UnixFileAttributeViews$Basic.readAttributes (1 samples, 0.19%)</title><rect x="1124.7" y="401" width="2.2" height="15.0" fill="rgb(121,121,221)" rx="2" ry="2" />
<text text-anchor="" x="1127.69" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (8 samples, 1.53%)</title><rect x="647.3" y="721" width="18.0" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="650.29" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.processField (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.processField (2 samples, 0.38%)</title><rect x="901.8" y="465" width="4.5" height="15.0" fill="rgb(220,68,13)" rx="2" ry="2" />
<text text-anchor="" x="904.76" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (13 samples, 2.48%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (13 samples, 2.48%)</title><rect x="813.9" y="769" width="29.3" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="816.93" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >or..</text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain$PerField.invert (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain$PerField.invert (1 samples, 0.19%)</title><rect x="640.5" y="449" width="2.3" height="15.0" fill="rgb(243,141,2)" rx="2" ry="2" />
<text text-anchor="" x="643.53" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (2 samples, 0.38%)</title><rect x="895.0" y="593" width="4.5" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="898.00" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.ThreadLocal.get (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ThreadLocal.get (1 samples, 0.19%)</title><rect x="534.7" y="481" width="2.2" height="15.0" fill="rgb(229,153,32)" rx="2" ry="2" />
<text text-anchor="" x="537.69" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.fs.UnixFileAttributeViews$Basic.readAttributes (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.fs.UnixFileAttributeViews$Basic.readAttributes (1 samples, 0.19%)</title><rect x="1154.0" y="401" width="2.2" height="15.0" fill="rgb(121,121,221)" rx="2" ry="2" />
<text text-anchor="" x="1156.97" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.updateDocument (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.updateDocument (2 samples, 0.38%)</title><rect x="487.4" y="529" width="4.5" height="15.0" fill="rgb(233,96,34)" rx="2" ry="2" />
<text text-anchor="" x="490.40" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (4 samples, 0.76%)</title><rect x="762.1" y="641" width="9.0" height="15.0" fill="rgb(214,128,2)" rx="2" ry="2" />
<text text-anchor="" x="765.14" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.blocktree.SegmentTermsEnumFrame.loadBlock (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.blocktree.SegmentTermsEnumFrame.loadBlock (1 samples, 0.19%)</title><rect x="1183.2" y="401" width="2.3" height="15.0" fill="rgb(254,54,48)" rx="2" ry="2" />
<text text-anchor="" x="1186.24" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (1 samples, 0.19%)</title><rect x="1183.2" y="785" width="2.3" height="15.0" fill="rgb(228,141,38)" rx="2" ry="2" />
<text text-anchor="" x="1186.24" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.indices.IndicesService.stats (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.indices.IndicesService.stats (1 samples, 0.19%)</title><rect x="1142.7" y="657" width="2.3" height="15.0" fill="rgb(247,73,29)" rx="2" ry="2" />
<text text-anchor="" x="1145.71" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriter.updateDocument (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriter.updateDocument (6 samples, 1.15%)</title><rect x="609.0" y="529" width="13.5" height="15.0" fill="rgb(238,61,26)" rx="2" ry="2" />
<text text-anchor="" x="612.01" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force (7 samples, 1.34%)</title><rect x="782.4" y="545" width="15.8" height="15.0" fill="rgb(236,18,34)" rx="2" ry="2" />
<text text-anchor="" x="785.40" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.NioWorker.scheduleWriteIfNecessary (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.NioWorker.scheduleWriteIfNecessary (1 samples, 0.19%)</title><rect x="1185.5" y="529" width="2.2" height="15.0" fill="rgb(219,175,22)" rx="2" ry="2" />
<text text-anchor="" x="1188.50" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.write (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.write (3 samples, 0.57%)</title><rect x="856.7" y="529" width="6.8" height="15.0" fill="rgb(103,103,204)" rx="2" ry="2" />
<text text-anchor="" x="859.72" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.create (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.create (2 samples, 0.38%)</title><rect x="813.9" y="593" width="4.5" height="15.0" fill="rgb(214,111,47)" rx="2" ry="2" />
<text text-anchor="" x="816.93" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.joda.time.format.DateTimeParserBucket.computeMillis (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.joda.time.format.DateTimeParserBucket.computeMillis (1 samples, 0.19%)</title><rect x="482.9" y="401" width="2.3" height="15.0" fill="rgb(207,109,42)" rx="2" ry="2" />
<text text-anchor="" x="485.90" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor$Worker.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor$Worker.run (1 samples, 0.19%)</title><rect x="417.6" y="833" width="2.2" height="15.0" fill="rgb(241,183,32)" rx="2" ry="2" />
<text text-anchor="" x="420.60" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.writeFromNativeBuffer (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.writeFromNativeBuffer (3 samples, 0.57%)</title><rect x="856.7" y="513" width="6.8" height="15.0" fill="rgb(81,81,230)" rx="2" ry="2" />
<text text-anchor="" x="859.72" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService$4.doRun (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService$4.doRun (7 samples, 1.34%)</title><rect x="953.5" y="785" width="15.8" height="15.0" fill="rgb(205,174,36)" rx="2" ry="2" />
<text text-anchor="" x="956.55" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (1 samples, 0.19%)</title><rect x="967.1" y="609" width="2.2" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="970.06" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels.access$000 (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels.access$000 (5 samples, 0.95%)</title><rect x="701.3" y="289" width="11.3" height="15.0" fill="rgb(232,51,49)" rx="2" ry="2" />
<text text-anchor="" x="704.34" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.FieldMapper.parse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.FieldMapper.parse (1 samples, 0.19%)</title><rect x="527.9" y="497" width="2.3" height="15.0" fill="rgb(215,191,25)" rx="2" ry="2" />
<text text-anchor="" x="530.94" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.BytesRefBuilder.copyChars (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.BytesRefBuilder.copyChars (1 samples, 0.19%)</title><rect x="852.2" y="401" width="2.3" height="15.0" fill="rgb(227,126,54)" rx="2" ry="2" />
<text text-anchor="" x="855.21" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (11 samples, 2.10%)</title><rect x="541.5" y="673" width="24.7" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (6 samples, 1.15%)</title><rect x="762.1" y="705" width="13.5" height="15.0" fill="rgb(222,177,52)" rx="2" ry="2" />
<text text-anchor="" x="765.14" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][refresh][T#115] (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][refresh][T#115] (1 samples, 0.19%)</title><rect x="1181.0" y="865" width="2.2" height="15.0" fill="rgb(208,47,45)" rx="2" ry="2" />
<text text-anchor="" x="1183.99" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (1 samples, 0.19%)</title><rect x="978.3" y="737" width="2.3" height="15.0" fill="rgb(247,84,19)" rx="2" ry="2" />
<text text-anchor="" x="981.32" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (2 samples, 0.38%)</title><rect x="536.9" y="657" width="4.6" height="15.0" fill="rgb(224,156,41)" rx="2" ry="2" />
<text text-anchor="" x="539.95" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.doRun (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.doRun (1 samples, 0.19%)</title><rect x="645.0" y="705" width="2.3" height="15.0" fill="rgb(232,57,0)" rx="2" ry="2" />
<text text-anchor="" x="648.04" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.store.Store$StoreStatsCache.refresh (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.store.Store$StoreStatsCache.refresh (6 samples, 1.15%)</title><rect x="1154.0" y="577" width="13.5" height="15.0" fill="rgb(242,91,19)" rx="2" ry="2" />
<text text-anchor="" x="1156.97" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.Versions.loadVersion (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.Versions.loadVersion (2 samples, 0.38%)</title><rect x="566.2" y="545" width="4.5" height="15.0" fill="rgb(228,65,45)" rx="2" ry="2" />
<text text-anchor="" x="569.22" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)</title><rect x="570.7" y="497" width="2.3" height="15.0" fill="rgb(119,119,204)" rx="2" ry="2" />
<text text-anchor="" x="573.73" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriterPerThread.updateDocument (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriterPerThread.updateDocument (2 samples, 0.38%)</title><rect x="764.4" y="497" width="4.5" height="15.0" fill="rgb(245,210,52)" rx="2" ry="2" />
<text text-anchor="" x="767.39" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.FST.readNextRealArc (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.FST.readNextRealArc (1 samples, 0.19%)</title><rect x="746.4" y="433" width="2.2" height="15.0" fill="rgb(136,136,222)" rx="2" ry="2" />
<text text-anchor="" x="749.37" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor$Worker.run (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor$Worker.run (6 samples, 1.15%)</title><rect x="1005.3" y="833" width="13.6" height="15.0" fill="rgb(241,183,32)" rx="2" ry="2" />
<text text-anchor="" x="1008.34" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsReader.terms (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsReader.terms (1 samples, 0.19%)</title><rect x="1115.7" y="609" width="2.2" height="15.0" fill="rgb(205,192,34)" rx="2" ry="2" />
<text text-anchor="" x="1118.69" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.OutputStreamIndexOutput.writeBytes (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.OutputStreamIndexOutput.writeBytes (1 samples, 0.19%)</title><rect x="926.5" y="353" width="2.3" height="15.0" fill="rgb(115,115,201)" rx="2" ry="2" />
<text text-anchor="" x="929.53" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.search.IndexSearcher.createWeight (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.search.IndexSearcher.createWeight (1 samples, 0.19%)</title><rect x="1183.2" y="465" width="2.3" height="15.0" fill="rgb(250,78,52)" rx="2" ry="2" />
<text text-anchor="" x="1186.24" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (4 samples, 0.76%)</title><rect x="460.4" y="593" width="9.0" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="463.38" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.force (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.force (1 samples, 0.19%)</title><rect x="500.9" y="561" width="2.3" height="15.0" fill="rgb(236,11,41)" rx="2" ry="2" />
<text text-anchor="" x="503.92" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor$Worker.run (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor$Worker.run (7 samples, 1.34%)</title><rect x="591.0" y="833" width="15.8" height="15.0" fill="rgb(241,183,32)" rx="2" ry="2" />
<text text-anchor="" x="593.99" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (2 samples, 0.38%)</title><rect x="640.5" y="753" width="4.5" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="643.53" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService.sendLocalRequest (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService.sendLocalRequest (1 samples, 0.19%)</title><rect x="417.6" y="257" width="2.2" height="15.0" fill="rgb(211,149,11)" rx="2" ry="2" />
<text text-anchor="" x="420.60" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.DefaultChannelPipeline$DefaultChannelHandlerContext.sendUpstream (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.DefaultChannelPipeline$DefaultChannelHandlerContext.sendUpstream (8 samples, 1.53%)</title><rect x="426.6" y="497" width="18.0" height="15.0" fill="rgb(217,60,45)" rx="2" ry="2" />
<text text-anchor="" x="429.60" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write (5 samples, 0.95%)</title><rect x="714.8" y="161" width="11.3" height="15.0" fill="rgb(119,119,204)" rx="2" ry="2" />
<text text-anchor="" x="717.85" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.Versions.loadDocIdAndVersion (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.Versions.loadDocIdAndVersion (2 samples, 0.38%)</title><rect x="566.2" y="529" width="4.5" height="15.0" fill="rgb(241,106,30)" rx="2" ry="2" />
<text text-anchor="" x="569.22" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels.access$000 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels.access$000 (1 samples, 0.19%)</title><rect x="1181.0" y="321" width="2.2" height="15.0" fill="rgb(232,51,49)" rx="2" ry="2" />
<text text-anchor="" x="1183.99" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.spi.AbstractInterruptibleChannel.close (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.spi.AbstractInterruptibleChannel.close (1 samples, 0.19%)</title><rect x="462.6" y="529" width="2.3" height="15.0" fill="rgb(222,38,39)" rx="2" ry="2" />
<text text-anchor="" x="465.63" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.search.internal.ContextIndexSearcher.createNormalizedWeight (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.search.internal.ContextIndexSearcher.createNormalizedWeight (1 samples, 0.19%)</title><rect x="1183.2" y="625" width="2.3" height="15.0" fill="rgb(252,113,16)" rx="2" ry="2" />
<text text-anchor="" x="1186.24" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (11 samples, 2.10%)</title><rect x="541.5" y="721" width="24.7" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.nodes.TransportNodesAction.nodeOperation (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.nodes.TransportNodesAction.nodeOperation (1 samples, 0.19%)</title><rect x="1113.4" y="721" width="2.3" height="15.0" fill="rgb(250,67,43)" rx="2" ry="2" />
<text text-anchor="" x="1116.44" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.LZ4.encodeSequence (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.LZ4.encodeSequence (4 samples, 0.76%)</title><rect x="843.2" y="385" width="9.0" height="15.0" fill="rgb(251,45,21)" rx="2" ry="2" />
<text text-anchor="" x="846.21" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.io.BufferedOutputStream.write (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.io.BufferedOutputStream.write (6 samples, 1.15%)</title><rect x="609.0" y="369" width="13.5" height="15.0" fill="rgb(95,95,199)" rx="2" ry="2" />
<text text-anchor="" x="612.01" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (2 samples, 0.38%)</title><rect x="669.8" y="609" width="4.5" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="672.81" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor$Worker.run (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor$Worker.run (11 samples, 2.10%)</title><rect x="458.1" y="833" width="24.8" height="15.0" fill="rgb(241,183,32)" rx="2" ry="2" />
<text text-anchor="" x="461.13" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.ParseContext.includeInAll (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.ParseContext.includeInAll (1 samples, 0.19%)</title><rect x="527.9" y="449" width="2.3" height="15.0" fill="rgb(208,135,52)" rx="2" ry="2" />
<text text-anchor="" x="530.94" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.SegmentMerger.merge (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.SegmentMerger.merge (1 samples, 0.19%)</title><rect x="455.9" y="769" width="2.2" height="15.0" fill="rgb(248,15,16)" rx="2" ry="2" />
<text text-anchor="" x="458.88" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.Engine$Create.execute (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.Engine$Create.execute (1 samples, 0.19%)</title><rect x="638.3" y="641" width="2.2" height="15.0" fill="rgb(236,194,14)" rx="2" ry="2" />
<text text-anchor="" x="641.28" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.index (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.index (6 samples, 1.15%)</title><rect x="908.5" y="609" width="13.5" height="15.0" fill="rgb(248,8,16)" rx="2" ry="2" />
<text text-anchor="" x="911.51" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.TermsHashPerField.add (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.TermsHashPerField.add (1 samples, 0.19%)</title><rect x="489.7" y="433" width="2.2" height="15.0" fill="rgb(228,23,21)" rx="2" ry="2" />
<text text-anchor="" x="492.66" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.FST.findTargetArc (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.FST.findTargetArc (1 samples, 0.19%)</title><rect x="807.2" y="465" width="2.2" height="15.0" fill="rgb(249,199,6)" rx="2" ry="2" />
<text text-anchor="" x="810.18" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.FST.readFirstRealTargetArc (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.FST.readFirstRealTargetArc (1 samples, 0.19%)</title><rect x="532.4" y="449" width="2.3" height="15.0" fill="rgb(122,122,215)" rx="2" ry="2" />
<text text-anchor="" x="535.44" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (7 samples, 1.34%)</title><rect x="591.0" y="801" width="15.8" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="593.99" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.doRun (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.doRun (2 samples, 0.38%)</title><rect x="922.0" y="705" width="4.5" height="15.0" fill="rgb(232,57,0)" rx="2" ry="2" />
<text text-anchor="" x="925.02" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (6 samples, 1.15%)</title><rect x="527.9" y="705" width="13.6" height="15.0" fill="rgb(222,177,52)" rx="2" ry="2" />
<text text-anchor="" x="530.94" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (1 samples, 0.19%)</title><rect x="1183.2" y="769" width="2.3" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="1186.24" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (3 samples, 0.57%)</title><rect x="926.5" y="641" width="6.8" height="15.0" fill="rgb(214,128,2)" rx="2" ry="2" />
<text text-anchor="" x="929.53" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.updateDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.updateDocument (1 samples, 0.19%)</title><rect x="638.3" y="545" width="2.2" height="15.0" fill="rgb(233,96,34)" rx="2" ry="2" />
<text text-anchor="" x="641.28" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (2 samples, 0.38%)</title><rect x="989.6" y="753" width="4.5" height="15.0" fill="rgb(247,84,19)" rx="2" ry="2" />
<text text-anchor="" x="992.58" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (1 samples, 0.19%)</title><rect x="500.9" y="657" width="2.3" height="15.0" fill="rgb(224,156,41)" rx="2" ry="2" />
<text text-anchor="" x="503.92" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Translog.ensureSynced (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Translog.ensureSynced (1 samples, 0.19%)</title><rect x="798.2" y="625" width="2.2" height="15.0" fill="rgb(205,176,40)" rx="2" ry="2" />
<text text-anchor="" x="801.17" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.index.TransportIndexAction.prepareIndexOperationOnPrimary (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.index.TransportIndexAction.prepareIndexOperationOnPrimary (3 samples, 0.57%)</title><rect x="541.5" y="625" width="6.7" height="15.0" fill="rgb(213,102,12)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.stream.BytesStreamOutput.writeBytes (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.stream.BytesStreamOutput.writeBytes (1 samples, 0.19%)</title><rect x="1151.7" y="513" width="2.3" height="15.0" fill="rgb(121,121,225)" rx="2" ry="2" />
<text text-anchor="" x="1154.72" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Thread.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Thread.run (1 samples, 0.19%)</title><rect x="1108.9" y="849" width="2.3" height="15.0" fill="rgb(251,44,12)" rx="2" ry="2" />
<text text-anchor="" x="1111.93" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.writeFromNativeBuffer (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.writeFromNativeBuffer (1 samples, 0.19%)</title><rect x="755.4" y="449" width="2.2" height="15.0" fill="rgb(81,81,230)" rx="2" ry="2" />
<text text-anchor="" x="758.38" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write0 (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write0 (4 samples, 0.76%)</title><rect x="996.3" y="481" width="9.0" height="15.0" fill="rgb(139,139,202)" rx="2" ry="2" />
<text text-anchor="" x="999.34" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (5 samples, 0.95%)</title><rect x="516.7" y="593" width="11.2" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="519.68" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.FSDirectory.sync (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.FSDirectory.sync (5 samples, 0.95%)</title><rect x="1021.1" y="657" width="11.3" height="15.0" fill="rgb(221,81,29)" rx="2" ry="2" />
<text text-anchor="" x="1024.11" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (4 samples, 0.76%)</title><rect x="503.2" y="673" width="9.0" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="506.17" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.FilterDirectoryReader.doOpenIfChanged (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.FilterDirectoryReader.doOpenIfChanged (1 samples, 0.19%)</title><rect x="1181.0" y="673" width="2.2" height="15.0" fill="rgb(232,107,16)" rx="2" ry="2" />
<text text-anchor="" x="1183.99" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService$DirectResponseChannel.processResponse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService$DirectResponseChannel.processResponse (1 samples, 0.19%)</title><rect x="1108.9" y="641" width="2.3" height="15.0" fill="rgb(222,121,30)" rx="2" ry="2" />
<text text-anchor="" x="1111.93" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.fs.UnixPath.checkRead (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.fs.UnixPath.checkRead (1 samples, 0.19%)</title><rect x="1124.7" y="385" width="2.2" height="15.0" fill="rgb(226,109,34)" rx="2" ry="2" />
<text text-anchor="" x="1127.69" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentParser.parseDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentParser.parseDocument (1 samples, 0.19%)</title><rect x="690.1" y="561" width="2.2" height="15.0" fill="rgb(209,14,21)" rx="2" ry="2" />
<text text-anchor="" x="693.08" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write (1 samples, 0.19%)</title><rect x="892.7" y="177" width="2.3" height="15.0" fill="rgb(119,119,204)" rx="2" ry="2" />
<text text-anchor="" x="895.75" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentMapper.parse (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentMapper.parse (3 samples, 0.57%)</title><rect x="541.5" y="577" width="6.7" height="15.0" fill="rgb(239,142,49)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor.runWorker (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.runWorker (1 samples, 0.19%)</title><rect x="415.3" y="817" width="2.3" height="15.0" fill="rgb(253,116,23)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$NodeResponse.writeTo (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$NodeResponse.writeTo (1 samples, 0.19%)</title><rect x="1122.4" y="641" width="2.3" height="15.0" fill="rgb(89,89,214)" rx="2" ry="2" />
<text text-anchor="" x="1125.44" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (6 samples, 1.15%)</title><rect x="469.4" y="737" width="13.5" height="15.0" fill="rgb(247,84,19)" rx="2" ry="2" />
<text text-anchor="" x="472.39" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportRequestHandler.messageReceived (22 samples, 4.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportRequestHandler.messageReceived (22 samples, 4.20%)</title><rect x="1018.9" y="753" width="49.5" height="15.0" fill="rgb(243,108,4)" rx="2" ry="2" />
<text text-anchor="" x="1021.85" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org...</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Checkpoint.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Checkpoint.write (1 samples, 0.19%)</title><rect x="895.0" y="529" width="2.3" height="15.0" fill="rgb(94,94,229)" rx="2" ry="2" />
<text text-anchor="" x="898.00" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.security.AccessController.doPrivileged (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.security.AccessController.doPrivileged (1 samples, 0.19%)</title><rect x="1124.7" y="321" width="2.2" height="15.0" fill="rgb(205,112,30)" rx="2" ry="2" />
<text text-anchor="" x="1127.69" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.fs.UnixNativeDispatcher.open (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.fs.UnixNativeDispatcher.open (6 samples, 1.15%)</title><rect x="953.5" y="209" width="13.6" height="15.0" fill="rgb(213,225,40)" rx="2" ry="2" />
<text text-anchor="" x="956.55" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (1 samples, 0.19%)</title><rect x="645.0" y="609" width="2.3" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="648.04" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.PerThreadIDAndVersionLookup.lookup (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.PerThreadIDAndVersionLookup.lookup (1 samples, 0.19%)</title><rect x="816.2" y="513" width="2.2" height="15.0" fill="rgb(237,190,48)" rx="2" ry="2" />
<text text-anchor="" x="819.18" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriterPerThread.updateDocument (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriterPerThread.updateDocument (6 samples, 1.15%)</title><rect x="548.2" y="497" width="13.5" height="15.0" fill="rgb(245,210,52)" rx="2" ry="2" />
<text text-anchor="" x="551.21" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor.runWorker (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.runWorker (6 samples, 1.15%)</title><rect x="1154.0" y="817" width="13.5" height="15.0" fill="rgb(253,116,23)" rx="2" ry="2" />
<text text-anchor="" x="1156.97" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentParser.parseObject (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentParser.parseObject (1 samples, 0.19%)</title><rect x="1005.3" y="545" width="2.3" height="15.0" fill="rgb(238,220,50)" rx="2" ry="2" />
<text text-anchor="" x="1008.34" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (13 samples, 2.48%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (13 samples, 2.48%)</title><rect x="813.9" y="737" width="29.3" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="816.93" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >or..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.flush (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.flush (1 samples, 0.19%)</title><rect x="712.6" y="577" width="2.2" height="15.0" fill="rgb(228,191,52)" rx="2" ry="2" />
<text text-anchor="" x="715.60" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (1 samples, 0.19%)</title><rect x="759.9" y="657" width="2.2" height="15.0" fill="rgb(224,156,41)" rx="2" ry="2" />
<text text-anchor="" x="762.89" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (3 samples, 0.57%)</title><rect x="505.4" y="593" width="6.8" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="508.42" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)</title><rect x="573.0" y="481" width="2.2" height="15.0" fill="rgb(121,121,206)" rx="2" ry="2" />
<text text-anchor="" x="575.98" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerIndex (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerIndex (6 samples, 1.15%)</title><rect x="953.5" y="577" width="13.6" height="15.0" fill="rgb(246,73,49)" rx="2" ry="2" />
<text text-anchor="" x="956.55" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.NioWorker.read (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.NioWorker.read (5 samples, 0.95%)</title><rect x="444.6" y="705" width="11.3" height="15.0" fill="rgb(134,134,192)" rx="2" ry="2" />
<text text-anchor="" x="447.62" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.node.service.NodeService.stats (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.node.service.NodeService.stats (1 samples, 0.19%)</title><rect x="1145.0" y="673" width="2.2" height="15.0" fill="rgb(230,103,24)" rx="2" ry="2" />
<text text-anchor="" x="1147.96" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.Versions.loadDocIdAndVersion (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.Versions.loadDocIdAndVersion (1 samples, 0.19%)</title><rect x="816.2" y="529" width="2.2" height="15.0" fill="rgb(241,106,30)" rx="2" ry="2" />
<text text-anchor="" x="819.18" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (5 samples, 0.95%)</title><rect x="595.5" y="609" width="11.3" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="598.50" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.MessageChannelHandler$RequestHandler.doRun (4 samples, 0.76%)</title><rect x="1145.0" y="785" width="9.0" height="15.0" fill="rgb(228,141,38)" rx="2" ry="2" />
<text text-anchor="" x="1147.96" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.FST.findTargetArc (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.FST.findTargetArc (1 samples, 0.19%)</title><rect x="757.6" y="481" width="2.3" height="15.0" fill="rgb(249,199,6)" rx="2" ry="2" />
<text text-anchor="" x="760.63" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.MessageChannelHandler.handleRequest (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.MessageChannelHandler.handleRequest (1 samples, 0.19%)</title><rect x="415.3" y="433" width="2.3" height="15.0" fill="rgb(230,66,9)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (6 samples, 1.15%)</title><rect x="714.8" y="721" width="13.6" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="717.85" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsReader.ramBytesUsed (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.perfield.PerFieldPostingsFormat$FieldsReader.ramBytesUsed (2 samples, 0.38%)</title><rect x="1174.2" y="593" width="4.5" height="15.0" fill="rgb(239,87,9)" rx="2" ry="2" />
<text text-anchor="" x="1177.24" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force (2 samples, 0.38%)</title><rect x="464.9" y="545" width="4.5" height="15.0" fill="rgb(236,18,34)" rx="2" ry="2" />
<text text-anchor="" x="467.89" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.create (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.create (2 samples, 0.38%)</title><rect x="640.5" y="609" width="4.5" height="15.0" fill="rgb(206,208,36)" rx="2" ry="2" />
<text text-anchor="" x="643.53" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor.runWorker (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.runWorker (5 samples, 0.95%)</title><rect x="1142.7" y="817" width="11.3" height="15.0" fill="rgb(253,116,23)" rx="2" ry="2" />
<text text-anchor="" x="1145.71" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][bulk][T#20] (9 samples, 1.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][bulk][T#20] (9 samples, 1.72%)</title><rect x="647.3" y="865" width="20.3" height="15.0" fill="rgb(214,95,30)" rx="2" ry="2" />
<text text-anchor="" x="650.29" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnReplica (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnReplica (1 samples, 0.19%)</title><rect x="638.3" y="657" width="2.2" height="15.0" fill="rgb(233,15,33)" rx="2" ry="2" />
<text text-anchor="" x="641.28" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (3 samples, 0.57%)</title><rect x="667.6" y="673" width="6.7" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="670.56" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.doRun (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.doRun (1 samples, 0.19%)</title><rect x="798.2" y="705" width="2.2" height="15.0" fill="rgb(232,57,0)" rx="2" ry="2" />
<text text-anchor="" x="801.17" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportRequestHandler.messageReceived (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportRequestHandler.messageReceived (2 samples, 0.38%)</title><rect x="1138.2" y="753" width="4.5" height="15.0" fill="rgb(243,108,4)" rx="2" ry="2" />
<text text-anchor="" x="1141.21" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (3 samples, 0.57%)</title><rect x="865.7" y="689" width="6.8" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="868.73" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.loadCurrentVersionFromIndex (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.loadCurrentVersionFromIndex (1 samples, 0.19%)</title><rect x="726.1" y="561" width="2.3" height="15.0" fill="rgb(224,40,0)" rx="2" ry="2" />
<text text-anchor="" x="729.11" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService$4.doRun (12 samples, 2.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService$4.doRun (12 samples, 2.29%)</title><rect x="926.5" y="785" width="27.0" height="15.0" fill="rgb(205,174,36)" rx="2" ry="2" />
<text text-anchor="" x="929.53" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.sync (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.sync (1 samples, 0.19%)</title><rect x="645.0" y="641" width="2.3" height="15.0" fill="rgb(221,67,10)" rx="2" ry="2" />
<text text-anchor="" x="648.04" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.fs.UnixNativeDispatcher.stat (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.fs.UnixNativeDispatcher.stat (1 samples, 0.19%)</title><rect x="1154.0" y="369" width="2.2" height="15.0" fill="rgb(242,96,22)" rx="2" ry="2" />
<text text-anchor="" x="1156.97" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriterPerThread.updateDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriterPerThread.updateDocument (1 samples, 0.19%)</title><rect x="631.5" y="497" width="2.3" height="15.0" fill="rgb(245,210,52)" rx="2" ry="2" />
<text text-anchor="" x="634.53" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor.runWorker (12 samples, 2.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.runWorker (12 samples, 2.29%)</title><rect x="926.5" y="817" width="27.0" height="15.0" fill="rgb(253,116,23)" rx="2" ry="2" />
<text text-anchor="" x="929.53" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.prepareIndexOnReplica (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.prepareIndexOnReplica (1 samples, 0.19%)</title><rect x="674.3" y="641" width="2.3" height="15.0" fill="rgb(215,202,45)" rx="2" ry="2" />
<text text-anchor="" x="677.31" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.doRun (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.doRun (6 samples, 1.15%)</title><rect x="701.3" y="705" width="13.5" height="15.0" fill="rgb(232,57,0)" rx="2" ry="2" />
<text text-anchor="" x="704.34" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Translog.ensureSynced (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Translog.ensureSynced (2 samples, 0.38%)</title><rect x="922.0" y="625" width="4.5" height="15.0" fill="rgb(205,176,40)" rx="2" ry="2" />
<text text-anchor="" x="925.02" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.Versions.loadVersion (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.Versions.loadVersion (1 samples, 0.19%)</title><rect x="647.3" y="545" width="2.2" height="15.0" fill="rgb(228,65,45)" rx="2" ry="2" />
<text text-anchor="" x="650.29" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.store.Store$StoreStatsCache.refresh (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.store.Store$StoreStatsCache.refresh (5 samples, 0.95%)</title><rect x="1124.7" y="561" width="11.3" height="15.0" fill="rgb(242,91,19)" rx="2" ry="2" />
<text text-anchor="" x="1127.69" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (10 samples, 1.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (10 samples, 1.91%)</title><rect x="606.8" y="801" width="22.5" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="609.76" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.writeFromNativeBuffer (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.writeFromNativeBuffer (1 samples, 0.19%)</title><rect x="692.3" y="177" width="2.3" height="15.0" fill="rgb(81,81,230)" rx="2" ry="2" />
<text text-anchor="" x="695.33" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.processDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.processDocument (1 samples, 0.19%)</title><rect x="1007.6" y="481" width="2.2" height="15.0" fill="rgb(220,78,24)" rx="2" ry="2" />
<text text-anchor="" x="1010.60" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.processField (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.processField (2 samples, 0.38%)</title><rect x="487.4" y="465" width="4.5" height="15.0" fill="rgb(220,68,13)" rx="2" ry="2" />
<text text-anchor="" x="490.40" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (4 samples, 0.76%)</title><rect x="629.3" y="689" width="9.0" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="632.27" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.index.TransportIndexAction.prepareIndexOperationOnPrimary (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.index.TransportIndexAction.prepareIndexOperationOnPrimary (1 samples, 0.19%)</title><rect x="1005.3" y="625" width="2.3" height="15.0" fill="rgb(213,102,12)" rx="2" ry="2" />
<text text-anchor="" x="1008.34" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.joda.time.format.DateTimeFormatterBuilder$MatchingParser.parseInto (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.joda.time.format.DateTimeFormatterBuilder$MatchingParser.parseInto (1 samples, 0.19%)</title><rect x="775.6" y="337" width="2.3" height="15.0" fill="rgb(217,47,52)" rx="2" ry="2" />
<text text-anchor="" x="778.65" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.force (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.force (6 samples, 1.15%)</title><rect x="575.2" y="561" width="13.5" height="15.0" fill="rgb(236,11,41)" rx="2" ry="2" />
<text text-anchor="" x="578.23" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.TransportAction$1.onResponse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.TransportAction$1.onResponse (1 samples, 0.19%)</title><rect x="1108.9" y="593" width="2.3" height="15.0" fill="rgb(239,40,41)" rx="2" ry="2" />
<text text-anchor="" x="1111.93" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (3 samples, 0.57%)</title><rect x="971.6" y="769" width="6.7" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="974.56" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.updateDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.updateDocument (1 samples, 0.19%)</title><rect x="640.5" y="529" width="2.3" height="15.0" fill="rgb(233,96,34)" rx="2" ry="2" />
<text text-anchor="" x="643.53" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (10 samples, 1.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (10 samples, 1.91%)</title><rect x="775.6" y="753" width="22.6" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="778.65" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >o..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (3 samples, 0.57%)</title><rect x="629.3" y="657" width="6.7" height="15.0" fill="rgb(227,28,49)" rx="2" ry="2" />
<text text-anchor="" x="632.27" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.prepareCreate (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.prepareCreate (1 samples, 0.19%)</title><rect x="732.9" y="593" width="2.2" height="15.0" fill="rgb(228,179,21)" rx="2" ry="2" />
<text text-anchor="" x="735.86" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.index.TransportIndexAction.prepareIndexOperationOnPrimary (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.index.TransportIndexAction.prepareIndexOperationOnPrimary (2 samples, 0.38%)</title><rect x="482.9" y="625" width="4.5" height="15.0" fill="rgb(213,102,12)" rx="2" ry="2" />
<text text-anchor="" x="485.90" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (2 samples, 0.38%)</title><rect x="728.4" y="721" width="4.5" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="731.36" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (4 samples, 0.76%)</title><rect x="460.4" y="609" width="9.0" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="463.38" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.joda.time.format.DateTimeFormatterBuilder$NumberFormatter.parseInto (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.joda.time.format.DateTimeFormatterBuilder$NumberFormatter.parseInto (1 samples, 0.19%)</title><rect x="775.6" y="273" width="2.3" height="15.0" fill="rgb(226,191,26)" rx="2" ry="2" />
<text text-anchor="" x="778.65" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.FST.findTargetArc (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.FST.findTargetArc (1 samples, 0.19%)</title><rect x="757.6" y="497" width="2.3" height="15.0" fill="rgb(249,199,6)" rx="2" ry="2" />
<text text-anchor="" x="760.63" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (7 samples, 1.34%)</title><rect x="953.5" y="705" width="15.8" height="15.0" fill="rgb(222,177,52)" rx="2" ry="2" />
<text text-anchor="" x="956.55" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor$Worker.run (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor$Worker.run (11 samples, 2.10%)</title><rect x="690.1" y="833" width="24.7" height="15.0" fill="rgb(241,183,32)" rx="2" ry="2" />
<text text-anchor="" x="693.08" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction.nodeOperation (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction.nodeOperation (2 samples, 0.38%)</title><rect x="1167.5" y="689" width="4.5" height="15.0" fill="rgb(229,15,44)" rx="2" ry="2" />
<text text-anchor="" x="1170.48" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriter.updateDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriter.updateDocument (1 samples, 0.19%)</title><rect x="640.5" y="513" width="2.3" height="15.0" fill="rgb(238,61,26)" rx="2" ry="2" />
<text text-anchor="" x="643.53" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.CodecReader.ramBytesUsed (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.CodecReader.ramBytesUsed (2 samples, 0.38%)</title><rect x="1117.9" y="609" width="4.5" height="15.0" fill="rgb(226,165,47)" rx="2" ry="2" />
<text text-anchor="" x="1120.94" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (2 samples, 0.38%)</title><rect x="865.7" y="641" width="4.5" height="15.0" fill="rgb(214,128,2)" rx="2" ry="2" />
<text text-anchor="" x="868.73" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportBulkAction$2.onResponse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportBulkAction$2.onResponse (1 samples, 0.19%)</title><rect x="1187.7" y="385" width="2.3" height="15.0" fill="rgb(246,176,49)" rx="2" ry="2" />
<text text-anchor="" x="1190.75" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (1 samples, 0.19%)</title><rect x="645.0" y="657" width="2.3" height="15.0" fill="rgb(224,156,41)" rx="2" ry="2" />
<text text-anchor="" x="648.04" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardIndexOperation (2 samples, 0.38%)</title><rect x="690.1" y="657" width="4.5" height="15.0" fill="rgb(227,28,49)" rx="2" ry="2" />
<text text-anchor="" x="693.08" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.NioClientSocketPipelineSink.eventSunk (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.NioClientSocketPipelineSink.eventSunk (1 samples, 0.19%)</title><rect x="415.3" y="129" width="2.3" height="15.0" fill="rgb(216,163,34)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.fs.UnixChannelFactory.newFileChannel (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.fs.UnixChannelFactory.newFileChannel (1 samples, 0.19%)</title><rect x="818.4" y="481" width="2.3" height="15.0" fill="rgb(229,90,32)" rx="2" ry="2" />
<text text-anchor="" x="821.44" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (4 samples, 0.76%)</title><rect x="980.6" y="721" width="9.0" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="983.57" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.addDocument (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.addDocument (2 samples, 0.38%)</title><rect x="980.6" y="545" width="4.5" height="15.0" fill="rgb(227,61,0)" rx="2" ry="2" />
<text text-anchor="" x="983.57" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$ReplicaOperationTransportHandler.messageReceived (6 samples, 1.15%)</title><rect x="701.3" y="737" width="13.5" height="15.0" fill="rgb(247,84,19)" rx="2" ry="2" />
<text text-anchor="" x="704.34" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry$TransportChannelWrapper.sendResponse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry$TransportChannelWrapper.sendResponse (1 samples, 0.19%)</title><rect x="1122.4" y="705" width="2.3" height="15.0" fill="rgb(213,178,5)" rx="2" ry="2" />
<text text-anchor="" x="1125.44" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (7 samples, 1.34%)</title><rect x="953.5" y="769" width="15.8" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="956.55" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.checkpoint (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.checkpoint (1 samples, 0.19%)</title><rect x="500.9" y="577" width="2.3" height="15.0" fill="rgb(218,30,19)" rx="2" ry="2" />
<text text-anchor="" x="503.92" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('elasticsearch[elk-edata01-104_hot][management][T#17] (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>elasticsearch[elk-edata01-104_hot][management][T#17] (8 samples, 1.53%)</title><rect x="1124.7" y="865" width="18.0" height="15.0" fill="rgb(227,204,13)" rx="2" ry="2" />
<text text-anchor="" x="1127.69" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.fs.UnixFileSystemProvider.readAttributes (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.fs.UnixFileSystemProvider.readAttributes (1 samples, 0.19%)</title><rect x="1154.0" y="417" width="2.2" height="15.0" fill="rgb(114,114,203)" rx="2" ry="2" />
<text text-anchor="" x="1156.97" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.loadCurrentVersionFromIndex (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.loadCurrentVersionFromIndex (3 samples, 0.57%)</title><rect x="886.0" y="561" width="6.7" height="15.0" fill="rgb(224,40,0)" rx="2" ry="2" />
<text text-anchor="" x="888.99" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.checkpoint (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.checkpoint (2 samples, 0.38%)</title><rect x="809.4" y="577" width="4.5" height="15.0" fill="rgb(218,30,19)" rx="2" ry="2" />
<text text-anchor="" x="812.43" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.NioWorker.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.NioWorker.run (1 samples, 0.19%)</title><rect x="417.6" y="769" width="2.2" height="15.0" fill="rgb(239,83,22)" rx="2" ry="2" />
<text text-anchor="" x="420.60" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.netty.MessageChannelHandler.handleResponse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.netty.MessageChannelHandler.handleResponse (1 samples, 0.19%)</title><rect x="1187.7" y="481" width="2.3" height="15.0" fill="rgb(216,189,10)" rx="2" ry="2" />
<text text-anchor="" x="1190.75" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.LZ4.encodeLiterals (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.LZ4.encodeLiterals (1 samples, 0.19%)</title><rect x="843.2" y="369" width="2.3" height="15.0" fill="rgb(229,132,7)" rx="2" ry="2" />
<text text-anchor="" x="846.21" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.messageReceived (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.messageReceived (3 samples, 0.57%)</title><rect x="1147.2" y="721" width="6.8" height="15.0" fill="rgb(215,138,0)" rx="2" ry="2" />
<text text-anchor="" x="1150.21" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.completionStats (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.completionStats (1 samples, 0.19%)</title><rect x="1172.0" y="641" width="2.2" height="15.0" fill="rgb(216,18,14)" rx="2" ry="2" />
<text text-anchor="" x="1174.98" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Thread.run (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Thread.run (5 samples, 0.95%)</title><rect x="1142.7" y="849" width="11.3" height="15.0" fill="rgb(251,44,12)" rx="2" ry="2" />
<text text-anchor="" x="1145.71" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.write (1 samples, 0.19%)</title><rect x="622.5" y="481" width="2.3" height="15.0" fill="rgb(103,103,204)" rx="2" ry="2" />
<text text-anchor="" x="625.52" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreate (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreate (6 samples, 1.15%)</title><rect x="548.2" y="577" width="13.5" height="15.0" fill="rgb(231,13,44)" rx="2" ry="2" />
<text text-anchor="" x="551.21" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels.writeFullyImpl (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels.writeFullyImpl (1 samples, 0.19%)</title><rect x="883.7" y="225" width="2.3" height="15.0" fill="rgb(118,118,221)" rx="2" ry="2" />
<text text-anchor="" x="886.74" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.CompressingStoredFieldsIndexReader.ramBytesUsed (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.CompressingStoredFieldsIndexReader.ramBytesUsed (1 samples, 0.19%)</title><rect x="1140.5" y="577" width="2.2" height="15.0" fill="rgb(242,1,51)" rx="2" ry="2" />
<text text-anchor="" x="1143.46" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.loadCurrentVersionFromIndex (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.loadCurrentVersionFromIndex (2 samples, 0.38%)</title><rect x="804.9" y="561" width="4.5" height="15.0" fill="rgb(224,40,0)" rx="2" ry="2" />
<text text-anchor="" x="807.92" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.joda.time.format.DateTimeFormatterBuilder$MatchingParser.parseInto (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.joda.time.format.DateTimeFormatterBuilder$MatchingParser.parseInto (1 samples, 0.19%)</title><rect x="541.5" y="193" width="2.2" height="15.0" fill="rgb(217,47,52)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.FSDirectory$FSIndexOutput$1.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.FSDirectory$FSIndexOutput$1.write (1 samples, 0.19%)</title><rect x="926.5" y="289" width="2.3" height="15.0" fill="rgb(121,121,236)" rx="2" ry="2" />
<text text-anchor="" x="929.53" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportRequestHandler.messageReceived (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportRequestHandler.messageReceived (1 samples, 0.19%)</title><rect x="1111.2" y="753" width="2.2" height="15.0" fill="rgb(243,108,4)" rx="2" ry="2" />
<text text-anchor="" x="1114.18" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.lucene50.Lucene50StoredFieldsFormat.fieldsWriter (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.lucene50.Lucene50StoredFieldsFormat.fieldsWriter (6 samples, 1.15%)</title><rect x="953.5" y="465" width="13.6" height="15.0" fill="rgb(239,58,54)" rx="2" ry="2" />
<text text-anchor="" x="956.55" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.FST.readUnpackedNodeTarget (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.FST.readUnpackedNodeTarget (1 samples, 0.19%)</title><rect x="768.9" y="417" width="2.2" height="15.0" fill="rgb(109,109,234)" rx="2" ry="2" />
<text text-anchor="" x="771.89" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.index (7 samples, 1.34%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.index (7 samples, 1.34%)</title><rect x="609.0" y="609" width="15.8" height="15.0" fill="rgb(248,8,16)" rx="2" ry="2" />
<text text-anchor="" x="612.01" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService$4.doRun (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService$4.doRun (4 samples, 0.76%)</title><rect x="800.4" y="785" width="9.0" height="15.0" fill="rgb(205,174,36)" rx="2" ry="2" />
<text text-anchor="" x="803.42" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.force (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.force (1 samples, 0.19%)</title><rect x="854.5" y="561" width="2.2" height="15.0" fill="rgb(236,11,41)" rx="2" ry="2" />
<text text-anchor="" x="857.47" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.handler.codec.frame.FrameDecoder.unfoldAndFireMessageReceived (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.handler.codec.frame.FrameDecoder.unfoldAndFireMessageReceived (8 samples, 1.53%)</title><rect x="426.6" y="529" width="18.0" height="15.0" fill="rgb(217,104,2)" rx="2" ry="2" />
<text text-anchor="" x="429.60" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnReplica (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnReplica (1 samples, 0.19%)</title><rect x="624.8" y="657" width="2.2" height="15.0" fill="rgb(233,15,33)" rx="2" ry="2" />
<text text-anchor="" x="627.77" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (8 samples, 1.53%)</title><rect x="732.9" y="705" width="18.0" height="15.0" fill="rgb(222,177,52)" rx="2" ry="2" />
<text text-anchor="" x="735.86" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.AbstractNioWorker.process (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.AbstractNioWorker.process (8 samples, 1.53%)</title><rect x="426.6" y="721" width="18.0" height="15.0" fill="rgb(218,151,11)" rx="2" ry="2" />
<text text-anchor="" x="429.60" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryOperationTransportHandler.messageReceived (4 samples, 0.76%)</title><rect x="503.2" y="737" width="9.0" height="15.0" fill="rgb(225,131,35)" rx="2" ry="2" />
<text text-anchor="" x="506.17" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Translog.ensureSynced (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Translog.ensureSynced (2 samples, 0.38%)</title><rect x="536.9" y="625" width="4.6" height="15.0" fill="rgb(205,176,40)" rx="2" ry="2" />
<text text-anchor="" x="539.95" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$PrimaryPhase.doRun (3 samples, 0.57%)</title><rect x="865.7" y="705" width="6.8" height="15.0" fill="rgb(222,177,52)" rx="2" ry="2" />
<text text-anchor="" x="868.73" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.fs.UnixNativeDispatcher.open (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.fs.UnixNativeDispatcher.open (6 samples, 1.15%)</title><rect x="908.5" y="209" width="13.5" height="15.0" fill="rgb(213,225,40)" rx="2" ry="2" />
<text text-anchor="" x="911.51" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.FST.readNextRealArc (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.FST.readNextRealArc (1 samples, 0.19%)</title><rect x="768.9" y="433" width="2.2" height="15.0" fill="rgb(136,136,222)" rx="2" ry="2" />
<text text-anchor="" x="771.89" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Thread.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Thread.run (1 samples, 0.19%)</title><rect x="1111.2" y="849" width="2.2" height="15.0" fill="rgb(251,44,12)" rx="2" ry="2" />
<text text-anchor="" x="1114.18" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (2 samples, 0.38%)</title><rect x="624.8" y="689" width="4.5" height="15.0" fill="rgb(218,222,0)" rx="2" ry="2" />
<text text-anchor="" x="627.77" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Thread.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Thread.run (1 samples, 0.19%)</title><rect x="1187.7" y="849" width="2.3" height="15.0" fill="rgb(251,44,12)" rx="2" ry="2" />
<text text-anchor="" x="1190.75" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.core.NumberFieldMapper.parseCreateField (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.core.NumberFieldMapper.parseCreateField (1 samples, 0.19%)</title><rect x="482.9" y="481" width="2.3" height="15.0" fill="rgb(206,191,38)" rx="2" ry="2" />
<text text-anchor="" x="485.90" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.ip.IpFieldMapper.innerParseCreateField (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.ip.IpFieldMapper.innerParseCreateField (1 samples, 0.19%)</title><rect x="732.9" y="465" width="2.2" height="15.0" fill="rgb(226,104,3)" rx="2" ry="2" />
<text text-anchor="" x="735.86" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.ThreadLocal$ThreadLocalMap.access$000 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.ThreadLocal$ThreadLocalMap.access$000 (1 samples, 0.19%)</title><rect x="647.3" y="465" width="2.2" height="15.0" fill="rgb(247,71,18)" rx="2" ry="2" />
<text text-anchor="" x="650.29" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.initStoredFieldsWriter (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.initStoredFieldsWriter (6 samples, 1.15%)</title><rect x="953.5" y="481" width="13.6" height="15.0" fill="rgb(228,165,54)" rx="2" ry="2" />
<text text-anchor="" x="956.55" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force0 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force0 (1 samples, 0.19%)</title><rect x="699.1" y="529" width="2.2" height="15.0" fill="rgb(222,14,30)" rx="2" ry="2" />
<text text-anchor="" x="702.08" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (1 samples, 0.19%)</title><rect x="500.9" y="673" width="2.3" height="15.0" fill="rgb(218,222,0)" rx="2" ry="2" />
<text text-anchor="" x="503.92" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.node.service.NodeService.stats (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.node.service.NodeService.stats (2 samples, 0.38%)</title><rect x="1167.5" y="673" width="4.5" height="15.0" fill="rgb(230,103,24)" rx="2" ry="2" />
<text text-anchor="" x="1170.48" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (2 samples, 0.38%)</title><rect x="728.4" y="657" width="4.5" height="15.0" fill="rgb(224,156,41)" rx="2" ry="2" />
<text text-anchor="" x="731.36" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.joda.time.format.InternalParserDateTimeParser.parseInto (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.joda.time.format.InternalParserDateTimeParser.parseInto (1 samples, 0.19%)</title><rect x="541.5" y="273" width="2.2" height="15.0" fill="rgb(242,16,2)" rx="2" ry="2" />
<text text-anchor="" x="544.45" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.AbstractNioSelector.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.AbstractNioSelector.run (1 samples, 0.19%)</title><rect x="417.6" y="737" width="2.2" height="15.0" fill="rgb(213,181,6)" rx="2" ry="2" />
<text text-anchor="" x="420.60" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.create (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.create (2 samples, 0.38%)</title><rect x="777.9" y="609" width="4.5" height="15.0" fill="rgb(206,208,36)" rx="2" ry="2" />
<text text-anchor="" x="780.90" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.search.query.QueryPhase.execute (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.search.query.QueryPhase.execute (1 samples, 0.19%)</title><rect x="1183.2" y="657" width="2.3" height="15.0" fill="rgb(245,154,29)" rx="2" ry="2" />
<text text-anchor="" x="1186.24" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)</title><rect x="649.5" y="481" width="2.3" height="15.0" fill="rgb(121,121,206)" rx="2" ry="2" />
<text text-anchor="" x="652.54" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.BufferingTranslogWriter.sync (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.BufferingTranslogWriter.sync (1 samples, 0.19%)</title><rect x="759.9" y="593" width="2.2" height="15.0" fill="rgb(233,93,21)" rx="2" ry="2" />
<text text-anchor="" x="762.89" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DocumentsWriter.updateDocument (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DocumentsWriter.updateDocument (6 samples, 1.15%)</title><rect x="953.5" y="545" width="13.6" height="15.0" fill="rgb(238,61,26)" rx="2" ry="2" />
<text text-anchor="" x="956.55" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor.runWorker (13 samples, 2.48%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.runWorker (13 samples, 2.48%)</title><rect x="813.9" y="817" width="29.3" height="15.0" fill="rgb(253,116,23)" rx="2" ry="2" />
<text text-anchor="" x="816.93" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ja..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction.shardOperation (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction.shardOperation (4 samples, 0.76%)</title><rect x="1172.0" y="689" width="9.0" height="15.0" fill="rgb(252,11,24)" rx="2" ry="2" />
<text text-anchor="" x="1174.98" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (6 samples, 1.15%)</title><rect x="701.3" y="673" width="13.5" height="15.0" fill="rgb(218,222,0)" rx="2" ry="2" />
<text text-anchor="" x="704.34" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.addDocument (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.addDocument (1 samples, 0.19%)</title><rect x="813.9" y="545" width="2.3" height="15.0" fill="rgb(227,61,0)" rx="2" ry="2" />
<text text-anchor="" x="816.93" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnPrimary (4 samples, 0.76%)</title><rect x="800.4" y="673" width="9.0" height="15.0" fill="rgb(252,132,3)" rx="2" ry="2" />
<text text-anchor="" x="803.42" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor.runWorker (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.runWorker (11 samples, 2.10%)</title><rect x="458.1" y="817" width="24.8" height="15.0" fill="rgb(253,116,23)" rx="2" ry="2" />
<text text-anchor="" x="461.13" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.bulk.TransportShardBulkAction.shardOperationOnReplica (2 samples, 0.38%)</title><rect x="989.6" y="673" width="4.5" height="15.0" fill="rgb(218,222,0)" rx="2" ry="2" />
<text text-anchor="" x="992.58" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.DefaultIndexingChain.writeDocValues (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.DefaultIndexingChain.writeDocValues (1 samples, 0.19%)</title><rect x="1181.0" y="529" width="2.2" height="15.0" fill="rgb(126,126,190)" rx="2" ry="2" />
<text text-anchor="" x="1183.99" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction.processAfterWrite (5 samples, 0.95%)</title><rect x="471.6" y="657" width="11.3" height="15.0" fill="rgb(224,156,41)" rx="2" ry="2" />
<text text-anchor="" x="474.64" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.write (1 samples, 0.19%)</title><rect x="712.6" y="545" width="2.2" height="15.0" fill="rgb(121,121,206)" rx="2" ry="2" />
<text text-anchor="" x="715.60" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.Translog.ensureSynced (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.Translog.ensureSynced (1 samples, 0.19%)</title><rect x="854.5" y="625" width="2.2" height="15.0" fill="rgb(205,176,40)" rx="2" ry="2" />
<text text-anchor="" x="857.47" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.innerCreateNoLock (1 samples, 0.19%)</title><rect x="591.0" y="561" width="2.2" height="15.0" fill="rgb(220,105,49)" rx="2" ry="2" />
<text text-anchor="" x="593.99" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.messageReceived (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.messageReceived (2 samples, 0.38%)</title><rect x="1138.2" y="721" width="4.5" height="15.0" fill="rgb(215,138,0)" rx="2" ry="2" />
<text text-anchor="" x="1141.21" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Thread.run (11 samples, 2.10%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Thread.run (11 samples, 2.10%)</title><rect x="458.1" y="849" width="24.8" height="15.0" fill="rgb(251,44,12)" rx="2" ry="2" />
<text text-anchor="" x="461.13" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.writeFromNativeBuffer (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.writeFromNativeBuffer (1 samples, 0.19%)</title><rect x="863.5" y="513" width="2.2" height="15.0" fill="rgb(81,81,230)" rx="2" ry="2" />
<text text-anchor="" x="866.47" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Thread.run (10 samples, 1.91%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Thread.run (10 samples, 1.91%)</title><rect x="667.6" y="849" width="22.5" height="15.0" fill="rgb(251,44,12)" rx="2" ry="2" />
<text text-anchor="" x="670.56" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.blocktree.SegmentTermsEnum.seekExact (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.blocktree.SegmentTermsEnum.seekExact (1 samples, 0.19%)</title><rect x="642.8" y="497" width="2.2" height="15.0" fill="rgb(246,206,36)" rx="2" ry="2" />
<text text-anchor="" x="645.79" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnReplica (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnReplica (1 samples, 0.19%)</title><rect x="892.7" y="657" width="2.3" height="15.0" fill="rgb(233,15,33)" rx="2" ry="2" />
<text text-anchor="" x="895.75" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (6 samples, 1.15%)</title><rect x="469.4" y="721" width="13.5" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="472.39" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.io.BufferedOutputStream.flushBuffer (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.io.BufferedOutputStream.flushBuffer (1 samples, 0.19%)</title><rect x="638.3" y="337" width="2.2" height="15.0" fill="rgb(238,120,29)" rx="2" ry="2" />
<text text-anchor="" x="641.28" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.jboss.netty.channel.socket.nio.AbstractNioWorker.process (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.jboss.netty.channel.socket.nio.AbstractNioWorker.process (1 samples, 0.19%)</title><rect x="419.8" y="721" width="2.3" height="15.0" fill="rgb(218,151,11)" rx="2" ry="2" />
<text text-anchor="" x="422.85" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write0 (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write0 (3 samples, 0.57%)</title><rect x="856.7" y="481" width="6.8" height="15.0" fill="rgb(139,139,202)" rx="2" ry="2" />
<text text-anchor="" x="859.72" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor.runWorker (18 samples, 3.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor.runWorker (18 samples, 3.44%)</title><rect x="1068.4" y="817" width="40.5" height="15.0" fill="rgb(253,116,23)" rx="2" ry="2" />
<text text-anchor="" x="1071.40" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >jav..</text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.codecs.compressing.LZ4.compress (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.codecs.compressing.LZ4.compress (1 samples, 0.19%)</title><rect x="692.3" y="401" width="2.3" height="15.0" fill="rgb(223,95,34)" rx="2" ry="2" />
<text text-anchor="" x="695.33" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.index.TransportIndexAction.executeIndexRequestOnPrimary (5 samples, 0.95%)</title><rect x="843.2" y="641" width="11.3" height="15.0" fill="rgb(214,128,2)" rx="2" ry="2" />
<text text-anchor="" x="846.21" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.io.BufferedOutputStream.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.io.BufferedOutputStream.write (1 samples, 0.19%)</title><rect x="928.8" y="353" width="2.2" height="15.0" fill="rgb(95,95,199)" rx="2" ry="2" />
<text text-anchor="" x="931.78" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.util.concurrent.AbstractRunnable.run (18 samples, 3.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.util.concurrent.AbstractRunnable.run (18 samples, 3.44%)</title><rect x="1068.4" y="801" width="40.5" height="15.0" fill="rgb(241,141,24)" rx="2" ry="2" />
<text text-anchor="" x="1071.40" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction.nodeOperation (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.admin.cluster.node.stats.TransportNodesStatsAction.nodeOperation (1 samples, 0.19%)</title><rect x="1142.7" y="689" width="2.3" height="15.0" fill="rgb(229,15,44)" rx="2" ry="2" />
<text text-anchor="" x="1145.71" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.messageReceived (4 samples, 0.76%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.messageReceived (4 samples, 0.76%)</title><rect x="1115.7" y="737" width="9.0" height="15.0" fill="rgb(215,138,0)" rx="2" ry="2" />
<text text-anchor="" x="1118.69" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.translog.TranslogWriter.syncUpTo (3 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.translog.TranslogWriter.syncUpTo (3 samples, 0.57%)</title><rect x="505.4" y="609" width="6.8" height="15.0" fill="rgb(231,136,0)" rx="2" ry="2" />
<text text-anchor="" x="508.42" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.IOUtil.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.IOUtil.write (1 samples, 0.19%)</title><rect x="895.0" y="465" width="2.3" height="15.0" fill="rgb(103,103,204)" rx="2" ry="2" />
<text text-anchor="" x="898.00" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.nio.channels.Channels$1.write (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.nio.channels.Channels$1.write (5 samples, 0.95%)</title><rect x="701.3" y="305" width="11.3" height="15.0" fill="rgb(107,107,220)" rx="2" ry="2" />
<text text-anchor="" x="704.34" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.engine.InternalEngine.index (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.engine.InternalEngine.index (6 samples, 1.15%)</title><rect x="908.5" y="593" width="13.5" height="15.0" fill="rgb(242,61,12)" rx="2" ry="2" />
<text text-anchor="" x="911.51" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.doRun (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.doRun (5 samples, 0.95%)</title><rect x="516.7" y="705" width="11.2" height="15.0" fill="rgb(232,57,0)" rx="2" ry="2" />
<text text-anchor="" x="519.68" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.internal.FieldNamesFieldMapper.parseCreateField (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.internal.FieldNamesFieldMapper.parseCreateField (1 samples, 0.19%)</title><rect x="546.0" y="513" width="2.2" height="15.0" fill="rgb(234,28,20)" rx="2" ry="2" />
<text text-anchor="" x="548.95" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.FSDirectory$FSIndexOutput$1.write (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.FSDirectory$FSIndexOutput$1.write (1 samples, 0.19%)</title><rect x="692.3" y="289" width="2.3" height="15.0" fill="rgb(121,121,236)" rx="2" ry="2" />
<text text-anchor="" x="695.33" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction.shardOperation (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction.shardOperation (2 samples, 0.38%)</title><rect x="1138.2" y="689" width="4.5" height="15.0" fill="rgb(252,11,24)" rx="2" ry="2" />
<text text-anchor="" x="1141.21" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.force0 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.force0 (1 samples, 0.19%)</title><rect x="759.9" y="529" width="2.2" height="15.0" fill="rgb(222,14,30)" rx="2" ry="2" />
<text text-anchor="" x="762.89" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.shard.IndexShard.segmentStats (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.shard.IndexShard.segmentStats (1 samples, 0.19%)</title><rect x="1169.7" y="625" width="2.3" height="15.0" fill="rgb(223,160,15)" rx="2" ry="2" />
<text text-anchor="" x="1172.73" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived (8 samples, 1.53%)</title><rect x="1124.7" y="769" width="18.0" height="15.0" fill="rgb(234,204,8)" rx="2" ry="2" />
<text text-anchor="" x="1127.69" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.lang.Thread.run (9 samples, 1.72%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.lang.Thread.run (9 samples, 1.72%)</title><rect x="482.9" y="849" width="20.3" height="15.0" fill="rgb(251,44,12)" rx="2" ry="2" />
<text text-anchor="" x="485.90" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.fs.UnixNativeDispatcher.open0 (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.fs.UnixNativeDispatcher.open0 (1 samples, 0.19%)</title><rect x="818.4" y="417" width="2.3" height="15.0" fill="rgb(206,79,26)" rx="2" ry="2" />
<text text-anchor="" x="821.44" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.admin.indices.stats.CommonStats.(init) (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.admin.indices.stats.CommonStats.(init) (1 samples, 0.19%)</title><rect x="1145.0" y="641" width="2.2" height="15.0" fill="rgb(246,201,12)" rx="2" ry="2" />
<text text-anchor="" x="1147.96" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.store.FSDirectory.listAll (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.store.FSDirectory.listAll (1 samples, 0.19%)</title><rect x="1178.7" y="481" width="2.3" height="15.0" fill="rgb(242,135,31)" rx="2" ry="2" />
<text text-anchor="" x="1181.74" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.io.stream.StreamInput.readBytesReference (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.io.stream.StreamInput.readBytesReference (5 samples, 0.95%)</title><rect x="444.6" y="401" width="11.3" height="15.0" fill="rgb(85,85,200)" rx="2" ry="2" />
<text text-anchor="" x="447.62" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.io.FilePermission$1.run (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.io.FilePermission$1.run (1 samples, 0.19%)</title><rect x="1124.7" y="289" width="2.2" height="15.0" fill="rgb(206,222,2)" rx="2" ry="2" />
<text text-anchor="" x="1127.69" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.DocumentParser.parseObject (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.DocumentParser.parseObject (1 samples, 0.19%)</title><rect x="674.3" y="481" width="2.3" height="15.0" fill="rgb(238,220,50)" rx="2" ry="2" />
<text text-anchor="" x="677.31" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.Versions.loadVersion (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.Versions.loadVersion (1 samples, 0.19%)</title><rect x="989.6" y="561" width="2.2" height="15.0" fill="rgb(228,65,45)" rx="2" ry="2" />
<text text-anchor="" x="992.58" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileDispatcherImpl.write (18 samples, 3.44%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileDispatcherImpl.write (18 samples, 3.44%)</title><rect x="1068.4" y="513" width="40.5" height="15.0" fill="rgb(119,119,204)" rx="2" ry="2" />
<text text-anchor="" x="1071.40" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sun..</text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.updateDocument (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.updateDocument (5 samples, 0.95%)</title><rect x="735.1" y="529" width="11.3" height="15.0" fill="rgb(233,96,34)" rx="2" ry="2" />
<text text-anchor="" x="738.11" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('sun.nio.ch.FileChannelImpl.write (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>sun.nio.ch.FileChannelImpl.write (5 samples, 0.95%)</title><rect x="735.1" y="209" width="11.3" height="15.0" fill="rgb(121,121,206)" rx="2" ry="2" />
<text text-anchor="" x="738.11" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.index.IndexWriter.updateDocument (6 samples, 1.15%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.index.IndexWriter.updateDocument (6 samples, 1.15%)</title><rect x="609.0" y="545" width="13.5" height="15.0" fill="rgb(233,96,34)" rx="2" ry="2" />
<text text-anchor="" x="612.01" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.indices.recovery.RecoveryTarget$FileChunkTransportRequestHandler.messageReceived (22 samples, 4.20%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.indices.recovery.RecoveryTarget$FileChunkTransportRequestHandler.messageReceived (22 samples, 4.20%)</title><rect x="1018.9" y="721" width="49.5" height="15.0" fill="rgb(218,138,51)" rx="2" ry="2" />
<text text-anchor="" x="1021.85" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org...</text>
</g>
<g class="func_g" onmouseover="s('org.apache.lucene.util.fst.FST.readFirstRealTargetArc (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.apache.lucene.util.fst.FST.readFirstRealTargetArc (1 samples, 0.19%)</title><rect x="890.5" y="449" width="2.2" height="15.0" fill="rgb(122,122,215)" rx="2" ry="2" />
<text text-anchor="" x="893.50" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.FieldMapper.parse (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.FieldMapper.parse (1 samples, 0.19%)</title><rect x="1005.3" y="497" width="2.3" height="15.0" fill="rgb(215,191,25)" rx="2" ry="2" />
<text text-anchor="" x="1008.34" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.common.lucene.uid.Versions.loadVersion (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.common.lucene.uid.Versions.loadVersion (1 samples, 0.19%)</title><rect x="768.9" y="545" width="2.2" height="15.0" fill="rgb(228,65,45)" rx="2" ry="2" />
<text text-anchor="" x="771.89" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.transport.TransportService$4.doRun (8 samples, 1.53%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.transport.TransportService$4.doRun (8 samples, 1.53%)</title><rect x="732.9" y="785" width="18.0" height="15.0" fill="rgb(205,174,36)" rx="2" ry="2" />
<text text-anchor="" x="735.86" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.cluster.routing.ShardRouting.writeTo (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.cluster.routing.ShardRouting.writeTo (1 samples, 0.19%)</title><rect x="1151.7" y="593" width="2.3" height="15.0" fill="rgb(124,124,221)" rx="2" ry="2" />
<text text-anchor="" x="1154.72" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.doRun (2 samples, 0.38%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.action.support.replication.TransportReplicationAction$AsyncReplicaAction.doRun (2 samples, 0.38%)</title><rect x="757.6" y="705" width="4.5" height="15.0" fill="rgb(232,57,0)" rx="2" ry="2" />
<text text-anchor="" x="760.63" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.concurrent.ThreadPoolExecutor$Worker.run (12 samples, 2.29%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.concurrent.ThreadPoolExecutor$Worker.run (12 samples, 2.29%)</title><rect x="926.5" y="833" width="27.0" height="15.0" fill="rgb(241,183,32)" rx="2" ry="2" />
<text text-anchor="" x="929.53" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >j..</text>
</g>
<g class="func_g" onmouseover="s('org.elasticsearch.index.mapper.ParseContext.includeInAll (1 samples, 0.19%)')" onmouseout="c()" onclick="zoom(this)">
<title>org.elasticsearch.index.mapper.ParseContext.includeInAll (1 samples, 0.19%)</title><rect x="527.9" y="465" width="2.3" height="15.0" fill="rgb(208,135,52)" rx="2" ry="2" />
<text text-anchor="" x="530.94" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s('java.util.zip.CheckedOutputStream.write (5 samples, 0.95%)')" onmouseout="c()" onclick="zoom(this)">
<title>java.util.zip.CheckedO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment