Last active
November 24, 2023 03:28
-
-
Save winse/65823ba134b9e524fcf06c149fd67aed to your computer and use it in GitHub Desktop.
磁盘使用情况火焰图
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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="370" onload="init(evt)" viewBox="0 0 1200 370" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> | |
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. --> | |
<defs > | |
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" > | |
<stop stop-color="#eeeeee" offset="5%" /> | |
<stop stop-color="#eeeeb0" offset="95%" /> | |
</linearGradient> | |
</defs> | |
<style type="text/css"> | |
.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; } | |
</style> | |
<script type="text/ecmascript"> | |
<![CDATA[ | |
var details, searchbtn, matchedtxt, svg; | |
function init(evt) { | |
details = document.getElementById("details").firstChild; | |
searchbtn = document.getElementById("search"); | |
matchedtxt = document.getElementById("matched"); | |
svg = document.getElementsByTagName("svg")[0]; | |
searching = 0; | |
} | |
// mouse-over for info | |
function s(node) { // show | |
info = g_to_text(node); | |
details.nodeValue = "Function: " + info; | |
} | |
function c() { // clear | |
details.nodeValue = ' '; | |
} | |
// ctrl-F for search | |
window.addEventListener("keydown",function (e) { | |
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) { | |
e.preventDefault(); | |
search_prompt(); | |
} | |
}) | |
// functions | |
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 g_to_text(e) { | |
var text = find_child(e, "title").firstChild.nodeValue; | |
return (text) | |
} | |
function g_to_func(e) { | |
var func = g_to_text(e); | |
if (func != null) | |
func = func.replace(/ .*/, ""); | |
return (func); | |
} | |
function update_text(e) { | |
var r = find_child(e, "rect"); | |
var t = find_child(e, "text"); | |
var w = parseFloat(r.attributes["width"].value) -3; | |
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,""); | |
t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3; | |
// Smaller than this size won't fit anything | |
if (w < 2*12*0.59) { | |
t.textContent = ""; | |
return; | |
} | |
t.textContent = txt; | |
// Fit in full text width | |
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w) | |
return; | |
for (var x=txt.length-2; x>0; x--) { | |
if (t.getSubStringLength(0, x+2) <= w) { | |
t.textContent = txt.substring(0,x) + ".."; | |
return; | |
} | |
} | |
t.textContent = ""; | |
} | |
// zoom | |
function zoom_reset(e) { | |
if (e.attributes != undefined) { | |
orig_load(e, "x"); | |
orig_load(e, "width"); | |
} | |
if (e.childNodes == undefined) return; | |
for(var i=0, c=e.childNodes; i<c.length; i++) { | |
zoom_reset(c[i]); | |
} | |
} | |
function zoom_child(e, x, ratio) { | |
if (e.attributes != undefined) { | |
if (e.attributes["x"] != undefined) { | |
orig_save(e, "x"); | |
e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - 10) * ratio + 10; | |
if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 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]); | |
} | |
} | |
// search | |
function reset_search() { | |
var el = document.getElementsByTagName("rect"); | |
for (var i=0; i < el.length; i++) { | |
orig_load(el[i], "fill") | |
} | |
} | |
function search_prompt() { | |
if (!searching) { | |
var term = prompt("Enter a search term (regexp " + | |
"allowed, eg: ^ext4_)", ""); | |
if (term != null) { | |
search(term) | |
} | |
} else { | |
reset_search(); | |
searching = 0; | |
searchbtn.style["opacity"] = "0.1"; | |
searchbtn.firstChild.nodeValue = "Search" | |
matchedtxt.style["opacity"] = "0.0"; | |
matchedtxt.firstChild.nodeValue = "" | |
} | |
} | |
function search(term) { | |
var re = new RegExp(term); | |
var el = document.getElementsByTagName("g"); | |
var matches = new Object(); | |
var maxwidth = 0; | |
for (var i = 0; i < el.length; i++) { | |
var e = el[i]; | |
if (e.attributes["class"].value != "func_g") | |
continue; | |
var func = g_to_func(e); | |
var rect = find_child(e, "rect"); | |
if (rect == null) { | |
// the rect might be wrapped in an anchor | |
// if nameattr href is being used | |
if (rect = find_child(e, "a")) { | |
rect = find_child(r, "rect"); | |
} | |
} | |
if (func == null || rect == null) | |
continue; | |
// Save max width. Only works as we have a root frame | |
var w = parseFloat(rect.attributes["width"].value); | |
if (w > maxwidth) | |
maxwidth = w; | |
if (func.match(re)) { | |
// highlight | |
var x = parseFloat(rect.attributes["x"].value); | |
orig_save(rect, "fill"); | |
rect.attributes["fill"].value = | |
"rgb(230,0,230)"; | |
// remember matches | |
if (matches[x] == undefined) { | |
matches[x] = w; | |
} else { | |
if (w > matches[x]) { | |
// overwrite with parent | |
matches[x] = w; | |
} | |
} | |
searching = 1; | |
} | |
} | |
if (!searching) | |
return; | |
searchbtn.style["opacity"] = "1.0"; | |
searchbtn.firstChild.nodeValue = "Reset Search" | |
// calculate percent matched, excluding vertical overlap | |
var count = 0; | |
var lastx = -1; | |
var lastw = 0; | |
var keys = Array(); | |
for (k in matches) { | |
if (matches.hasOwnProperty(k)) | |
keys.push(k); | |
} | |
// sort the matched frames by their x location | |
// ascending, then width descending | |
keys.sort(function(a, b){ | |
return a - b; | |
if (a < b || a > b) | |
return a - b; | |
return matches[b] - matches[a]; | |
}); | |
// Step through frames saving only the biggest bottom-up frames | |
// thanks to the sort order. This relies on the tree property | |
// where children are always smaller than their parents. | |
for (var k in keys) { | |
var x = parseFloat(keys[k]); | |
var w = matches[keys[k]]; | |
if (x >= lastx + lastw) { | |
count += w; | |
lastx = x; | |
lastw = w; | |
} | |
} | |
// display matched percent | |
matchedtxt.style["opacity"] = "1.0"; | |
pct = 100 * count / maxwidth; | |
if (pct == 100) | |
pct = "100" | |
else | |
pct = pct.toFixed(1) | |
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%"; | |
} | |
function searchover(e) { | |
searchbtn.style["opacity"] = "1.0"; | |
} | |
function searchout(e) { | |
if (searching) { | |
searchbtn.style["opacity"] = "1.0"; | |
} else { | |
searchbtn.style["opacity"] = "0.1"; | |
} | |
} | |
]]> | |
</script> | |
<rect x="0.0" y="0" width="1200.0" height="370.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="353" 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> | |
<text text-anchor="" x="1090.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer" >Search</text> | |
<text text-anchor="" x="1090.00" y="353" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="matched" > </text> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (3,327,132 samples, 0.03%)</title><rect x="238.7" y="129" width="0.3" height="15.0" fill="rgb(219,152,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="241.68" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,520,724 samples, 0.01%)</title><rect x="1108.9" y="145" width="0.1" height="15.0" fill="rgb(218,206,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="1111.86" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rows (2,890,444 samples, 0.02%)</title><rect x="339.9" y="161" width="0.3" height="15.0" fill="rgb(254,215,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="342.95" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,723,820 samples, 0.01%)</title><rect x="736.6" y="129" width="0.2" height="15.0" fill="rgb(217,9,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="739.63" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>fixture (5,856,416 samples, 0.05%)</title><rect x="271.6" y="113" width="0.6" height="15.0" fill="rgb(242,29,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="274.61" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>mapreduce (1,852,633 samples, 0.01%)</title><rect x="942.9" y="145" width="0.2" height="15.0" fill="rgb(229,47,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="945.94" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (5,919,721 samples, 0.05%)</title><rect x="572.6" y="49" width="0.6" height="15.0" fill="rgb(235,40,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="575.64" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala (2,267,670 samples, 0.02%)</title><rect x="1151.9" y="193" width="0.2" height="15.0" fill="rgb(253,203,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="1154.91" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>io (1,837,889 samples, 0.01%)</title><rect x="753.9" y="129" width="0.1" height="15.0" fill="rgb(245,175,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="756.86" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hive (5,794,585 samples, 0.05%)</title><rect x="469.6" y="145" width="0.6" height="15.0" fill="rgb(215,121,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="472.64" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,854,814 samples, 0.01%)</title><rect x="1147.3" y="145" width="0.1" height="15.0" fill="rgb(215,13,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="1150.27" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>client (2,878,376 samples, 0.02%)</title><rect x="1082.2" y="145" width="0.3" height="15.0" fill="rgb(246,159,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="1085.18" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,386,198 samples, 0.01%)</title><rect x="433.3" y="145" width="0.2" height="15.0" fill="rgb(253,66,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="436.35" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez (1,555,567 samples, 0.01%)</title><rect x="1183.5" y="161" width="0.1" height="15.0" fill="rgb(211,210,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="1186.50" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (13,316,457 samples, 0.11%)</title><rect x="193.6" y="161" width="1.3" height="15.0" fill="rgb(206,128,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="196.63" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>common (7,175,291 samples, 0.06%)</title><rect x="396.9" y="241" width="0.7" height="15.0" fill="rgb(222,25,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="399.89" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (72,578,033 samples, 0.58%)</title><rect x="365.9" y="193" width="6.8" height="15.0" fill="rgb(246,7,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="368.85" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (105,672,502 samples, 0.84%)</title><rect x="405.4" y="225" width="9.9" height="15.0" fill="rgb(240,223,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="408.44" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (6,053,273 samples, 0.05%)</title><rect x="779.2" y="145" width="0.6" height="15.0" fill="rgb(206,226,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="782.22" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (3,316,824 samples, 0.03%)</title><rect x="784.4" y="177" width="0.3" height="15.0" fill="rgb(247,178,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="787.42" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,521,376 samples, 0.01%)</title><rect x="799.3" y="145" width="0.1" height="15.0" fill="rgb(215,15,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="802.27" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>kafka (4,480,589 samples, 0.04%)</title><rect x="1107.6" y="145" width="0.5" height="15.0" fill="rgb(223,126,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="1110.64" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tmp (1,074,824 samples, 0.01%)</title><rect x="280.7" y="97" width="0.1" height="15.0" fill="rgb(206,17,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.70" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>io (2,584,582 samples, 0.02%)</title><rect x="441.6" y="113" width="0.3" height="15.0" fill="rgb(226,71,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="444.63" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,644,578 samples, 0.01%)</title><rect x="801.0" y="129" width="0.1" height="15.0" fill="rgb(242,27,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="803.95" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib (7,305,888 samples, 0.06%)</title><rect x="641.3" y="193" width="0.7" height="15.0" fill="rgb(254,112,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="644.28" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>javascripts (9,046,788 samples, 0.07%)</title><rect x="288.6" y="209" width="0.9" height="15.0" fill="rgb(249,120,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="291.64" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (21,539,986 samples, 0.17%)</title><rect x="550.0" y="81" width="2.0" height="15.0" fill="rgb(219,226,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="553.01" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (2,992,711 samples, 0.02%)</title><rect x="1163.0" y="177" width="0.2" height="15.0" fill="rgb(233,58,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1165.96" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>flume (1,386,188 samples, 0.01%)</title><rect x="380.4" y="145" width="0.1" height="15.0" fill="rgb(228,45,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="383.42" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>2.0.5 (1,451,054 samples, 0.01%)</title><rect x="203.3" y="161" width="0.2" height="15.0" fill="rgb(229,16,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="206.34" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>coprocessor (6,847,049 samples, 0.05%)</title><rect x="1028.9" y="145" width="0.7" height="15.0" fill="rgb(228,18,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="1031.92" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rest (2,156,632 samples, 0.02%)</title><rect x="1085.2" y="145" width="0.2" height="15.0" fill="rgb(211,212,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="1088.18" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>gyp (1,409,197 samples, 0.01%)</title><rect x="528.7" y="81" width="0.2" height="15.0" fill="rgb(217,190,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="531.72" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>css-brunch (1,552,904 samples, 0.01%)</title><rect x="229.4" y="209" width="0.1" height="15.0" fill="rgb(223,194,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="232.36" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>handlers (1,777,608 samples, 0.01%)</title><rect x="364.0" y="161" width="0.1" height="15.0" fill="rgb(244,63,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="366.96" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (207,882,134 samples, 1.65%)</title><rect x="248.4" y="193" width="19.5" height="15.0" fill="rgb(226,111,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="251.42" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>karma-ember-precompiler-brunch (22,852,370 samples, 0.18%)</title><rect x="242.4" y="209" width="2.2" height="15.0" fill="rgb(229,34,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="245.45" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>wizard (13,004,775 samples, 0.10%)</title><rect x="218.2" y="177" width="1.2" height="15.0" fill="rgb(212,198,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="221.23" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (3,562,304 samples, 0.03%)</title><rect x="555.0" y="113" width="0.3" height="15.0" fill="rgb(254,65,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="558.00" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (4,645,343 samples, 0.04%)</title><rect x="289.6" y="209" width="0.4" height="15.0" fill="rgb(230,85,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="292.57" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>clientpositive (2,857,721 samples, 0.02%)</title><rect x="452.3" y="177" width="0.3" height="15.0" fill="rgb(250,16,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="455.30" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-mapreduce-client-jobclient (21,273,359 samples, 0.17%)</title><rect x="784.7" y="209" width="2.0" height="15.0" fill="rgb(216,147,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="787.73" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>flume (1,346,990 samples, 0.01%)</title><rect x="218.1" y="145" width="0.1" height="15.0" fill="rgb(211,187,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="221.09" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>mapreduce (3,306,493 samples, 0.03%)</title><rect x="779.5" y="97" width="0.3" height="15.0" fill="rgb(227,191,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="782.48" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>metrics (1,204,093 samples, 0.01%)</title><rect x="342.5" y="177" width="0.2" height="15.0" fill="rgb(238,38,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="345.55" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (25,768,861 samples, 0.20%)</title><rect x="487.2" y="225" width="2.5" height="15.0" fill="rgb(222,186,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="490.24" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sql (3,936,737 samples, 0.03%)</title><rect x="1142.1" y="113" width="0.4" height="15.0" fill="rgb(218,14,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1145.11" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tools (1,547,974 samples, 0.01%)</title><rect x="642.1" y="209" width="0.1" height="15.0" fill="rgb(208,83,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="645.08" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (2,078,603 samples, 0.02%)</title><rect x="796.0" y="161" width="0.2" height="15.0" fill="rgb(219,122,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.03" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lodash (1,696,946 samples, 0.01%)</title><rect x="576.4" y="97" width="0.1" height="15.0" fill="rgb(242,125,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="579.37" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (19,324,229 samples, 0.15%)</title><rect x="797.1" y="177" width="1.8" height="15.0" fill="rgb(247,110,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="800.06" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>share (528,209,471 samples, 4.20%)</title><rect x="594.7" y="241" width="49.5" height="15.0" fill="rgb(217,52,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="597.74" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >share</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-common (789,373,169 samples, 6.27%)</title><rect x="684.7" y="225" width="74.0" height="15.0" fill="rgb(225,186,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="687.70" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >hadoop-c..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sql (2,168,131 samples, 0.02%)</title><rect x="1145.1" y="113" width="0.2" height="15.0" fill="rgb(238,110,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="1148.06" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,806,473 samples, 0.01%)</title><rect x="796.1" y="145" width="0.1" height="15.0" fill="rgb(222,44,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.06" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib (7,768,954 samples, 0.06%)</title><rect x="625.9" y="193" width="0.7" height="15.0" fill="rgb(217,126,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="628.91" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ambari-server (259,189,498 samples, 2.06%)</title><rect x="179.4" y="241" width="24.3" height="15.0" fill="rgb(228,95,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="182.41" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >a..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,178,984 samples, 0.01%)</title><rect x="491.5" y="177" width="0.1" height="15.0" fill="rgb(248,229,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="494.53" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>codec (2,792,753 samples, 0.02%)</title><rect x="1082.5" y="145" width="0.2" height="15.0" fill="rgb(241,98,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="1085.45" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (2,593,833 samples, 0.02%)</title><rect x="684.5" y="209" width="0.2" height="15.0" fill="rgb(215,44,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="687.46" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (783,245,340 samples, 6.22%)</title><rect x="979.0" y="209" width="73.4" height="15.0" fill="rgb(250,113,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="982.01" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HDP (8,335,504 samples, 0.07%)</title><rect x="196.2" y="161" width="0.8" height="15.0" fill="rgb(233,153,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="199.17" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tiny-lr (2,820,845 samples, 0.02%)</title><rect x="564.9" y="129" width="0.2" height="15.0" fill="rgb(211,191,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.86" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (2,534,151 samples, 0.02%)</title><rect x="1108.8" y="193" width="0.2" height="15.0" fill="rgb(218,80,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1111.77" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>flume-ng-channels (11,022,792 samples, 0.09%)</title><rect x="378.8" y="241" width="1.0" height="15.0" fill="rgb(219,0,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="381.78" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lodash (1,696,946 samples, 0.01%)</title><rect x="555.2" y="97" width="0.1" height="15.0" fill="rgb(213,60,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="558.17" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ycssmin (1,741,138 samples, 0.01%)</title><rect x="282.2" y="145" width="0.1" height="15.0" fill="rgb(213,72,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.18" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-yarn-server-common (3,033,657 samples, 0.02%)</title><rect x="800.9" y="193" width="0.2" height="15.0" fill="rgb(254,185,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="803.85" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (3,838,020 samples, 0.03%)</title><rect x="780.1" y="113" width="0.4" height="15.0" fill="rgb(245,144,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="783.10" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (1,962,616 samples, 0.02%)</title><rect x="470.3" y="161" width="0.2" height="15.0" fill="rgb(217,209,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="473.33" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (50,175,567 samples, 0.40%)</title><rect x="568.5" y="113" width="4.7" height="15.0" fill="rgb(236,24,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="571.52" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib (7,305,888 samples, 0.06%)</title><rect x="643.4" y="193" width="0.7" height="15.0" fill="rgb(208,160,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="646.44" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-mapreduce-client (95,935,924 samples, 0.76%)</title><rect x="777.8" y="225" width="9.0" height="15.0" fill="rgb(254,7,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="780.80" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,084,898 samples, 0.01%)</title><rect x="485.4" y="177" width="0.1" height="15.0" fill="rgb(213,212,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="488.35" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>phantomjs (39,224,695 samples, 0.31%)</title><rect x="569.5" y="97" width="3.7" height="15.0" fill="rgb(254,206,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="572.52" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (1,745,990 samples, 0.01%)</title><rect x="402.9" y="129" width="0.1" height="15.0" fill="rgb(209,169,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="405.87" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hdfs (14,037,981 samples, 0.11%)</title><rect x="774.9" y="113" width="1.3" height="15.0" fill="rgb(229,50,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="777.88" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez-common (1,269,542 samples, 0.01%)</title><rect x="486.8" y="241" width="0.1" height="15.0" fill="rgb(240,30,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="489.77" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-openstack (4,489,951 samples, 0.04%)</title><rect x="790.3" y="225" width="0.4" height="15.0" fill="rgb(236,195,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="793.33" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (3,168,609 samples, 0.03%)</title><rect x="473.5" y="209" width="0.3" height="15.0" fill="rgb(219,43,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="476.51" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>examples (8,176,266 samples, 0.06%)</title><rect x="1134.4" y="241" width="0.7" height="15.0" fill="rgb(241,224,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="1137.36" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java-client (3,415,991 samples, 0.03%)</title><rect x="401.3" y="209" width="0.4" height="15.0" fill="rgb(253,195,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="404.33" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (1,207,292 samples, 0.01%)</title><rect x="789.1" y="193" width="0.1" height="15.0" fill="rgb(254,108,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.06" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>master (7,017,637 samples, 0.06%)</title><rect x="1031.1" y="145" width="0.6" height="15.0" fill="rgb(208,214,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="1034.05" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>server (7,609,617 samples, 0.06%)</title><rect x="194.2" y="129" width="0.7" height="15.0" fill="rgb(248,35,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="197.16" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>STORM (2,252,057 samples, 0.02%)</title><rect x="191.9" y="113" width="0.2" height="15.0" fill="rgb(254,0,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="194.91" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (1,821,784 samples, 0.01%)</title><rect x="381.2" y="225" width="0.2" height="15.0" fill="rgb(238,227,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="384.19" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dist (3,452,237 samples, 0.03%)</title><rect x="547.1" y="81" width="0.4" height="15.0" fill="rgb(231,184,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="550.14" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>wal (1,443,227 samples, 0.01%)</title><rect x="956.6" y="129" width="0.1" height="15.0" fill="rgb(252,13,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="959.59" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dag (2,502,270 samples, 0.02%)</title><rect x="1165.7" y="129" width="0.2" height="15.0" fill="rgb(205,6,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.68" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (9,294,036 samples, 0.07%)</title><rect x="797.9" y="113" width="0.8" height="15.0" fill="rgb(209,90,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="800.86" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib-examples (1,256,297 samples, 0.01%)</title><rect x="644.1" y="193" width="0.1" height="15.0" fill="rgb(243,3,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="647.12" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (3,558,912 samples, 0.03%)</title><rect x="790.9" y="193" width="0.3" height="15.0" fill="rgb(236,124,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="793.90" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>grunt (6,298,147 samples, 0.05%)</title><rect x="554.1" y="161" width="0.5" height="15.0" fill="rgb(231,118,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="557.05" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (11,093,509 samples, 0.09%)</title><rect x="1141.4" y="193" width="1.1" height="15.0" fill="rgb(208,100,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="1144.44" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,358,353 samples, 0.01%)</title><rect x="1123.4" y="161" width="0.2" height="15.0" fill="rgb(251,2,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1126.45" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>class-use (1,441,764 samples, 0.01%)</title><rect x="956.4" y="129" width="0.1" height="15.0" fill="rgb(247,49,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="959.37" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (7,569,975 samples, 0.06%)</title><rect x="492.1" y="193" width="0.7" height="15.0" fill="rgb(212,63,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.11" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (38,745,205 samples, 0.31%)</title><rect x="1147.4" y="193" width="3.7" height="15.0" fill="rgb(224,120,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1150.44" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,104,172 samples, 0.01%)</title><rect x="1184.1" y="177" width="0.1" height="15.0" fill="rgb(253,124,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="1187.08" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (1,081,638 samples, 0.01%)</title><rect x="1186.0" y="209" width="0.1" height="15.0" fill="rgb(217,155,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.02" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (1,219,730 samples, 0.01%)</title><rect x="242.1" y="65" width="0.1" height="15.0" fill="rgb(206,19,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="245.13" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>javascripts (2,316,947 samples, 0.02%)</title><rect x="289.8" y="193" width="0.2" height="15.0" fill="rgb(234,102,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="292.79" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>beelinepositive (12,192,724 samples, 0.10%)</title><rect x="459.2" y="177" width="1.1" height="15.0" fill="rgb(214,9,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="462.17" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>generated (8,253,572 samples, 0.07%)</title><rect x="1048.7" y="129" width="0.8" height="15.0" fill="rgb(252,68,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="1051.71" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>clientpositive (82,672,271 samples, 0.66%)</title><rect x="460.4" y="177" width="7.7" height="15.0" fill="rgb(218,82,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="463.37" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>http-signature (1,274,391 samples, 0.01%)</title><rect x="231.2" y="113" width="0.2" height="15.0" fill="rgb(213,146,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="234.25" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (1,780,518 samples, 0.01%)</title><rect x="800.5" y="97" width="0.2" height="15.0" fill="rgb(228,49,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="803.49" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (2,692,967 samples, 0.02%)</title><rect x="792.4" y="209" width="0.2" height="15.0" fill="rgb(235,72,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="795.38" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (5,022,358 samples, 0.04%)</title><rect x="484.8" y="209" width="0.5" height="15.0" fill="rgb(227,89,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="487.84" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>esprima (1,952,089 samples, 0.02%)</title><rect x="240.9" y="145" width="0.1" height="15.0" fill="rgb(227,50,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="243.86" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez (3,336,360 samples, 0.03%)</title><rect x="1165.6" y="145" width="0.3" height="15.0" fill="rgb(228,23,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.60" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (5,504,836 samples, 0.04%)</title><rect x="230.9" y="129" width="0.5" height="15.0" fill="rgb(239,136,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="233.92" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>golden (3,424,080 samples, 0.03%)</title><rect x="1149.4" y="161" width="0.4" height="15.0" fill="rgb(212,57,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1152.44" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>gen (81,890,365 samples, 0.65%)</title><rect x="406.8" y="209" width="7.6" height="15.0" fill="rgb(250,71,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="409.76" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (5,248,479 samples, 0.04%)</title><rect x="1132.7" y="161" width="0.5" height="15.0" fill="rgb(210,173,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="1135.69" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,990,186 samples, 0.02%)</title><rect x="784.2" y="145" width="0.2" height="15.0" fill="rgb(219,108,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="787.22" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (2,659,596 samples, 0.02%)</title><rect x="1121.9" y="225" width="0.2" height="15.0" fill="rgb(210,223,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1124.87" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,571,095 samples, 0.01%)</title><rect x="1123.4" y="177" width="0.2" height="15.0" fill="rgb(249,113,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="1126.43" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (2,605,148 samples, 0.02%)</title><rect x="784.2" y="177" width="0.2" height="15.0" fill="rgb(246,169,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="787.16" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>decompress-zip (1,811,559 samples, 0.01%)</title><rect x="543.4" y="129" width="0.2" height="15.0" fill="rgb(210,197,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="546.44" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez-0.4.0-incubating (16,789,623 samples, 0.13%)</title><rect x="1179.8" y="193" width="1.5" height="15.0" fill="rgb(219,23,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="1182.76" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,171,981 samples, 0.01%)</title><rect x="1138.9" y="161" width="0.1" height="15.0" fill="rgb(245,161,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1141.87" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>services (2,863,885 samples, 0.02%)</title><rect x="200.3" y="145" width="0.2" height="15.0" fill="rgb(252,74,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="203.27" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>io (1,403,538 samples, 0.01%)</title><rect x="433.1" y="81" width="0.2" height="15.0" fill="rgb(241,63,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="436.13" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (7,418,483 samples, 0.06%)</title><rect x="801.6" y="145" width="0.7" height="15.0" fill="rgb(252,74,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="804.60" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tomcat (116,488,376 samples, 0.93%)</title><rect x="629.1" y="193" width="11.0" height="15.0" fill="rgb(233,84,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="632.14" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core (17,790,403 samples, 0.14%)</title><rect x="1109.2" y="241" width="1.6" height="15.0" fill="rgb(245,17,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="1112.17" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>resources (1,196,401 samples, 0.01%)</title><rect x="292.7" y="161" width="0.1" height="15.0" fill="rgb(245,19,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="295.68" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ambari (10,463,037 samples, 0.08%)</title><rect x="193.9" y="145" width="1.0" height="15.0" fill="rgb(213,101,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="196.90" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lodash (1,258,580 samples, 0.01%)</title><rect x="573.2" y="129" width="0.1" height="15.0" fill="rgb(250,151,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="576.22" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rx (9,587,788 samples, 0.08%)</title><rect x="551.1" y="65" width="0.9" height="15.0" fill="rgb(224,142,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="554.13" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>spark-1.6.0 (308,426,790 samples, 2.45%)</title><rect x="1123.6" y="257" width="28.9" height="15.0" fill="rgb(232,3,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="1126.60" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sp..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>docs (3,553,982 samples, 0.03%)</title><rect x="1121.8" y="241" width="0.3" height="15.0" fill="rgb(220,14,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="1124.79" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>spark (6,326,872 samples, 0.05%)</title><rect x="1137.4" y="145" width="0.5" height="15.0" fill="rgb(226,2,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="1140.35" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>yarn (9,177,624 samples, 0.07%)</title><rect x="805.0" y="81" width="0.8" height="15.0" fill="rgb(234,107,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="807.98" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (2,014,485 samples, 0.02%)</title><rect x="282.5" y="193" width="0.2" height="15.0" fill="rgb(242,127,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.49" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>javadoc (435,029,503 samples, 3.46%)</title><rect x="306.8" y="241" width="40.8" height="15.0" fill="rgb(234,186,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="309.79" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >jav..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>es5-ext (1,547,649 samples, 0.01%)</title><rect x="546.4" y="65" width="0.1" height="15.0" fill="rgb(208,69,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="549.37" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>v2 (2,435,683 samples, 0.02%)</title><rect x="779.6" y="81" width="0.2" height="15.0" fill="rgb(216,85,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="782.56" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (2,337,207 samples, 0.02%)</title><rect x="282.1" y="161" width="0.2" height="15.0" fill="rgb(233,26,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.13" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>controller (2,344,480 samples, 0.02%)</title><rect x="187.7" y="113" width="0.2" height="15.0" fill="rgb(251,85,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="190.73" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>kafka-0.9.0.0-src (52,735,610 samples, 0.42%)</title><rect x="1106.1" y="257" width="5.0" height="15.0" fill="rgb(215,118,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1109.14" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>request (1,880,568 samples, 0.01%)</title><rect x="552.3" y="129" width="0.2" height="15.0" fill="rgb(252,218,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="555.33" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (2,536,861 samples, 0.02%)</title><rect x="237.9" y="97" width="0.2" height="15.0" fill="rgb(217,202,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="240.87" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (8,573,610 samples, 0.07%)</title><rect x="754.8" y="177" width="0.8" height="15.0" fill="rgb(210,27,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="757.80" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>vector (1,496,270 samples, 0.01%)</title><rect x="451.6" y="97" width="0.1" height="15.0" fill="rgb(241,205,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="454.56" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (2,542,157 samples, 0.02%)</title><rect x="1163.0" y="161" width="0.2" height="15.0" fill="rgb(232,110,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="1166.01" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>class-use (1,134,123 samples, 0.01%)</title><rect x="1052.0" y="129" width="0.1" height="15.0" fill="rgb(244,119,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="1055.03" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,203,134 samples, 0.01%)</title><rect x="474.6" y="145" width="0.1" height="15.0" fill="rgb(211,146,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="477.59" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sharelib (3,687,536 samples, 0.03%)</title><rect x="1122.3" y="241" width="0.3" height="15.0" fill="rgb(250,193,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1125.28" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (13,126,125 samples, 0.10%)</title><rect x="1120.5" y="161" width="1.2" height="15.0" fill="rgb(234,64,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="1123.50" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ember-precompiler-brunch (19,989,954 samples, 0.16%)</title><rect x="229.6" y="209" width="1.8" height="15.0" fill="rgb(209,79,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="232.57" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Release (2,453,467 samples, 0.02%)</title><rect x="755.9" y="177" width="0.2" height="15.0" fill="rgb(235,135,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="758.88" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ambari-client (1,528,295 samples, 0.01%)</title><rect x="178.4" y="241" width="0.1" height="15.0" fill="rgb(237,38,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="181.36" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,407,029 samples, 0.01%)</title><rect x="491.5" y="193" width="0.1" height="15.0" fill="rgb(232,70,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="494.51" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (9,402,461 samples, 0.07%)</title><rect x="271.3" y="129" width="0.9" height="15.0" fill="rgb(230,187,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="274.28" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (3,289,674 samples, 0.03%)</title><rect x="380.5" y="209" width="0.4" height="15.0" fill="rgb(253,218,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="383.55" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,113,260 samples, 0.01%)</title><rect x="295.3" y="161" width="0.1" height="15.0" fill="rgb(253,81,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="298.25" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (1,903,656 samples, 0.02%)</title><rect x="400.0" y="209" width="0.2" height="15.0" fill="rgb(209,154,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="403.02" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez (9,792,998 samples, 0.08%)</title><rect x="1164.4" y="161" width="0.9" height="15.0" fill="rgb(243,19,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1167.37" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,840,847 samples, 0.01%)</title><rect x="1152.0" y="177" width="0.1" height="15.0" fill="rgb(207,3,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="1154.95" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>resources (26,428,767 samples, 0.21%)</title><rect x="1148.3" y="177" width="2.5" height="15.0" fill="rgb(252,171,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="1151.30" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (8,353,442 samples, 0.07%)</title><rect x="785.9" y="129" width="0.8" height="15.0" fill="rgb(243,82,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="788.93" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>flume (2,546,756 samples, 0.02%)</title><rect x="363.9" y="177" width="0.2" height="15.0" fill="rgb(212,56,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="366.89" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>cloudera (3,315,904 samples, 0.03%)</title><rect x="363.8" y="193" width="0.3" height="15.0" fill="rgb(245,122,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="366.82" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,698,383 samples, 0.01%)</title><rect x="790.5" y="161" width="0.1" height="15.0" fill="rgb(250,170,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="793.47" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (5,403,002 samples, 0.04%)</title><rect x="1122.8" y="225" width="0.5" height="15.0" fill="rgb(219,214,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="1125.82" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>kinesis-asl (1,204,065 samples, 0.01%)</title><rect x="1135.5" y="225" width="0.1" height="15.0" fill="rgb(254,116,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1138.53" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (14,322,261 samples, 0.11%)</title><rect x="731.7" y="129" width="1.3" height="15.0" fill="rgb(226,177,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="734.65" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dist (1,154,715 samples, 0.01%)</title><rect x="544.6" y="113" width="0.1" height="15.0" fill="rgb(224,46,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="547.61" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>util (6,040,685 samples, 0.05%)</title><rect x="963.6" y="145" width="0.6" height="15.0" fill="rgb(243,110,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="966.59" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (158,202,517 samples, 1.26%)</title><rect x="539.1" y="145" width="14.9" height="15.0" fill="rgb(244,211,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="542.14" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (1,185,172 samples, 0.01%)</title><rect x="684.5" y="193" width="0.1" height="15.0" fill="rgb(238,3,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="687.49" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (6,004,509 samples, 0.05%)</title><rect x="1162.3" y="161" width="0.6" height="15.0" fill="rgb(249,68,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1165.31" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez-api (24,208,352 samples, 0.19%)</title><rect x="484.5" y="241" width="2.3" height="15.0" fill="rgb(223,166,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="487.50" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>classes (1,608,936 samples, 0.01%)</title><rect x="1184.0" y="209" width="0.2" height="15.0" fill="rgb(235,180,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="1187.03" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (5,356,595 samples, 0.04%)</title><rect x="1184.5" y="209" width="0.5" height="15.0" fill="rgb(226,173,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="1187.49" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,201,563 samples, 0.01%)</title><rect x="789.5" y="161" width="0.1" height="15.0" fill="rgb(224,124,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.54" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>deploy (5,307,102 samples, 0.04%)</title><rect x="287.8" y="177" width="0.4" height="15.0" fill="rgb(241,177,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="290.75" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (2,459,918 samples, 0.02%)</title><rect x="470.3" y="177" width="0.2" height="15.0" fill="rgb(205,107,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="473.28" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (4,751,713 samples, 0.04%)</title><rect x="178.8" y="209" width="0.4" height="15.0" fill="rgb(225,191,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="181.80" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (9,207,826 samples, 0.07%)</title><rect x="382.9" y="193" width="0.8" height="15.0" fill="rgb(225,149,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="385.86" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,456,448 samples, 0.01%)</title><rect x="763.7" y="177" width="0.1" height="15.0" fill="rgb(209,130,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="766.67" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (57,705,307 samples, 0.46%)</title><rect x="1116.3" y="225" width="5.5" height="15.0" fill="rgb(213,68,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="1119.35" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (26,425,367 samples, 0.21%)</title><rect x="752.2" y="161" width="2.5" height="15.0" fill="rgb(231,221,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="755.18" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (5,786,201 samples, 0.05%)</title><rect x="795.2" y="193" width="0.5" height="15.0" fill="rgb(251,113,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="798.17" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib (39,707,536 samples, 0.32%)</title><rect x="347.6" y="241" width="3.7" height="15.0" fill="rgb(208,169,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="350.57" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>services (4,259,240 samples, 0.03%)</title><rect x="287.0" y="193" width="0.4" height="15.0" fill="rgb(214,160,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="289.97" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>service (5,285,583 samples, 0.04%)</title><rect x="472.9" y="113" width="0.5" height="15.0" fill="rgb(232,151,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="475.92" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,580,659 samples, 0.01%)</title><rect x="1108.2" y="161" width="0.1" height="15.0" fill="rgb(216,174,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="1111.16" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (11,579,500 samples, 0.09%)</title><rect x="746.0" y="145" width="1.1" height="15.0" fill="rgb(210,164,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="749.02" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (1,219,730 samples, 0.01%)</title><rect x="576.6" y="81" width="0.1" height="15.0" fill="rgb(219,93,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="579.58" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (9,014,880 samples, 0.07%)</title><rect x="1181.6" y="225" width="0.9" height="15.0" fill="rgb(211,68,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="1184.64" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (15,666,542 samples, 0.12%)</title><rect x="785.3" y="177" width="1.4" height="15.0" fill="rgb(245,190,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="788.25" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (11,353,400 samples, 0.09%)</title><rect x="797.7" y="129" width="1.0" height="15.0" fill="rgb(241,170,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="800.67" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hcatalog-pig-adapter (2,147,553 samples, 0.02%)</title><rect x="400.0" y="225" width="0.2" height="15.0" fill="rgb(247,21,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="403.00" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (31,199,019 samples, 0.25%)</title><rect x="730.1" y="177" width="2.9" height="15.0" fill="rgb(218,60,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="733.07" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>data (24,826,467 samples, 0.20%)</title><rect x="286.3" y="209" width="2.3" height="15.0" fill="rgb(230,212,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="289.27" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (1,305,731 samples, 0.01%)</title><rect x="736.7" y="113" width="0.1" height="15.0" fill="rgb(235,71,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="739.67" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>findup-sync (4,774,350 samples, 0.04%)</title><rect x="554.9" y="129" width="0.4" height="15.0" fill="rgb(231,76,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="557.88" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sigar-bin (6,907,990 samples, 0.05%)</title><rect x="350.6" y="225" width="0.7" height="15.0" fill="rgb(214,117,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="353.64" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>site (1,996,848 samples, 0.02%)</title><rect x="771.6" y="193" width="0.1" height="15.0" fill="rgb(227,87,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="774.56" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (3,912,201 samples, 0.03%)</title><rect x="492.8" y="209" width="0.4" height="15.0" fill="rgb(242,133,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.82" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>jsdom (16,854,344 samples, 0.13%)</title><rect x="243.0" y="177" width="1.6" height="15.0" fill="rgb(218,65,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="246.01" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (7,918,507 samples, 0.06%)</title><rect x="487.9" y="161" width="0.8" height="15.0" fill="rgb(231,133,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="490.92" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>spark (5,241,138 samples, 0.04%)</title><rect x="1142.0" y="129" width="0.5" height="15.0" fill="rgb(235,195,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="1144.99" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>resourcemanager (4,933,132 samples, 0.04%)</title><rect x="805.4" y="49" width="0.4" height="15.0" fill="rgb(253,50,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="808.38" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>webhcat (8,196,309 samples, 0.07%)</title><rect x="401.3" y="225" width="0.7" height="15.0" fill="rgb(242,139,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="404.26" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez (3,049,983 samples, 0.02%)</title><rect x="1184.7" y="145" width="0.3" height="15.0" fill="rgb(205,7,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="1187.70" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>server (7,555,928 samples, 0.06%)</title><rect x="807.2" y="65" width="0.7" height="15.0" fill="rgb(221,177,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="810.22" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>io (2,628,593 samples, 0.02%)</title><rect x="1067.0" y="145" width="0.2" height="15.0" fill="rgb(250,228,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="1069.97" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>karma (22,550,070 samples, 0.18%)</title><rect x="231.7" y="209" width="2.2" height="15.0" fill="rgb(254,52,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="234.74" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (3,645,019 samples, 0.03%)</title><rect x="397.1" y="193" width="0.4" height="15.0" fill="rgb(232,84,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="400.11" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>deploy (5,307,102 samples, 0.04%)</title><rect x="218.6" y="161" width="0.5" height="15.0" fill="rgb(244,120,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="221.61" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>2.0.6 (5,439,937 samples, 0.04%)</title><rect x="191.1" y="145" width="0.5" height="15.0" fill="rgb(239,154,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="194.11" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>classes (16,924,405 samples, 0.13%)</title><rect x="1163.7" y="209" width="1.6" height="15.0" fill="rgb(253,207,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="1166.70" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>karma-coverage (91,606,401 samples, 0.73%)</title><rect x="233.9" y="209" width="8.5" height="15.0" fill="rgb(209,174,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="236.86" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>karma (146,520,276 samples, 1.16%)</title><rect x="267.9" y="209" width="13.7" height="15.0" fill="rgb(252,30,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="270.90" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>grunt-legacy-log (6,661,855 samples, 0.05%)</title><rect x="576.1" y="129" width="0.6" height="15.0" fill="rgb(239,0,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="579.08" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (2,184,266 samples, 0.02%)</title><rect x="1150.9" y="145" width="0.2" height="15.0" fill="rgb(247,70,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1153.87" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-sls (11,691,057 samples, 0.09%)</title><rect x="791.2" y="225" width="1.1" height="15.0" fill="rgb(223,6,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.25" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>flume-ng-sinks (25,242,546 samples, 0.20%)</title><rect x="381.4" y="241" width="2.3" height="15.0" fill="rgb(251,139,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="384.36" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (6,907,761 samples, 0.05%)</title><rect x="241.8" y="129" width="0.6" height="15.0" fill="rgb(223,51,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="244.75" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>contrib (19,594,363 samples, 0.16%)</title><rect x="1187.6" y="241" width="1.8" height="15.0" fill="rgb(222,54,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="1190.57" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (4,887,863 samples, 0.04%)</title><rect x="562.5" y="81" width="0.5" height="15.0" fill="rgb(247,133,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="565.53" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (9,545,216 samples, 0.08%)</title><rect x="791.5" y="209" width="0.8" height="15.0" fill="rgb(240,13,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.45" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>server (8,823,074 samples, 0.07%)</title><rect x="770.3" y="97" width="0.9" height="15.0" fill="rgb(251,145,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="773.35" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (1,511,874 samples, 0.01%)</title><rect x="1152.3" y="209" width="0.2" height="15.0" fill="rgb(210,56,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="1155.31" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>example (2,532,526 samples, 0.02%)</title><rect x="1029.3" y="129" width="0.3" height="15.0" fill="rgb(215,168,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="1032.33" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (4,251,996 samples, 0.03%)</title><rect x="294.1" y="193" width="0.4" height="15.0" fill="rgb(224,87,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="297.14" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>common (1,175,108 samples, 0.01%)</title><rect x="1185.6" y="113" width="0.1" height="15.0" fill="rgb(219,169,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="1188.61" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (40,526,659 samples, 0.32%)</title><rect x="548.4" y="113" width="3.8" height="15.0" fill="rgb(233,213,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="551.36" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sstable (5,816,090 samples, 0.05%)</title><rect x="341.7" y="161" width="0.5" height="15.0" fill="rgb(210,158,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="344.66" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (2,908,640 samples, 0.02%)</title><rect x="577.6" y="145" width="0.3" height="15.0" fill="rgb(210,1,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="580.61" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>resources (1,792,746 samples, 0.01%)</title><rect x="295.4" y="161" width="0.1" height="15.0" fill="rgb(225,190,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="298.36" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez (2,115,073 samples, 0.02%)</title><rect x="493.0" y="145" width="0.2" height="15.0" fill="rgb(208,136,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.99" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>gen-java (5,614,152 samples, 0.04%)</title><rect x="432.7" y="177" width="0.6" height="15.0" fill="rgb(215,40,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="435.74" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>resourcemanager (5,113,677 samples, 0.04%)</title><rect x="807.4" y="49" width="0.5" height="15.0" fill="rgb(219,16,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="810.45" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (3,375,405 samples, 0.03%)</title><rect x="474.5" y="209" width="0.3" height="15.0" fill="rgb(213,208,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="477.47" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (4,912,383 samples, 0.04%)</title><rect x="432.8" y="161" width="0.5" height="15.0" fill="rgb(230,229,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="435.80" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (5,920,163 samples, 0.05%)</title><rect x="552.5" y="113" width="0.6" height="15.0" fill="rgb(230,105,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="555.51" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>io (7,690,621 samples, 0.06%)</title><rect x="942.0" y="145" width="0.8" height="15.0" fill="rgb(240,18,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="945.04" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (1,586,340 samples, 0.01%)</title><rect x="403.2" y="193" width="0.1" height="15.0" fill="rgb(205,160,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="406.16" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dist (1,744,847 samples, 0.01%)</title><rect x="544.4" y="81" width="0.1" height="15.0" fill="rgb(206,33,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="547.35" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (24,928,878 samples, 0.20%)</title><rect x="768.9" y="129" width="2.4" height="15.0" fill="rgb(237,171,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="771.94" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>serde2 (3,976,683 samples, 0.03%)</title><rect x="469.8" y="129" width="0.4" height="15.0" fill="rgb(244,66,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="472.81" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>services (2,863,885 samples, 0.02%)</title><rect x="190.3" y="129" width="0.2" height="15.0" fill="rgb(238,113,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="193.28" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (1,204,065 samples, 0.01%)</title><rect x="1135.5" y="209" width="0.1" height="15.0" fill="rgb(228,91,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="1138.53" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (7,849,940 samples, 0.06%)</title><rect x="1141.7" y="161" width="0.8" height="15.0" fill="rgb(229,169,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="1144.74" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Rules (1,245,074 samples, 0.01%)</title><rect x="293.5" y="161" width="0.1" height="15.0" fill="rgb(208,143,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="296.53" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>1.3.2 (3,053,217 samples, 0.02%)</title><rect x="190.3" y="145" width="0.2" height="15.0" fill="rgb(207,165,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="193.26" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>resources (16,728,897 samples, 0.13%)</title><rect x="195.4" y="193" width="1.6" height="15.0" fill="rgb(207,217,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="198.38" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (19,252,790 samples, 0.15%)</title><rect x="801.3" y="177" width="1.8" height="15.0" fill="rgb(243,1,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="804.32" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>service (1,198,413 samples, 0.01%)</title><rect x="473.7" y="145" width="0.1" height="15.0" fill="rgb(206,171,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="476.69" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>socket.io-client (60,645,831 samples, 0.48%)</title><rect x="275.3" y="145" width="5.6" height="15.0" fill="rgb(224,149,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="278.25" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (4,181,636 samples, 0.03%)</title><rect x="563.7" y="145" width="0.4" height="15.0" fill="rgb(237,205,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="566.72" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (4,582,936 samples, 0.04%)</title><rect x="787.3" y="145" width="0.4" height="15.0" fill="rgb(253,28,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="790.28" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (1,328,788 samples, 0.01%)</title><rect x="799.0" y="113" width="0.1" height="15.0" fill="rgb(232,143,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="802.02" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (1,735,443 samples, 0.01%)</title><rect x="789.5" y="193" width="0.2" height="15.0" fill="rgb(230,103,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.49" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (27,691,601 samples, 0.22%)</title><rect x="574.9" y="145" width="2.6" height="15.0" fill="rgb(206,55,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="577.90" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>devapidocs (937,533,336 samples, 7.45%)</title><rect x="964.6" y="225" width="87.8" height="15.0" fill="rgb(237,177,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.55" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >devapidocs</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (1,217,045 samples, 0.01%)</title><rect x="1188.4" y="209" width="0.1" height="15.0" fill="rgb(251,39,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.40" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (2,906,031 samples, 0.02%)</title><rect x="1183.4" y="193" width="0.2" height="15.0" fill="rgb(221,197,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="1186.38" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>documentation (1,198,652 samples, 0.01%)</title><rect x="767.0" y="145" width="0.1" height="15.0" fill="rgb(209,77,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="769.96" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>iconv-lite (1,819,129 samples, 0.01%)</title><rect x="576.7" y="129" width="0.2" height="15.0" fill="rgb(238,216,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="579.71" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>data (1,799,716 samples, 0.01%)</title><rect x="1133.2" y="241" width="0.2" height="15.0" fill="rgb(222,7,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="1136.18" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (25,567,905 samples, 0.20%)</title><rect x="730.6" y="161" width="2.4" height="15.0" fill="rgb(238,45,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="733.60" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (38,640,374 samples, 0.31%)</title><rect x="772.6" y="177" width="3.6" height="15.0" fill="rgb(219,18,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="775.58" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>proto (2,925,963 samples, 0.02%)</title><rect x="370.3" y="129" width="0.2" height="15.0" fill="rgb(240,47,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="373.25" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (18,248,854 samples, 0.14%)</title><rect x="745.4" y="177" width="1.7" height="15.0" fill="rgb(247,75,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="748.39" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (17,350,444 samples, 0.14%)</title><rect x="1141.3" y="209" width="1.6" height="15.0" fill="rgb(231,124,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="1144.26" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>exec (2,659,859 samples, 0.02%)</title><rect x="451.4" y="113" width="0.3" height="15.0" fill="rgb(251,140,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="454.45" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (5,371,318 samples, 0.04%)</title><rect x="780.5" y="193" width="0.5" height="15.0" fill="rgb(219,6,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="783.51" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (1,178,630 samples, 0.01%)</title><rect x="790.0" y="129" width="0.2" height="15.0" fill="rgb(221,89,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="793.04" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala (9,154,341 samples, 0.07%)</title><rect x="1141.6" y="177" width="0.9" height="15.0" fill="rgb(252,72,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="1144.62" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>mocha (3,168,883 samples, 0.03%)</title><rect x="282.4" y="209" width="0.3" height="15.0" fill="rgb(230,108,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.38" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-distcp (4,115,603 samples, 0.03%)</title><rect x="789.3" y="225" width="0.4" height="15.0" fill="rgb(229,140,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.26" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>queries (6,174,302 samples, 0.05%)</title><rect x="452.0" y="193" width="0.6" height="15.0" fill="rgb(207,121,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="454.99" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hdfs (26,913,334 samples, 0.21%)</title><rect x="624.1" y="209" width="2.5" height="15.0" fill="rgb(246,45,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="627.12" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>phantom (77,600,203 samples, 0.62%)</title><rect x="259.7" y="145" width="7.3" height="15.0" fill="rgb(226,171,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="262.70" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,792,464 samples, 0.01%)</title><rect x="1134.7" y="193" width="0.1" height="15.0" fill="rgb(249,166,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1137.65" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>stacks (34,792,067 samples, 0.28%)</title><rect x="198.9" y="193" width="3.2" height="15.0" fill="rgb(251,203,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="201.86" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ambari-views (2,548,924 samples, 0.02%)</title><rect x="203.7" y="241" width="0.2" height="15.0" fill="rgb(228,78,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="206.70" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (2,734,890 samples, 0.02%)</title><rect x="780.7" y="129" width="0.2" height="15.0" fill="rgb(219,42,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="783.69" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>target (123,568,335 samples, 0.98%)</title><rect x="747.1" y="209" width="11.6" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="750.11" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>request (1,938,306 samples, 0.02%)</title><rect x="542.1" y="97" width="0.2" height="15.0" fill="rgb(254,165,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="545.12" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>stack (3,616,284 samples, 0.03%)</title><rect x="219.1" y="161" width="0.3" height="15.0" fill="rgb(239,153,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="222.10" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez-0.4.0-incubating (359,751,182 samples, 2.86%)</title><rect x="1152.5" y="257" width="33.7" height="15.0" fill="rgb(207,83,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="1155.51" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >te..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,394,222 samples, 0.01%)</title><rect x="398.6" y="209" width="0.1" height="15.0" fill="rgb(254,174,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="401.62" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (2,283,595 samples, 0.02%)</title><rect x="401.8" y="161" width="0.2" height="15.0" fill="rgb(220,6,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="404.77" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (4,695,960 samples, 0.04%)</title><rect x="1129.8" y="161" width="0.5" height="15.0" fill="rgb(252,169,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1132.81" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (2,196,342 samples, 0.02%)</title><rect x="1108.8" y="177" width="0.2" height="15.0" fill="rgb(213,207,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="1111.80" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (2,793,041 samples, 0.02%)</title><rect x="1182.9" y="193" width="0.3" height="15.0" fill="rgb(228,163,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="1185.90" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>addons (1,863,444 samples, 0.01%)</title><rect x="291.4" y="225" width="0.2" height="15.0" fill="rgb(235,81,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="294.43" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (4,418,988 samples, 0.04%)</title><rect x="294.7" y="193" width="0.4" height="15.0" fill="rgb(242,94,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="297.71" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (32,614,666 samples, 0.26%)</title><rect x="773.1" y="161" width="3.1" height="15.0" fill="rgb(235,4,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="776.15" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (17,666,608 samples, 0.14%)</title><rect x="804.2" y="145" width="1.6" height="15.0" fill="rgb(245,204,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="807.19" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>vendor (6,625,200 samples, 0.05%)</title><rect x="276.6" y="113" width="0.6" height="15.0" fill="rgb(226,120,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="279.60" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (1,633,292 samples, 0.01%)</title><rect x="1183.8" y="225" width="0.2" height="15.0" fill="rgb(216,217,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="1186.83" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>mapred (1,739,684 samples, 0.01%)</title><rect x="783.1" y="97" width="0.2" height="15.0" fill="rgb(239,180,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="786.13" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,722,762 samples, 0.01%)</title><rect x="1182.6" y="177" width="0.2" height="15.0" fill="rgb(215,47,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="1185.63" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (8,025,386 samples, 0.06%)</title><rect x="178.6" y="225" width="0.8" height="15.0" fill="rgb(236,158,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="181.65" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hawk (1,306,196 samples, 0.01%)</title><rect x="542.6" y="65" width="0.2" height="15.0" fill="rgb(239,8,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="545.65" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (1,109,137 samples, 0.01%)</title><rect x="800.7" y="97" width="0.2" height="15.0" fill="rgb(252,205,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="803.75" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (4,528,528 samples, 0.04%)</title><rect x="1182.8" y="225" width="0.4" height="15.0" fill="rgb(209,91,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="1185.80" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>docs (1,100,611 samples, 0.01%)</title><rect x="1110.8" y="241" width="0.1" height="15.0" fill="rgb(242,127,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="1113.84" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>streaming (2,745,465 samples, 0.02%)</title><rect x="343.6" y="177" width="0.2" height="15.0" fill="rgb(239,113,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="346.57" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (22,225,394 samples, 0.18%)</title><rect x="805.8" y="161" width="2.1" height="15.0" fill="rgb(242,37,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="808.84" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hawk (1,306,196 samples, 0.01%)</title><rect x="562.7" y="65" width="0.2" height="15.0" fill="rgb(252,109,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="565.73" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez-runtime-internals (5,086,024 samples, 0.04%)</title><rect x="1183.8" y="241" width="0.4" height="15.0" fill="rgb(251,214,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1186.76" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (10,708,906 samples, 0.09%)</title><rect x="785.7" y="145" width="1.0" height="15.0" fill="rgb(235,194,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="788.71" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>encode (1,471,449 samples, 0.01%)</title><rect x="940.9" y="113" width="0.1" height="15.0" fill="rgb(248,183,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="943.89" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>regionserver (10,483,918 samples, 0.08%)</title><rect x="1043.7" y="145" width="1.0" height="15.0" fill="rgb(208,162,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="1046.71" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala (5,693,398 samples, 0.05%)</title><rect x="1109.9" y="193" width="0.5" height="15.0" fill="rgb(216,0,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="1112.87" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>library (1,082,747 samples, 0.01%)</title><rect x="493.1" y="113" width="0.1" height="15.0" fill="rgb(243,85,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="496.08" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (1,179,104 samples, 0.01%)</title><rect x="801.0" y="97" width="0.1" height="15.0" fill="rgb(222,184,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="804.00" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dag (4,402,860 samples, 0.03%)</title><rect x="1160.6" y="129" width="0.4" height="15.0" fill="rgb(210,176,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="1163.61" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bin (5,086,497 samples, 0.04%)</title><rect x="750.3" y="193" width="0.5" height="15.0" fill="rgb(235,172,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="753.34" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ambari-1.6.0 (1,431,225,904 samples, 11.37%)</title><rect x="161.4" y="257" width="134.2" height="15.0" fill="rgb(237,219,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="164.44" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ambari-1.6.0</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (2,291,696 samples, 0.02%)</title><rect x="780.7" y="113" width="0.2" height="15.0" fill="rgb(212,154,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="783.73" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (10,848,401 samples, 0.09%)</title><rect x="237.5" y="129" width="1.1" height="15.0" fill="rgb(206,129,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="240.54" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hawk (1,234,383 samples, 0.01%)</title><rect x="244.3" y="113" width="0.1" height="15.0" fill="rgb(221,56,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="247.28" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>request (5,923,131 samples, 0.05%)</title><rect x="552.5" y="129" width="0.6" height="15.0" fill="rgb(229,33,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="555.51" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (4,913,902 samples, 0.04%)</title><rect x="529.2" y="113" width="0.4" height="15.0" fill="rgb(206,206,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="532.16" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rest (15,552,796 samples, 0.12%)</title><rect x="956.9" y="145" width="1.4" height="15.0" fill="rgb(245,130,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="959.89" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>html (2,087,874 samples, 0.02%)</title><rect x="791.8" y="177" width="0.2" height="15.0" fill="rgb(222,54,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.81" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>optimizer (4,083,719 samples, 0.03%)</title><rect x="441.9" y="113" width="0.4" height="15.0" fill="rgb(219,158,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="444.93" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dag (4,393,114 samples, 0.03%)</title><rect x="486.3" y="129" width="0.4" height="15.0" fill="rgb(238,68,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="489.31" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>master (2,526,561 samples, 0.02%)</title><rect x="1067.3" y="145" width="0.3" height="15.0" fill="rgb(240,34,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="1070.32" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-hdfs (20,080,884 samples, 0.16%)</title><rect x="761.2" y="225" width="1.9" height="15.0" fill="rgb(240,57,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="764.19" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>js (1,275,198 samples, 0.01%)</title><rect x="1123.2" y="145" width="0.1" height="15.0" fill="rgb(218,89,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1126.21" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>flume-ng-core (9,760,958 samples, 0.08%)</title><rect x="379.9" y="241" width="1.0" height="15.0" fill="rgb(247,219,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="382.94" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (3,458,630 samples, 0.03%)</title><rect x="470.2" y="209" width="0.3" height="15.0" fill="rgb(249,129,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="473.19" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>classes (14,041,368 samples, 0.11%)</title><rect x="1158.6" y="209" width="1.3" height="15.0" fill="rgb(213,13,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="1161.60" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (1,381,313 samples, 0.01%)</title><rect x="229.1" y="161" width="0.2" height="15.0" fill="rgb(251,11,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="232.14" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (13,107,470 samples, 0.10%)</title><rect x="785.5" y="161" width="1.2" height="15.0" fill="rgb(216,104,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="788.49" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (3,618,964 samples, 0.03%)</title><rect x="789.3" y="209" width="0.4" height="15.0" fill="rgb(209,213,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.31" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>app (1,129,711 samples, 0.01%)</title><rect x="1163.1" y="113" width="0.1" height="15.0" fill="rgb(210,113,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1166.13" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (5,708,021 samples, 0.05%)</title><rect x="492.3" y="161" width="0.5" height="15.0" fill="rgb(253,148,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.28" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>catalyst (19,304,626 samples, 0.15%)</title><rect x="1141.1" y="225" width="1.8" height="15.0" fill="rgb(239,119,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="1144.08" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (114,234,427 samples, 0.91%)</title><rect x="1058.0" y="209" width="10.7" height="15.0" fill="rgb(210,48,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="1060.99" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (2,088,995 samples, 0.02%)</title><rect x="573.5" y="113" width="0.1" height="15.0" fill="rgb(228,200,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="576.45" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (24,569,721 samples, 0.20%)</title><rect x="1117.1" y="209" width="2.3" height="15.0" fill="rgb(249,127,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="1120.10" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-kms (2,422,353 samples, 0.02%)</title><rect x="758.7" y="225" width="0.2" height="15.0" fill="rgb(243,106,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="761.69" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>api (3,059,991 samples, 0.02%)</title><rect x="1160.7" y="113" width="0.3" height="15.0" fill="rgb(217,140,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="1163.74" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>service (35,454,935 samples, 0.28%)</title><rect x="470.5" y="241" width="3.3" height="15.0" fill="rgb(237,224,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="473.52" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>2.1 (3,773,490 samples, 0.03%)</title><rect x="191.8" y="145" width="0.3" height="15.0" fill="rgb(242,140,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="194.78" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (4,630,784 samples, 0.04%)</title><rect x="1110.4" y="209" width="0.4" height="15.0" fill="rgb(233,229,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="1113.40" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (8,685,539 samples, 0.07%)</title><rect x="1107.2" y="193" width="0.9" height="15.0" fill="rgb(227,182,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="1110.24" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>execution (1,101,218 samples, 0.01%)</title><rect x="1145.2" y="97" width="0.1" height="15.0" fill="rgb(221,97,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="1148.15" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (2,564,550 samples, 0.02%)</title><rect x="791.0" y="161" width="0.2" height="15.0" fill="rgb(230,109,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="793.99" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-yarn-server (91,752,961 samples, 0.73%)</title><rect x="799.5" y="209" width="8.6" height="15.0" fill="rgb(233,161,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="802.49" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala (8,676,857 samples, 0.07%)</title><rect x="1132.4" y="193" width="0.8" height="15.0" fill="rgb(252,19,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="1135.37" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>docs (2,057,705 samples, 0.02%)</title><rect x="766.9" y="177" width="0.2" height="15.0" fill="rgb(216,36,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="769.88" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hive (7,047,444 samples, 0.06%)</title><rect x="472.8" y="129" width="0.6" height="15.0" fill="rgb(246,88,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="475.75" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,920,726 samples, 0.02%)</title><rect x="763.2" y="177" width="0.2" height="15.0" fill="rgb(212,182,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="766.22" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>fixtures (2,199,055 samples, 0.02%)</title><rect x="281.4" y="145" width="0.2" height="15.0" fill="rgb(252,165,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.43" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>regionserver (5,511,256 samples, 0.04%)</title><rect x="1067.6" y="145" width="0.5" height="15.0" fill="rgb(220,165,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="1070.61" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>http (1,567,722 samples, 0.01%)</title><rect x="272.0" y="97" width="0.2" height="15.0" fill="rgb(208,84,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="275.01" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (7,664,689 samples, 0.06%)</title><rect x="787.0" y="193" width="0.7" height="15.0" fill="rgb(215,141,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="789.99" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>2.0.6 (1,333,103 samples, 0.01%)</title><rect x="195.2" y="161" width="0.1" height="15.0" fill="rgb(236,174,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="198.22" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>recovery (1,735,344 samples, 0.01%)</title><rect x="1165.1" y="129" width="0.2" height="15.0" fill="rgb(214,224,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.12" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>buster-format (8,870,740 samples, 0.07%)</title><rect x="283.1" y="177" width="0.8" height="15.0" fill="rgb(217,115,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.11" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hive (1,127,097 samples, 0.01%)</title><rect x="468.9" y="113" width="0.1" height="15.0" fill="rgb(209,85,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="471.85" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (2,034,749 samples, 0.02%)</title><rect x="796.3" y="129" width="0.2" height="15.0" fill="rgb(211,146,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.33" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>instrumentation (1,211,714 samples, 0.01%)</title><rect x="371.0" y="161" width="0.2" height="15.0" fill="rgb(215,172,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="374.04" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (1,750,413 samples, 0.01%)</title><rect x="399.8" y="193" width="0.2" height="15.0" fill="rgb(241,187,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="402.83" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (1,762,796 samples, 0.01%)</title><rect x="573.7" y="145" width="0.2" height="15.0" fill="rgb(224,144,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="576.70" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,675,333 samples, 0.01%)</title><rect x="783.8" y="145" width="0.1" height="15.0" fill="rgb(247,6,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="786.79" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (2,625,172 samples, 0.02%)</title><rect x="242.0" y="97" width="0.2" height="15.0" fill="rgb(226,88,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="245.00" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>python (4,342,843 samples, 0.03%)</title><rect x="1139.2" y="241" width="0.4" height="15.0" fill="rgb(249,27,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1142.17" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>xref-test (136,617,026 samples, 1.09%)</title><rect x="1055.9" y="225" width="12.8" height="15.0" fill="rgb(240,20,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="1058.90" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>data (6,599,619 samples, 0.05%)</title><rect x="397.8" y="241" width="0.7" height="15.0" fill="rgb(252,192,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="400.83" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (4,370,922 samples, 0.03%)</title><rect x="398.5" y="225" width="0.5" height="15.0" fill="rgb(238,190,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="401.55" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bin-vs2015-hadoop2.6.3-x64 (5,086,497 samples, 0.04%)</title><rect x="808.6" y="241" width="0.5" height="15.0" fill="rgb(231,194,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="811.62" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>less (40,531,187 samples, 0.32%)</title><rect x="559.4" y="129" width="3.8" height="15.0" fill="rgb(242,86,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="562.41" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>class-use (1,392,764 samples, 0.01%)</title><rect x="940.0" y="145" width="0.1" height="15.0" fill="rgb(239,59,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="942.97" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (1,169,727 samples, 0.01%)</title><rect x="1139.0" y="209" width="0.2" height="15.0" fill="rgb(228,218,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="1142.04" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rx (9,587,788 samples, 0.08%)</title><rect x="546.8" y="97" width="0.8" height="15.0" fill="rgb(214,215,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="549.75" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (5,610,187 samples, 0.04%)</title><rect x="787.2" y="161" width="0.5" height="15.0" fill="rgb(243,58,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="790.18" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>configstore (3,496,298 samples, 0.03%)</title><rect x="553.5" y="97" width="0.4" height="15.0" fill="rgb(233,11,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="556.54" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (3,562,304 samples, 0.03%)</title><rect x="575.7" y="113" width="0.4" height="15.0" fill="rgb(216,114,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="578.72" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>mocha (3,305,186 samples, 0.03%)</title><rect x="573.3" y="129" width="0.3" height="15.0" fill="rgb(224,176,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="576.34" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez-runtime-library (16,861,487 samples, 0.13%)</title><rect x="491.7" y="241" width="1.6" height="15.0" fill="rgb(239,187,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="494.73" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>gen-php (2,770,590 samples, 0.02%)</title><rect x="413.9" y="177" width="0.3" height="15.0" fill="rgb(205,163,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="416.91" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>api (2,437,528 samples, 0.02%)</title><rect x="798.2" y="81" width="0.3" height="15.0" fill="rgb(237,213,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="801.25" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (99,798,244 samples, 0.79%)</title><rect x="433.6" y="209" width="9.3" height="15.0" fill="rgb(230,129,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="436.58" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (5,651,590 samples, 0.04%)</title><rect x="755.1" y="145" width="0.5" height="15.0" fill="rgb(214,54,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="758.07" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>class-use (1,980,282 samples, 0.02%)</title><rect x="1049.3" y="113" width="0.2" height="15.0" fill="rgb(219,147,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="1052.30" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>security (2,019,375 samples, 0.02%)</title><rect x="754.4" y="129" width="0.2" height="15.0" fill="rgb(208,29,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="757.37" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>thrift (23,711,813 samples, 0.19%)</title><rect x="343.8" y="177" width="2.2" height="15.0" fill="rgb(249,38,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="346.82" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>AmbariPackages (2,030,337 samples, 0.02%)</title><rect x="294.3" y="177" width="0.2" height="15.0" fill="rgb(253,3,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="297.28" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>load-grunt-tasks (3,957,268 samples, 0.03%)</title><rect x="577.5" y="161" width="0.4" height="15.0" fill="rgb(212,133,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="580.51" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>class-use (1,980,282 samples, 0.02%)</title><rect x="961.3" y="113" width="0.2" height="15.0" fill="rgb(224,228,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="964.31" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>flume-hdfs-sink (1,889,444 samples, 0.02%)</title><rect x="381.8" y="225" width="0.2" height="15.0" fill="rgb(214,181,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="384.78" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (2,526,353 samples, 0.02%)</title><rect x="1138.8" y="209" width="0.2" height="15.0" fill="rgb(239,34,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="1141.79" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (2,667,823 samples, 0.02%)</title><rect x="1150.8" y="161" width="0.3" height="15.0" fill="rgb(242,180,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="1153.82" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ambari-scom-server (6,745,074 samples, 0.05%)</title><rect x="292.2" y="209" width="0.7" height="15.0" fill="rgb(212,217,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="295.23" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (2,530,666 samples, 0.02%)</title><rect x="1135.7" y="225" width="0.2" height="15.0" fill="rgb(241,164,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1138.68" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test-classes (3,334,128 samples, 0.03%)</title><rect x="1165.9" y="209" width="0.4" height="15.0" fill="rgb(231,144,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.94" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (1,113,088 samples, 0.01%)</title><rect x="789.7" y="209" width="0.1" height="15.0" fill="rgb(237,81,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.67" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,209,558 samples, 0.01%)</title><rect x="396.7" y="209" width="0.1" height="15.0" fill="rgb(225,113,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="399.70" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>thrift (1,761,861 samples, 0.01%)</title><rect x="473.2" y="81" width="0.2" height="15.0" fill="rgb(250,140,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="476.25" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (4,309,063 samples, 0.03%)</title><rect x="397.1" y="209" width="0.4" height="15.0" fill="rgb(220,102,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="400.05" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,085,235 samples, 0.01%)</title><rect x="792.4" y="177" width="0.1" height="15.0" fill="rgb(229,8,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="795.44" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (5,514,606 samples, 0.04%)</title><rect x="779.9" y="145" width="0.6" height="15.0" fill="rgb(246,11,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="782.94" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>metastore (1,385,295 samples, 0.01%)</title><rect x="414.0" y="161" width="0.2" height="15.0" fill="rgb(223,127,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="417.04" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>inquirer (27,799,669 samples, 0.22%)</title><rect x="549.4" y="97" width="2.6" height="15.0" fill="rgb(220,133,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="552.42" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,723,664 samples, 0.01%)</title><rect x="474.5" y="177" width="0.2" height="15.0" fill="rgb(227,21,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="477.54" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez-mapreduce-examples (13,944,562 samples, 0.11%)</title><rect x="1181.5" y="241" width="1.3" height="15.0" fill="rgb(218,91,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="1184.49" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (17,340,921 samples, 0.14%)</title><rect x="450.4" y="177" width="1.6" height="15.0" fill="rgb(220,33,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="453.37" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>istanbul (34,610,677 samples, 0.27%)</title><rect x="239.2" y="177" width="3.2" height="15.0" fill="rgb(216,95,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="242.18" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>common (2,858,447 samples, 0.02%)</title><rect x="1138.8" y="225" width="0.2" height="15.0" fill="rgb(231,44,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="1141.76" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>R (1,950,418 samples, 0.02%)</title><rect x="1127.4" y="241" width="0.2" height="15.0" fill="rgb(222,90,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="1130.42" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>io (5,699,168 samples, 0.05%)</title><rect x="1082.9" y="145" width="0.6" height="15.0" fill="rgb(218,148,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="1085.93" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HDP (8,335,504 samples, 0.07%)</title><rect x="202.9" y="177" width="0.8" height="15.0" fill="rgb(208,212,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="205.92" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>channel (12,897,137 samples, 0.10%)</title><rect x="369.4" y="161" width="1.2" height="15.0" fill="rgb(238,127,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="372.44" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (2,227,721 samples, 0.02%)</title><rect x="283.7" y="97" width="0.2" height="15.0" fill="rgb(238,144,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.73" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-yarn-server-applicationhistoryservice (6,740,033 samples, 0.05%)</title><rect x="800.2" y="193" width="0.7" height="15.0" fill="rgb(230,108,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="803.22" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hive (1,256,076 samples, 0.01%)</title><rect x="402.9" y="113" width="0.1" height="15.0" fill="rgb(224,150,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="405.91" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (4,676,313 samples, 0.04%)</title><rect x="780.0" y="129" width="0.5" height="15.0" fill="rgb(250,29,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="783.02" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>flume-file-channel (7,714,360 samples, 0.06%)</title><rect x="378.9" y="225" width="0.7" height="15.0" fill="rgb(225,24,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="381.89" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (9,289,125 samples, 0.07%)</title><rect x="1160.2" y="177" width="0.9" height="15.0" fill="rgb(244,213,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="1163.19" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>winutils (7,418,910 samples, 0.06%)</title><rect x="758.0" y="193" width="0.7" height="15.0" fill="rgb(240,87,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="761.00" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>target (32,056,653 samples, 0.25%)</title><rect x="1163.2" y="225" width="3.1" height="15.0" fill="rgb(224,40,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1166.25" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>target (1,161,640 samples, 0.01%)</title><rect x="1186.1" y="225" width="0.1" height="15.0" fill="rgb(220,83,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.12" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>io (1,796,991 samples, 0.01%)</title><rect x="451.7" y="113" width="0.2" height="15.0" fill="rgb(216,221,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="454.70" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>http-signature (1,281,828 samples, 0.01%)</title><rect x="529.5" y="97" width="0.1" height="15.0" fill="rgb(209,104,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="532.48" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tmpl (1,922,810 samples, 0.02%)</title><rect x="1051.2" y="145" width="0.2" height="15.0" fill="rgb(230,177,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="1054.24" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (14,453,664 samples, 0.11%)</title><rect x="450.6" y="161" width="1.4" height="15.0" fill="rgb(239,131,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="453.64" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>gen-cpp (2,452,462 samples, 0.02%)</title><rect x="409.1" y="177" width="0.2" height="15.0" fill="rgb(250,20,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="412.08" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-mapreduce-client-app (18,501,761 samples, 0.15%)</title><rect x="778.7" y="209" width="1.8" height="15.0" fill="rgb(253,187,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="781.73" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (470,680,121 samples, 3.74%)</title><rect x="424.0" y="225" width="44.1" height="15.0" fill="rgb(237,69,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="427.01" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >src</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>upgrade (3,199,108 samples, 0.03%)</title><rect x="405.1" y="209" width="0.3" height="15.0" fill="rgb(234,18,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="408.14" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (639,769,724 samples, 5.08%)</title><rect x="904.4" y="193" width="60.0" height="15.0" fill="rgb(252,43,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="907.44" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >apache</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>grunt-contrib-jshint (5,072,832 samples, 0.04%)</title><rect x="555.7" y="161" width="0.5" height="15.0" fill="rgb(248,56,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="558.71" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>server (9,956,735 samples, 0.08%)</title><rect x="187.2" y="129" width="1.0" height="15.0" fill="rgb(230,224,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="190.23" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,344,214 samples, 0.01%)</title><rect x="783.8" y="129" width="0.1" height="15.0" fill="rgb(209,5,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="786.82" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,307,449 samples, 0.01%)</title><rect x="1115.4" y="161" width="0.1" height="15.0" fill="rgb(209,199,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1118.41" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,417,148 samples, 0.01%)</title><rect x="790.5" y="145" width="0.1" height="15.0" fill="rgb(237,163,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="793.50" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rest (1,224,988 samples, 0.01%)</title><rect x="1068.2" y="145" width="0.1" height="15.0" fill="rgb(254,13,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="1071.19" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>grunt-contrib-less (79,253,700 samples, 0.63%)</title><rect x="556.2" y="161" width="7.4" height="15.0" fill="rgb(217,184,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="559.18" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>flash-src (4,151,810 samples, 0.03%)</title><rect x="276.8" y="81" width="0.4" height="15.0" fill="rgb(215,84,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="279.84" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dag (7,490,591 samples, 0.06%)</title><rect x="1164.6" y="145" width="0.7" height="15.0" fill="rgb(223,95,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="1167.59" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (16,367,948 samples, 0.13%)</title><rect x="756.5" y="177" width="1.5" height="15.0" fill="rgb(214,138,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="759.46" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (11,647,072 samples, 0.09%)</title><rect x="1143.4" y="193" width="1.1" height="15.0" fill="rgb(253,196,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="1146.39" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (2,340,161 samples, 0.02%)</title><rect x="1183.4" y="177" width="0.2" height="15.0" fill="rgb(250,228,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="1186.43" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>terasort (1,324,574 samples, 0.01%)</title><rect x="1182.4" y="97" width="0.1" height="15.0" fill="rgb(213,87,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="1185.35" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (2,676,060 samples, 0.02%)</title><rect x="473.6" y="193" width="0.2" height="15.0" fill="rgb(205,107,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="476.55" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sinon (13,112,017 samples, 0.10%)</title><rect x="283.0" y="209" width="1.2" height="15.0" fill="rgb(209,182,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.96" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (16,755,673 samples, 0.13%)</title><rect x="778.9" y="193" width="1.6" height="15.0" fill="rgb(233,65,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="781.89" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache-flume-1.6.0-src (64,212,595 samples, 0.51%)</title><rect x="377.9" y="257" width="6.1" height="15.0" fill="rgb(211,13,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="380.94" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (77,888,787 samples, 0.62%)</title><rect x="566.3" y="145" width="7.3" height="15.0" fill="rgb(212,127,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="569.35" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (152,593,378 samples, 1.21%)</title><rect x="1072.1" y="193" width="14.3" height="15.0" fill="rgb(219,5,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="1075.07" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala (4,323,835 samples, 0.03%)</title><rect x="1151.4" y="193" width="0.4" height="15.0" fill="rgb(211,113,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="1154.40" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,265,969 samples, 0.01%)</title><rect x="1109.0" y="161" width="0.2" height="15.0" fill="rgb(223,212,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="1112.05" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (14,882,681 samples, 0.12%)</title><rect x="806.5" y="113" width="1.4" height="15.0" fill="rgb(241,136,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="809.53" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ql (561,615,174 samples, 4.46%)</title><rect x="415.5" y="241" width="52.6" height="15.0" fill="rgb(231,84,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="418.49" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ql</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>libs (15,139,046 samples, 0.12%)</title><rect x="1112.6" y="241" width="1.4" height="15.0" fill="rgb(234,213,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1115.60" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node (40,505,589 samples, 0.32%)</title><rect x="526.0" y="177" width="3.8" height="15.0" fill="rgb(219,149,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="528.99" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>com (4,085,052 samples, 0.03%)</title><rect x="363.7" y="209" width="0.4" height="15.0" fill="rgb(238,14,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="366.75" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>stack (3,616,284 samples, 0.03%)</title><rect x="288.2" y="177" width="0.4" height="15.0" fill="rgb(251,24,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="291.25" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (1,116,479 samples, 0.01%)</title><rect x="400.1" y="193" width="0.1" height="15.0" fill="rgb(210,181,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="403.09" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core (7,279,107 samples, 0.06%)</title><rect x="399.3" y="225" width="0.7" height="15.0" fill="rgb(217,149,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="402.32" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>class-use (1,089,099 samples, 0.01%)</title><rect x="958.2" y="97" width="0.1" height="15.0" fill="rgb(223,90,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="961.22" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib (68,117,562 samples, 0.54%)</title><rect x="1099.8" y="241" width="6.3" height="15.0" fill="rgb(220,205,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="1102.76" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (1,903,116 samples, 0.02%)</title><rect x="759.0" y="193" width="0.2" height="15.0" fill="rgb(240,125,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="762.01" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>replication (1,761,398 samples, 0.01%)</title><rect x="956.7" y="145" width="0.2" height="15.0" fill="rgb(217,23,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="959.73" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib (20,052,242 samples, 0.16%)</title><rect x="638.2" y="129" width="1.9" height="15.0" fill="rgb(250,202,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="641.18" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>spark (3,530,104 samples, 0.03%)</title><rect x="1132.9" y="145" width="0.3" height="15.0" fill="rgb(219,53,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="1135.85" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez (8,051,045 samples, 0.06%)</title><rect x="1159.2" y="161" width="0.7" height="15.0" fill="rgb(230,229,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="1162.16" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (11,005,073 samples, 0.09%)</title><rect x="485.7" y="193" width="1.1" height="15.0" fill="rgb(217,38,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="488.74" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (28,019,111 samples, 0.22%)</title><rect x="239.8" y="161" width="2.6" height="15.0" fill="rgb(254,47,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="242.80" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (1,266,224 samples, 0.01%)</title><rect x="491.3" y="209" width="0.1" height="15.0" fill="rgb(240,66,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="494.29" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>contrib (2,715,051 samples, 0.02%)</title><rect x="397.6" y="241" width="0.2" height="15.0" fill="rgb(220,114,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="400.58" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,500,600 samples, 0.01%)</title><rect x="1109.0" y="177" width="0.2" height="15.0" fill="rgb(223,57,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1112.03" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>jdbc (2,160,614 samples, 0.02%)</title><rect x="403.3" y="241" width="0.2" height="15.0" fill="rgb(228,106,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="406.30" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (2,295,111 samples, 0.02%)</title><rect x="784.2" y="161" width="0.2" height="15.0" fill="rgb(205,52,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="787.19" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (1,817,680 samples, 0.01%)</title><rect x="790.2" y="193" width="0.1" height="15.0" fill="rgb(209,222,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="793.16" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>fatjar (7,123,831 samples, 0.06%)</title><rect x="1188.5" y="225" width="0.7" height="15.0" fill="rgb(247,65,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.51" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (5,004,091 samples, 0.04%)</title><rect x="1144.8" y="161" width="0.5" height="15.0" fill="rgb(219,143,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="1147.80" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>clean-css (2,496,934 samples, 0.02%)</title><rect x="229.0" y="177" width="0.3" height="15.0" fill="rgb(223,66,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="232.04" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (9,492,748 samples, 0.08%)</title><rect x="1162.0" y="209" width="0.9" height="15.0" fill="rgb(237,43,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="1164.99" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-yarn-api (6,478,407 samples, 0.05%)</title><rect x="795.1" y="209" width="0.6" height="15.0" fill="rgb(249,90,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="798.11" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,239,645 samples, 0.01%)</title><rect x="396.2" y="177" width="0.1" height="15.0" fill="rgb(240,148,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="399.17" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>vector (3,169,601 samples, 0.03%)</title><rect x="441.3" y="97" width="0.3" height="15.0" fill="rgb(228,104,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="444.31" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (2,325,657 samples, 0.02%)</title><rect x="284.0" y="193" width="0.2" height="15.0" fill="rgb(249,1,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.97" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>protobuf (6,315,921 samples, 0.05%)</title><rect x="432.7" y="193" width="0.6" height="15.0" fill="rgb(212,103,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="435.67" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hbase (47,610,532 samples, 0.38%)</title><rect x="1064.2" y="161" width="4.5" height="15.0" fill="rgb(235,152,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="1067.24" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>request (7,095,539 samples, 0.06%)</title><rect x="243.9" y="145" width="0.7" height="15.0" fill="rgb(220,168,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="246.92" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (1,309,088 samples, 0.01%)</title><rect x="563.1" y="113" width="0.1" height="15.0" fill="rgb(236,131,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="566.05" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>yarn (21,552,553 samples, 0.17%)</title><rect x="642.2" y="209" width="2.0" height="15.0" fill="rgb(216,99,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="645.23" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib (20,742,464 samples, 0.16%)</title><rect x="1177.8" y="177" width="2.0" height="15.0" fill="rgb(253,125,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="1180.81" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>server (7,518,469 samples, 0.06%)</title><rect x="775.4" y="97" width="0.8" height="15.0" fill="rgb(234,171,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="778.45" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,764,584 samples, 0.01%)</title><rect x="799.2" y="161" width="0.2" height="15.0" fill="rgb(240,220,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="802.25" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>library (2,813,420 samples, 0.02%)</title><rect x="492.6" y="113" width="0.2" height="15.0" fill="rgb(237,163,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.55" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>metrics (2,779,298 samples, 0.02%)</title><rect x="287.1" y="177" width="0.3" height="15.0" fill="rgb(213,214,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="290.11" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (413,537,967 samples, 3.28%)</title><rect x="605.5" y="225" width="38.7" height="15.0" fill="rgb(248,184,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="608.48" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >had..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>.git (26,827,061 samples, 0.21%)</title><rect x="591.4" y="241" width="2.5" height="15.0" fill="rgb(220,206,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="594.39" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (1,155,165 samples, 0.01%)</title><rect x="433.4" y="129" width="0.1" height="15.0" fill="rgb(227,186,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="436.37" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hive (9,229,934 samples, 0.07%)</title><rect x="1145.3" y="225" width="0.8" height="15.0" fill="rgb(229,198,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="1148.27" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (1,482,956 samples, 0.01%)</title><rect x="564.0" y="113" width="0.1" height="15.0" fill="rgb(247,157,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="566.96" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bower (186,540,860 samples, 1.48%)</title><rect x="536.6" y="161" width="17.5" height="15.0" fill="rgb(242,214,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="539.57" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (19,945,083 samples, 0.16%)</title><rect x="731.1" y="145" width="1.9" height="15.0" fill="rgb(212,189,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="734.13" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,496,469 samples, 0.01%)</title><rect x="396.1" y="193" width="0.2" height="15.0" fill="rgb(245,118,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="399.15" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sla (2,076,403 samples, 0.02%)</title><rect x="1123.1" y="161" width="0.2" height="15.0" fill="rgb(208,171,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="1126.14" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (2,573,821 samples, 0.02%)</title><rect x="798.9" y="161" width="0.2" height="15.0" fill="rgb(252,44,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="801.91" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>yarn (9,998,179 samples, 0.08%)</title><rect x="807.0" y="81" width="0.9" height="15.0" fill="rgb(231,139,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="809.99" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>http-signature (1,274,442 samples, 0.01%)</title><rect x="244.4" y="113" width="0.1" height="15.0" fill="rgb(246,218,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="247.39" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hive (1,206,040 samples, 0.01%)</title><rect x="401.9" y="113" width="0.1" height="15.0" fill="rgb(221,219,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="404.87" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,339,874 samples, 0.01%)</title><rect x="763.3" y="145" width="0.1" height="15.0" fill="rgb(229,47,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="766.27" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>kafka (1,182,915 samples, 0.01%)</title><rect x="1108.9" y="129" width="0.1" height="15.0" fill="rgb(214,151,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="1111.89" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (2,464,619 samples, 0.02%)</title><rect x="1134.9" y="177" width="0.2" height="15.0" fill="rgb(205,36,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="1137.90" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>regionserver (10,219,313 samples, 0.08%)</title><rect x="955.8" y="145" width="0.9" height="15.0" fill="rgb(225,229,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="958.77" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>resources (1,438,188 samples, 0.01%)</title><rect x="792.2" y="177" width="0.1" height="15.0" fill="rgb(214,105,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="795.19" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez-mapreduce (6,794,422 samples, 0.05%)</title><rect x="490.5" y="241" width="0.7" height="15.0" fill="rgb(209,220,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="493.53" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>latest-version (1,077,266 samples, 0.01%)</title><rect x="553.9" y="97" width="0.1" height="15.0" fill="rgb(245,61,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="556.86" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lodash (1,696,862 samples, 0.01%)</title><rect x="563.2" y="129" width="0.2" height="15.0" fill="rgb(231,34,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="566.20" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (3,060,389 samples, 0.02%)</title><rect x="401.4" y="193" width="0.3" height="15.0" fill="rgb(237,7,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="404.36" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (3,621,278 samples, 0.03%)</title><rect x="780.6" y="161" width="0.3" height="15.0" fill="rgb(225,197,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="783.61" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>stacks (34,792,067 samples, 0.28%)</title><rect x="188.9" y="177" width="3.2" height="15.0" fill="rgb(239,50,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="191.87" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (2,822,029 samples, 0.02%)</title><rect x="763.6" y="209" width="0.3" height="15.0" fill="rgb(212,0,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="766.62" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>util (1,998,927 samples, 0.02%)</title><rect x="403.1" y="225" width="0.2" height="15.0" fill="rgb(237,194,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="406.12" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (3,737,839 samples, 0.03%)</title><rect x="795.4" y="145" width="0.3" height="15.0" fill="rgb(225,81,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="798.36" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>webapps (1,562,652 samples, 0.01%)</title><rect x="771.4" y="177" width="0.2" height="15.0" fill="rgb(223,22,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="774.41" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (146,341,145 samples, 1.16%)</title><rect x="267.9" y="193" width="13.7" height="15.0" fill="rgb(244,125,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="270.92" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>target (71,995,645 samples, 0.57%)</title><rect x="197.0" y="225" width="6.7" height="15.0" fill="rgb(239,129,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="199.95" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (4,410,666 samples, 0.04%)</title><rect x="281.2" y="161" width="0.4" height="15.0" fill="rgb(232,89,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.22" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (5,291,328 samples, 0.04%)</title><rect x="414.7" y="177" width="0.5" height="15.0" fill="rgb(252,121,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="417.67" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>class-use (18,051,567 samples, 0.14%)</title><rect x="954.1" y="113" width="1.7" height="15.0" fill="rgb(227,223,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="957.08" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>karma-phantomjs-launcher (248,688,084 samples, 1.98%)</title><rect x="244.6" y="209" width="23.3" height="15.0" fill="rgb(252,14,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="247.59" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >k..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Release (4,153,349 samples, 0.03%)</title><rect x="744.6" y="145" width="0.4" height="15.0" fill="rgb(214,78,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="747.61" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lodash (1,683,450 samples, 0.01%)</title><rect x="272.4" y="177" width="0.2" height="15.0" fill="rgb(225,129,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="275.43" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>kafka (3,825,905 samples, 0.03%)</title><rect x="1110.0" y="177" width="0.4" height="15.0" fill="rgb(251,168,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="1113.04" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ipc (1,355,249 samples, 0.01%)</title><rect x="942.8" y="145" width="0.1" height="15.0" fill="rgb(241,189,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="945.76" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>yarn (1,392,490 samples, 0.01%)</title><rect x="800.5" y="81" width="0.2" height="15.0" fill="rgb(238,161,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="803.52" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (11,211,378 samples, 0.09%)</title><rect x="1130.9" y="161" width="1.0" height="15.0" fill="rgb(221,93,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1133.88" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (6,474,720 samples, 0.05%)</title><rect x="1143.9" y="145" width="0.6" height="15.0" fill="rgb(214,207,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1146.88" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib (1,328,174 samples, 0.01%)</title><rect x="470.9" y="225" width="0.1" height="15.0" fill="rgb(211,212,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="473.92" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (513,543,205 samples, 4.08%)</title><rect x="916.3" y="177" width="48.1" height="15.0" fill="rgb(238,159,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="919.27" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >hadoop</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,360,646 samples, 0.01%)</title><rect x="759.1" y="161" width="0.1" height="15.0" fill="rgb(225,22,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="762.06" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>class-use (1,455,442 samples, 0.01%)</title><rect x="1044.3" y="129" width="0.2" height="15.0" fill="rgb(227,156,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="1047.33" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (4,798,583 samples, 0.04%)</title><rect x="574.4" y="113" width="0.5" height="15.0" fill="rgb(249,130,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="577.42" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (4,133,744 samples, 0.03%)</title><rect x="555.8" y="145" width="0.4" height="15.0" fill="rgb(209,0,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="558.79" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>serde (25,495,421 samples, 0.20%)</title><rect x="468.1" y="241" width="2.4" height="15.0" fill="rgb(216,101,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="471.13" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (6,477,628 samples, 0.05%)</title><rect x="399.4" y="209" width="0.6" height="15.0" fill="rgb(252,211,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="402.39" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>maxmin (2,647,882 samples, 0.02%)</title><rect x="563.4" y="129" width="0.2" height="15.0" fill="rgb(230,94,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="566.36" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>coffee-script-redux (14,878,019 samples, 0.12%)</title><rect x="237.2" y="145" width="1.4" height="15.0" fill="rgb(236,90,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="240.17" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tools (1,073,007 samples, 0.01%)</title><rect x="791.1" y="113" width="0.1" height="15.0" fill="rgb(206,170,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.13" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (1,158,104 samples, 0.01%)</title><rect x="474.2" y="209" width="0.1" height="15.0" fill="rgb(218,14,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="477.23" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (8,699,576 samples, 0.07%)</title><rect x="1150.0" y="145" width="0.8" height="15.0" fill="rgb(231,14,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1152.96" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (5,064,468 samples, 0.04%)</title><rect x="576.2" y="113" width="0.5" height="15.0" fill="rgb(241,89,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="579.22" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (3,921,509 samples, 0.03%)</title><rect x="1115.2" y="225" width="0.4" height="15.0" fill="rgb(207,177,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="1118.22" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (4,539,930 samples, 0.04%)</title><rect x="1122.9" y="209" width="0.4" height="15.0" fill="rgb(205,164,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="1125.91" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib (1,076,394 samples, 0.01%)</title><rect x="562.0" y="113" width="0.1" height="15.0" fill="rgb(234,149,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="564.99" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib (1,076,441 samples, 0.01%)</title><rect x="230.4" y="161" width="0.1" height="15.0" fill="rgb(226,74,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="233.38" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (79,631,381 samples, 0.63%)</title><rect x="235.0" y="193" width="7.4" height="15.0" fill="rgb(229,139,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="237.98" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>static (1,118,663 samples, 0.01%)</title><rect x="1086.4" y="225" width="0.1" height="15.0" fill="rgb(249,211,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="1089.43" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (3,340,146 samples, 0.03%)</title><rect x="295.2" y="177" width="0.3" height="15.0" fill="rgb(245,33,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="298.21" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>gen (3,452,437 samples, 0.03%)</title><rect x="468.6" y="209" width="0.4" height="15.0" fill="rgb(235,156,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="471.65" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (1,336,315 samples, 0.01%)</title><rect x="808.1" y="193" width="0.2" height="15.0" fill="rgb(243,219,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="811.13" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hive-thriftserver (1,135,946 samples, 0.01%)</title><rect x="1146.1" y="225" width="0.1" height="15.0" fill="rgb(216,41,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="1149.13" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hawk (1,234,383 samples, 0.01%)</title><rect x="231.1" y="113" width="0.1" height="15.0" fill="rgb(249,51,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="234.13" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez-tests (3,015,050 samples, 0.02%)</title><rect x="1185.9" y="241" width="0.3" height="15.0" fill="rgb(236,40,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="1188.94" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (1,203,950 samples, 0.01%)</title><rect x="790.6" y="193" width="0.1" height="15.0" fill="rgb(254,4,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="793.64" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>resources (1,424,155 samples, 0.01%)</title><rect x="798.7" y="161" width="0.2" height="15.0" fill="rgb(249,154,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="801.74" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>shims (3,685,869 samples, 0.03%)</title><rect x="473.8" y="241" width="0.4" height="15.0" fill="rgb(239,109,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="476.84" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test-classes (20,108,593 samples, 0.16%)</title><rect x="756.1" y="193" width="1.9" height="15.0" fill="rgb(210,41,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="759.11" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>svr (3,974,322 samples, 0.03%)</title><rect x="401.7" y="209" width="0.3" height="15.0" fill="rgb(224,110,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="404.65" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (3,467,735 samples, 0.03%)</title><rect x="577.0" y="113" width="0.3" height="15.0" fill="rgb(213,206,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="580.02" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,500,464 samples, 0.01%)</title><rect x="399.9" y="177" width="0.1" height="15.0" fill="rgb(211,132,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="402.86" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>coprocessor (6,805,995 samples, 0.05%)</title><rect x="941.1" y="145" width="0.6" height="15.0" fill="rgb(209,175,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="944.07" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (19,023,297 samples, 0.15%)</title><rect x="193.1" y="193" width="1.8" height="15.0" fill="rgb(219,184,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="196.09" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (5,106,549 samples, 0.04%)</title><rect x="795.2" y="177" width="0.5" height="15.0" fill="rgb(246,124,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="798.24" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (2,213,014 samples, 0.02%)</title><rect x="784.5" y="145" width="0.2" height="15.0" fill="rgb(214,182,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="787.50" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,468,086 samples, 0.01%)</title><rect x="790.2" y="177" width="0.1" height="15.0" fill="rgb(209,164,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="793.18" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>resources (1,992,621 samples, 0.02%)</title><rect x="776.2" y="177" width="0.2" height="15.0" fill="rgb(225,88,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="779.21" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>stacks (3,836,532 samples, 0.03%)</title><rect x="195.0" y="177" width="0.4" height="15.0" fill="rgb(252,14,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="198.02" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,858,252 samples, 0.01%)</title><rect x="800.7" y="145" width="0.2" height="15.0" fill="rgb(251,189,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="803.68" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>generated (72,091,412 samples, 0.57%)</title><rect x="949.0" y="129" width="6.8" height="15.0" fill="rgb(215,168,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="952.01" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>contrib (51,615,641 samples, 0.41%)</title><rect x="290.7" y="241" width="4.9" height="15.0" fill="rgb(250,41,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="293.73" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>services (5,267,345 samples, 0.04%)</title><rect x="201.1" y="145" width="0.5" height="15.0" fill="rgb(232,212,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="204.12" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-mapreduce-project (128,177,980 samples, 1.02%)</title><rect x="776.4" y="241" width="12.0" height="15.0" fill="rgb(207,203,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="779.39" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>partitions (1,354,236 samples, 0.01%)</title><rect x="339.8" y="161" width="0.1" height="15.0" fill="rgb(230,32,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="342.82" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>2.0.5 (1,451,054 samples, 0.01%)</title><rect x="196.6" y="145" width="0.1" height="15.0" fill="rgb(250,40,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="199.59" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>less-brunch (8,007,973 samples, 0.06%)</title><rect x="281.6" y="209" width="0.8" height="15.0" fill="rgb(211,165,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.63" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>io (14,496,511 samples, 0.12%)</title><rect x="341.1" y="177" width="1.4" height="15.0" fill="rgb(223,4,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="344.09" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (7,565,607 samples, 0.06%)</title><rect x="484.7" y="225" width="0.8" height="15.0" fill="rgb(245,122,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="487.75" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (3,523,928 samples, 0.03%)</title><rect x="401.7" y="193" width="0.3" height="15.0" fill="rgb(239,190,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="404.69" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (3,932,908 samples, 0.03%)</title><rect x="399.5" y="193" width="0.3" height="15.0" fill="rgb(250,17,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="402.46" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>zookeeper (2,026,734 samples, 0.02%)</title><rect x="1052.2" y="145" width="0.2" height="15.0" fill="rgb(221,75,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="1055.18" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (2,844,192 samples, 0.02%)</title><rect x="399.6" y="161" width="0.2" height="15.0" fill="rgb(245,147,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="402.57" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (1,405,164 samples, 0.01%)</title><rect x="789.4" y="193" width="0.1" height="15.0" fill="rgb(247,184,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.36" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tests (1,144,498 samples, 0.01%)</title><rect x="282.2" y="129" width="0.1" height="15.0" fill="rgb(225,163,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.24" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>thrift (18,764,974 samples, 0.15%)</title><rect x="1049.5" y="145" width="1.7" height="15.0" fill="rgb(240,195,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="1052.48" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>thrift2 (14,708,048 samples, 0.12%)</title><rect x="960.1" y="145" width="1.4" height="15.0" fill="rgb(239,108,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="963.12" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (3,178,084 samples, 0.03%)</title><rect x="780.6" y="145" width="0.3" height="15.0" fill="rgb(227,75,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="783.65" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-yarn-project (166,652,247 samples, 1.32%)</title><rect x="792.6" y="241" width="15.7" height="15.0" fill="rgb(234,152,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="795.64" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala (3,151,380 samples, 0.03%)</title><rect x="1150.8" y="177" width="0.3" height="15.0" fill="rgb(207,107,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="1153.78" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (8,265,831 samples, 0.07%)</title><rect x="1162.1" y="193" width="0.8" height="15.0" fill="rgb(245,43,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="1165.10" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>security (2,966,655 samples, 0.02%)</title><rect x="1046.3" y="145" width="0.3" height="15.0" fill="rgb(237,214,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="1049.33" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (12,352,363 samples, 0.10%)</title><rect x="382.6" y="209" width="1.1" height="15.0" fill="rgb(220,185,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="385.57" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,678,697 samples, 0.01%)</title><rect x="493.6" y="193" width="0.2" height="15.0" fill="rgb(228,19,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="496.63" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>spark (2,133,890 samples, 0.02%)</title><rect x="1142.7" y="129" width="0.2" height="15.0" fill="rgb(240,189,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="1145.69" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sql (1,586,870 samples, 0.01%)</title><rect x="1142.7" y="113" width="0.2" height="15.0" fill="rgb(234,102,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="1145.74" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>api (1,836,747 samples, 0.01%)</title><rect x="1108.4" y="225" width="0.2" height="15.0" fill="rgb(245,29,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="1111.40" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>datanode (1,469,015 samples, 0.01%)</title><rect x="770.8" y="81" width="0.1" height="15.0" fill="rgb(233,163,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="773.78" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>recovery (1,668,180 samples, 0.01%)</title><rect x="1165.8" y="113" width="0.1" height="15.0" fill="rgb(206,211,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.76" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>util (6,373,627 samples, 0.05%)</title><rect x="1051.6" y="145" width="0.6" height="15.0" fill="rgb(225,78,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1054.58" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (86,878,836 samples, 0.69%)</title><rect x="434.8" y="193" width="8.1" height="15.0" fill="rgb(224,164,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="437.79" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (3,434,023 samples, 0.03%)</title><rect x="492.9" y="193" width="0.3" height="15.0" fill="rgb(213,64,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.86" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>uglify-js (1,863,849 samples, 0.01%)</title><rect x="241.4" y="113" width="0.2" height="15.0" fill="rgb(214,7,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="244.39" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-nfs (2,818,584 samples, 0.02%)</title><rect x="758.9" y="225" width="0.3" height="15.0" fill="rgb(229,77,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="761.94" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>flume (1,154,684 samples, 0.01%)</title><rect x="380.7" y="145" width="0.2" height="15.0" fill="rgb(238,188,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="383.75" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,431,107 samples, 0.01%)</title><rect x="493.5" y="193" width="0.1" height="15.0" fill="rgb(247,67,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="496.46" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (2,278,972 samples, 0.02%)</title><rect x="1147.2" y="161" width="0.2" height="15.0" fill="rgb(247,77,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="1150.23" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (6,078,320 samples, 0.05%)</title><rect x="800.3" y="177" width="0.6" height="15.0" fill="rgb(219,164,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="803.28" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>escodegen (3,533,650 samples, 0.03%)</title><rect x="237.8" y="113" width="0.3" height="15.0" fill="rgb(233,67,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="240.78" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>gyp (4,299,693 samples, 0.03%)</title><rect x="528.5" y="113" width="0.4" height="15.0" fill="rgb(223,25,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="531.51" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>contrib (1,872,218 samples, 0.01%)</title><rect x="765.9" y="193" width="0.2" height="15.0" fill="rgb(242,73,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="768.91" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,565,225 samples, 0.01%)</title><rect x="401.8" y="129" width="0.2" height="15.0" fill="rgb(245,155,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="404.84" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (8,717,297 samples, 0.07%)</title><rect x="801.5" y="161" width="0.8" height="15.0" fill="rgb(253,195,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="804.50" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,402,977 samples, 0.01%)</title><rect x="397.6" y="209" width="0.2" height="15.0" fill="rgb(235,130,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="400.65" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hcatalog (32,727,084 samples, 0.26%)</title><rect x="399.0" y="241" width="3.0" height="15.0" fill="rgb(252,210,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="401.96" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (4,837,704 samples, 0.04%)</title><rect x="802.7" y="97" width="0.4" height="15.0" fill="rgb(226,120,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="805.67" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (2,107,957 samples, 0.02%)</title><rect x="800.7" y="161" width="0.2" height="15.0" fill="rgb(219,80,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="803.65" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (3,260,298 samples, 0.03%)</title><rect x="799.2" y="193" width="0.3" height="15.0" fill="rgb(232,75,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="802.19" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ui (2,271,506 samples, 0.02%)</title><rect x="294.9" y="145" width="0.2" height="15.0" fill="rgb(245,117,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="297.90" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-2.2.0 (694,034,069 samples, 5.51%)</title><rect x="579.2" y="257" width="65.0" height="15.0" fill="rgb(240,126,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="582.19" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >hadoop-..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (2,957,220 samples, 0.02%)</title><rect x="470.2" y="193" width="0.3" height="15.0" fill="rgb(224,83,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="473.23" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>types (1,362,816 samples, 0.01%)</title><rect x="963.5" y="145" width="0.1" height="15.0" fill="rgb(209,80,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="966.46" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>mapreduce (1,366,810 samples, 0.01%)</title><rect x="1083.6" y="145" width="0.1" height="15.0" fill="rgb(208,209,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="1086.57" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>class-use (4,333,759 samples, 0.03%)</title><rect x="1050.8" y="113" width="0.4" height="15.0" fill="rgb(251,48,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="1053.83" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,250,515 samples, 0.01%)</title><rect x="399.9" y="161" width="0.1" height="15.0" fill="rgb(243,149,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="402.88" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>flume-ng-sources (1,838,109 samples, 0.01%)</title><rect x="383.7" y="241" width="0.2" height="15.0" fill="rgb(239,151,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="386.72" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (9,330,600 samples, 0.07%)</title><rect x="488.8" y="193" width="0.9" height="15.0" fill="rgb(243,11,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.78" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,953,247 samples, 0.02%)</title><rect x="1108.1" y="177" width="0.2" height="15.0" fill="rgb(230,162,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1111.13" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,711,435 samples, 0.01%)</title><rect x="468.8" y="145" width="0.2" height="15.0" fill="rgb(205,131,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="471.80" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>oozie (1,145,611 samples, 0.01%)</title><rect x="1123.5" y="145" width="0.1" height="15.0" fill="rgb(234,90,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="1126.47" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>fs-extra (1,446,930 samples, 0.01%)</title><rect x="572.2" y="65" width="0.2" height="15.0" fill="rgb(205,31,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="575.24" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>views (3,197,884 samples, 0.03%)</title><rect x="220.0" y="209" width="0.3" height="15.0" fill="rgb(205,28,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="223.04" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>beeline (1,917,068 samples, 0.02%)</title><rect x="396.6" y="241" width="0.2" height="15.0" fill="rgb(216,124,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="399.64" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (2,672,326 samples, 0.02%)</title><rect x="789.9" y="193" width="0.3" height="15.0" fill="rgb(220,210,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.90" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>security (2,948,044 samples, 0.02%)</title><rect x="958.3" y="145" width="0.3" height="15.0" fill="rgb(226,9,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="961.35" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (1,547,232 samples, 0.01%)</title><rect x="784.6" y="113" width="0.1" height="15.0" fill="rgb(232,106,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="787.56" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>less (4,298,646 samples, 0.03%)</title><rect x="282.0" y="177" width="0.4" height="15.0" fill="rgb(211,77,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.98" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>replication (1,106,190 samples, 0.01%)</title><rect x="1085.1" y="145" width="0.1" height="15.0" fill="rgb(222,161,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="1088.08" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>winutils (87,389,564 samples, 0.69%)</title><rect x="736.8" y="177" width="8.2" height="15.0" fill="rgb(253,195,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="739.81" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez-runtime-internals (3,425,692 samples, 0.03%)</title><rect x="491.4" y="241" width="0.3" height="15.0" fill="rgb(213,34,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="494.41" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>html (1,276,513 samples, 0.01%)</title><rect x="527.7" y="145" width="0.1" height="15.0" fill="rgb(219,97,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="530.71" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (7,956,345 samples, 0.06%)</title><rect x="486.0" y="161" width="0.8" height="15.0" fill="rgb(226,111,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="489.03" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (2,283,205 samples, 0.02%)</title><rect x="284.3" y="193" width="0.2" height="15.0" fill="rgb(214,115,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="287.26" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (3,147,655 samples, 0.03%)</title><rect x="379.2" y="161" width="0.3" height="15.0" fill="rgb(241,89,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="382.16" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ui (2,344,642 samples, 0.02%)</title><rect x="1130.0" y="129" width="0.3" height="15.0" fill="rgb(225,107,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1133.03" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,534,343 samples, 0.01%)</title><rect x="796.1" y="129" width="0.1" height="15.0" fill="rgb(225,138,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.08" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hdp (2,354,261 samples, 0.02%)</title><rect x="288.4" y="161" width="0.2" height="15.0" fill="rgb(228,222,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="291.37" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (1,366,851 samples, 0.01%)</title><rect x="543.5" y="113" width="0.1" height="15.0" fill="rgb(253,55,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="546.48" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (3,819,118 samples, 0.03%)</title><rect x="240.5" y="129" width="0.4" height="15.0" fill="rgb(222,225,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="243.50" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez (4,137,286 samples, 0.03%)</title><rect x="1182.1" y="145" width="0.4" height="15.0" fill="rgb(245,166,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="1185.09" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hive (48,120,612 samples, 0.38%)</title><rect x="438.4" y="145" width="4.5" height="15.0" fill="rgb(222,229,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="441.42" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (2,597,793 samples, 0.02%)</title><rect x="241.3" y="129" width="0.3" height="15.0" fill="rgb(211,100,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="244.32" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>grunt-contrib-watch (10,845,333 samples, 0.09%)</title><rect x="564.1" y="161" width="1.0" height="15.0" fill="rgb(248,212,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.12" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>python (3,608,710 samples, 0.03%)</title><rect x="178.9" y="193" width="0.3" height="15.0" fill="rgb(211,117,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="181.90" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (1,664,199 samples, 0.01%)</title><rect x="474.2" y="225" width="0.2" height="15.0" fill="rgb(236,116,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="477.21" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (6,170,089 samples, 0.05%)</title><rect x="554.8" y="145" width="0.5" height="15.0" fill="rgb(207,82,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="557.76" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>target (2,721,097 samples, 0.02%)</title><rect x="1184.0" y="225" width="0.2" height="15.0" fill="rgb(215,85,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1186.99" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (1,966,538 samples, 0.02%)</title><rect x="763.4" y="193" width="0.2" height="15.0" fill="rgb(231,1,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="766.40" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (1,633,876 samples, 0.01%)</title><rect x="396.7" y="225" width="0.1" height="15.0" fill="rgb(233,85,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="399.67" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>update-notifier (6,313,968 samples, 0.05%)</title><rect x="553.4" y="129" width="0.6" height="15.0" fill="rgb(220,226,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="556.38" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>data (24,826,467 samples, 0.20%)</title><rect x="217.1" y="193" width="2.3" height="15.0" fill="rgb(223,73,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="220.12" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (2,439,780 samples, 0.02%)</title><rect x="1166.0" y="177" width="0.3" height="15.0" fill="rgb(228,189,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="1169.02" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>io (1,080,406 samples, 0.01%)</title><rect x="746.8" y="113" width="0.1" height="15.0" fill="rgb(211,87,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="749.84" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala (2,703,130 samples, 0.02%)</title><rect x="1147.2" y="177" width="0.2" height="15.0" fill="rgb(240,126,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="1150.19" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>gen-py (2,461,364 samples, 0.02%)</title><rect x="414.2" y="177" width="0.2" height="15.0" fill="rgb(240,7,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="417.17" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (1,748,515 samples, 0.01%)</title><rect x="493.4" y="209" width="0.2" height="15.0" fill="rgb(207,23,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="496.44" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hive (1,690,962 samples, 0.01%)</title><rect x="473.6" y="161" width="0.2" height="15.0" fill="rgb(233,107,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="476.65" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>mapreduce (3,787,731 samples, 0.03%)</title><rect x="783.3" y="97" width="0.3" height="15.0" fill="rgb(232,167,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="786.29" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (1,659,949 samples, 0.01%)</title><rect x="1135.7" y="209" width="0.2" height="15.0" fill="rgb(245,166,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="1138.71" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>unit (2,215,682 samples, 0.02%)</title><rect x="1110.6" y="177" width="0.2" height="15.0" fill="rgb(217,16,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="1113.63" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (1,306,297 samples, 0.01%)</title><rect x="638.1" y="81" width="0.1" height="15.0" fill="rgb(205,106,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="641.05" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (3,617,131 samples, 0.03%)</title><rect x="1157.9" y="225" width="0.3" height="15.0" fill="rgb(239,59,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="1160.85" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (1,147,179 samples, 0.01%)</title><rect x="795.7" y="177" width="0.2" height="15.0" fill="rgb(247,192,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="798.75" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>spark (4,989,334 samples, 0.04%)</title><rect x="1144.0" y="129" width="0.5" height="15.0" fill="rgb(252,49,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="1147.02" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez (4,813,352 samples, 0.04%)</title><rect x="1162.4" y="145" width="0.5" height="15.0" fill="rgb(238,140,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="1165.42" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,552,054 samples, 0.01%)</title><rect x="790.0" y="145" width="0.2" height="15.0" fill="rgb(219,25,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="793.01" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>oozie (8,977,467 samples, 0.07%)</title><rect x="1118.5" y="145" width="0.9" height="15.0" fill="rgb(244,157,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="1121.54" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (2,795,761 samples, 0.02%)</title><rect x="549.2" y="81" width="0.2" height="15.0" fill="rgb(207,45,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="552.16" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>service (3,679,356 samples, 0.03%)</title><rect x="343.2" y="177" width="0.4" height="15.0" fill="rgb(228,85,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="346.22" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,304,415 samples, 0.01%)</title><rect x="485.3" y="193" width="0.2" height="15.0" fill="rgb(214,219,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="488.33" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (12,029,231 samples, 0.10%)</title><rect x="1158.8" y="193" width="1.1" height="15.0" fill="rgb(219,62,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1161.79" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (1,850,126 samples, 0.01%)</title><rect x="547.5" y="81" width="0.1" height="15.0" fill="rgb(247,60,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="550.47" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>target (14,053,801 samples, 0.11%)</title><rect x="485.5" y="225" width="1.3" height="15.0" fill="rgb(207,148,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="488.46" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>repl (1,917,927 samples, 0.02%)</title><rect x="1139.6" y="241" width="0.2" height="15.0" fill="rgb(234,83,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="1142.58" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (3,169,237 samples, 0.03%)</title><rect x="796.2" y="177" width="0.3" height="15.0" fill="rgb(206,165,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.23" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apidocs (894,383,355 samples, 7.10%)</title><rect x="880.6" y="225" width="83.8" height="15.0" fill="rgb(231,19,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="883.57" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >apidocs</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lodash (1,696,946 samples, 0.01%)</title><rect x="575.9" y="97" width="0.2" height="15.0" fill="rgb(248,70,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="578.90" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (2,486,467 samples, 0.02%)</title><rect x="759.0" y="209" width="0.2" height="15.0" fill="rgb(215,128,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="761.98" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez-dag (37,764,028 samples, 0.30%)</title><rect x="486.9" y="241" width="3.5" height="15.0" fill="rgb(218,62,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="489.89" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-streaming (3,095,010 samples, 0.02%)</title><rect x="792.3" y="225" width="0.3" height="15.0" fill="rgb(244,34,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="795.35" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez (6,452,783 samples, 0.05%)</title><rect x="488.1" y="145" width="0.6" height="15.0" fill="rgb(251,172,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.05" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (2,006,452 samples, 0.02%)</title><rect x="783.8" y="161" width="0.1" height="15.0" fill="rgb(216,222,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="786.76" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez (2,004,567 samples, 0.02%)</title><rect x="1166.1" y="161" width="0.2" height="15.0" fill="rgb(240,15,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="1169.06" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>esprima (1,613,018 samples, 0.01%)</title><rect x="543.3" y="65" width="0.1" height="15.0" fill="rgb(206,125,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="546.27" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dist (11,410,829 samples, 0.09%)</title><rect x="560.9" y="113" width="1.1" height="15.0" fill="rgb(227,16,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="563.92" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-yarn-applications-distributedshell (1,291,526 samples, 0.01%)</title><rect x="795.7" y="193" width="0.2" height="15.0" fill="rgb(206,24,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="798.73" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>webhdfs (63,269,589 samples, 0.50%)</title><rect x="634.1" y="161" width="6.0" height="15.0" fill="rgb(245,192,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="637.13" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (21,460,600 samples, 0.17%)</title><rect x="186.1" y="177" width="2.1" height="15.0" fill="rgb(242,132,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="189.15" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>exec (8,208,343 samples, 0.07%)</title><rect x="440.8" y="113" width="0.8" height="15.0" fill="rgb(222,69,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="443.84" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>views (10,959,281 samples, 0.09%)</title><rect x="294.5" y="225" width="1.1" height="15.0" fill="rgb(241,138,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="297.54" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (2,325,835 samples, 0.02%)</title><rect x="1108.1" y="193" width="0.2" height="15.0" fill="rgb(232,136,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="1111.09" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ql (10,874,470 samples, 0.09%)</title><rect x="1149.8" y="161" width="1.0" height="15.0" fill="rgb(249,173,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1152.76" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>app (1,080,539 samples, 0.01%)</title><rect x="1166.1" y="129" width="0.1" height="15.0" fill="rgb(213,92,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="1169.14" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,278,168 samples, 0.01%)</title><rect x="799.3" y="129" width="0.1" height="15.0" fill="rgb(240,65,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="802.29" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (5,498,806 samples, 0.04%)</title><rect x="267.4" y="129" width="0.5" height="15.0" fill="rgb(246,58,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="270.38" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>02 (1,251,848 samples, 0.01%)</title><rect x="593.1" y="209" width="0.1" height="15.0" fill="rgb(231,58,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="596.06" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>v2 (2,106,895 samples, 0.02%)</title><rect x="780.3" y="81" width="0.2" height="15.0" fill="rgb(234,135,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="783.26" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hbase (394,078,267 samples, 3.13%)</title><rect x="1015.4" y="161" width="37.0" height="15.0" fill="rgb(219,76,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="1018.43" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >hbase</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>protobuf (126,568,849 samples, 1.01%)</title><rect x="1031.9" y="145" width="11.8" height="15.0" fill="rgb(237,202,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="1034.85" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>generated-sources (10,034,620 samples, 0.08%)</title><rect x="754.7" y="193" width="0.9" height="15.0" fill="rgb(216,137,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="757.66" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,463,399 samples, 0.01%)</title><rect x="474.6" y="161" width="0.1" height="15.0" fill="rgb(205,178,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="477.56" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>filter (1,270,412 samples, 0.01%)</title><rect x="339.4" y="161" width="0.1" height="15.0" fill="rgb(235,119,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="342.41" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (8,964,508 samples, 0.07%)</title><rect x="786.9" y="209" width="0.8" height="15.0" fill="rgb(207,224,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="789.89" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>conf (2,221,321 samples, 0.02%)</title><rect x="370.8" y="161" width="0.2" height="15.0" fill="rgb(210,216,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="373.79" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (3,340,630 samples, 0.03%)</title><rect x="1182.8" y="209" width="0.4" height="15.0" fill="rgb(230,136,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="1185.85" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala (3,774,950 samples, 0.03%)</title><rect x="1142.5" y="177" width="0.4" height="15.0" fill="rgb(217,17,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="1145.53" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (1,613,103 samples, 0.01%)</title><rect x="766.9" y="161" width="0.2" height="15.0" fill="rgb(231,88,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="769.92" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>grunt-cli (7,467,250 samples, 0.06%)</title><rect x="554.6" y="161" width="0.7" height="15.0" fill="rgb(213,126,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="557.64" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>services (2,322,671 samples, 0.02%)</title><rect x="200.9" y="145" width="0.2" height="15.0" fill="rgb(234,9,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="203.88" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (46,596,374 samples, 0.37%)</title><rect x="803.6" y="177" width="4.3" height="15.0" fill="rgb(242,97,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="806.56" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez (1,319,786 samples, 0.01%)</title><rect x="1182.7" y="161" width="0.1" height="15.0" fill="rgb(253,105,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1185.66" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>.doctrees (2,421,308 samples, 0.02%)</title><rect x="361.4" y="225" width="0.3" height="15.0" fill="rgb(237,65,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="364.45" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>socket.io (86,626,745 samples, 0.69%)</title><rect x="272.8" y="177" width="8.1" height="15.0" fill="rgb(235,159,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="275.82" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sinon (3,693,117 samples, 0.03%)</title><rect x="283.6" y="113" width="0.3" height="15.0" fill="rgb(213,200,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.60" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (4,092,622 samples, 0.03%)</title><rect x="780.6" y="177" width="0.3" height="15.0" fill="rgb(247,77,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="783.57" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (10,087,189 samples, 0.08%)</title><rect x="1107.1" y="209" width="1.0" height="15.0" fill="rgb(213,180,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="1110.11" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (4,775,195 samples, 0.04%)</title><rect x="396.1" y="225" width="0.4" height="15.0" fill="rgb(245,89,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="399.06" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (3,262,213 samples, 0.03%)</title><rect x="544.7" y="113" width="0.3" height="15.0" fill="rgb(247,43,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="547.74" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>gen (22,380,914 samples, 0.18%)</title><rect x="471.4" y="209" width="2.1" height="15.0" fill="rgb(207,87,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="474.41" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,661,002 samples, 0.01%)</title><rect x="638.0" y="97" width="0.2" height="15.0" fill="rgb(229,102,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="641.02" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>static (1,118,663 samples, 0.01%)</title><rect x="1099.7" y="225" width="0.1" height="15.0" fill="rgb(218,158,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="1102.65" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>pyspark (2,675,282 samples, 0.02%)</title><rect x="1139.3" y="225" width="0.3" height="15.0" fill="rgb(229,184,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="1142.32" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>objects (17,856,050 samples, 0.14%)</title><rect x="592.2" y="225" width="1.7" height="15.0" fill="rgb(225,149,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="595.23" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>execution (1,915,692 samples, 0.02%)</title><rect x="1144.3" y="97" width="0.2" height="15.0" fill="rgb(238,148,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="1147.30" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (51,011,759 samples, 0.41%)</title><rect x="1146.3" y="209" width="4.8" height="15.0" fill="rgb(221,141,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="1149.29" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>esprima (1,613,019 samples, 0.01%)</title><rect x="577.2" y="97" width="0.1" height="15.0" fill="rgb(232,200,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="580.19" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (1,167,768 samples, 0.01%)</title><rect x="396.5" y="225" width="0.1" height="15.0" fill="rgb(244,84,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="399.53" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (188,449,077 samples, 1.50%)</title><rect x="1068.7" y="209" width="17.7" height="15.0" fill="rgb(247,145,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1071.70" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (1,150,649 samples, 0.01%)</title><rect x="1183.9" y="209" width="0.1" height="15.0" fill="rgb(221,100,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="1186.85" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (6,962,668 samples, 0.06%)</title><rect x="1132.5" y="177" width="0.7" height="15.0" fill="rgb(244,177,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1135.53" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>generated (1,352,028 samples, 0.01%)</title><rect x="1029.4" y="113" width="0.2" height="15.0" fill="rgb(215,118,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="1032.44" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,489,355 samples, 0.01%)</title><rect x="1134.7" y="177" width="0.1" height="15.0" fill="rgb(241,42,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="1137.68" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala (1,295,650 samples, 0.01%)</title><rect x="1152.3" y="193" width="0.2" height="15.0" fill="rgb(247,225,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="1155.33" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>esmangle (4,419,261 samples, 0.04%)</title><rect x="238.1" y="113" width="0.4" height="15.0" fill="rgb(239,3,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="241.11" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,089,411 samples, 0.01%)</title><rect x="759.1" y="145" width="0.1" height="15.0" fill="rgb(205,67,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="762.08" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (5,630,687 samples, 0.04%)</title><rect x="801.8" y="113" width="0.5" height="15.0" fill="rgb(211,199,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="804.76" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>gaze (4,815,699 samples, 0.04%)</title><rect x="564.4" y="129" width="0.5" height="15.0" fill="rgb(235,32,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.41" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (2,126,720 samples, 0.02%)</title><rect x="758.7" y="209" width="0.2" height="15.0" fill="rgb(241,158,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="761.72" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (19,864,193 samples, 0.16%)</title><rect x="527.9" y="145" width="1.9" height="15.0" fill="rgb(219,143,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="530.91" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-mapreduce-client-common (5,943,889 samples, 0.05%)</title><rect x="780.5" y="209" width="0.5" height="15.0" fill="rgb(241,87,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="783.46" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (2,365,010 samples, 0.02%)</title><rect x="396.3" y="209" width="0.2" height="15.0" fill="rgb(233,128,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="399.29" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez-tests (5,095,219 samples, 0.04%)</title><rect x="493.3" y="241" width="0.5" height="15.0" fill="rgb(234,98,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="496.31" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ui (1,501,314 samples, 0.01%)</title><rect x="295.4" y="145" width="0.1" height="15.0" fill="rgb(250,166,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="298.39" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>2.0.6.GlusterFS (3,425,750 samples, 0.03%)</title><rect x="200.8" y="161" width="0.3" height="15.0" fill="rgb(248,37,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="203.78" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (10,200,504 samples, 0.08%)</title><rect x="230.5" y="161" width="0.9" height="15.0" fill="rgb(227,88,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="233.48" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (3,186,632 samples, 0.03%)</title><rect x="546.3" y="81" width="0.3" height="15.0" fill="rgb(238,181,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="549.29" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>log4js (1,709,150 samples, 0.01%)</title><rect x="272.6" y="177" width="0.1" height="15.0" fill="rgb(226,53,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="275.59" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,542,278 samples, 0.01%)</title><rect x="1158.0" y="161" width="0.2" height="15.0" fill="rgb(248,138,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="1161.01" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>functions (1,171,541 samples, 0.01%)</title><rect x="337.1" y="161" width="0.1" height="15.0" fill="rgb(251,107,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="340.05" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (1,632,664 samples, 0.01%)</title><rect x="1108.4" y="209" width="0.2" height="15.0" fill="rgb(233,95,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1111.42" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>v2 (1,403,740 samples, 0.01%)</title><rect x="780.8" y="81" width="0.1" height="15.0" fill="rgb(227,87,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="783.82" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>grunt-svgmin (10,539,712 samples, 0.08%)</title><rect x="573.9" y="161" width="1.0" height="15.0" fill="rgb(205,159,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="576.90" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (2,944,602 samples, 0.02%)</title><rect x="800.4" y="145" width="0.3" height="15.0" fill="rgb(226,203,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="803.38" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test-classes (16,728,897 samples, 0.13%)</title><rect x="202.1" y="209" width="1.6" height="15.0" fill="rgb(211,51,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="205.13" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-extras (1,287,396 samples, 0.01%)</title><rect x="789.7" y="225" width="0.1" height="15.0" fill="rgb(251,226,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.65" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (1,675,094 samples, 0.01%)</title><rect x="379.5" y="193" width="0.1" height="15.0" fill="rgb(213,58,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="382.45" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (1,664,512 samples, 0.01%)</title><rect x="763.7" y="193" width="0.1" height="15.0" fill="rgb(209,71,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="766.65" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dag (4,970,058 samples, 0.04%)</title><rect x="488.2" y="129" width="0.5" height="15.0" fill="rgb(254,220,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.19" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (3,332,630 samples, 0.03%)</title><rect x="800.3" y="161" width="0.4" height="15.0" fill="rgb(250,1,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="803.34" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez (1,295,680 samples, 0.01%)</title><rect x="490.9" y="145" width="0.1" height="15.0" fill="rgb(246,218,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="493.87" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>spark (1,430,656 samples, 0.01%)</title><rect x="1147.3" y="129" width="0.1" height="15.0" fill="rgb(240,65,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1150.31" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bigdata (12,589,350,353 samples, 100.00%)</title><rect x="10.0" y="273" width="1180.0" height="15.0" fill="rgb(224,24,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bigdata</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,407,860 samples, 0.01%)</title><rect x="1138.8" y="177" width="0.2" height="15.0" fill="rgb(240,122,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="1141.84" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,753,293 samples, 0.01%)</title><rect x="396.1" y="209" width="0.2" height="15.0" fill="rgb(241,220,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="399.12" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (16,954,468 samples, 0.13%)</title><rect x="1120.1" y="177" width="1.6" height="15.0" fill="rgb(214,147,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="1123.14" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>webapp (6,279,012 samples, 0.05%)</title><rect x="1122.7" y="241" width="0.6" height="15.0" fill="rgb(237,205,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="1125.74" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (11,299,870 samples, 0.09%)</title><rect x="804.8" y="97" width="1.0" height="15.0" fill="rgb(251,204,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="807.78" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (5,240,502 samples, 0.04%)</title><rect x="490.6" y="225" width="0.5" height="15.0" fill="rgb(212,168,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="493.60" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>yarn (7,234,672 samples, 0.06%)</title><rect x="798.1" y="97" width="0.6" height="15.0" fill="rgb(248,69,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="801.06" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (9,034,479 samples, 0.07%)</title><rect x="177.5" y="225" width="0.9" height="15.0" fill="rgb(253,104,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="180.51" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>resources (2,864,144 samples, 0.02%)</title><rect x="294.8" y="161" width="0.3" height="15.0" fill="rgb(205,74,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="297.85" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>kafka (1,208,071 samples, 0.01%)</title><rect x="1108.2" y="145" width="0.1" height="15.0" fill="rgb(225,78,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="1111.20" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>client (2,138,979 samples, 0.02%)</title><rect x="1066.4" y="145" width="0.2" height="15.0" fill="rgb(239,122,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="1069.43" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (2,992,596 samples, 0.02%)</title><rect x="798.9" y="177" width="0.2" height="15.0" fill="rgb(248,26,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="801.87" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (16,590,907 samples, 0.13%)</title><rect x="1117.8" y="177" width="1.6" height="15.0" fill="rgb(226,93,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="1120.83" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>metastore (14,005,548 samples, 0.11%)</title><rect x="412.6" y="97" width="1.3" height="15.0" fill="rgb(209,128,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="415.60" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>modules (2,884,698 samples, 0.02%)</title><rect x="177.9" y="177" width="0.2" height="15.0" fill="rgb(230,14,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="180.87" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>repair (1,992,199 samples, 0.02%)</title><rect x="342.8" y="177" width="0.2" height="15.0" fill="rgb(223,162,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="345.76" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>metastore (1,523,241 samples, 0.01%)</title><rect x="415.0" y="129" width="0.2" height="15.0" fill="rgb(206,192,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="418.02" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (8,151,314 samples, 0.06%)</title><rect x="1137.9" y="209" width="0.8" height="15.0" fill="rgb(231,107,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1140.95" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (16,548,856 samples, 0.13%)</title><rect x="279.0" y="97" width="1.6" height="15.0" fill="rgb(214,227,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="282.01" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tar-stream (1,845,311 samples, 0.01%)</title><rect x="553.2" y="97" width="0.2" height="15.0" fill="rgb(216,118,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="556.20" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,152,902 samples, 0.01%)</title><rect x="763.5" y="145" width="0.1" height="15.0" fill="rgb(246,155,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="766.48" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (3,717,115 samples, 0.03%)</title><rect x="379.1" y="177" width="0.4" height="15.0" fill="rgb(243,119,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="382.10" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (13,316,226 samples, 0.11%)</title><rect x="571.9" y="81" width="1.3" height="15.0" fill="rgb(235,179,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="574.95" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>esprima (1,608,930 samples, 0.01%)</title><rect x="238.4" y="81" width="0.1" height="15.0" fill="rgb(246,100,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="241.36" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>book (1,380,124 samples, 0.01%)</title><rect x="964.4" y="225" width="0.1" height="15.0" fill="rgb(226,82,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.40" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>network (4,794,514 samples, 0.04%)</title><rect x="1138.7" y="241" width="0.5" height="15.0" fill="rgb(221,20,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1141.71" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (2,339,025 samples, 0.02%)</title><rect x="397.6" y="225" width="0.2" height="15.0" fill="rgb(209,57,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="400.61" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (2,199,551 samples, 0.02%)</title><rect x="555.4" y="145" width="0.2" height="15.0" fill="rgb(228,25,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="558.40" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,345,032 samples, 0.01%)</title><rect x="1184.1" y="193" width="0.1" height="15.0" fill="rgb(218,20,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="1187.06" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (6,849,964 samples, 0.05%)</title><rect x="489.0" y="161" width="0.7" height="15.0" fill="rgb(218,154,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="492.02" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (4,209,508 samples, 0.03%)</title><rect x="484.9" y="193" width="0.4" height="15.0" fill="rgb(216,96,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="487.91" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (10,849,955 samples, 0.09%)</title><rect x="487.6" y="193" width="1.1" height="15.0" fill="rgb(252,26,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="490.64" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>assets (32,249,217 samples, 0.26%)</title><rect x="216.5" y="209" width="3.0" height="15.0" fill="rgb(242,35,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="219.47" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (2,003,211 samples, 0.02%)</title><rect x="490.8" y="161" width="0.2" height="15.0" fill="rgb(211,39,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="493.80" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hcatalog (1,211,118 samples, 0.01%)</title><rect x="399.7" y="113" width="0.1" height="15.0" fill="rgb(208,25,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="402.72" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (39,546,902 samples, 0.31%)</title><rect x="277.2" y="129" width="3.7" height="15.0" fill="rgb(250,112,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="280.23" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>native (4,717,328 samples, 0.04%)</title><rect x="755.7" y="193" width="0.4" height="15.0" fill="rgb(213,218,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="758.67" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (12,440,430 samples, 0.10%)</title><rect x="806.8" y="97" width="1.1" height="15.0" fill="rgb(236,225,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="809.76" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>class-use (2,469,169 samples, 0.02%)</title><rect x="338.9" y="161" width="0.3" height="15.0" fill="rgb(250,150,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="341.93" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (25,288,133 samples, 0.20%)</title><rect x="185.8" y="193" width="2.4" height="15.0" fill="rgb(230,186,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="188.79" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (2,067,893 samples, 0.02%)</title><rect x="397.2" y="161" width="0.2" height="15.0" fill="rgb(216,101,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="400.24" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HDP (28,870,232 samples, 0.23%)</title><rect x="199.4" y="177" width="2.7" height="15.0" fill="rgb(232,204,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="202.42" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>class-use (1,089,099 samples, 0.01%)</title><rect x="1046.2" y="97" width="0.1" height="15.0" fill="rgb(241,167,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="1049.20" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hfile (1,117,726 samples, 0.01%)</title><rect x="1067.1" y="129" width="0.1" height="15.0" fill="rgb(222,107,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="1070.11" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>coprocessor (1,130,401 samples, 0.01%)</title><rect x="1066.8" y="145" width="0.1" height="15.0" fill="rgb(233,174,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="1069.78" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (2,158,810 samples, 0.02%)</title><rect x="798.9" y="145" width="0.2" height="15.0" fill="rgb(216,64,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="801.95" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (2,350,733 samples, 0.02%)</title><rect x="796.0" y="177" width="0.2" height="15.0" fill="rgb(249,18,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.01" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib (48,896,169 samples, 0.39%)</title><rect x="372.7" y="241" width="4.6" height="15.0" fill="rgb(241,154,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="375.68" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>clean-css-brunch (5,661,957 samples, 0.04%)</title><rect x="228.8" y="209" width="0.6" height="15.0" fill="rgb(213,183,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="231.83" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>client (5,122,700 samples, 0.04%)</title><rect x="1027.9" y="145" width="0.4" height="15.0" fill="rgb(214,206,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1030.86" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>itests (12,884,555 samples, 0.10%)</title><rect x="402.1" y="241" width="1.2" height="15.0" fill="rgb(250,144,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="405.10" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>Hadoop_MP (8,399,060 samples, 0.07%)</title><rect x="293.1" y="193" width="0.8" height="15.0" fill="rgb(217,76,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="296.07" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bower-registry-client (13,193,346 samples, 0.10%)</title><rect x="541.7" y="129" width="1.2" height="15.0" fill="rgb(221,217,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="544.68" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>site (1,763,951 samples, 0.01%)</title><rect x="1122.0" y="209" width="0.1" height="15.0" fill="rgb(242,43,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="1124.95" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-common-project (984,489,323 samples, 7.82%)</title><rect x="666.9" y="241" width="92.3" height="15.0" fill="rgb(231,110,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="669.93" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >hadoop-comm..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (2,460,539 samples, 0.02%)</title><rect x="795.5" y="113" width="0.2" height="15.0" fill="rgb(254,33,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="798.48" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (513,241,664 samples, 4.08%)</title><rect x="529.8" y="177" width="48.1" height="15.0" fill="rgb(207,11,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="532.79" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >node..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hive_metastore (1,230,682 samples, 0.01%)</title><rect x="414.3" y="161" width="0.1" height="15.0" fill="rgb(222,214,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="417.28" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,783,837 samples, 0.01%)</title><rect x="1123.4" y="193" width="0.2" height="15.0" fill="rgb(254,63,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="1126.41" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (765,996,243 samples, 6.08%)</title><rect x="892.6" y="209" width="71.8" height="15.0" fill="rgb(239,186,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="895.61" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (684,201,611 samples, 5.43%)</title><rect x="220.3" y="225" width="64.2" height="15.0" fill="rgb(237,171,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="223.34" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >node_mo..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,383,237 samples, 0.01%)</title><rect x="403.2" y="177" width="0.1" height="15.0" fill="rgb(239,163,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="406.17" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>server (2,964,210 samples, 0.02%)</title><rect x="802.8" y="65" width="0.3" height="15.0" fill="rgb(242,167,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="805.85" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hbase-0.96.1.1-hadoop2 (3,030,440,398 samples, 24.07%)</title><rect x="809.1" y="257" width="284.0" height="15.0" fill="rgb(214,172,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="812.10" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >hbase-0.96.1.1-hadoop2</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,248,384 samples, 0.01%)</title><rect x="763.7" y="161" width="0.1" height="15.0" fill="rgb(217,136,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="766.69" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (90,940,716 samples, 0.72%)</title><rect x="364.1" y="209" width="8.6" height="15.0" fill="rgb(223,171,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="367.13" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>db (28,528,274 samples, 0.23%)</title><rect x="337.6" y="177" width="2.7" height="15.0" fill="rgb(234,206,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="340.60" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (4,450,242 samples, 0.04%)</title><rect x="484.1" y="225" width="0.4" height="15.0" fill="rgb(205,82,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="487.09" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib (2,327,329 samples, 0.02%)</title><rect x="1189.6" y="241" width="0.2" height="15.0" fill="rgb(236,198,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.61" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (12,745,886 samples, 0.10%)</title><rect x="756.8" y="161" width="1.2" height="15.0" fill="rgb(211,30,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="759.80" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hfile (2,427,265 samples, 0.02%)</title><rect x="1083.2" y="129" width="0.3" height="15.0" fill="rgb(237,6,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1086.24" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>common (1,697,401 samples, 0.01%)</title><rect x="474.0" y="225" width="0.2" height="15.0" fill="rgb(230,43,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="477.01" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hdfs (18,246,223 samples, 0.14%)</title><rect x="769.6" y="113" width="1.7" height="15.0" fill="rgb(215,35,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="772.57" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>img (3,911,739 samples, 0.03%)</title><rect x="1134.0" y="225" width="0.3" height="15.0" fill="rgb(236,40,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="1136.95" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (2,786,497 samples, 0.02%)</title><rect x="796.3" y="161" width="0.2" height="15.0" fill="rgb(245,44,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.26" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>vendor (4,462,389 samples, 0.04%)</title><rect x="290.3" y="225" width="0.4" height="15.0" fill="rgb(211,229,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="293.31" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (1,225,385 samples, 0.01%)</title><rect x="1139.6" y="209" width="0.1" height="15.0" fill="rgb(206,51,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="1142.62" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dag (1,566,772 samples, 0.01%)</title><rect x="1166.1" y="145" width="0.2" height="15.0" fill="rgb(206,47,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="1169.10" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>mapreduce (2,976,954 samples, 0.02%)</title><rect x="780.2" y="97" width="0.3" height="15.0" fill="rgb(234,31,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="783.18" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (15,544,362 samples, 0.12%)</title><rect x="804.4" y="129" width="1.4" height="15.0" fill="rgb(229,131,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="807.38" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hive (2,807,076 samples, 0.02%)</title><rect x="433.0" y="113" width="0.3" height="15.0" fill="rgb(233,121,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="436.00" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hive (2,779,270 samples, 0.02%)</title><rect x="414.9" y="145" width="0.3" height="15.0" fill="rgb(247,120,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="417.90" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,631,881 samples, 0.01%)</title><rect x="759.0" y="177" width="0.2" height="15.0" fill="rgb(213,211,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="762.03" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>io (8,123,029 samples, 0.06%)</title><rect x="1029.9" y="145" width="0.8" height="15.0" fill="rgb(221,87,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="1032.93" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>generated (4,700,971 samples, 0.04%)</title><rect x="957.9" y="113" width="0.4" height="15.0" fill="rgb(216,166,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="960.88" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ql (8,668,751 samples, 0.07%)</title><rect x="451.2" y="129" width="0.8" height="15.0" fill="rgb(223,176,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="454.18" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>mapreduce (1,075,411 samples, 0.01%)</title><rect x="784.3" y="97" width="0.1" height="15.0" fill="rgb(224,105,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="787.30" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (1,242,020 samples, 0.01%)</title><rect x="1135.3" y="209" width="0.1" height="15.0" fill="rgb(247,50,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="1138.29" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,608,547 samples, 0.01%)</title><rect x="800.7" y="129" width="0.2" height="15.0" fill="rgb(253,170,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="803.70" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>esprima (1,608,930 samples, 0.01%)</title><rect x="242.2" y="113" width="0.2" height="15.0" fill="rgb(237,110,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="245.25" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>request (6,523,929 samples, 0.05%)</title><rect x="529.0" y="129" width="0.6" height="15.0" fill="rgb(232,142,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="532.03" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (25,155,893 samples, 0.20%)</title><rect x="796.8" y="193" width="2.3" height="15.0" fill="rgb(210,56,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.79" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>grunt-lib-phantomjs (60,853,005 samples, 0.48%)</title><rect x="567.5" y="129" width="5.7" height="15.0" fill="rgb(210,41,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="570.52" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (2,260,853 samples, 0.02%)</title><rect x="790.4" y="193" width="0.2" height="15.0" fill="rgb(228,191,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="793.42" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>es5-ext (1,547,649 samples, 0.01%)</title><rect x="550.7" y="33" width="0.2" height="15.0" fill="rgb(205,27,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="553.75" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (17,281,756 samples, 0.14%)</title><rect x="229.8" y="193" width="1.6" height="15.0" fill="rgb(242,120,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="232.82" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (3,930,141 samples, 0.03%)</title><rect x="1162.9" y="209" width="0.3" height="15.0" fill="rgb(227,42,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="1165.88" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>target (1,332,930 samples, 0.01%)</title><rect x="493.2" y="225" width="0.1" height="15.0" fill="rgb(217,210,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="496.19" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (2,289,608 samples, 0.02%)</title><rect x="564.6" y="81" width="0.3" height="15.0" fill="rgb(254,62,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.64" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>util (2,627,638 samples, 0.02%)</title><rect x="342.2" y="161" width="0.3" height="15.0" fill="rgb(222,216,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="345.21" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (4,718,644 samples, 0.04%)</title><rect x="1184.5" y="193" width="0.5" height="15.0" fill="rgb(253,4,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="1187.55" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (8,978,905 samples, 0.07%)</title><rect x="578.4" y="257" width="0.8" height="15.0" fill="rgb(215,192,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="581.35" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (1,355,074 samples, 0.01%)</title><rect x="1186.0" y="225" width="0.1" height="15.0" fill="rgb(240,118,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="1188.99" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez (1,145,049 samples, 0.01%)</title><rect x="1183.0" y="145" width="0.2" height="15.0" fill="rgb(207,20,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="1186.05" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>codec (5,974,547 samples, 0.05%)</title><rect x="1028.3" y="145" width="0.6" height="15.0" fill="rgb(225,195,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="1031.34" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (4,391,652 samples, 0.03%)</title><rect x="493.4" y="225" width="0.4" height="15.0" fill="rgb(213,45,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="496.38" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>2.0.6 (5,439,937 samples, 0.04%)</title><rect x="201.1" y="161" width="0.5" height="15.0" fill="rgb(237,3,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="204.10" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>yarn (1,821,889 samples, 0.01%)</title><rect x="795.5" y="97" width="0.2" height="15.0" fill="rgb(254,10,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="798.54" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>app (3,003,272 samples, 0.02%)</title><rect x="488.3" y="113" width="0.3" height="15.0" fill="rgb(247,60,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.34" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lodash (1,683,494 samples, 0.01%)</title><rect x="239.0" y="145" width="0.2" height="15.0" fill="rgb(232,210,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="241.99" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (6,520,070 samples, 0.05%)</title><rect x="542.3" y="81" width="0.6" height="15.0" fill="rgb(254,51,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="545.30" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez-0.4.0-incubating (16,789,623 samples, 0.13%)</title><rect x="1179.8" y="209" width="1.5" height="15.0" fill="rgb(214,21,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="1182.76" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hurlant (2,397,920 samples, 0.02%)</title><rect x="277.0" y="49" width="0.2" height="15.0" fill="rgb(221,143,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="280.00" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>gen-javabean (49,019,418 samples, 0.39%)</title><rect x="409.3" y="177" width="4.6" height="15.0" fill="rgb(237,39,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="412.31" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test-documents (2,524,372 samples, 0.02%)</title><rect x="383.5" y="161" width="0.2" height="15.0" fill="rgb(208,220,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="386.49" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib (5,472,953 samples, 0.04%)</title><rect x="631.7" y="177" width="0.5" height="15.0" fill="rgb(205,108,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="634.70" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>api (1,115,755 samples, 0.01%)</title><rect x="194.5" y="113" width="0.1" height="15.0" fill="rgb(247,70,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="197.45" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>express (1,689,363 samples, 0.01%)</title><rect x="231.4" y="209" width="0.2" height="15.0" fill="rgb(219,61,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="234.44" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>utils (8,196,583 samples, 0.07%)</title><rect x="346.8" y="177" width="0.8" height="15.0" fill="rgb(232,179,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="349.80" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>httpfs (143,128,408 samples, 1.14%)</title><rect x="626.6" y="209" width="13.5" height="15.0" fill="rgb(223,160,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="629.64" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez (3,659,912 samples, 0.03%)</title><rect x="490.1" y="145" width="0.3" height="15.0" fill="rgb(222,212,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="493.09" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (2,023,818 samples, 0.02%)</title><rect x="789.0" y="209" width="0.2" height="15.0" fill="rgb(234,191,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.04" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (2,127,146 samples, 0.02%)</title><rect x="800.9" y="161" width="0.2" height="15.0" fill="rgb(226,104,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="803.91" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rest (15,602,576 samples, 0.12%)</title><rect x="1044.9" y="145" width="1.4" height="15.0" fill="rgb(211,226,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1047.87" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>codec (1,503,320 samples, 0.01%)</title><rect x="1066.6" y="145" width="0.2" height="15.0" fill="rgb(210,172,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="1069.63" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>flume-jdbc-channel (1,375,834 samples, 0.01%)</title><rect x="379.6" y="225" width="0.1" height="15.0" fill="rgb(235,77,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="382.61" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (4,376,489 samples, 0.03%)</title><rect x="795.3" y="161" width="0.4" height="15.0" fill="rgb(225,82,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="798.30" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala (3,696,494 samples, 0.03%)</title><rect x="1110.5" y="193" width="0.3" height="15.0" fill="rgb(211,203,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="1113.49" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (4,736,789 samples, 0.04%)</title><rect x="801.8" y="97" width="0.5" height="15.0" fill="rgb(228,90,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="804.85" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>generated-sources (1,199,637 samples, 0.01%)</title><rect x="493.2" y="209" width="0.1" height="15.0" fill="rgb(221,143,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="496.20" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala (2,971,533 samples, 0.02%)</title><rect x="1134.9" y="193" width="0.2" height="15.0" fill="rgb(222,108,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1137.85" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>api (7,002,774 samples, 0.06%)</title><rect x="413.3" y="81" width="0.6" height="15.0" fill="rgb(221,17,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="416.25" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (10,774,937 samples, 0.09%)</title><rect x="1160.1" y="193" width="1.0" height="15.0" fill="rgb(233,34,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="1163.06" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (4,190,580 samples, 0.03%)</title><rect x="755.2" y="129" width="0.4" height="15.0" fill="rgb(250,4,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="758.21" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>insight (48,109,947 samples, 0.38%)</title><rect x="547.7" y="129" width="4.5" height="15.0" fill="rgb(240,59,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="550.65" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>webapp (640,805,702 samples, 5.09%)</title><rect x="517.8" y="193" width="60.1" height="15.0" fill="rgb(217,214,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="520.83" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >webapp</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>client (4,144,437 samples, 0.03%)</title><rect x="940.1" y="145" width="0.4" height="15.0" fill="rgb(238,77,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="943.10" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (4,283,028 samples, 0.03%)</title><rect x="790.8" y="209" width="0.4" height="15.0" fill="rgb(205,117,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="793.85" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,630,300 samples, 0.01%)</title><rect x="763.2" y="161" width="0.2" height="15.0" fill="rgb(213,14,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="766.25" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>cli-color (4,097,471 samples, 0.03%)</title><rect x="550.6" y="65" width="0.4" height="15.0" fill="rgb(206,180,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="553.58" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (2,023,457 samples, 0.02%)</title><rect x="474.5" y="193" width="0.2" height="15.0" fill="rgb(210,17,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="477.51" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>shuffle (1,320,030 samples, 0.01%)</title><rect x="1139.0" y="225" width="0.2" height="15.0" fill="rgb(250,73,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="1142.03" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core (59,265,588 samples, 0.47%)</title><rect x="1127.6" y="241" width="5.6" height="15.0" fill="rgb(225,170,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="1130.63" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (3,388,550 samples, 0.03%)</title><rect x="399.5" y="177" width="0.3" height="15.0" fill="rgb(226,70,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="402.52" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bin (4,889,088 samples, 0.04%)</title><rect x="577.9" y="257" width="0.5" height="15.0" fill="rgb(214,204,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="580.89" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>docs (10,116,475 samples, 0.08%)</title><rect x="1133.4" y="241" width="1.0" height="15.0" fill="rgb(224,97,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="1136.41" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>yarn (3,842,891 samples, 0.03%)</title><rect x="801.9" y="81" width="0.4" height="15.0" fill="rgb(242,116,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="804.93" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (5,004,540 samples, 0.04%)</title><rect x="1165.4" y="177" width="0.5" height="15.0" fill="rgb(214,225,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.44" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>mapreduce (1,884,886 samples, 0.01%)</title><rect x="1030.9" y="145" width="0.2" height="15.0" fill="rgb(205,225,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="1033.87" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (2,802,656 samples, 0.02%)</title><rect x="485.0" y="161" width="0.3" height="15.0" fill="rgb(219,175,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="488.04" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bin-hadoop2.2.0-x64 (2,526,419 samples, 0.02%)</title><rect x="808.3" y="241" width="0.2" height="15.0" fill="rgb(237,200,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="811.26" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>js-yaml (2,029,321 samples, 0.02%)</title><rect x="574.6" y="97" width="0.2" height="15.0" fill="rgb(228,82,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="577.59" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (25,093,386 samples, 0.20%)</title><rect x="1119.4" y="209" width="2.4" height="15.0" fill="rgb(223,80,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="1122.40" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (6,524,682 samples, 0.05%)</title><rect x="1150.2" y="129" width="0.6" height="15.0" fill="rgb(218,82,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="1153.17" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>marshal (2,606,970 samples, 0.02%)</title><rect x="339.6" y="161" width="0.2" height="15.0" fill="rgb(210,44,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="342.57" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (2,733,054 samples, 0.02%)</title><rect x="800.9" y="177" width="0.2" height="15.0" fill="rgb(206,40,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="803.88" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (1,789,443 samples, 0.01%)</title><rect x="403.1" y="209" width="0.2" height="15.0" fill="rgb(219,180,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="406.14" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (3,198,150 samples, 0.03%)</title><rect x="402.8" y="145" width="0.3" height="15.0" fill="rgb(221,129,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="405.80" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>jdiff (22,909,083 samples, 0.18%)</title><rect x="620.4" y="193" width="2.1" height="15.0" fill="rgb(240,196,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="623.37" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (5,013,411 samples, 0.04%)</title><rect x="791.6" y="193" width="0.5" height="15.0" fill="rgb(211,207,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.65" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>pig-web (1,213,827 samples, 0.01%)</title><rect x="295.4" y="129" width="0.1" height="15.0" fill="rgb(205,61,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="298.41" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>e2e (3,943,007 samples, 0.03%)</title><rect x="400.8" y="193" width="0.4" height="15.0" fill="rgb(222,31,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="403.79" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (3,611,887 samples, 0.03%)</title><rect x="1151.5" y="177" width="0.3" height="15.0" fill="rgb(218,15,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1154.46" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>target (127,565,286 samples, 1.01%)</title><rect x="1169.4" y="225" width="11.9" height="15.0" fill="rgb(220,184,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="1172.37" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,771,932 samples, 0.01%)</title><rect x="396.3" y="193" width="0.2" height="15.0" fill="rgb(244,192,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="399.33" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (524,229,556 samples, 4.16%)</title><rect x="1003.3" y="177" width="49.1" height="15.0" fill="rgb(251,178,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="1006.29" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >hadoop</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (1,078,888 samples, 0.01%)</title><rect x="382.2" y="209" width="0.1" height="15.0" fill="rgb(228,138,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="385.16" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>2.1 (3,773,490 samples, 0.03%)</title><rect x="201.8" y="161" width="0.3" height="15.0" fill="rgb(242,42,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="204.77" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (2,968,999 samples, 0.02%)</title><rect x="490.7" y="193" width="0.3" height="15.0" fill="rgb(210,208,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="493.71" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (3,099,189 samples, 0.02%)</title><rect x="795.4" y="129" width="0.3" height="15.0" fill="rgb(232,23,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="798.42" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>classes (2,551,758 samples, 0.02%)</title><rect x="1182.5" y="209" width="0.3" height="15.0" fill="rgb(213,50,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="1185.55" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez (4,771,162 samples, 0.04%)</title><rect x="492.4" y="145" width="0.4" height="15.0" fill="rgb(207,98,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.37" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>http-signature (1,273,677 samples, 0.01%)</title><rect x="267.7" y="113" width="0.1" height="15.0" fill="rgb(225,195,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="270.71" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>nodetool (1,952,559 samples, 0.02%)</title><rect x="346.3" y="161" width="0.1" height="15.0" fill="rgb(249,203,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="349.26" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>services (4,259,240 samples, 0.03%)</title><rect x="217.8" y="177" width="0.4" height="15.0" fill="rgb(219,74,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="220.82" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>vendor (4,957,779 samples, 0.04%)</title><rect x="283.5" y="129" width="0.4" height="15.0" fill="rgb(219,90,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.48" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (10,279,684 samples, 0.08%)</title><rect x="1137.0" y="177" width="0.9" height="15.0" fill="rgb(252,128,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="1139.98" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (7,976,448 samples, 0.06%)</title><rect x="1181.7" y="209" width="0.8" height="15.0" fill="rgb(235,45,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="1184.73" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>serialization (1,195,799 samples, 0.01%)</title><rect x="371.3" y="161" width="0.1" height="15.0" fill="rgb(237,224,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="374.32" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (3,186,632 samples, 0.03%)</title><rect x="550.7" y="49" width="0.3" height="15.0" fill="rgb(223,27,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="553.67" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (31,582,121 samples, 0.25%)</title><rect x="768.3" y="145" width="3.0" height="15.0" fill="rgb(222,22,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="771.32" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez (5,609,646 samples, 0.04%)</title><rect x="489.1" y="145" width="0.6" height="15.0" fill="rgb(245,205,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="492.13" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>fs (1,615,140 samples, 0.01%)</title><rect x="732.2" y="113" width="0.2" height="15.0" fill="rgb(229,88,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="735.23" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>spark (7,848,928 samples, 0.06%)</title><rect x="1131.2" y="145" width="0.7" height="15.0" fill="rgb(232,62,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="1134.20" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apidocs (116,557,153 samples, 0.93%)</title><rect x="361.7" y="225" width="11.0" height="15.0" fill="rgb(212,2,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="364.73" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>udf (2,548,956 samples, 0.02%)</title><rect x="442.7" y="113" width="0.2" height="15.0" fill="rgb(253,94,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="445.69" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (19,166,118 samples, 0.15%)</title><rect x="752.9" y="145" width="1.8" height="15.0" fill="rgb(229,8,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="755.86" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>app (2,963,000 samples, 0.02%)</title><rect x="489.4" y="113" width="0.2" height="15.0" fill="rgb(237,150,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="492.37" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>kafka (1,242,020 samples, 0.01%)</title><rect x="1135.3" y="225" width="0.1" height="15.0" fill="rgb(247,142,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="1138.29" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>app (1,666,953 samples, 0.01%)</title><rect x="295.0" y="129" width="0.1" height="15.0" fill="rgb(232,156,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="297.96" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (4,396,124 samples, 0.03%)</title><rect x="543.0" y="113" width="0.4" height="15.0" fill="rgb(208,203,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="546.01" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>jshint (3,264,874 samples, 0.03%)</title><rect x="555.9" y="129" width="0.3" height="15.0" fill="rgb(214,210,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="558.88" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (434,672,853 samples, 3.45%)</title><rect x="706.4" y="209" width="40.7" height="15.0" fill="rgb(229,182,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="709.37" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >src</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>redeyed (3,462,060 samples, 0.03%)</title><rect x="543.1" y="97" width="0.3" height="15.0" fill="rgb(206,89,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="546.10" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>PresentationMp (1,679,542 samples, 0.01%)</title><rect x="293.7" y="177" width="0.1" height="15.0" fill="rgb(213,217,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="296.66" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (4,536,198 samples, 0.04%)</title><rect x="228.9" y="193" width="0.5" height="15.0" fill="rgb(252,12,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="231.93" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>controller (2,534,771 samples, 0.02%)</title><rect x="194.6" y="113" width="0.2" height="15.0" fill="rgb(250,127,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="197.56" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dag (2,744,934 samples, 0.02%)</title><rect x="490.2" y="129" width="0.2" height="15.0" fill="rgb(230,94,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="493.17" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>spark (1,700,709 samples, 0.01%)</title><rect x="1150.9" y="129" width="0.2" height="15.0" fill="rgb(216,4,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1153.91" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>stacks (10,242,673 samples, 0.08%)</title><rect x="196.0" y="177" width="1.0" height="15.0" fill="rgb(250,54,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="198.99" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (6,352,899 samples, 0.05%)</title><rect x="779.9" y="161" width="0.6" height="15.0" fill="rgb(243,139,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="782.86" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>workflowgenerator (2,696,074 samples, 0.02%)</title><rect x="1123.3" y="241" width="0.3" height="15.0" fill="rgb(218,195,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1126.33" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>recovery (1,829,956 samples, 0.01%)</title><rect x="490.3" y="113" width="0.1" height="15.0" fill="rgb(214,145,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="493.26" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (2,050,077 samples, 0.02%)</title><rect x="380.4" y="161" width="0.1" height="15.0" fill="rgb(213,37,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="383.36" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>grunt-neuter (2,285,342 samples, 0.02%)</title><rect x="573.6" y="161" width="0.3" height="15.0" fill="rgb(221,222,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="576.65" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (12,214,202 samples, 0.10%)</title><rect x="1164.1" y="177" width="1.2" height="15.0" fill="rgb(252,204,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="1167.14" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ptest2 (3,815,217 samples, 0.03%)</title><rect x="474.4" y="225" width="0.4" height="15.0" fill="rgb(229,195,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="477.43" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dag (5,179,134 samples, 0.04%)</title><rect x="1159.4" y="145" width="0.5" height="15.0" fill="rgb(229,8,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="1162.38" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (5,774,451 samples, 0.05%)</title><rect x="802.6" y="113" width="0.5" height="15.0" fill="rgb(250,38,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="805.58" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib (7,970,087 samples, 0.06%)</title><rect x="276.5" y="129" width="0.7" height="15.0" fill="rgb(213,172,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="279.48" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (2,554,723 samples, 0.02%)</title><rect x="492.9" y="161" width="0.3" height="15.0" fill="rgb(236,181,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.95" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (25,517,560 samples, 0.20%)</title><rect x="1136.3" y="225" width="2.4" height="15.0" fill="rgb(207,194,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1139.32" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (1,431,552 samples, 0.01%)</title><rect x="219.6" y="193" width="0.1" height="15.0" fill="rgb(224,121,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="222.59" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>oozie (9,279,466 samples, 0.07%)</title><rect x="1120.9" y="145" width="0.8" height="15.0" fill="rgb(247,70,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="1123.86" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,281,973 samples, 0.01%)</title><rect x="401.4" y="145" width="0.2" height="15.0" fill="rgb(244,141,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="404.44" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>2.0.7 (1,431,933 samples, 0.01%)</title><rect x="203.5" y="161" width="0.1" height="15.0" fill="rgb(221,205,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="206.47" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>examples (1,413,133 samples, 0.01%)</title><rect x="203.8" y="225" width="0.1" height="15.0" fill="rgb(234,35,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="206.78" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>thrift (18,764,974 samples, 0.15%)</title><rect x="961.5" y="145" width="1.8" height="15.0" fill="rgb(238,97,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="964.50" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tmpl (1,922,810 samples, 0.02%)</title><rect x="963.3" y="145" width="0.1" height="15.0" fill="rgb(237,72,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="966.25" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>xref (36,106,512 samples, 0.29%)</title><rect x="1052.5" y="225" width="3.4" height="15.0" fill="rgb(247,125,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="1055.51" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>flume-ng-morphline-solr-sink (15,226,663 samples, 0.12%)</title><rect x="382.3" y="225" width="1.4" height="15.0" fill="rgb(233,75,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="385.30" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ambari-common (9,612,499 samples, 0.08%)</title><rect x="178.5" y="241" width="0.9" height="15.0" fill="rgb(216,65,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="181.50" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache-cassandra-3.0.1 (595,850,429 samples, 4.73%)</title><rect x="295.6" y="257" width="55.8" height="15.0" fill="rgb(254,174,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="298.59" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >apach..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>console (2,801,373 samples, 0.02%)</title><rect x="1123.1" y="177" width="0.2" height="15.0" fill="rgb(208,120,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="1126.07" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>docs (5,592,446 samples, 0.04%)</title><rect x="484.0" y="241" width="0.5" height="15.0" fill="rgb(219,149,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="486.98" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bkjournal (1,260,150 samples, 0.01%)</title><rect x="765.9" y="177" width="0.2" height="15.0" fill="rgb(209,140,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="768.94" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dev-support (45,838,525 samples, 0.36%)</title><rect x="702.1" y="209" width="4.3" height="15.0" fill="rgb(229,93,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="705.07" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>resources (6,079,225 samples, 0.05%)</title><rect x="383.2" y="177" width="0.5" height="15.0" fill="rgb(226,145,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="386.15" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>zookeeper (1,985,556 samples, 0.02%)</title><rect x="964.2" y="145" width="0.1" height="15.0" fill="rgb(223,196,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.16" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ambari-web (925,948,889 samples, 7.36%)</title><rect x="203.9" y="241" width="86.8" height="15.0" fill="rgb(211,34,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="206.94" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ambari-web</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>grunt-contrib-connect (2,658,451 samples, 0.02%)</title><rect x="555.4" y="161" width="0.2" height="15.0" fill="rgb(253,92,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="558.35" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>classes (41,012,960 samples, 0.33%)</title><rect x="750.8" y="193" width="3.9" height="15.0" fill="rgb(220,132,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="753.81" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez-mapreduce (1,675,649 samples, 0.01%)</title><rect x="1181.3" y="241" width="0.2" height="15.0" fill="rgb(241,86,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="1184.33" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title> (12,589,350,353 samples, 100.00%)</title><rect x="10.0" y="305" width="1180.0" height="15.0" fill="rgb(216,23,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x64 (7,926,746 samples, 0.06%)</title><rect x="744.3" y="161" width="0.7" height="15.0" fill="rgb(231,110,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="747.26" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>parse (1,797,694 samples, 0.01%)</title><rect x="442.3" y="113" width="0.2" height="15.0" fill="rgb(211,57,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="445.31" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>recipes (1,818,725 samples, 0.01%)</title><rect x="1189.8" y="241" width="0.2" height="15.0" fill="rgb(234,156,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.83" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>generated-sources (12,260,749 samples, 0.10%)</title><rect x="1159.9" y="209" width="1.2" height="15.0" fill="rgb(248,54,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1162.92" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib (116,413,257 samples, 0.92%)</title><rect x="256.1" y="161" width="10.9" height="15.0" fill="rgb(209,30,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="259.06" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (2,143,949 samples, 0.02%)</title><rect x="1123.4" y="209" width="0.2" height="15.0" fill="rgb(232,215,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="1126.38" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (73,959,428 samples, 0.59%)</title><rect x="436.0" y="177" width="6.9" height="15.0" fill="rgb(215,127,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.00" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>thrift (2,964,079 samples, 0.02%)</title><rect x="468.7" y="193" width="0.3" height="15.0" fill="rgb(228,169,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="471.69" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (9,384,231 samples, 0.07%)</title><rect x="487.8" y="177" width="0.9" height="15.0" fill="rgb(216,138,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="490.78" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (2,713,966 samples, 0.02%)</title><rect x="380.3" y="177" width="0.2" height="15.0" fill="rgb(237,194,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="383.29" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>docs (1,984,237 samples, 0.02%)</title><rect x="729.9" y="177" width="0.2" height="15.0" fill="rgb(220,212,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="732.88" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (11,156,374 samples, 0.09%)</title><rect x="469.1" y="193" width="1.1" height="15.0" fill="rgb(229,124,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="472.14" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schema (1,725,716 samples, 0.01%)</title><rect x="343.0" y="177" width="0.1" height="15.0" fill="rgb(231,222,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="345.96" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>zeparser (8,274,428 samples, 0.07%)</title><rect x="279.8" y="81" width="0.8" height="15.0" fill="rgb(247,34,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="282.78" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (1,567,482 samples, 0.01%)</title><rect x="485.3" y="209" width="0.2" height="15.0" fill="rgb(215,194,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="488.31" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>thrift (2,417,998 samples, 0.02%)</title><rect x="433.3" y="193" width="0.2" height="15.0" fill="rgb(226,193,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="436.26" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>flume-ng-hbase-sink (1,236,022 samples, 0.01%)</title><rect x="382.1" y="225" width="0.2" height="15.0" fill="rgb(217,4,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="385.15" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (2,428,111 samples, 0.02%)</title><rect x="1152.3" y="225" width="0.2" height="15.0" fill="rgb(231,180,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1155.28" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (9,480,709 samples, 0.08%)</title><rect x="485.9" y="177" width="0.9" height="15.0" fill="rgb(228,165,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="488.88" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>1.3.2 (3,053,217 samples, 0.02%)</title><rect x="200.3" y="161" width="0.2" height="15.0" fill="rgb(223,70,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="203.25" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (6,835,302 samples, 0.05%)</title><rect x="379.0" y="209" width="0.6" height="15.0" fill="rgb(224,103,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="381.97" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (21,776,929 samples, 0.17%)</title><rect x="745.1" y="193" width="2.0" height="15.0" fill="rgb(235,117,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="748.07" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>classes (3,496,829 samples, 0.03%)</title><rect x="1183.3" y="209" width="0.3" height="15.0" fill="rgb(242,203,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1186.32" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,698,560 samples, 0.01%)</title><rect x="1115.4" y="177" width="0.1" height="15.0" fill="rgb(238,149,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="1118.38" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (2,899,939 samples, 0.02%)</title><rect x="1151.5" y="161" width="0.3" height="15.0" fill="rgb(236,209,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="1154.53" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>scripts (4,803,226 samples, 0.04%)</title><rect x="405.0" y="225" width="0.4" height="15.0" fill="rgb(205,10,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="407.99" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez (11,078,135 samples, 0.09%)</title><rect x="467.1" y="161" width="1.0" height="15.0" fill="rgb(243,28,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="470.09" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>connect (21,915,071 samples, 0.17%)</title><rect x="270.1" y="177" width="2.1" height="15.0" fill="rgb(241,9,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="273.11" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (13,906,690 samples, 0.11%)</title><rect x="491.9" y="225" width="1.3" height="15.0" fill="rgb(225,26,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="494.89" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>thrift (15,059,292 samples, 0.12%)</title><rect x="958.7" y="145" width="1.4" height="15.0" fill="rgb(211,158,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="961.71" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>gzip-size (1,883,090 samples, 0.01%)</title><rect x="563.4" y="97" width="0.2" height="15.0" fill="rgb(220,92,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="566.44" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (51,342,896 samples, 0.41%)</title><rect x="192.1" y="209" width="4.9" height="15.0" fill="rgb(252,202,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="195.14" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>index (2,356,166 samples, 0.02%)</title><rect x="340.9" y="177" width="0.2" height="15.0" fill="rgb(229,161,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="343.87" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>http-proxy (2,189,466 samples, 0.02%)</title><rect x="272.2" y="177" width="0.2" height="15.0" fill="rgb(249,201,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="275.22" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>class-use (1,640,674 samples, 0.01%)</title><rect x="336.9" y="161" width="0.2" height="15.0" fill="rgb(221,172,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="339.90" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-yarn-site (1,754,433 samples, 0.01%)</title><rect x="808.1" y="209" width="0.2" height="15.0" fill="rgb(254,69,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="811.09" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (3,729,873 samples, 0.03%)</title><rect x="294.8" y="177" width="0.3" height="15.0" fill="rgb(227,192,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="297.77" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>app (1,701,773 samples, 0.01%)</title><rect x="779.6" y="65" width="0.2" height="15.0" fill="rgb(249,222,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="782.63" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (6,547,357 samples, 0.05%)</title><rect x="414.6" y="193" width="0.6" height="15.0" fill="rgb(238,135,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="417.55" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-aws (2,313,736 samples, 0.02%)</title><rect x="789.0" y="225" width="0.2" height="15.0" fill="rgb(251,164,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.01" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>external (3,523,747 samples, 0.03%)</title><rect x="1135.1" y="241" width="0.4" height="15.0" fill="rgb(253,216,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="1138.13" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (3,239,315 samples, 0.03%)</title><rect x="290.0" y="225" width="0.3" height="15.0" fill="rgb(231,13,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="293.01" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-mapreduce-client-hs (7,018,100 samples, 0.06%)</title><rect x="784.1" y="209" width="0.6" height="15.0" fill="rgb(226,79,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="787.07" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (4,868,182 samples, 0.04%)</title><rect x="1138.3" y="177" width="0.4" height="15.0" fill="rgb(235,185,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="1141.26" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>uglify-js (2,206,939 samples, 0.02%)</title><rect x="544.8" y="97" width="0.2" height="15.0" fill="rgb(253,5,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="547.84" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>jdiff (1,986,337 samples, 0.02%)</title><rect x="764.1" y="193" width="0.2" height="15.0" fill="rgb(209,23,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="767.07" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dev-support (3,994,830 samples, 0.03%)</title><rect x="763.9" y="209" width="0.4" height="15.0" fill="rgb(247,125,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="766.89" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ha (1,085,282 samples, 0.01%)</title><rect x="753.7" y="129" width="0.1" height="15.0" fill="rgb(236,105,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="756.75" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>exceptions (2,014,613 samples, 0.02%)</title><rect x="340.5" y="177" width="0.2" height="15.0" fill="rgb(211,34,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="343.49" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,617,231 samples, 0.01%)</title><rect x="433.3" y="161" width="0.2" height="15.0" fill="rgb(240,33,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="436.33" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>regionserver (7,886,881 samples, 0.06%)</title><rect x="1084.3" y="145" width="0.8" height="15.0" fill="rgb(212,4,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="1087.34" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez-ui (897,151,779 samples, 7.13%)</title><rect x="493.8" y="241" width="84.1" height="15.0" fill="rgb(211,156,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="496.80" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >tez-ui</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,221,657 samples, 0.01%)</title><rect x="397.7" y="193" width="0.1" height="15.0" fill="rgb(247,24,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="400.67" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (3,906,125 samples, 0.03%)</title><rect x="1138.3" y="161" width="0.4" height="15.0" fill="rgb(245,29,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="1141.35" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>transport (3,465,556 samples, 0.03%)</title><rect x="346.5" y="177" width="0.3" height="15.0" fill="rgb(247,227,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="349.46" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib (1,423,954 samples, 0.01%)</title><rect x="783.5" y="81" width="0.1" height="15.0" fill="rgb(243,123,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="786.46" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (13,351,076 samples, 0.11%)</title><rect x="1131.9" y="209" width="1.3" height="15.0" fill="rgb(233,218,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="1134.93" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>master (5,447,080 samples, 0.04%)</title><rect x="1083.7" y="145" width="0.5" height="15.0" fill="rgb(230,154,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1086.70" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (2,680,910 samples, 0.02%)</title><rect x="1142.6" y="145" width="0.3" height="15.0" fill="rgb(207,101,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="1145.63" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (2,980,975 samples, 0.02%)</title><rect x="397.2" y="177" width="0.3" height="15.0" fill="rgb(244,117,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="400.18" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (61,040,020 samples, 0.48%)</title><rect x="437.2" y="161" width="5.7" height="15.0" fill="rgb(221,90,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="440.21" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (811,706,722 samples, 6.45%)</title><rect x="501.8" y="225" width="76.1" height="15.0" fill="rgb(243,67,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="504.81" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >src</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ipc (1,289,094 samples, 0.01%)</title><rect x="755.4" y="113" width="0.1" height="15.0" fill="rgb(228,69,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="758.40" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (12,017,221 samples, 0.10%)</title><rect x="472.3" y="161" width="1.1" height="15.0" fill="rgb(212,39,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="475.29" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-mapreduce-client-core (31,570,625 samples, 0.25%)</title><rect x="781.0" y="209" width="3.0" height="15.0" fill="rgb(233,63,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="784.02" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (9,865,011 samples, 0.08%)</title><rect x="267.0" y="161" width="0.9" height="15.0" fill="rgb(254,44,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="269.97" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>runtime (5,418,406 samples, 0.04%)</title><rect x="1108.7" y="225" width="0.5" height="15.0" fill="rgb(210,131,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1111.66" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bin (38,641,084 samples, 0.31%)</title><rect x="263.3" y="129" width="3.7" height="15.0" fill="rgb(206,81,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="266.34" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-2.6.3-src (1,749,831,631 samples, 13.90%)</title><rect x="644.2" y="257" width="164.1" height="15.0" fill="rgb(237,8,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="647.25" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >hadoop-2.6.3-src</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hfile (3,304,088 samples, 0.03%)</title><rect x="1030.4" y="129" width="0.3" height="15.0" fill="rgb(245,117,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="1033.38" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (726,277,412 samples, 5.77%)</title><rect x="509.8" y="209" width="68.1" height="15.0" fill="rgb(209,228,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="512.82" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >main</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>encodings (1,147,380 samples, 0.01%)</title><rect x="576.8" y="113" width="0.1" height="15.0" fill="rgb(222,154,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="579.77" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (1,833,136 samples, 0.01%)</title><rect x="220.2" y="193" width="0.1" height="15.0" fill="rgb(236,153,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="223.15" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>terasort (1,321,477 samples, 0.01%)</title><rect x="787.6" y="97" width="0.1" height="15.0" fill="rgb(242,82,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="790.59" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (2,556,574 samples, 0.02%)</title><rect x="800.4" y="129" width="0.3" height="15.0" fill="rgb(237,170,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="803.41" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>fs (1,328,716 samples, 0.01%)</title><rect x="757.5" y="129" width="0.1" height="15.0" fill="rgb(221,45,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="760.51" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (8,303,278 samples, 0.07%)</title><rect x="1137.2" y="161" width="0.7" height="15.0" fill="rgb(234,152,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1140.17" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>grunt (27,821,521 samples, 0.22%)</title><rect x="574.9" y="161" width="2.6" height="15.0" fill="rgb(228,127,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="577.89" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (129,451,894 samples, 1.03%)</title><rect x="764.3" y="209" width="12.1" height="15.0" fill="rgb(226,55,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="767.26" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>request (5,922,689 samples, 0.05%)</title><rect x="572.6" y="65" width="0.6" height="15.0" fill="rgb(209,132,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="575.64" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-tools (44,798,449 samples, 0.36%)</title><rect x="788.4" y="241" width="4.2" height="15.0" fill="rgb(229,62,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="791.44" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (1,075,096 samples, 0.01%)</title><rect x="381.2" y="209" width="0.1" height="15.0" fill="rgb(251,36,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="384.21" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>scheduler (1,642,169 samples, 0.01%)</title><rect x="807.7" y="33" width="0.2" height="15.0" fill="rgb(233,184,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="810.73" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,290,965 samples, 0.01%)</title><rect x="379.5" y="177" width="0.1" height="15.0" fill="rgb(230,86,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="382.48" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>streaming (1,476,043 samples, 0.01%)</title><rect x="1151.7" y="129" width="0.1" height="15.0" fill="rgb(251,21,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="1154.66" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>grunt-contrib-uglify (5,364,789 samples, 0.04%)</title><rect x="563.6" y="161" width="0.5" height="15.0" fill="rgb(243,70,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="566.61" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (2,322,666 samples, 0.02%)</title><rect x="1157.9" y="193" width="0.3" height="15.0" fill="rgb(250,206,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="1160.94" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (6,956,167 samples, 0.06%)</title><rect x="1181.8" y="193" width="0.7" height="15.0" fill="rgb(219,189,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="1184.82" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ql (35,201,204 samples, 0.28%)</title><rect x="439.6" y="129" width="3.3" height="15.0" fill="rgb(235,123,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="442.63" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>form-data (1,298,970 samples, 0.01%)</title><rect x="542.5" y="65" width="0.1" height="15.0" fill="rgb(206,170,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="545.53" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>spark (2,187,991 samples, 0.02%)</title><rect x="1151.6" y="145" width="0.2" height="15.0" fill="rgb(233,13,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="1154.60" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez-0.4.0-incubating (9,732,341 samples, 0.08%)</title><rect x="1172.5" y="209" width="0.9" height="15.0" fill="rgb(254,30,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="1175.49" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (7,647,945 samples, 0.06%)</title><rect x="802.4" y="145" width="0.7" height="15.0" fill="rgb(229,133,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="805.41" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hdp (2,354,261 samples, 0.02%)</title><rect x="219.2" y="145" width="0.2" height="15.0" fill="rgb(216,62,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="222.22" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>management-pack (10,650,300 samples, 0.08%)</title><rect x="292.9" y="209" width="1.0" height="15.0" fill="rgb(225,132,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="295.86" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>spark (3,520,301 samples, 0.03%)</title><rect x="1129.9" y="145" width="0.4" height="15.0" fill="rgb(205,196,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="1132.92" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (1,201,841 samples, 0.01%)</title><rect x="178.4" y="225" width="0.1" height="15.0" fill="rgb(214,111,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="181.39" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>generated (8,253,572 samples, 0.07%)</title><rect x="960.7" y="129" width="0.8" height="15.0" fill="rgb(208,12,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="963.72" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,470,655 samples, 0.01%)</title><rect x="396.4" y="177" width="0.1" height="15.0" fill="rgb(243,66,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="399.35" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>mapreduce (1,776,927 samples, 0.01%)</title><rect x="786.5" y="97" width="0.2" height="15.0" fill="rgb(228,3,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="789.54" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>prefixtree (4,055,455 samples, 0.03%)</title><rect x="1028.5" y="129" width="0.4" height="15.0" fill="rgb(218,1,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="1031.52" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (6,941,326 samples, 0.06%)</title><rect x="779.1" y="161" width="0.7" height="15.0" fill="rgb(225,90,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="782.13" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hbase-webapps (1,702,244 samples, 0.01%)</title><rect x="1099.6" y="241" width="0.2" height="15.0" fill="rgb(217,198,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="1102.60" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>generated (18,636,713 samples, 0.15%)</title><rect x="1049.5" y="129" width="1.7" height="15.0" fill="rgb(224,226,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="1052.49" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,375,388 samples, 0.01%)</title><rect x="1129.5" y="177" width="0.1" height="15.0" fill="rgb(233,205,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="1132.46" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bin - x64 (2,526,419 samples, 0.02%)</title><rect x="593.9" y="241" width="0.2" height="15.0" fill="rgb(243,170,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="596.90" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>data (3,954,883 samples, 0.03%)</title><rect x="1149.1" y="161" width="0.3" height="15.0" fill="rgb(221,178,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="1152.07" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (9,041,272 samples, 0.07%)</title><rect x="808.3" y="257" width="0.8" height="15.0" fill="rgb(235,199,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="811.26" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (2,298,902 samples, 0.02%)</title><rect x="789.9" y="177" width="0.3" height="15.0" fill="rgb(232,164,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.94" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (10,169,194 samples, 0.08%)</title><rect x="283.0" y="193" width="0.9" height="15.0" fill="rgb(208,51,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.99" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (1,551,444 samples, 0.01%)</title><rect x="563.5" y="81" width="0.1" height="15.0" fill="rgb(229,138,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="566.47" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>flume (2,008,735 samples, 0.02%)</title><rect x="379.3" y="129" width="0.2" height="15.0" fill="rgb(215,125,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="382.26" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (4,042,074 samples, 0.03%)</title><rect x="380.2" y="209" width="0.3" height="15.0" fill="rgb(225,195,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="383.17" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (20,228,178 samples, 0.16%)</title><rect x="450.1" y="193" width="1.9" height="15.0" fill="rgb(248,127,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="453.10" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (2,416,798 samples, 0.02%)</title><rect x="1123.4" y="225" width="0.2" height="15.0" fill="rgb(243,145,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="1126.36" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ambari-winpkg (1,353,558 samples, 0.01%)</title><rect x="294.3" y="161" width="0.2" height="15.0" fill="rgb(206,41,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="297.34" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>findup-sync (4,774,350 samples, 0.04%)</title><rect x="575.6" y="129" width="0.5" height="15.0" fill="rgb(228,201,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="578.61" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>results (165,481,229 samples, 1.31%)</title><rect x="452.6" y="193" width="15.5" height="15.0" fill="rgb(219,56,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="455.61" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (4,844,930 samples, 0.04%)</title><rect x="1108.7" y="209" width="0.5" height="15.0" fill="rgb(251,87,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1111.71" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (2,587,953 samples, 0.02%)</title><rect x="736.6" y="161" width="0.2" height="15.0" fill="rgb(253,27,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="739.55" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>spark (2,944,068 samples, 0.02%)</title><rect x="1138.4" y="145" width="0.3" height="15.0" fill="rgb(222,190,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="1141.44" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>classes (42,327,371 samples, 0.34%)</title><rect x="198.2" y="209" width="3.9" height="15.0" fill="rgb(238,152,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="201.17" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (1,740,793 samples, 0.01%)</title><rect x="401.4" y="177" width="0.2" height="15.0" fill="rgb(218,216,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="404.40" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>underscore.string (1,787,169 samples, 0.01%)</title><rect x="242.1" y="81" width="0.1" height="15.0" fill="rgb(246,7,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="245.08" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>generated-sources (6,672,720 samples, 0.05%)</title><rect x="1165.3" y="209" width="0.6" height="15.0" fill="rgb(254,142,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.29" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>cassandra (202,206,793 samples, 1.61%)</title><rect x="328.6" y="193" width="19.0" height="15.0" fill="rgb(253,214,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="331.61" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala (5,830,239 samples, 0.05%)</title><rect x="1138.2" y="193" width="0.5" height="15.0" fill="rgb(222,192,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="1141.17" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tools (7,245,854 samples, 0.06%)</title><rect x="377.3" y="241" width="0.6" height="15.0" fill="rgb(207,169,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="380.26" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (1,262,213 samples, 0.01%)</title><rect x="796.1" y="113" width="0.1" height="15.0" fill="rgb(211,151,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.11" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,635,398 samples, 0.01%)</title><rect x="1129.4" y="193" width="0.2" height="15.0" fill="rgb(212,223,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="1132.44" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>scheduler (1,387,001 samples, 0.01%)</title><rect x="805.7" y="33" width="0.1" height="15.0" fill="rgb(220,75,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="808.67" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>class-use (5,823,794 samples, 0.05%)</title><rect x="345.5" y="161" width="0.5" height="15.0" fill="rgb(232,61,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="348.50" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (6,476,703 samples, 0.05%)</title><rect x="1184.4" y="225" width="0.6" height="15.0" fill="rgb(233,156,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1187.43" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (3,061,731 samples, 0.02%)</title><rect x="790.9" y="177" width="0.3" height="15.0" fill="rgb(230,228,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="793.94" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>native (2,409,201 samples, 0.02%)</title><rect x="594.5" y="225" width="0.2" height="15.0" fill="rgb(224,74,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="597.50" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>channel (1,439,275 samples, 0.01%)</title><rect x="379.3" y="113" width="0.2" height="15.0" fill="rgb(252,100,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="382.32" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>qs (1,118,429 samples, 0.01%)</title><rect x="565.0" y="97" width="0.1" height="15.0" fill="rgb(212,157,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.02" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>server (2,948,993 samples, 0.02%)</title><rect x="802.0" y="65" width="0.3" height="15.0" fill="rgb(251,146,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="805.02" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-hdfs (133,446,724 samples, 1.06%)</title><rect x="763.9" y="225" width="12.5" height="15.0" fill="rgb(222,110,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="766.89" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>metrics (2,779,298 samples, 0.02%)</title><rect x="218.0" y="161" width="0.2" height="15.0" fill="rgb(241,132,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="220.96" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>security (1,969,618 samples, 0.02%)</title><rect x="1085.4" y="145" width="0.2" height="15.0" fill="rgb(206,172,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="1088.38" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (3,970,689 samples, 0.03%)</title><rect x="402.7" y="161" width="0.4" height="15.0" fill="rgb(243,218,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="405.72" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-yarn-registry (3,663,064 samples, 0.03%)</title><rect x="799.1" y="209" width="0.4" height="15.0" fill="rgb(249,153,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="802.15" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>mllib (28,676,448 samples, 0.23%)</title><rect x="1136.0" y="241" width="2.7" height="15.0" fill="rgb(243,41,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="1139.02" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lcov-report (4,080,225 samples, 0.03%)</title><rect x="544.2" y="97" width="0.4" height="15.0" fill="rgb(241,190,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="547.22" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (5,165,220 samples, 0.04%)</title><rect x="779.3" y="129" width="0.5" height="15.0" fill="rgb(216,141,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="782.30" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dist (3,452,237 samples, 0.03%)</title><rect x="551.5" y="49" width="0.3" height="15.0" fill="rgb(247,211,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="554.52" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (5,076,913 samples, 0.04%)</title><rect x="1182.0" y="161" width="0.5" height="15.0" fill="rgb(209,185,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1185.00" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>library (2,583,321 samples, 0.02%)</title><rect x="1185.5" y="129" width="0.3" height="15.0" fill="rgb(215,98,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="1188.54" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>common (1,815,577 samples, 0.01%)</title><rect x="1107.9" y="129" width="0.2" height="15.0" fill="rgb(213,205,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="1110.89" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>mllib (2,659,742 samples, 0.02%)</title><rect x="1137.7" y="129" width="0.2" height="15.0" fill="rgb(247,83,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="1140.70" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (35,013,870 samples, 0.28%)</title><rect x="410.6" y="145" width="3.3" height="15.0" fill="rgb(251,84,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="413.63" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez-0.4.0-incubating-full (67,812,113 samples, 0.54%)</title><rect x="1173.4" y="209" width="6.4" height="15.0" fill="rgb(210,91,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="1176.40" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>esprima (1,608,815 samples, 0.01%)</title><rect x="238.8" y="113" width="0.1" height="15.0" fill="rgb(230,40,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="241.78" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (12,784,187 samples, 0.10%)</title><rect x="1118.2" y="161" width="1.2" height="15.0" fill="rgb(243,212,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="1121.19" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>pkg (1,392,597 samples, 0.01%)</title><rect x="1127.5" y="225" width="0.1" height="15.0" fill="rgb(232,111,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1130.47" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>common (1,074,977 samples, 0.01%)</title><rect x="1184.9" y="97" width="0.1" height="15.0" fill="rgb(208,97,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="1187.86" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>mapreduce (1,214,341 samples, 0.01%)</title><rect x="784.6" y="97" width="0.1" height="15.0" fill="rgb(218,0,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="787.59" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>kafka_2.10-0.8.1.1 (31,260,667 samples, 0.25%)</title><rect x="1111.1" y="257" width="2.9" height="15.0" fill="rgb(229,78,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="1114.08" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>encode (1,471,449 samples, 0.01%)</title><rect x="1028.7" y="113" width="0.2" height="15.0" fill="rgb(241,48,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="1031.75" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>resources (2,120,796 samples, 0.02%)</title><rect x="484.3" y="193" width="0.2" height="15.0" fill="rgb(230,225,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="487.31" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>native (40,563,015 samples, 0.32%)</title><rect x="733.0" y="177" width="3.8" height="15.0" fill="rgb(216,179,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="736.00" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>app (1,341,326 samples, 0.01%)</title><rect x="780.3" y="65" width="0.2" height="15.0" fill="rgb(229,221,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="783.33" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (12,943,637 samples, 0.10%)</title><rect x="469.0" y="209" width="1.2" height="15.0" fill="rgb(243,122,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="471.97" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ipc (1,388,635 samples, 0.01%)</title><rect x="1030.7" y="145" width="0.1" height="15.0" fill="rgb(248,72,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="1033.69" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (9,369,111 samples, 0.07%)</title><rect x="469.3" y="177" width="0.9" height="15.0" fill="rgb(221,228,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="472.31" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>wizard (13,004,775 samples, 0.10%)</title><rect x="287.4" y="193" width="1.2" height="15.0" fill="rgb(218,201,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="290.37" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,511,383 samples, 0.01%)</title><rect x="401.4" y="161" width="0.2" height="15.0" fill="rgb(241,155,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="404.42" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (1,717,914 samples, 0.01%)</title><rect x="491.5" y="209" width="0.1" height="15.0" fill="rgb(210,54,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="494.49" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>underscore.string (1,806,161 samples, 0.01%)</title><rect x="576.5" y="97" width="0.2" height="15.0" fill="rgb(252,182,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="579.53" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>auth (1,300,971 samples, 0.01%)</title><rect x="335.6" y="177" width="0.1" height="15.0" fill="rgb(222,66,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="338.56" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>target (9,638,086 samples, 0.08%)</title><rect x="1185.0" y="225" width="0.9" height="15.0" fill="rgb(241,44,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="1188.04" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (3,995,439 samples, 0.03%)</title><rect x="790.4" y="209" width="0.3" height="15.0" fill="rgb(209,81,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="793.37" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hbase (80,503,180 samples, 0.64%)</title><rect x="1078.8" y="161" width="7.5" height="15.0" fill="rgb(207,83,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="1081.79" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>web-socket-js (5,388,505 samples, 0.04%)</title><rect x="276.7" y="97" width="0.5" height="15.0" fill="rgb(212,136,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="279.72" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (8,464,739 samples, 0.07%)</title><rect x="782.9" y="113" width="0.7" height="15.0" fill="rgb(252,115,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="785.85" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (9,215,181 samples, 0.07%)</title><rect x="400.3" y="225" width="0.9" height="15.0" fill="rgb(226,224,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="403.30" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>python (5,407,337 samples, 0.04%)</title><rect x="194.9" y="193" width="0.5" height="15.0" fill="rgb(241,3,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="197.88" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>yarn (2,762,148 samples, 0.02%)</title><rect x="1152.2" y="241" width="0.3" height="15.0" fill="rgb(250,121,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="1155.25" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-yarn-server-nodemanager (21,218,578 samples, 0.17%)</title><rect x="801.1" y="193" width="2.0" height="15.0" fill="rgb(226,179,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="804.14" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (3,917,954 samples, 0.03%)</title><rect x="564.5" y="113" width="0.4" height="15.0" fill="rgb(220,126,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.49" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (8,090,282 samples, 0.06%)</title><rect x="488.9" y="177" width="0.8" height="15.0" fill="rgb(205,188,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.90" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (1,322,503 samples, 0.01%)</title><rect x="415.2" y="209" width="0.1" height="15.0" fill="rgb(235,147,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="418.22" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lodash (1,596,204 samples, 0.01%)</title><rect x="577.7" y="129" width="0.2" height="15.0" fill="rgb(217,95,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="580.71" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hive (1,488,457 samples, 0.01%)</title><rect x="397.3" y="145" width="0.1" height="15.0" fill="rgb(230,136,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="400.29" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (2,795,761 samples, 0.02%)</title><rect x="553.6" y="81" width="0.3" height="15.0" fill="rgb(231,197,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="556.60" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (2,788,779 samples, 0.02%)</title><rect x="238.3" y="97" width="0.2" height="15.0" fill="rgb(229,226,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="241.26" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sql (120,714,141 samples, 0.96%)</title><rect x="1139.8" y="241" width="11.3" height="15.0" fill="rgb(211,45,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="1142.76" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (20,782,811 samples, 0.17%)</title><rect x="1119.8" y="193" width="1.9" height="15.0" fill="rgb(220,122,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1122.78" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (17,681,061 samples, 0.14%)</title><rect x="186.5" y="161" width="1.7" height="15.0" fill="rgb(214,206,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="189.50" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-gridmix (5,939,193 samples, 0.05%)</title><rect x="789.8" y="225" width="0.5" height="15.0" fill="rgb(218,69,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.77" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (22,592,475 samples, 0.18%)</title><rect x="468.4" y="225" width="2.1" height="15.0" fill="rgb(242,225,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="471.39" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (22,668,421 samples, 0.18%)</title><rect x="1143.1" y="209" width="2.2" height="15.0" fill="rgb(239,168,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="1146.14" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>prefixtree (1,876,511 samples, 0.01%)</title><rect x="1082.5" y="129" width="0.2" height="15.0" fill="rgb(231,115,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="1085.54" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,466,613 samples, 0.01%)</title><rect x="789.5" y="177" width="0.1" height="15.0" fill="rgb(224,73,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.51" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ambari-scom (30,508,206 samples, 0.24%)</title><rect x="291.7" y="225" width="2.8" height="15.0" fill="rgb(212,59,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="294.68" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dag (1,225,287 samples, 0.01%)</title><rect x="1164.9" y="113" width="0.1" height="15.0" fill="rgb(231,192,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="1167.92" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,924,410 samples, 0.02%)</title><rect x="401.8" y="145" width="0.2" height="15.0" fill="rgb(220,57,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="404.81" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (14,562,940 samples, 0.12%)</title><rect x="1106.9" y="225" width="1.4" height="15.0" fill="rgb(251,203,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="1109.95" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,080,392 samples, 0.01%)</title><rect x="379.5" y="161" width="0.1" height="15.0" fill="rgb(236,155,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="382.50" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>thrift (19,049,764 samples, 0.15%)</title><rect x="471.7" y="193" width="1.8" height="15.0" fill="rgb(205,196,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="474.72" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (3,508,845 samples, 0.03%)</title><rect x="432.9" y="129" width="0.4" height="15.0" fill="rgb(206,57,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="435.94" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>js-yaml (8,938,041 samples, 0.07%)</title><rect x="241.6" y="145" width="0.8" height="15.0" fill="rgb(223,206,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="244.56" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>webapps (83,691,961 samples, 0.66%)</title><rect x="632.2" y="177" width="7.9" height="15.0" fill="rgb(243,144,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="635.21" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (8,533,597 samples, 0.07%)</title><rect x="380.1" y="225" width="0.8" height="15.0" fill="rgb(234,125,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="383.06" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (1,545,961 samples, 0.01%)</title><rect x="729.9" y="161" width="0.2" height="15.0" fill="rgb(240,144,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="732.93" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>cli (3,523,722 samples, 0.03%)</title><rect x="473.1" y="97" width="0.3" height="15.0" fill="rgb(208,205,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="476.08" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>client (4,584,807 samples, 0.04%)</title><rect x="1115.2" y="241" width="0.4" height="15.0" fill="rgb(245,90,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="1118.16" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>spark-client (2,003,937 samples, 0.02%)</title><rect x="474.2" y="241" width="0.2" height="15.0" fill="rgb(224,104,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="477.19" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>target (5,804,987 samples, 0.05%)</title><rect x="1183.2" y="225" width="0.6" height="15.0" fill="rgb(233,136,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1186.22" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>api (3,040,251 samples, 0.02%)</title><rect x="486.4" y="113" width="0.3" height="15.0" fill="rgb(227,131,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="489.44" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>common (1,676,746 samples, 0.01%)</title><rect x="492.6" y="97" width="0.2" height="15.0" fill="rgb(206,151,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.64" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib (17,037,822 samples, 0.14%)</title><rect x="622.5" y="193" width="1.6" height="15.0" fill="rgb(205,137,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="625.52" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (20,370,037 samples, 0.16%)</title><rect x="781.7" y="177" width="2.0" height="15.0" fill="rgb(252,1,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="784.75" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (2,893,670 samples, 0.02%)</title><rect x="1115.3" y="209" width="0.3" height="15.0" fill="rgb(251,121,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="1118.28" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>flume-ng-elasticsearch-sink (1,194,786 samples, 0.01%)</title><rect x="382.0" y="225" width="0.1" height="15.0" fill="rgb(205,54,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="385.03" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>generated-sources (7,319,824 samples, 0.06%)</title><rect x="489.7" y="209" width="0.7" height="15.0" fill="rgb(220,130,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="492.75" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>javascript-brunch (1,554,531 samples, 0.01%)</title><rect x="231.6" y="209" width="0.1" height="15.0" fill="rgb(247,95,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="234.60" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ql (2,105,307 samples, 0.02%)</title><rect x="433.1" y="97" width="0.2" height="15.0" fill="rgb(244,14,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="436.07" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (4,743,228 samples, 0.04%)</title><rect x="402.7" y="177" width="0.4" height="15.0" fill="rgb(244,172,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="405.65" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core (25,387,045 samples, 0.20%)</title><rect x="1142.9" y="225" width="2.4" height="15.0" fill="rgb(233,134,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="1145.89" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (2,141,909 samples, 0.02%)</title><rect x="736.6" y="145" width="0.2" height="15.0" fill="rgb(214,181,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="739.60" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (1,419,266 samples, 0.01%)</title><rect x="468.8" y="129" width="0.2" height="15.0" fill="rgb(235,106,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="471.83" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (18,704,849 samples, 0.15%)</title><rect x="785.0" y="193" width="1.7" height="15.0" fill="rgb(242,108,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="787.97" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (11,388,275 samples, 0.09%)</title><rect x="782.6" y="129" width="1.0" height="15.0" fill="rgb(228,135,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="785.58" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (2,214,084 samples, 0.02%)</title><rect x="380.6" y="177" width="0.3" height="15.0" fill="rgb(253,212,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="383.65" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>request (7,095,250 samples, 0.06%)</title><rect x="230.8" y="145" width="0.6" height="15.0" fill="rgb(251,82,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="233.78" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>docs (2,532,096 samples, 0.02%)</title><rect x="400.4" y="209" width="0.3" height="15.0" fill="rgb(244,141,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="403.45" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>jdiff (1,986,337 samples, 0.02%)</title><rect x="625.7" y="193" width="0.2" height="15.0" fill="rgb(251,89,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="628.72" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (1,194,310 samples, 0.01%)</title><rect x="272.3" y="161" width="0.1" height="15.0" fill="rgb(235,82,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="275.29" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (20,563,250 samples, 0.16%)</title><rect x="774.3" y="129" width="1.9" height="15.0" fill="rgb(237,163,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="777.28" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (1,234,027 samples, 0.01%)</title><rect x="229.4" y="193" width="0.1" height="15.0" fill="rgb(223,155,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="232.39" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>flume (1,346,990 samples, 0.01%)</title><rect x="287.2" y="161" width="0.2" height="15.0" fill="rgb(240,83,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="290.24" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (2,486,105 samples, 0.02%)</title><rect x="490.8" y="177" width="0.2" height="15.0" fill="rgb(211,200,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="493.76" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (2,545,905 samples, 0.02%)</title><rect x="784.5" y="161" width="0.2" height="15.0" fill="rgb(238,109,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="787.47" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>request (6,525,902 samples, 0.05%)</title><rect x="542.3" y="97" width="0.6" height="15.0" fill="rgb(230,154,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="545.30" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ambari (13,901,522 samples, 0.11%)</title><rect x="186.9" y="145" width="1.3" height="15.0" fill="rgb(222,161,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="189.86" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (2,411,097 samples, 0.02%)</title><rect x="553.1" y="113" width="0.3" height="15.0" fill="rgb(221,157,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="556.14" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>io (2,162,484 samples, 0.02%)</title><rect x="732.4" y="113" width="0.2" height="15.0" fill="rgb(206,174,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="735.41" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (3,443,265 samples, 0.03%)</title><rect x="1162.9" y="193" width="0.3" height="15.0" fill="rgb(214,131,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="1165.92" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>generated (18,636,713 samples, 0.15%)</title><rect x="961.5" y="129" width="1.8" height="15.0" fill="rgb(230,40,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="964.51" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ambari-agent (10,809,774 samples, 0.09%)</title><rect x="177.3" y="241" width="1.1" height="15.0" fill="rgb(248,137,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="180.34" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (1,397,503 samples, 0.01%)</title><rect x="178.2" y="209" width="0.2" height="15.0" fill="rgb(224,218,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="181.23" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>phantom (7,806,417 samples, 0.06%)</title><rect x="571.2" y="65" width="0.7" height="15.0" fill="rgb(219,5,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="574.21" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez (4,160,047 samples, 0.03%)</title><rect x="1185.4" y="161" width="0.4" height="15.0" fill="rgb(230,48,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="1188.39" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>connect (1,751,285 samples, 0.01%)</title><rect x="555.4" y="129" width="0.2" height="15.0" fill="rgb(248,2,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="558.44" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>config (2,781,909 samples, 0.02%)</title><rect x="335.8" y="177" width="0.3" height="15.0" fill="rgb(213,201,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="338.82" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (2,037,778 samples, 0.02%)</title><rect x="799.2" y="177" width="0.2" height="15.0" fill="rgb(221,107,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="802.22" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (2,168,546 samples, 0.02%)</title><rect x="800.5" y="113" width="0.2" height="15.0" fill="rgb(240,95,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="803.45" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (4,935,407 samples, 0.04%)</title><rect x="1185.3" y="177" width="0.5" height="15.0" fill="rgb(248,80,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="1188.32" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (1,406,219 samples, 0.01%)</title><rect x="474.0" y="209" width="0.2" height="15.0" fill="rgb(211,10,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="477.03" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (14,556,208 samples, 0.12%)</title><rect x="1163.9" y="193" width="1.4" height="15.0" fill="rgb(221,166,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1166.92" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-yarn-common (28,014,681 samples, 0.22%)</title><rect x="796.5" y="209" width="2.6" height="15.0" fill="rgb(206,26,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.52" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dag (3,712,939 samples, 0.03%)</title><rect x="1162.5" y="129" width="0.4" height="15.0" fill="rgb(206,205,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="1165.52" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache-hive-1.2.1-src (969,170,177 samples, 7.70%)</title><rect x="384.0" y="257" width="90.8" height="15.0" fill="rgb(234,118,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="386.96" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >apache-hiv..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>package (1,438,892 samples, 0.01%)</title><rect x="192.0" y="97" width="0.1" height="15.0" fill="rgb(205,67,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="194.99" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>target (8,234,802 samples, 0.07%)</title><rect x="489.7" y="225" width="0.7" height="15.0" fill="rgb(221,90,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="492.66" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (2,173,776 samples, 0.02%)</title><rect x="556.0" y="113" width="0.2" height="15.0" fill="rgb(228,86,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="558.96" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,349,420 samples, 0.01%)</title><rect x="493.7" y="177" width="0.1" height="15.0" fill="rgb(206,77,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="496.66" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>services (3,763,832 samples, 0.03%)</title><rect x="191.8" y="129" width="0.3" height="15.0" fill="rgb(219,157,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="194.78" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (1,169,378 samples, 0.01%)</title><rect x="396.4" y="161" width="0.1" height="15.0" fill="rgb(214,127,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="399.38" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (6,112,770 samples, 0.05%)</title><rect x="1134.6" y="209" width="0.5" height="15.0" fill="rgb(246,67,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="1137.56" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez (1,152,084 samples, 0.01%)</title><rect x="1158.0" y="145" width="0.2" height="15.0" fill="rgb(206,9,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="1161.05" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (62,172,451 samples, 0.49%)</title><rect x="557.8" y="145" width="5.8" height="15.0" fill="rgb(247,33,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="560.78" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (284,848,225 samples, 2.26%)</title><rect x="718.3" y="193" width="26.7" height="15.0" fill="rgb(253,81,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="721.30" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >m..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,685,261 samples, 0.01%)</title><rect x="784.2" y="129" width="0.2" height="15.0" fill="rgb(243,229,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="787.24" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>target (31,028,249 samples, 0.25%)</title><rect x="1158.2" y="225" width="2.9" height="15.0" fill="rgb(240,166,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="1161.19" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>pig (4,741,876 samples, 0.04%)</title><rect x="295.1" y="209" width="0.5" height="15.0" fill="rgb(224,64,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="298.12" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (6,607,255 samples, 0.05%)</title><rect x="281.8" y="193" width="0.6" height="15.0" fill="rgb(235,133,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.76" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (4,164,831 samples, 0.03%)</title><rect x="1184.6" y="177" width="0.4" height="15.0" fill="rgb(233,116,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="1187.60" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>generated (72,091,412 samples, 0.57%)</title><rect x="1037.0" y="129" width="6.7" height="15.0" fill="rgb(224,199,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="1039.96" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,115,378 samples, 0.01%)</title><rect x="1129.5" y="161" width="0.1" height="15.0" fill="rgb(205,104,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="1132.49" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hive (51,610,159 samples, 0.41%)</title><rect x="1146.2" y="225" width="4.9" height="15.0" fill="rgb(221,94,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="1149.24" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sink (7,336,924 samples, 0.06%)</title><rect x="371.4" y="161" width="0.7" height="15.0" fill="rgb(234,203,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="374.43" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>generated (4,700,971 samples, 0.04%)</title><rect x="1045.9" y="113" width="0.4" height="15.0" fill="rgb(242,25,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1048.86" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,223,405 samples, 0.01%)</title><rect x="790.2" y="161" width="0.1" height="15.0" fill="rgb(234,181,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="793.21" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>com (3,289,788 samples, 0.03%)</title><rect x="276.9" y="65" width="0.3" height="15.0" fill="rgb(243,100,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="279.92" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (3,555,685 samples, 0.03%)</title><rect x="787.4" y="129" width="0.3" height="15.0" fill="rgb(226,5,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="790.38" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (7,581,848 samples, 0.06%)</title><rect x="469.5" y="161" width="0.7" height="15.0" fill="rgb(232,9,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="472.47" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib (7,192,186 samples, 0.06%)</title><rect x="787.7" y="225" width="0.7" height="15.0" fill="rgb(207,143,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="790.73" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (20,397,627 samples, 0.16%)</title><rect x="1117.5" y="193" width="1.9" height="15.0" fill="rgb(239,215,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="1120.47" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (5,451,204 samples, 0.04%)</title><rect x="553.5" y="113" width="0.5" height="15.0" fill="rgb(238,102,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="556.46" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>configstore (3,496,298 samples, 0.03%)</title><rect x="549.1" y="97" width="0.3" height="15.0" fill="rgb(212,64,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="552.10" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (6,171,407 samples, 0.05%)</title><rect x="795.9" y="193" width="0.6" height="15.0" fill="rgb(253,0,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="798.94" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (5,290,276 samples, 0.04%)</title><rect x="292.4" y="193" width="0.5" height="15.0" fill="rgb(208,36,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="295.36" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib (15,466,833 samples, 0.12%)</title><rect x="570.5" y="81" width="1.4" height="15.0" fill="rgb(231,131,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="573.50" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>inquirer (27,813,459 samples, 0.22%)</title><rect x="545.0" y="129" width="2.7" height="15.0" fill="rgb(207,164,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="548.04" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>js-yaml (2,029,327 samples, 0.02%)</title><rect x="553.7" y="65" width="0.2" height="15.0" fill="rgb(225,83,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="556.67" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (2,578,195 samples, 0.02%)</title><rect x="379.2" y="145" width="0.3" height="15.0" fill="rgb(253,219,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="382.21" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hawk (1,306,196 samples, 0.01%)</title><rect x="572.9" y="33" width="0.2" height="15.0" fill="rgb(226,51,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="575.93" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>cql3 (16,159,162 samples, 0.13%)</title><rect x="336.1" y="177" width="1.5" height="15.0" fill="rgb(252,55,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="339.08" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (2,331,714 samples, 0.02%)</title><rect x="1182.9" y="177" width="0.3" height="15.0" fill="rgb(235,171,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1185.94" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (17,324,932 samples, 0.14%)</title><rect x="806.3" y="129" width="1.6" height="15.0" fill="rgb(248,179,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="809.30" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>spark (1,450,791 samples, 0.01%)</title><rect x="1135.0" y="145" width="0.1" height="15.0" fill="rgb(220,176,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="1137.99" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>docs (2,541,215,816 samples, 20.19%)</title><rect x="848.2" y="241" width="238.2" height="15.0" fill="rgb(207,193,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="851.18" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >docs</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>extras (2,015,401 samples, 0.02%)</title><rect x="1135.5" y="241" width="0.1" height="15.0" fill="rgb(250,38,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="1138.46" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (69,818,497 samples, 0.55%)</title><rect x="1062.2" y="177" width="6.5" height="15.0" fill="rgb(246,197,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="1065.16" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>js-yaml (2,029,327 samples, 0.02%)</title><rect x="549.2" y="65" width="0.2" height="15.0" fill="rgb(210,144,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="552.23" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>wal (1,127,182 samples, 0.01%)</title><rect x="1085.0" y="129" width="0.1" height="15.0" fill="rgb(238,65,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1087.97" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,230,224 samples, 0.01%)</title><rect x="403.4" y="193" width="0.1" height="15.0" fill="rgb(253,175,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="406.39" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>file (6,962,717 samples, 0.06%)</title><rect x="369.9" y="145" width="0.6" height="15.0" fill="rgb(236,206,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="372.87" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>esprima (1,608,929 samples, 0.01%)</title><rect x="238.0" y="81" width="0.1" height="15.0" fill="rgb(211,201,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="240.95" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hbase-handler (5,149,412 samples, 0.04%)</title><rect x="398.5" y="241" width="0.5" height="15.0" fill="rgb(238,66,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="401.47" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>package (1,438,892 samples, 0.01%)</title><rect x="202.0" y="113" width="0.1" height="15.0" fill="rgb(245,86,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="204.98" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>fs (1,562,058 samples, 0.01%)</title><rect x="753.6" y="129" width="0.1" height="15.0" fill="rgb(252,26,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="756.60" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-yarn-client (6,839,513 samples, 0.05%)</title><rect x="795.9" y="209" width="0.6" height="15.0" fill="rgb(230,129,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="798.88" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>app (2,972,790 samples, 0.02%)</title><rect x="1164.8" y="129" width="0.3" height="15.0" fill="rgb(207,120,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="1167.81" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>resources (7,047,278 samples, 0.06%)</title><rect x="1129.6" y="193" width="0.7" height="15.0" fill="rgb(210,69,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="1132.59" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (1,658,875 samples, 0.01%)</title><rect x="796.4" y="113" width="0.1" height="15.0" fill="rgb(230,190,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.37" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,164,864 samples, 0.01%)</title><rect x="398.6" y="193" width="0.1" height="15.0" fill="rgb(232,75,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="401.64" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>jinja2 (2,461,352 samples, 0.02%)</title><rect x="179.0" y="177" width="0.2" height="15.0" fill="rgb(244,55,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="182.01" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ws (1,336,480 samples, 0.01%)</title><rect x="280.8" y="113" width="0.1" height="15.0" fill="rgb(220,141,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.80" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>flume-ng-sdk (2,096,071 samples, 0.02%)</title><rect x="381.2" y="241" width="0.2" height="15.0" fill="rgb(251,126,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="384.16" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (12,801,455 samples, 0.10%)</title><rect x="243.4" y="161" width="1.2" height="15.0" fill="rgb(227,135,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="246.39" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-yarn-server-resourcemanager (51,211,011 samples, 0.41%)</title><rect x="803.1" y="193" width="4.8" height="15.0" fill="rgb(250,56,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="806.13" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>31 (2,519,213 samples, 0.02%)</title><rect x="593.2" y="209" width="0.3" height="15.0" fill="rgb(215,170,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="596.23" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>grunt-mocha (90,412,223 samples, 0.72%)</title><rect x="565.2" y="161" width="8.4" height="15.0" fill="rgb(220,45,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.17" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>thrift2 (14,708,048 samples, 0.12%)</title><rect x="1048.1" y="145" width="1.4" height="15.0" fill="rgb(234,156,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="1051.10" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>graphx (2,885,661 samples, 0.02%)</title><rect x="1135.6" y="241" width="0.3" height="15.0" fill="rgb(240,86,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="1138.65" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,186,246 samples, 0.01%)</title><rect x="1134.7" y="161" width="0.1" height="15.0" fill="rgb(226,19,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="1137.71" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez-plugins (2,661,427 samples, 0.02%)</title><rect x="491.2" y="241" width="0.2" height="15.0" fill="rgb(248,74,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="494.16" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (29,801,647 samples, 0.24%)</title><rect x="471.0" y="225" width="2.8" height="15.0" fill="rgb(252,127,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="474.05" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (21,547,912 samples, 0.17%)</title><rect x="545.6" y="113" width="2.1" height="15.0" fill="rgb(214,156,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="548.63" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (7,553,184 samples, 0.06%)</title><rect x="283.2" y="161" width="0.7" height="15.0" fill="rgb(232,16,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.23" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,162,695 samples, 0.01%)</title><rect x="1138.1" y="193" width="0.1" height="15.0" fill="rgb(223,116,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1141.06" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (2,410,623 samples, 0.02%)</title><rect x="796.3" y="145" width="0.2" height="15.0" fill="rgb(240,155,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.30" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>jsdom (13,662,337 samples, 0.11%)</title><rect x="230.2" y="177" width="1.2" height="15.0" fill="rgb(216,117,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="233.16" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib (70,374,028 samples, 0.56%)</title><rect x="1086.5" y="241" width="6.6" height="15.0" fill="rgb(241,205,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="1089.53" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>js (1,221,338 samples, 0.01%)</title><rect x="791.9" y="161" width="0.1" height="15.0" fill="rgb(225,194,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.90" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>resources (1,317,966 samples, 0.01%)</title><rect x="1132.2" y="193" width="0.2" height="15.0" fill="rgb(226,173,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="1135.25" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>thrift (1,096,314 samples, 0.01%)</title><rect x="372.5" y="161" width="0.1" height="15.0" fill="rgb(244,1,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="375.50" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (7,283,889 samples, 0.06%)</title><rect x="1107.4" y="177" width="0.7" height="15.0" fill="rgb(208,97,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="1110.37" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (27,671,465 samples, 0.22%)</title><rect x="781.4" y="193" width="2.6" height="15.0" fill="rgb(230,226,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="784.38" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (9,123,824 samples, 0.07%)</title><rect x="757.1" y="145" width="0.9" height="15.0" fill="rgb(247,43,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="760.14" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,957,705 samples, 0.02%)</title><rect x="1134.9" y="161" width="0.2" height="15.0" fill="rgb(251,197,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1137.95" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>active-x-obfuscator (25,129,844 samples, 0.20%)</title><rect x="278.2" y="113" width="2.4" height="15.0" fill="rgb(254,152,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="281.20" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>target (3,281,869 samples, 0.03%)</title><rect x="1182.5" y="225" width="0.3" height="15.0" fill="rgb(230,126,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="1185.49" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,870,387 samples, 0.01%)</title><rect x="1183.0" y="161" width="0.2" height="15.0" fill="rgb(231,145,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="1185.98" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (1,234,027 samples, 0.01%)</title><rect x="231.6" y="193" width="0.1" height="15.0" fill="rgb(211,89,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="234.63" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>docs (145,028,437 samples, 1.15%)</title><rect x="359.1" y="241" width="13.6" height="15.0" fill="rgb(210,173,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="362.08" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>STORM (2,252,057 samples, 0.02%)</title><rect x="201.9" y="129" width="0.2" height="15.0" fill="rgb(222,216,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="204.91" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (15,472,128 samples, 0.12%)</title><rect x="797.3" y="161" width="1.4" height="15.0" fill="rgb(252,152,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="800.28" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (14,232,688 samples, 0.11%)</title><rect x="1136.6" y="209" width="1.3" height="15.0" fill="rgb(251,193,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="1139.61" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (5,705,157 samples, 0.05%)</title><rect x="1185.2" y="193" width="0.6" height="15.0" fill="rgb(238,213,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="1188.25" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,684,384 samples, 0.01%)</title><rect x="380.7" y="161" width="0.2" height="15.0" fill="rgb(238,185,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="383.70" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>namenode (2,953,677 samples, 0.02%)</title><rect x="775.9" y="81" width="0.3" height="15.0" fill="rgb(211,90,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="778.88" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>app (1,649,358 samples, 0.01%)</title><rect x="525.8" y="177" width="0.2" height="15.0" fill="rgb(251,179,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="528.84" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (2,212,376 samples, 0.02%)</title><rect x="398.7" y="209" width="0.3" height="15.0" fill="rgb(207,122,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="401.75" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>pylib (2,382,115 samples, 0.02%)</title><rect x="528.6" y="97" width="0.3" height="15.0" fill="rgb(221,201,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="531.63" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (1,737,303 samples, 0.01%)</title><rect x="1109.0" y="193" width="0.2" height="15.0" fill="rgb(207,159,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="1112.01" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (6,638,998 samples, 0.05%)</title><rect x="492.2" y="177" width="0.6" height="15.0" fill="rgb(210,131,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.19" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (10,607,240 samples, 0.08%)</title><rect x="488.7" y="209" width="1.0" height="15.0" fill="rgb(224,47,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.67" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>files (1,960,941 samples, 0.02%)</title><rect x="1149.3" y="145" width="0.1" height="15.0" fill="rgb(210,23,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="1152.25" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,858,533 samples, 0.01%)</title><rect x="1108.8" y="161" width="0.2" height="15.0" fill="rgb(218,137,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="1111.83" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>WEB-INF (42,850,548 samples, 0.34%)</title><rect x="636.0" y="145" width="4.1" height="15.0" fill="rgb(236,177,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="639.04" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (2,183,511 samples, 0.02%)</title><rect x="473.6" y="177" width="0.2" height="15.0" fill="rgb(240,187,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="476.60" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hive (1,465,314 samples, 0.01%)</title><rect x="470.4" y="145" width="0.1" height="15.0" fill="rgb(218,105,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="473.37" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>zookeeper-3.4.5 (40,255,347 samples, 0.32%)</title><rect x="1186.2" y="257" width="3.8" height="15.0" fill="rgb(216,51,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.23" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hbase-webapps (1,702,244 samples, 0.01%)</title><rect x="1086.4" y="241" width="0.1" height="15.0" fill="rgb(249,146,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="1089.37" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (44,896,889 samples, 0.36%)</title><rect x="767.1" y="177" width="4.2" height="15.0" fill="rgb(230,95,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="770.07" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>documentation (1,554,554 samples, 0.01%)</title><rect x="400.5" y="177" width="0.2" height="15.0" fill="rgb(219,34,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="403.54" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>2.0.6.GlusterFS (3,425,750 samples, 0.03%)</title><rect x="190.8" y="145" width="0.3" height="15.0" fill="rgb(247,44,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="193.79" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>library (1,903,177 samples, 0.02%)</title><rect x="1184.8" y="113" width="0.2" height="15.0" fill="rgb(227,120,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="1187.81" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>runtime (3,328,848 samples, 0.03%)</title><rect x="1185.5" y="145" width="0.3" height="15.0" fill="rgb(254,23,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="1188.47" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>jdiff (3,596,093 samples, 0.03%)</title><rect x="788.1" y="209" width="0.3" height="15.0" fill="rgb(224,226,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="791.07" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node-gyp (5,647,565 samples, 0.04%)</title><rect x="528.4" y="129" width="0.5" height="15.0" fill="rgb(211,180,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="531.39" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hive (11,566,407 samples, 0.09%)</title><rect x="450.9" y="145" width="1.1" height="15.0" fill="rgb(240,143,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="453.91" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,932,472 samples, 0.02%)</title><rect x="1158.0" y="177" width="0.2" height="15.0" fill="rgb(208,22,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="1160.98" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (3,538,149 samples, 0.03%)</title><rect x="490.7" y="209" width="0.3" height="15.0" fill="rgb(250,146,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="493.67" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>escodegen (4,595,395 samples, 0.04%)</title><rect x="238.6" y="145" width="0.4" height="15.0" fill="rgb(215,4,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="241.56" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>mapreduce (1,795,264 samples, 0.01%)</title><rect x="780.8" y="97" width="0.1" height="15.0" fill="rgb(246,12,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="783.78" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>useragent (6,884,033 samples, 0.05%)</title><rect x="281.0" y="177" width="0.6" height="15.0" fill="rgb(221,84,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.99" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (6,016,540 samples, 0.05%)</title><rect x="1181.9" y="177" width="0.6" height="15.0" fill="rgb(249,192,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="1184.91" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (49,578,755 samples, 0.39%)</title><rect x="771.7" y="193" width="4.7" height="15.0" fill="rgb(250,218,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="774.75" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>site (2,189,132 samples, 0.02%)</title><rect x="792.1" y="193" width="0.2" height="15.0" fill="rgb(229,2,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="795.12" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>jdiff (22,909,083 samples, 0.18%)</title><rect x="704.2" y="193" width="2.2" height="15.0" fill="rgb(220,27,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="707.22" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>connect (9,122,762 samples, 0.07%)</title><rect x="1108.3" y="241" width="0.9" height="15.0" fill="rgb(214,11,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="1111.31" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (8,326,816 samples, 0.07%)</title><rect x="1144.5" y="193" width="0.8" height="15.0" fill="rgb(206,46,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="1147.48" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,419,452 samples, 0.01%)</title><rect x="763.5" y="161" width="0.1" height="15.0" fill="rgb(226,97,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="766.46" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core (65,772,338 samples, 0.52%)</title><rect x="1115.6" y="241" width="6.2" height="15.0" fill="rgb(214,50,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="1118.59" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,358,842 samples, 0.01%)</title><rect x="800.7" y="113" width="0.2" height="15.0" fill="rgb(244,18,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="803.72" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (1,180,981 samples, 0.01%)</title><rect x="553.2" y="81" width="0.2" height="15.0" fill="rgb(245,19,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="556.24" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (4,277,167 samples, 0.03%)</title><rect x="779.4" y="113" width="0.4" height="15.0" fill="rgb(210,154,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="782.38" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>uglify-js (2,604,974 samples, 0.02%)</title><rect x="280.6" y="113" width="0.2" height="15.0" fill="rgb(240,171,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.56" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dist-maven (2,169,751 samples, 0.02%)</title><rect x="1189.4" y="241" width="0.2" height="15.0" fill="rgb(219,52,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.41" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>fs (1,515,551 samples, 0.01%)</title><rect x="746.7" y="113" width="0.1" height="15.0" fill="rgb(206,73,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="749.67" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez-mapreduce (10,333,723 samples, 0.08%)</title><rect x="1182.8" y="241" width="1.0" height="15.0" fill="rgb(214,111,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="1185.80" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>documentation (1,148,294 samples, 0.01%)</title><rect x="730.0" y="145" width="0.1" height="15.0" fill="rgb(220,98,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="732.96" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (1,664,113 samples, 0.01%)</title><rect x="381.8" y="209" width="0.2" height="15.0" fill="rgb(230,150,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="384.80" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tar-fs (2,904,852 samples, 0.02%)</title><rect x="553.1" y="129" width="0.3" height="15.0" fill="rgb(253,38,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="556.10" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>htmlparser2 (1,335,120 samples, 0.01%)</title><rect x="243.8" y="145" width="0.1" height="15.0" fill="rgb(220,226,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="246.76" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez-runtime-library (18,176,438 samples, 0.14%)</title><rect x="1184.2" y="241" width="1.7" height="15.0" fill="rgb(254,153,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1187.24" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,979,618 samples, 0.02%)</title><rect x="790.4" y="177" width="0.2" height="15.0" fill="rgb(226,55,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="793.45" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ZooInspector (1,586,525 samples, 0.01%)</title><rect x="1188.4" y="225" width="0.1" height="15.0" fill="rgb(239,133,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.37" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>protobuf (126,568,849 samples, 1.01%)</title><rect x="943.9" y="145" width="11.9" height="15.0" fill="rgb(207,170,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="946.91" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>runtime (3,688,938 samples, 0.03%)</title><rect x="492.5" y="129" width="0.3" height="15.0" fill="rgb(234,36,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.47" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>multiparty (13,546,204 samples, 0.11%)</title><rect x="270.9" y="145" width="1.3" height="15.0" fill="rgb(231,37,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="273.89" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (7,803,313 samples, 0.06%)</title><rect x="1160.3" y="161" width="0.8" height="15.0" fill="rgb(235,63,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="1163.33" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>accumulo-handler (5,437,397 samples, 0.04%)</title><rect x="396.0" y="241" width="0.5" height="15.0" fill="rgb(225,191,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="399.00" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (1,229,244 samples, 0.01%)</title><rect x="474.0" y="193" width="0.2" height="15.0" fill="rgb(240,47,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="477.05" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez (2,099,230 samples, 0.02%)</title><rect x="485.1" y="145" width="0.2" height="15.0" fill="rgb(208,132,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="488.11" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (42,016,644 samples, 0.33%)</title><rect x="410.0" y="161" width="3.9" height="15.0" fill="rgb(230,144,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="412.97" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez-yarn-timeline-history (1,266,432 samples, 0.01%)</title><rect x="491.3" y="225" width="0.1" height="15.0" fill="rgb(211,153,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="494.29" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>gen (11,185,727 samples, 0.09%)</title><rect x="432.5" y="209" width="1.1" height="15.0" fill="rgb(253,215,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="435.53" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>examples (2,258,032 samples, 0.02%)</title><rect x="1182.3" y="113" width="0.2" height="15.0" fill="rgb(209,217,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="1185.26" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>xref (188,484,915 samples, 1.50%)</title><rect x="1068.7" y="225" width="17.7" height="15.0" fill="rgb(209,220,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1071.70" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (15,046,738 samples, 0.12%)</title><rect x="1161.8" y="225" width="1.4" height="15.0" fill="rgb(210,79,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="1164.84" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>zookeeper (1,190,452 samples, 0.01%)</title><rect x="1086.2" y="145" width="0.1" height="15.0" fill="rgb(238,225,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="1089.22" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,414,024 samples, 0.01%)</title><rect x="1152.0" y="161" width="0.1" height="15.0" fill="rgb(219,162,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="1154.99" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>2.0.6 (1,999,500 samples, 0.02%)</title><rect x="190.6" y="145" width="0.2" height="15.0" fill="rgb(239,205,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="193.60" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala (9,445,492 samples, 0.08%)</title><rect x="1143.6" y="177" width="0.9" height="15.0" fill="rgb(224,81,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="1146.60" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>mapred (1,154,737 samples, 0.01%)</title><rect x="786.4" y="97" width="0.1" height="15.0" fill="rgb(244,209,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="789.44" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (16,169,877 samples, 0.13%)</title><rect x="193.4" y="177" width="1.5" height="15.0" fill="rgb(206,185,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="196.36" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (8,592,870 samples, 0.07%)</title><rect x="802.3" y="161" width="0.8" height="15.0" fill="rgb(244,117,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="805.32" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>prefixtree (4,055,455 samples, 0.03%)</title><rect x="940.7" y="129" width="0.3" height="15.0" fill="rgb(215,35,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="943.67" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>util (4,181,052 samples, 0.03%)</title><rect x="1085.8" y="145" width="0.4" height="15.0" fill="rgb(230,124,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="1088.83" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>generated-sources (12,529,437 samples, 0.10%)</title><rect x="485.6" y="209" width="1.2" height="15.0" fill="rgb(239,180,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="488.60" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (7,018,100 samples, 0.06%)</title><rect x="784.1" y="193" width="0.6" height="15.0" fill="rgb(238,171,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="787.07" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (3,377,855 samples, 0.03%)</title><rect x="380.2" y="193" width="0.3" height="15.0" fill="rgb(236,220,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="383.23" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (5,515,767 samples, 0.04%)</title><rect x="402.6" y="193" width="0.5" height="15.0" fill="rgb(213,27,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="405.58" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>static (1,172,321 samples, 0.01%)</title><rect x="1130.1" y="113" width="0.2" height="15.0" fill="rgb(223,132,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="1133.14" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>generated-sources (1,184,247 samples, 0.01%)</title><rect x="1185.8" y="209" width="0.1" height="15.0" fill="rgb(253,168,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="1188.78" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>common (84,123,337 samples, 0.67%)</title><rect x="616.2" y="209" width="7.9" height="15.0" fill="rgb(219,18,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="619.23" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (1,643,739 samples, 0.01%)</title><rect x="1138.8" y="193" width="0.2" height="15.0" fill="rgb(215,185,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="1141.82" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,142,524 samples, 0.01%)</title><rect x="1135.8" y="177" width="0.1" height="15.0" fill="rgb(235,90,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="1138.76" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (5,871,619 samples, 0.05%)</title><rect x="1129.7" y="177" width="0.6" height="15.0" fill="rgb(246,205,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="1132.70" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (19,851,686 samples, 0.16%)</title><rect x="242.7" y="193" width="1.9" height="15.0" fill="rgb(230,139,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="245.73" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dag (1,638,336 samples, 0.01%)</title><rect x="1163.1" y="129" width="0.1" height="15.0" fill="rgb(232,86,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="1166.09" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>wal (1,490,443 samples, 0.01%)</title><rect x="1044.6" y="129" width="0.1" height="15.0" fill="rgb(207,163,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="1047.56" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>io (1,170,378 samples, 0.01%)</title><rect x="757.7" y="129" width="0.1" height="15.0" fill="rgb(220,93,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="760.66" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>clients (16,338,208 samples, 0.13%)</title><rect x="1106.8" y="241" width="1.5" height="15.0" fill="rgb(209,212,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1109.78" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (17,235,347 samples, 0.14%)</title><rect x="782.0" y="161" width="1.6" height="15.0" fill="rgb(244,216,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="785.03" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hive (21,008,322 samples, 0.17%)</title><rect x="411.9" y="113" width="2.0" height="15.0" fill="rgb(231,46,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="414.94" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>jdbc (1,181,507 samples, 0.01%)</title><rect x="370.5" y="145" width="0.1" height="15.0" fill="rgb(242,185,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="373.52" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (3,506,082 samples, 0.03%)</title><rect x="485.0" y="177" width="0.3" height="15.0" fill="rgb(206,124,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="487.97" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>mllib (1,144,345 samples, 0.01%)</title><rect x="1138.6" y="129" width="0.1" height="15.0" fill="rgb(245,23,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="1141.60" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (14,311,811 samples, 0.11%)</title><rect x="782.3" y="145" width="1.3" height="15.0" fill="rgb(230,219,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="785.30" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HadoopMp (3,938,657 samples, 0.03%)</title><rect x="293.3" y="177" width="0.4" height="15.0" fill="rgb(242,73,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="296.28" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (116,737,679 samples, 0.93%)</title><rect x="1075.4" y="177" width="11.0" height="15.0" fill="rgb(216,195,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="1078.43" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dag (1,471,453 samples, 0.01%)</title><rect x="489.5" y="97" width="0.1" height="15.0" fill="rgb(214,1,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="492.47" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>request (7,087,378 samples, 0.06%)</title><rect x="267.2" y="145" width="0.7" height="15.0" fill="rgb(222,161,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="270.23" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (51,999,225 samples, 0.41%)</title><rect x="1128.3" y="225" width="4.9" height="15.0" fill="rgb(241,4,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="1131.31" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ipc (1,980,298 samples, 0.02%)</title><rect x="754.0" y="129" width="0.2" height="15.0" fill="rgb(249,97,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="757.03" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>restrictions (1,262,275 samples, 0.01%)</title><rect x="337.2" y="161" width="0.1" height="15.0" fill="rgb(207,150,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="340.16" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (268,770,536 samples, 2.13%)</title><rect x="442.9" y="209" width="25.2" height="15.0" fill="rgb(208,81,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="445.94" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >t..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (3,174,250 samples, 0.03%)</title><rect x="292.5" y="177" width="0.3" height="15.0" fill="rgb(213,51,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="295.50" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>native (1,231,999 samples, 0.01%)</title><rect x="771.3" y="177" width="0.1" height="15.0" fill="rgb(226,38,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="774.28" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>npm (28,044,268 samples, 0.22%)</title><rect x="527.2" y="161" width="2.6" height="15.0" fill="rgb(208,213,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="530.16" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-mapreduce-examples (10,047,896 samples, 0.08%)</title><rect x="786.8" y="225" width="0.9" height="15.0" fill="rgb(226,70,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="789.79" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>spark (3,113,451 samples, 0.02%)</title><rect x="1145.0" y="129" width="0.3" height="15.0" fill="rgb(237,110,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="1147.97" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (7,121,190 samples, 0.06%)</title><rect x="1134.5" y="225" width="0.6" height="15.0" fill="rgb(208,71,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1137.46" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>queries (4,349,788 samples, 0.03%)</title><rect x="1150.4" y="113" width="0.4" height="15.0" fill="rgb(240,200,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="1153.37" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (6,524,585 samples, 0.05%)</title><rect x="801.7" y="129" width="0.6" height="15.0" fill="rgb(221,19,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="804.68" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>classes (6,497,951 samples, 0.05%)</title><rect x="1185.2" y="209" width="0.6" height="15.0" fill="rgb(229,147,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1188.17" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (27,150,763 samples, 0.22%)</title><rect x="236.6" y="161" width="2.6" height="15.0" fill="rgb(224,226,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="239.64" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (5,193,800 samples, 0.04%)</title><rect x="1151.3" y="209" width="0.5" height="15.0" fill="rgb(254,131,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="1154.32" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (5,004,664 samples, 0.04%)</title><rect x="400.7" y="209" width="0.5" height="15.0" fill="rgb(222,167,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="403.69" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (2,817,260 samples, 0.02%)</title><rect x="1157.9" y="209" width="0.3" height="15.0" fill="rgb(245,18,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="1160.90" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (58,359,148 samples, 0.46%)</title><rect x="766.1" y="193" width="5.5" height="15.0" fill="rgb(244,174,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="769.09" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (3,417,835 samples, 0.03%)</title><rect x="1151.8" y="209" width="0.3" height="15.0" fill="rgb(212,64,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="1154.80" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (5,933,209 samples, 0.05%)</title><rect x="177.7" y="209" width="0.5" height="15.0" fill="rgb(233,161,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="180.67" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache-tez-0.7.0-src (1,099,934,497 samples, 8.74%)</title><rect x="474.8" y="257" width="103.1" height="15.0" fill="rgb(245,214,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="477.80" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >apache-tez-0..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>class-use (4,333,759 samples, 0.03%)</title><rect x="962.8" y="113" width="0.5" height="15.0" fill="rgb(233,22,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="965.85" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,686,002 samples, 0.01%)</title><rect x="763.4" y="177" width="0.2" height="15.0" fill="rgb(215,50,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="766.43" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib (4,818,402 samples, 0.04%)</title><rect x="594.3" y="241" width="0.4" height="15.0" fill="rgb(228,142,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="597.28" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib-examples (1,256,297 samples, 0.01%)</title><rect x="642.0" y="193" width="0.1" height="15.0" fill="rgb(253,184,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="644.96" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>namenode (2,621,586 samples, 0.02%)</title><rect x="770.9" y="81" width="0.3" height="15.0" fill="rgb(250,174,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="773.92" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>2.0.7 (1,431,933 samples, 0.01%)</title><rect x="196.7" y="145" width="0.2" height="15.0" fill="rgb(245,223,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="199.73" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (2,042,540 samples, 0.02%)</title><rect x="493.6" y="209" width="0.2" height="15.0" fill="rgb(253,14,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="496.60" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>replication (1,818,248 samples, 0.01%)</title><rect x="1044.7" y="145" width="0.2" height="15.0" fill="rgb(250,108,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="1047.70" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (5,489,868 samples, 0.04%)</title><rect x="489.9" y="177" width="0.5" height="15.0" fill="rgb(220,198,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="492.92" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (3,127,464 samples, 0.02%)</title><rect x="1147.1" y="193" width="0.3" height="15.0" fill="rgb(231,121,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="1150.15" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (4,324,590 samples, 0.03%)</title><rect x="1142.5" y="193" width="0.4" height="15.0" fill="rgb(220,112,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="1145.48" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>services (3,763,832 samples, 0.03%)</title><rect x="201.8" y="145" width="0.3" height="15.0" fill="rgb(205,183,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="204.77" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hive-unit (6,432,290 samples, 0.05%)</title><rect x="402.5" y="225" width="0.6" height="15.0" fill="rgb(205,182,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="405.49" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hcatalog (2,277,510 samples, 0.02%)</title><rect x="400.9" y="177" width="0.2" height="15.0" fill="rgb(218,66,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="403.89" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>filter (1,997,157 samples, 0.02%)</title><rect x="941.8" y="145" width="0.2" height="15.0" fill="rgb(219,79,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="944.80" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (2,743,784 samples, 0.02%)</title><rect x="380.6" y="193" width="0.3" height="15.0" fill="rgb(224,64,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="383.60" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (1,226,067 samples, 0.01%)</title><rect x="379.6" y="209" width="0.1" height="15.0" fill="rgb(210,101,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="382.62" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sinon (2,995,456 samples, 0.02%)</title><rect x="282.7" y="209" width="0.3" height="15.0" fill="rgb(245,2,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.68" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>scripts (1,953,804 samples, 0.02%)</title><rect x="290.5" y="209" width="0.2" height="15.0" fill="rgb(206,21,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="293.52" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>files (3,214,672 samples, 0.03%)</title><rect x="398.1" y="225" width="0.4" height="15.0" fill="rgb(244,218,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="401.15" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>runtime (1,468,903 samples, 0.01%)</title><rect x="493.0" y="129" width="0.2" height="15.0" fill="rgb(230,89,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="496.05" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (1,081,471 samples, 0.01%)</title><rect x="572.3" y="49" width="0.1" height="15.0" fill="rgb(214,122,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="575.27" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>spark (14,328,377 samples, 0.11%)</title><rect x="465.7" y="161" width="1.4" height="15.0" fill="rgb(247,105,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="468.74" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>server (7,055,378 samples, 0.06%)</title><rect x="805.2" y="65" width="0.6" height="15.0" fill="rgb(251,189,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="808.18" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (7,560,891 samples, 0.06%)</title><rect x="1109.7" y="209" width="0.7" height="15.0" fill="rgb(231,170,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="1112.69" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (151,710,738 samples, 1.21%)</title><rect x="182.7" y="225" width="14.3" height="15.0" fill="rgb(245,33,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="185.73" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>gen-javabean (14,068,293 samples, 0.11%)</title><rect x="472.1" y="177" width="1.3" height="15.0" fill="rgb(232,143,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="475.10" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>HDP (28,870,232 samples, 0.23%)</title><rect x="189.4" y="161" width="2.7" height="15.0" fill="rgb(251,59,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="192.43" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>cli-color (4,097,471 samples, 0.03%)</title><rect x="546.2" y="97" width="0.4" height="15.0" fill="rgb(244,123,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="549.20" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>thrift (69,471,117 samples, 0.55%)</title><rect x="407.9" y="193" width="6.5" height="15.0" fill="rgb(234,97,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="410.92" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lodash (1,696,963 samples, 0.01%)</title><rect x="546.6" y="97" width="0.1" height="15.0" fill="rgb(213,125,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="549.59" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-hdfs-httpfs (5,563,168 samples, 0.04%)</title><rect x="763.1" y="225" width="0.5" height="15.0" fill="rgb(207,7,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="766.07" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (4,247,328 samples, 0.03%)</title><rect x="295.2" y="193" width="0.4" height="15.0" fill="rgb(222,198,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="298.17" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez (6,317,501 samples, 0.05%)</title><rect x="1160.5" y="145" width="0.6" height="15.0" fill="rgb(242,186,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="1163.47" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>example (2,532,526 samples, 0.02%)</title><rect x="941.5" y="129" width="0.2" height="15.0" fill="rgb(215,127,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="944.47" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,411,841 samples, 0.01%)</title><rect x="801.0" y="113" width="0.1" height="15.0" fill="rgb(218,146,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="803.97" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>handlebars (13,703,965 samples, 0.11%)</title><rect x="543.8" y="129" width="1.2" height="15.0" fill="rgb(244,106,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="546.76" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (7,803,386 samples, 0.06%)</title><rect x="414.4" y="209" width="0.8" height="15.0" fill="rgb(248,123,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="417.43" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>phantomjs (167,081,975 samples, 1.33%)</title><rect x="252.2" y="177" width="15.7" height="15.0" fill="rgb(250,54,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="255.24" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (2,891,993 samples, 0.02%)</title><rect x="783.7" y="177" width="0.3" height="15.0" fill="rgb(247,226,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="786.70" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (14,914,177 samples, 0.12%)</title><rect x="745.7" y="161" width="1.4" height="15.0" fill="rgb(219,85,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="748.70" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>protobuf (8,312,843 samples, 0.07%)</title><rect x="1045.5" y="129" width="0.8" height="15.0" fill="rgb(241,38,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="1048.52" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-yarn (153,406,599 samples, 1.22%)</title><rect x="793.9" y="225" width="14.4" height="15.0" fill="rgb(220,56,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="796.88" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>services (2,322,671 samples, 0.02%)</title><rect x="190.9" y="129" width="0.2" height="15.0" fill="rgb(235,90,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="193.89" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (4,058,771 samples, 0.03%)</title><rect x="1144.9" y="145" width="0.4" height="15.0" fill="rgb(217,153,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1147.88" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (276,286,599 samples, 2.19%)</title><rect x="321.7" y="209" width="25.9" height="15.0" fill="rgb(254,225,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="324.67" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >a..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>public-static (59,065,900 samples, 0.47%)</title><rect x="284.5" y="225" width="5.5" height="15.0" fill="rgb(220,6,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="287.47" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (2,299,834 samples, 0.02%)</title><rect x="399.6" y="145" width="0.2" height="15.0" fill="rgb(232,4,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="402.62" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ml (1,690,724 samples, 0.01%)</title><rect x="1137.5" y="129" width="0.2" height="15.0" fill="rgb(205,209,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="1140.54" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-rumen (4,836,908 samples, 0.04%)</title><rect x="790.8" y="225" width="0.4" height="15.0" fill="rgb(254,12,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="793.80" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (2,003,604 samples, 0.02%)</title><rect x="468.8" y="161" width="0.2" height="15.0" fill="rgb(248,3,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="471.77" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>protobuf (8,312,843 samples, 0.07%)</title><rect x="957.5" y="129" width="0.8" height="15.0" fill="rgb(230,190,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="960.54" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lodash (1,696,963 samples, 0.01%)</title><rect x="551.0" y="65" width="0.1" height="15.0" fill="rgb(212,1,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="553.97" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (7,112,600 samples, 0.06%)</title><rect x="754.9" y="161" width="0.7" height="15.0" fill="rgb(242,95,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="757.93" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>class-use (18,051,567 samples, 0.14%)</title><rect x="1042.0" y="113" width="1.7" height="15.0" fill="rgb(243,40,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1045.02" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (1,147,409 samples, 0.01%)</title><rect x="544.9" y="81" width="0.1" height="15.0" fill="rgb(248,54,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="547.93" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez-api (39,484,869 samples, 0.31%)</title><rect x="1157.4" y="241" width="3.7" height="15.0" fill="rgb(230,218,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1160.40" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>nodemanager (2,027,463 samples, 0.02%)</title><rect x="802.9" y="49" width="0.2" height="15.0" fill="rgb(215,226,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="805.93" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (4,910,302 samples, 0.04%)</title><rect x="763.1" y="209" width="0.5" height="15.0" fill="rgb(223,6,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="766.13" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (19,795,724 samples, 0.16%)</title><rect x="804.0" y="161" width="1.8" height="15.0" fill="rgb(205,2,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="806.99" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (14,991,039 samples, 0.12%)</title><rect x="1109.4" y="225" width="1.4" height="15.0" fill="rgb(224,186,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="1112.43" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>security (1,129,960 samples, 0.01%)</title><rect x="732.8" y="113" width="0.1" height="15.0" fill="rgb(238,5,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="735.82" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>testutils (4,480,726 samples, 0.04%)</title><rect x="474.4" y="241" width="0.4" height="15.0" fill="rgb(233,123,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="477.38" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (4,170,450 samples, 0.03%)</title><rect x="1165.5" y="161" width="0.4" height="15.0" fill="rgb(208,161,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.52" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>util (1,928,088 samples, 0.02%)</title><rect x="1068.5" y="145" width="0.2" height="15.0" fill="rgb(229,42,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1071.49" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>filter (2,227,617 samples, 0.02%)</title><rect x="1029.7" y="145" width="0.2" height="15.0" fill="rgb(238,25,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="1032.67" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hbase (386,673,289 samples, 3.07%)</title><rect x="928.1" y="161" width="36.2" height="15.0" fill="rgb(254,4,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="931.10" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >hbase</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>controllers (2,733,747 samples, 0.02%)</title><rect x="219.5" y="209" width="0.3" height="15.0" fill="rgb(236,227,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="222.50" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (1,570,188 samples, 0.01%)</title><rect x="791.1" y="129" width="0.1" height="15.0" fill="rgb(246,97,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.08" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,743,799 samples, 0.01%)</title><rect x="799.0" y="129" width="0.1" height="15.0" fill="rgb(209,84,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="801.99" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>python (1,242,450 samples, 0.01%)</title><rect x="179.3" y="193" width="0.1" height="15.0" fill="rgb(215,201,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="182.28" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>site (3,321,230 samples, 0.03%)</title><rect x="484.2" y="209" width="0.3" height="15.0" fill="rgb(237,177,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="487.19" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ibrik (32,821,591 samples, 0.26%)</title><rect x="236.1" y="177" width="3.1" height="15.0" fill="rgb(224,58,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="239.11" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,160,391 samples, 0.01%)</title><rect x="792.0" y="177" width="0.1" height="15.0" fill="rgb(207,217,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="795.01" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (9,966,149 samples, 0.08%)</title><rect x="472.5" y="145" width="0.9" height="15.0" fill="rgb(222,149,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="475.48" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (2,700,483 samples, 0.02%)</title><rect x="1108.1" y="209" width="0.2" height="15.0" fill="rgb(215,19,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="1111.06" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dht (2,359,756 samples, 0.02%)</title><rect x="340.3" y="177" width="0.2" height="15.0" fill="rgb(231,138,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="343.27" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>classes (2,379,265 samples, 0.02%)</title><rect x="638.0" y="129" width="0.2" height="15.0" fill="rgb(225,215,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="640.95" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>webapp (1,671,523 samples, 0.01%)</title><rect x="798.6" y="81" width="0.1" height="15.0" fill="rgb(231,100,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="801.58" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (4,210,614 samples, 0.03%)</title><rect x="432.9" y="145" width="0.4" height="15.0" fill="rgb(232,65,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="435.87" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (7,135,170 samples, 0.06%)</title><rect x="1162.2" y="177" width="0.7" height="15.0" fill="rgb(234,161,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="1165.20" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (2,602,738 samples, 0.02%)</title><rect x="491.5" y="225" width="0.2" height="15.0" fill="rgb(253,113,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="494.45" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>request (6,530,148 samples, 0.05%)</title><rect x="562.4" y="97" width="0.6" height="15.0" fill="rgb(206,77,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="565.38" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>thrift (15,059,292 samples, 0.12%)</title><rect x="1046.7" y="145" width="1.4" height="15.0" fill="rgb(216,40,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="1049.69" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>clientpositive (1,968,201 samples, 0.02%)</title><rect x="1150.6" y="97" width="0.2" height="15.0" fill="rgb(234,39,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="1153.59" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (7,194,956 samples, 0.06%)</title><rect x="779.8" y="177" width="0.7" height="15.0" fill="rgb(252,227,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="782.79" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez (6,431,981 samples, 0.05%)</title><rect x="486.2" y="145" width="0.6" height="15.0" fill="rgb(251,198,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="489.17" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>coverage (5,763,101 samples, 0.05%)</title><rect x="544.1" y="113" width="0.5" height="15.0" fill="rgb(249,80,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="547.06" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>2.0.6 (1,999,500 samples, 0.02%)</title><rect x="200.6" y="161" width="0.2" height="15.0" fill="rgb(235,5,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="203.59" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (3,227,930 samples, 0.03%)</title><rect x="1142.6" y="161" width="0.3" height="15.0" fill="rgb(246,40,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="1145.58" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>argparse (3,607,715 samples, 0.03%)</title><rect x="241.9" y="113" width="0.3" height="15.0" fill="rgb(254,31,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="244.91" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala (5,949,411 samples, 0.05%)</title><rect x="1144.7" y="177" width="0.6" height="15.0" fill="rgb(222,56,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="1147.71" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (2,034,698 samples, 0.02%)</title><rect x="400.5" y="193" width="0.2" height="15.0" fill="rgb(248,38,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="403.49" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>nodemanager (2,055,095 samples, 0.02%)</title><rect x="802.1" y="49" width="0.2" height="15.0" fill="rgb(252,142,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="805.10" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>globule (3,116,936 samples, 0.02%)</title><rect x="564.6" y="97" width="0.3" height="15.0" fill="rgb(237,223,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.56" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (10,201,679 samples, 0.08%)</title><rect x="562.1" y="113" width="1.0" height="15.0" fill="rgb(226,162,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="565.10" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,192,015 samples, 0.01%)</title><rect x="789.4" y="177" width="0.1" height="15.0" fill="rgb(223,142,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.38" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>uglify-js (2,988,663 samples, 0.02%)</title><rect x="563.8" y="129" width="0.3" height="15.0" fill="rgb(222,60,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="566.83" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sql (3,503,948 samples, 0.03%)</title><rect x="1144.2" y="113" width="0.3" height="15.0" fill="rgb(219,149,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="1147.16" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>mapreduce (3,189,081 samples, 0.03%)</title><rect x="1182.2" y="129" width="0.3" height="15.0" fill="rgb(243,111,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="1185.18" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (3,611,018 samples, 0.03%)</title><rect x="1184.7" y="161" width="0.3" height="15.0" fill="rgb(250,65,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="1187.65" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (4,291,123 samples, 0.03%)</title><rect x="379.0" y="193" width="0.5" height="15.0" fill="rgb(216,31,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="382.05" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (5,505,040 samples, 0.04%)</title><rect x="244.1" y="129" width="0.5" height="15.0" fill="rgb(247,94,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="247.07" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>generated (1,352,028 samples, 0.01%)</title><rect x="941.6" y="113" width="0.1" height="15.0" fill="rgb(210,162,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="944.58" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez-dist (160,888,436 samples, 1.28%)</title><rect x="1166.3" y="241" width="15.0" height="15.0" fill="rgb(208,211,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="1169.25" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,114,119 samples, 0.01%)</title><rect x="415.2" y="193" width="0.1" height="15.0" fill="rgb(243,162,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="418.24" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (13,412,764 samples, 0.11%)</title><rect x="797.5" y="145" width="1.2" height="15.0" fill="rgb(222,190,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="800.48" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (1,880,123 samples, 0.01%)</title><rect x="784.5" y="129" width="0.2" height="15.0" fill="rgb(224,164,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="787.53" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>request (1,880,431 samples, 0.01%)</title><rect x="572.5" y="65" width="0.1" height="15.0" fill="rgb(227,219,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="575.46" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>services (5,267,345 samples, 0.04%)</title><rect x="191.1" y="129" width="0.5" height="15.0" fill="rgb(249,177,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="194.13" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (1,845,464 samples, 0.01%)</title><rect x="403.3" y="225" width="0.2" height="15.0" fill="rgb(210,194,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="406.33" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>codec (5,974,547 samples, 0.05%)</title><rect x="940.5" y="145" width="0.5" height="15.0" fill="rgb(227,219,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="943.49" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (28,011,096 samples, 0.22%)</title><rect x="411.3" y="129" width="2.6" height="15.0" fill="rgb(230,188,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="414.28" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (19,767,183 samples, 0.16%)</title><rect x="806.1" y="145" width="1.8" height="15.0" fill="rgb(214,12,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="809.07" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (78,963,221 samples, 0.63%)</title><rect x="184.7" y="209" width="7.4" height="15.0" fill="rgb(209,8,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="187.74" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>svgo (6,998,601 samples, 0.06%)</title><rect x="574.2" y="129" width="0.7" height="15.0" fill="rgb(224,187,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="577.23" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (4,035,299 samples, 0.03%)</title><rect x="414.8" y="161" width="0.4" height="15.0" fill="rgb(250,174,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="417.79" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>gen-javabean (2,295,773 samples, 0.02%)</title><rect x="468.7" y="177" width="0.3" height="15.0" fill="rgb(245,20,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="471.74" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>all (12,589,350,353 samples, 100%)</title><rect x="10.0" y="321" width="1180.0" height="15.0" fill="rgb(213,218,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hawk (1,306,196 samples, 0.01%)</title><rect x="552.8" y="97" width="0.1" height="15.0" fill="rgb(227,176,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="555.80" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (31,417,073 samples, 0.25%)</title><rect x="1129.0" y="209" width="2.9" height="15.0" fill="rgb(220,139,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="1131.99" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hawk (1,300,674 samples, 0.01%)</title><rect x="529.4" y="97" width="0.1" height="15.0" fill="rgb(244,167,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="532.36" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (1,135,913 samples, 0.01%)</title><rect x="790.5" y="129" width="0.1" height="15.0" fill="rgb(232,215,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="793.52" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala (1,389,351 samples, 0.01%)</title><rect x="1135.7" y="193" width="0.2" height="15.0" fill="rgb(208,33,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="1138.74" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>lib (7,057,282 samples, 0.06%)</title><rect x="1180.7" y="177" width="0.6" height="15.0" fill="rgb(230,222,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="1183.67" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (5,838,630 samples, 0.05%)</title><rect x="1165.4" y="193" width="0.5" height="15.0" fill="rgb(224,12,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.37" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>source (4,107,791 samples, 0.03%)</title><rect x="372.1" y="161" width="0.4" height="15.0" fill="rgb(248,75,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="375.12" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>cjs (1,258,380 samples, 0.01%)</title><rect x="544.4" y="65" width="0.1" height="15.0" fill="rgb(234,125,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="547.40" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>command (1,797,635 samples, 0.01%)</title><rect x="1121.3" y="129" width="0.2" height="15.0" fill="rgb(229,228,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="1124.31" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (350,366,405 samples, 2.78%)</title><rect x="314.7" y="225" width="32.9" height="15.0" fill="rgb(239,32,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="317.73" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >org</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez-dag (53,610,165 samples, 0.43%)</title><rect x="1161.2" y="241" width="5.1" height="15.0" fill="rgb(230,89,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1164.23" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (4,574,890 samples, 0.04%)</title><rect x="490.0" y="161" width="0.4" height="15.0" fill="rgb(224,221,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="493.00" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>cardinal (5,434,324 samples, 0.04%)</title><rect x="542.9" y="129" width="0.5" height="15.0" fill="rgb(223,10,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="545.92" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>app (51,986,764 samples, 0.41%)</title><rect x="215.5" y="225" width="4.8" height="15.0" fill="rgb(239,97,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="218.47" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (73,629,729 samples, 0.58%)</title><rect x="274.0" y="161" width="6.9" height="15.0" fill="rgb(249,86,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="277.03" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hive (1,755,476 samples, 0.01%)</title><rect x="399.7" y="129" width="0.1" height="15.0" fill="rgb(233,31,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="402.67" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>resources (42,105,541 samples, 0.33%)</title><rect x="188.2" y="193" width="3.9" height="15.0" fill="rgb(237,196,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="191.19" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>kafka (1,490,101 samples, 0.01%)</title><rect x="1110.7" y="161" width="0.1" height="15.0" fill="rgb(224,51,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="1113.70" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,925,478 samples, 0.02%)</title><rect x="790.0" y="161" width="0.2" height="15.0" fill="rgb(229,209,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.97" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (8,784,941 samples, 0.07%)</title><rect x="574.1" y="145" width="0.8" height="15.0" fill="rgb(216,4,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="577.06" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (2,874,993 samples, 0.02%)</title><rect x="1166.0" y="193" width="0.3" height="15.0" fill="rgb(225,205,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="1168.98" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (2,125,738 samples, 0.02%)</title><rect x="1182.6" y="193" width="0.2" height="15.0" fill="rgb(250,17,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1185.59" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>msi (6,937,034 samples, 0.06%)</title><rect x="293.9" y="209" width="0.6" height="15.0" fill="rgb(225,8,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="296.89" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>yarn (1,283,001 samples, 0.01%)</title><rect x="796.4" y="97" width="0.1" height="15.0" fill="rgb(246,45,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="799.40" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (2,067,369 samples, 0.02%)</title><rect x="791.0" y="145" width="0.2" height="15.0" fill="rgb(215,47,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="794.04" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>clients (1,263,362 samples, 0.01%)</title><rect x="1107.8" y="129" width="0.1" height="15.0" fill="rgb(244,111,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="1110.77" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (6,404,846 samples, 0.05%)</title><rect x="489.8" y="193" width="0.6" height="15.0" fill="rgb(223,30,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="492.83" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (1,297,002 samples, 0.01%)</title><rect x="792.4" y="193" width="0.1" height="15.0" fill="rgb(254,85,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="795.42" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>escodegen (5,268,021 samples, 0.04%)</title><rect x="240.4" y="145" width="0.5" height="15.0" fill="rgb(240,39,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="243.37" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core (1,327,158 samples, 0.01%)</title><rect x="547.5" y="65" width="0.1" height="15.0" fill="rgb(236,45,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="550.51" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (2,297,901 samples, 0.02%)</title><rect x="763.2" y="193" width="0.2" height="15.0" fill="rgb(238,113,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="766.19" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>templates (1,361,341 samples, 0.01%)</title><rect x="219.9" y="209" width="0.1" height="15.0" fill="rgb(233,114,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="222.87" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>uglify-js-brunch (2,966,526 samples, 0.02%)</title><rect x="284.2" y="209" width="0.3" height="15.0" fill="rgb(208,145,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="287.19" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>stacks (10,242,673 samples, 0.08%)</title><rect x="202.7" y="193" width="1.0" height="15.0" fill="rgb(242,90,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="205.74" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (8,244,823 samples, 0.07%)</title><rect x="746.3" y="129" width="0.8" height="15.0" fill="rgb(253,34,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="749.33" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>handlebars (5,145,982 samples, 0.04%)</title><rect x="241.1" y="145" width="0.5" height="15.0" fill="rgb(249,163,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="244.08" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-hdfs-project (183,316,997 samples, 1.46%)</title><rect x="759.2" y="241" width="17.2" height="15.0" fill="rgb(228,159,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="762.21" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>test (1,686,560 samples, 0.01%)</title><rect x="179.2" y="209" width="0.2" height="15.0" fill="rgb(227,110,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="182.24" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez-0.4.0-incubating-full (44,316,389 samples, 0.35%)</title><rect x="1175.6" y="193" width="4.2" height="15.0" fill="rgb(225,3,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="1178.60" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (8,585,412 samples, 0.07%)</title><rect x="492.0" y="209" width="0.8" height="15.0" fill="rgb(248,209,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.02" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,079,426 samples, 0.01%)</title><rect x="1152.3" y="177" width="0.2" height="15.0" fill="rgb(211,33,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1155.35" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>puppet (3,759,678 samples, 0.03%)</title><rect x="177.8" y="193" width="0.3" height="15.0" fill="rgb(230,162,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="180.79" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (33,684,616 samples, 0.27%)</title><rect x="751.5" y="177" width="3.2" height="15.0" fill="rgb(251,190,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="754.50" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>js-yaml (4,926,513 samples, 0.04%)</title><rect x="576.9" y="129" width="0.4" height="15.0" fill="rgb(236,50,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="579.88" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (7,960,106 samples, 0.06%)</title><rect x="1143.7" y="161" width="0.8" height="15.0" fill="rgb(246,61,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="1146.74" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>api (3,581,575 samples, 0.03%)</title><rect x="1159.5" y="129" width="0.4" height="15.0" fill="rgb(230,74,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="1162.53" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sql (1,217,152 samples, 0.01%)</title><rect x="1151.0" y="113" width="0.1" height="15.0" fill="rgb(218,94,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="1153.96" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (2,488,719 samples, 0.02%)</title><rect x="543.2" y="81" width="0.2" height="15.0" fill="rgb(214,180,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="546.19" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>esprima (1,897,306 samples, 0.02%)</title><rect x="240.6" y="113" width="0.2" height="15.0" fill="rgb(246,139,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="243.62" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,194,353 samples, 0.01%)</title><rect x="493.5" y="177" width="0.1" height="15.0" fill="rgb(205,128,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="496.48" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>files (5,068,793 samples, 0.04%)</title><rect x="294.6" y="209" width="0.5" height="15.0" fill="rgb(245,163,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="297.65" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (1,850,126 samples, 0.01%)</title><rect x="551.8" y="49" width="0.2" height="15.0" fill="rgb(239,54,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="554.84" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache-flume-1.6.0-bin (282,735,510 samples, 2.25%)</title><rect x="351.4" y="257" width="26.5" height="15.0" fill="rgb(251,121,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="354.44" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >a..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bin-hadoop2.2.0-x86 (1,303,496 samples, 0.01%)</title><rect x="808.5" y="241" width="0.1" height="15.0" fill="rgb(246,148,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="811.49" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (92,026,462 samples, 0.73%)</title><rect x="1060.1" y="193" width="8.6" height="15.0" fill="rgb(243,207,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1063.08" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>catalyst (2,528,430 samples, 0.02%)</title><rect x="1142.2" y="97" width="0.3" height="15.0" fill="rgb(218,12,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="1145.23" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala (12,256,090 samples, 0.10%)</title><rect x="1136.8" y="193" width="1.1" height="15.0" fill="rgb(249,115,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="1139.80" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hbase-0.98.3-hadoop2-bin (138,634,041 samples, 1.10%)</title><rect x="1093.1" y="257" width="13.0" height="15.0" fill="rgb(246,90,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="1096.15" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tools (4,211,812 samples, 0.03%)</title><rect x="346.0" y="177" width="0.4" height="15.0" fill="rgb(251,118,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="349.05" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-hdfs-nfs (3,156,236 samples, 0.03%)</title><rect x="763.6" y="225" width="0.3" height="15.0" fill="rgb(233,125,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="766.59" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (17,550,981 samples, 0.14%)</title><rect x="270.5" y="161" width="1.7" height="15.0" fill="rgb(252,107,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="273.52" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (38,235,364 samples, 0.30%)</title><rect x="767.7" y="161" width="3.6" height="15.0" fill="rgb(215,59,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="770.69" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (2,287,126 samples, 0.02%)</title><rect x="563.4" y="113" width="0.2" height="15.0" fill="rgb(239,165,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="566.40" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (6,711,198 samples, 0.05%)</title><rect x="802.5" y="129" width="0.6" height="15.0" fill="rgb(235,84,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="805.50" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hawk (1,232,520 samples, 0.01%)</title><rect x="267.6" y="113" width="0.1" height="15.0" fill="rgb(207,131,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="270.59" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (10,840,524 samples, 0.09%)</title><rect x="541.9" y="113" width="1.0" height="15.0" fill="rgb(225,106,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="544.90" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (2,015,707 samples, 0.02%)</title><rect x="638.0" y="113" width="0.2" height="15.0" fill="rgb(254,13,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="640.99" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>streaming (11,189,758 samples, 0.09%)</title><rect x="1151.1" y="241" width="1.0" height="15.0" fill="rgb(215,83,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="1154.07" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (2,089,671 samples, 0.02%)</title><rect x="1115.3" y="193" width="0.2" height="15.0" fill="rgb(246,51,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="1118.34" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (6,637,438 samples, 0.05%)</title><rect x="787.1" y="177" width="0.6" height="15.0" fill="rgb(236,162,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="790.09" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>format (1,836,074 samples, 0.01%)</title><rect x="342.0" y="145" width="0.1" height="15.0" fill="rgb(252,39,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="344.96" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez-common (1,330,384 samples, 0.01%)</title><rect x="1161.1" y="241" width="0.1" height="15.0" fill="rgb(227,44,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="1164.10" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (10,040,138 samples, 0.08%)</title><rect x="1159.0" y="177" width="0.9" height="15.0" fill="rgb(207,36,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="1161.98" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (5,235,686 samples, 0.04%)</title><rect x="789.8" y="209" width="0.5" height="15.0" fill="rgb(245,51,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="792.84" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>metastore (127,184,466 samples, 1.01%)</title><rect x="403.5" y="241" width="11.9" height="15.0" fill="rgb(224,207,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="406.51" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>app (2,248,924 samples, 0.02%)</title><rect x="1162.6" y="113" width="0.2" height="15.0" fill="rgb(238,154,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="1165.63" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dag (4,362,162 samples, 0.03%)</title><rect x="489.2" y="129" width="0.5" height="15.0" fill="rgb(217,116,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="492.25" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,877,315 samples, 0.01%)</title><rect x="800.9" y="145" width="0.2" height="15.0" fill="rgb(207,83,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="803.93" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (1,101,729 samples, 0.01%)</title><rect x="766.0" y="161" width="0.1" height="15.0" fill="rgb(206,153,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="768.96" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tez (2,091,603 samples, 0.02%)</title><rect x="1163.0" y="145" width="0.2" height="15.0" fill="rgb(209,124,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="1166.05" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>class-use (2,758,417 samples, 0.02%)</title><rect x="1027.6" y="145" width="0.3" height="15.0" fill="rgb(249,147,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="1030.60" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dag (1,341,536 samples, 0.01%)</title><rect x="488.4" y="97" width="0.2" height="15.0" fill="rgb(211,41,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.45" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala (17,936,278 samples, 0.14%)</title><rect x="1130.3" y="193" width="1.6" height="15.0" fill="rgb(206,13,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="1133.25" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (6,432,290 samples, 0.05%)</title><rect x="402.5" y="209" width="0.6" height="15.0" fill="rgb(234,136,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="405.49" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>mapreduce (21,600,857 samples, 0.17%)</title><rect x="640.1" y="209" width="2.0" height="15.0" fill="rgb(236,140,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="643.06" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (2,994,373 samples, 0.02%)</title><rect x="492.9" y="177" width="0.3" height="15.0" fill="rgb(222,207,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.91" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>crypto (1,484,428 samples, 0.01%)</title><rect x="277.1" y="33" width="0.1" height="15.0" fill="rgb(209,192,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="280.08" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (2,108,549 samples, 0.02%)</title><rect x="564.9" y="113" width="0.2" height="15.0" fill="rgb(239,164,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.92" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (1,380,336 samples, 0.01%)</title><rect x="784.3" y="113" width="0.1" height="15.0" fill="rgb(224,38,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="787.27" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (2,695,784 samples, 0.02%)</title><rect x="401.7" y="177" width="0.3" height="15.0" fill="rgb(211,167,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="404.73" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (5,882,239 samples, 0.05%)</title><rect x="1107.5" y="161" width="0.6" height="15.0" fill="rgb(213,179,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1110.51" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (26,588,958 samples, 0.21%)</title><rect x="773.7" y="145" width="2.5" height="15.0" fill="rgb(233,18,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="776.71" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (13,422,116 samples, 0.11%)</title><rect x="804.6" y="113" width="1.2" height="15.0" fill="rgb(237,106,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="807.58" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>master (6,923,588 samples, 0.05%)</title><rect x="943.1" y="145" width="0.7" height="15.0" fill="rgb(241,131,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="946.11" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>api (1,296,983 samples, 0.01%)</title><rect x="187.6" y="113" width="0.1" height="15.0" fill="rgb(231,168,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="190.60" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (1,132,265 samples, 0.01%)</title><rect x="231.5" y="193" width="0.1" height="15.0" fill="rgb(239,17,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="234.49" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (12,412,201 samples, 0.10%)</title><rect x="487.5" y="209" width="1.2" height="15.0" fill="rgb(211,70,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="490.50" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-auth (2,595,387 samples, 0.02%)</title><rect x="684.5" y="225" width="0.2" height="15.0" fill="rgb(230,11,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="687.46" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (6,545,539 samples, 0.05%)</title><rect x="1141.9" y="145" width="0.6" height="15.0" fill="rgb(205,157,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1144.87" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (6,210,742 samples, 0.05%)</title><rect x="397.0" y="225" width="0.6" height="15.0" fill="rgb(230,36,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="399.97" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (14,573,828 samples, 0.12%)</title><rect x="1130.6" y="177" width="1.3" height="15.0" fill="rgb(212,87,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="1133.57" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>scala-2.10 (1,400,440 samples, 0.01%)</title><rect x="1139.6" y="225" width="0.1" height="15.0" fill="rgb(228,122,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="1142.60" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>opt (12,589,350,353 samples, 100.00%)</title><rect x="10.0" y="289" width="1180.0" height="15.0" fill="rgb(216,11,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >opt</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>flume (54,215,350 samples, 0.43%)</title><rect x="367.6" y="177" width="5.1" height="15.0" fill="rgb(251,112,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="370.57" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>examples (2,528,434 samples, 0.02%)</title><rect x="787.5" y="113" width="0.2" height="15.0" fill="rgb(251,155,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="790.47" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>main (7,831,867 samples, 0.06%)</title><rect x="779.1" y="177" width="0.7" height="15.0" fill="rgb(248,191,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="782.05" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>java (1,537,780 samples, 0.01%)</title><rect x="403.4" y="209" width="0.1" height="15.0" fill="rgb(208,56,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="406.36" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>compaction (1,835,086 samples, 0.01%)</title><rect x="339.2" y="161" width="0.2" height="15.0" fill="rgb(237,116,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="342.22" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>apache (653,737,448 samples, 5.19%)</title><rect x="991.2" y="193" width="61.2" height="15.0" fill="rgb(251,105,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="994.15" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >apache</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>webapp (3,676,858 samples, 0.03%)</title><rect x="1123.0" y="193" width="0.3" height="15.0" fill="rgb(240,51,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="1125.99" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>oozie-4.2.0 (102,240,936 samples, 0.81%)</title><rect x="1114.0" y="257" width="9.6" height="15.0" fill="rgb(221,52,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="1117.01" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ant (1,423,496 samples, 0.01%)</title><rect x="396.5" y="241" width="0.1" height="15.0" fill="rgb(209,151,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="399.51" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>statements (2,759,392 samples, 0.02%)</title><rect x="337.3" y="161" width="0.3" height="15.0" fill="rgb(252,144,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="340.34" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>src (9,888,433 samples, 0.08%)</title><rect x="1151.2" y="225" width="0.9" height="15.0" fill="rgb(233,70,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1154.20" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop (5,997,978 samples, 0.05%)</title><rect x="786.1" y="113" width="0.6" height="15.0" fill="rgb(249,51,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="789.15" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hadoop-yarn-applications (1,773,960 samples, 0.01%)</title><rect x="795.7" y="209" width="0.2" height="15.0" fill="rgb(214,23,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="798.72" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bin - x86 (1,303,496 samples, 0.01%)</title><rect x="594.1" y="241" width="0.2" height="15.0" fill="rgb(233,85,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="597.14" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>types (1,362,804 samples, 0.01%)</title><rect x="1051.5" y="145" width="0.1" height="15.0" fill="rgb(243,222,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="1054.45" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hfile (3,230,464 samples, 0.03%)</title><rect x="942.5" y="129" width="0.3" height="15.0" fill="rgb(231,109,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="945.46" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>node_modules (9,118,644 samples, 0.07%)</title><rect x="564.3" y="145" width="0.8" height="15.0" fill="rgb(206,32,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="567.27" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>yarn (3,900,957 samples, 0.03%)</title><rect x="802.8" y="81" width="0.3" height="15.0" fill="rgb(234,74,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="805.76" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>gen-javabean (1,848,264 samples, 0.01%)</title><rect x="433.3" y="177" width="0.2" height="15.0" fill="rgb(253,75,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="436.31" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>org (1,180,134 samples, 0.01%)</title><rect x="403.2" y="161" width="0.1" height="15.0" fill="rgb(215,129,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="406.19" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>core (1,327,158 samples, 0.01%)</title><rect x="551.9" y="33" width="0.1" height="15.0" fill="rgb(231,218,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="554.89" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>command (1,568,753 samples, 0.01%)</title><rect x="1119.0" y="129" width="0.1" height="15.0" fill="rgb(228,71,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="1121.96" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>runtime (2,430,178 samples, 0.02%)</title><rect x="1184.8" y="129" width="0.2" height="15.0" fill="rgb(216,47,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="1187.76" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>buster-core (6,277,780 samples, 0.05%)</title><rect x="283.4" y="145" width="0.5" height="15.0" fill="rgb(206,216,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.35" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
</svg> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl -w | |
# | |
# example: | |
# | |
# $ path=. | |
# $ depth=3 | |
# | |
# $ du $path --max-depth=$depth -b > out.du | |
# or use | |
# $ du $path -b > out.du | |
# | |
# $ ~/git/FlameGraph/stackcollapse-du.pl out.du > out.du-folded | |
# $ ~/git/FlameGraph/flamegraph.pl out.du-folded >du.svg | |
# | |
use strict; | |
my $numArgs = $#ARGV + 1; | |
if ($numArgs != 1) | |
{ | |
print "$ARGV[0]\n"; | |
print "Usage : stackcollapse-du.pl <out.du> > out.txt\n"; | |
exit; | |
} | |
my $inputDUFile = $ARGV[0]; | |
open(my $fh, '<', $inputDUFile) or die "Can't read file '$inputDUFile' [$!]\n"; | |
while (my $currLine = <$fh>){ | |
chomp $currLine; | |
$currLine =~ (/^\s*(\d+(?:\.\d*)?)\s+?(.*)$/) or die "Error in regular expression on the current line\n"; | |
my $value = $1; | |
my $path = $2; | |
if ($path) { | |
my @stack = split(/\//, $path); | |
my @result = (); | |
my $tempString = ''; | |
my $i; | |
for($i=0; $i!=@stack; ++$i) { | |
if(!($stack[$i] eq '')) { | |
$result[@result] = $stack[$i]; | |
} | |
} | |
$tempString = join(";", @result)." $value\n"; | |
if ($value != 0){ | |
print "$tempString"; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment