Created
December 7, 2017 04:16
-
-
Save bobrik/d84e8523a498d6b1f3a179b368a98dbd to your computer and use it in GitHub Desktop.
This file contains hidden or 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="914" onload="init(evt)" viewBox="0 0 1200 914" 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 there's any manipulation we want to do to the function | |
// name before it's searched, do it here before returning. | |
return (func); | |
} | |
function update_text(e) { | |
var r = find_child(e, "rect"); | |
var t = find_child(e, "text"); | |
var w = parseFloat(r.attributes["width"].value) -3; | |
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,""); | |
t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3; | |
// Smaller than this size won't fit anything | |
if (w < 2*12*0.59) { | |
t.textContent = ""; | |
return; | |
} | |
t.textContent = txt; | |
// Fit in full text width | |
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w) | |
return; | |
for (var x=txt.length-2; x>0; x--) { | |
if (t.getSubStringLength(0, x+2) <= w) { | |
t.textContent = txt.substring(0,x) + ".."; | |
return; | |
} | |
} | |
t.textContent = ""; | |
} | |
// zoom | |
function zoom_reset(e) { | |
if (e.attributes != undefined) { | |
orig_load(e, "x"); | |
orig_load(e, "width"); | |
} | |
if (e.childNodes == undefined) return; | |
for(var i=0, c=e.childNodes; i<c.length; i++) { | |
zoom_reset(c[i]); | |
} | |
} | |
function zoom_child(e, x, ratio) { | |
if (e.attributes != undefined) { | |
if (e.attributes["x"] != undefined) { | |
orig_save(e, "x"); | |
e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - 10) * ratio + 10; | |
if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 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; | |
}); | |
// 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="914.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="897" 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="897" 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>runtime.gopreempt_m (2 samples, 0.02%)</title><rect x="550.9" y="641" width="0.2" height="15.0" fill="rgb(237,193,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="553.88" y="651.5" font-size="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.heapBitsForObject (4 samples, 0.03%)</title><rect x="583.9" y="481" width="0.4" height="15.0" fill="rgb(237,146,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="586.93" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (6 samples, 0.05%)</title><rect x="716.3" y="513" width="0.5" height="15.0" fill="rgb(225,149,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="719.29" y="523.5" font-size="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.goschedImpl (3 samples, 0.02%)</title><rect x="1188.7" y="769" width="0.3" height="15.0" fill="rgb(239,101,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.74" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (10 samples, 0.08%)</title><rect x="744.9" y="513" width="0.9" height="15.0" fill="rgb(237,153,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="747.92" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (4 samples, 0.03%)</title><rect x="355.6" y="257" width="0.3" height="15.0" fill="rgb(240,107,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="358.58" 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>runtime.(*gcWork).balance (61 samples, 0.47%)</title><rect x="1073.8" y="769" width="5.5" height="15.0" fill="rgb(242,197,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="1076.85" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (2 samples, 0.02%)</title><rect x="664.5" y="577" width="0.2" height="15.0" fill="rgb(208,2,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="667.52" y="587.5" font-size="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.stopm (21 samples, 0.16%)</title><rect x="166.4" y="737" width="1.9" height="15.0" fill="rgb(222,144,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="169.40" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (6 samples, 0.05%)</title><rect x="355.4" y="385" width="0.5" height="15.0" fill="rgb(205,220,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="358.40" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (487 samples, 3.72%)</title><rect x="771.6" y="609" width="43.8" height="15.0" fill="rgb(245,63,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="774.57" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fute..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="421.1" y="161" width="0.2" height="15.0" fill="rgb(208,147,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="424.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>schedule_hrtimeout_range (77 samples, 0.59%)</title><rect x="978.2" y="673" width="7.0" height="15.0" fill="rgb(219,118,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="981.22" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>compress/flate.(*compressor).write (4 samples, 0.03%)</title><rect x="565.6" y="609" width="0.4" height="15.0" fill="rgb(253,34,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.65" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (3 samples, 0.02%)</title><rect x="336.4" y="257" width="0.3" height="15.0" fill="rgb(226,75,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="339.40" 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>do_futex (2 samples, 0.02%)</title><rect x="1059.3" y="625" width="0.2" height="15.0" fill="rgb(227,113,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.35" y="635.5" font-size="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.gopreempt_m (4 samples, 0.03%)</title><rect x="529.7" y="673" width="0.4" height="15.0" fill="rgb(231,150,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="532.72" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (38 samples, 0.29%)</title><rect x="704.0" y="545" width="3.4" height="15.0" fill="rgb(233,121,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="706.95" y="555.5" font-size="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.newarray (12 samples, 0.09%)</title><rect x="295.1" y="737" width="1.1" height="15.0" fill="rgb(225,176,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="298.07" y="747.5" font-size="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_balance (2 samples, 0.02%)</title><rect x="762.7" y="513" width="0.1" height="15.0" fill="rgb(223,184,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="765.66" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (9 samples, 0.07%)</title><rect x="27.6" y="593" width="0.8" height="15.0" fill="rgb(234,182,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="30.56" y="603.5" font-size="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.futex (11 samples, 0.08%)</title><rect x="490.3" y="497" width="1.0" height="15.0" fill="rgb(213,225,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="493.28" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (8 samples, 0.06%)</title><rect x="986.4" y="513" width="0.7" height="15.0" fill="rgb(239,144,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="989.42" y="523.5" font-size="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.mcall (14 samples, 0.11%)</title><rect x="563.0" y="545" width="1.3" height="15.0" fill="rgb(228,72,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="566.04" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="165.7" y="497" width="0.2" height="15.0" fill="rgb(212,178,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="168.68" y="507.5" font-size="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.systemstack (3 samples, 0.02%)</title><rect x="332.9" y="657" width="0.3" height="15.0" fill="rgb(222,11,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="335.89" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule_hrtimeout_range (16 samples, 0.12%)</title><rect x="698.5" y="641" width="1.4" height="15.0" fill="rgb(242,48,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="701.46" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (23 samples, 0.18%)</title><rect x="477.0" y="337" width="2.0" height="15.0" fill="rgb(231,63,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="479.96" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>internal/poll.setDeadlineImpl (3 samples, 0.02%)</title><rect x="326.9" y="737" width="0.3" height="15.0" fill="rgb(241,24,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="329.95" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (9 samples, 0.07%)</title><rect x="95.8" y="513" width="0.8" height="15.0" fill="rgb(240,74,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="98.81" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (17 samples, 0.13%)</title><rect x="166.8" y="625" width="1.5" height="15.0" fill="rgb(240,44,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="169.76" y="635.5" font-size="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.systemstack (2 samples, 0.02%)</title><rect x="454.8" y="433" width="0.2" height="15.0" fill="rgb(205,216,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="457.81" y="443.5" font-size="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.mallocgc (6 samples, 0.05%)</title><rect x="515.0" y="577" width="0.5" height="15.0" fill="rgb(241,205,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="517.96" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="417.3" y="465" width="0.1" height="15.0" fill="rgb(220,189,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="420.26" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (3 samples, 0.02%)</title><rect x="1006.4" y="513" width="0.3" height="15.0" fill="rgb(224,126,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1009.40" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (4 samples, 0.03%)</title><rect x="637.3" y="433" width="0.4" height="15.0" fill="rgb(249,197,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="640.32" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (5 samples, 0.04%)</title><rect x="177.9" y="593" width="0.5" height="15.0" fill="rgb(242,83,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="180.93" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (7 samples, 0.05%)</title><rect x="23.3" y="385" width="0.7" height="15.0" fill="rgb(238,65,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="26.33" y="395.5" font-size="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.goparkunlock (3 samples, 0.02%)</title><rect x="529.4" y="625" width="0.2" height="15.0" fill="rgb(207,36,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="532.36" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (6 samples, 0.05%)</title><rect x="1189.4" y="593" width="0.5" height="15.0" fill="rgb(219,63,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.37" y="603.5" font-size="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.park_m (46 samples, 0.35%)</title><rect x="155.3" y="753" width="4.2" height="15.0" fill="rgb(232,19,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="158.33" y="763.5" font-size="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.findrunnable (4 samples, 0.03%)</title><rect x="647.2" y="497" width="0.4" height="15.0" fill="rgb(221,111,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="650.23" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ep_poll (6 samples, 0.05%)</title><rect x="253.0" y="673" width="0.6" height="15.0" fill="rgb(225,33,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="256.02" y="683.5" font-size="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.schedule (13 samples, 0.10%)</title><rect x="21.5" y="689" width="1.2" height="15.0" fill="rgb(229,149,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.53" y="699.5" font-size="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.notetsleep_internal (40 samples, 0.31%)</title><rect x="303.6" y="673" width="3.6" height="15.0" fill="rgb(208,177,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="306.63" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>audit_filter_syscall (3 samples, 0.02%)</title><rect x="710.1" y="625" width="0.2" height="15.0" fill="rgb(205,197,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="713.08" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="351.1" y="497" width="0.2" height="15.0" fill="rgb(248,169,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="354.08" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule_hrtimeout_range_clock (2 samples, 0.02%)</title><rect x="84.5" y="593" width="0.1" height="15.0" fill="rgb(227,116,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="87.46" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (9 samples, 0.07%)</title><rect x="585.7" y="305" width="0.8" height="15.0" fill="rgb(245,215,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="588.73" 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>math/big.(*Int).Mod (16 samples, 0.12%)</title><rect x="274.7" y="609" width="1.5" height="15.0" fill="rgb(248,173,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="277.72" y="619.5" font-size="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.systemstack (3 samples, 0.02%)</title><rect x="351.0" y="625" width="0.3" height="15.0" fill="rgb(207,123,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="353.99" y="635.5" font-size="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.gcAssistAlloc (33 samples, 0.25%)</title><rect x="438.8" y="673" width="3.0" height="15.0" fill="rgb(237,93,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="441.78" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (20 samples, 0.15%)</title><rect x="710.0" y="673" width="1.8" height="15.0" fill="rgb(221,138,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="712.99" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (4 samples, 0.03%)</title><rect x="522.7" y="449" width="0.4" height="15.0" fill="rgb(223,36,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="525.70" y="459.5" font-size="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.(*mheap).reclaimList (14 samples, 0.11%)</title><rect x="636.1" y="481" width="1.2" height="15.0" fill="rgb(252,185,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="639.06" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (2 samples, 0.02%)</title><rect x="18.5" y="545" width="0.1" height="15.0" fill="rgb(215,80,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.46" y="555.5" font-size="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.park_m (3 samples, 0.02%)</title><rect x="1186.2" y="737" width="0.3" height="15.0" fill="rgb(227,162,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.22" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="414.6" y="337" width="0.2" height="15.0" fill="rgb(240,224,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="417.65" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (33 samples, 0.25%)</title><rect x="740.8" y="609" width="3.0" height="15.0" fill="rgb(214,164,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="743.78" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (2 samples, 0.02%)</title><rect x="421.1" y="193" width="0.2" height="15.0" fill="rgb(220,2,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="424.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>runtime.usleep (7 samples, 0.05%)</title><rect x="598.4" y="433" width="0.7" height="15.0" fill="rgb(245,74,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="601.42" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (3 samples, 0.02%)</title><rect x="101.5" y="529" width="0.3" height="15.0" fill="rgb(243,72,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="104.48" y="539.5" font-size="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.mallocgc (2 samples, 0.02%)</title><rect x="340.2" y="433" width="0.2" height="15.0" fill="rgb(236,66,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="343.18" y="443.5" font-size="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.(*mspan).sweep (4 samples, 0.03%)</title><rect x="492.7" y="481" width="0.4" height="15.0" fill="rgb(206,157,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.71" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/gopkg.in/yaml%2ev2.(*encoder).slicev (2 samples, 0.02%)</title><rect x="511.1" y="529" width="0.2" height="15.0" fill="rgb(213,160,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="514.08" y="539.5" font-size="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.lock (3 samples, 0.02%)</title><rect x="484.8" y="465" width="0.3" height="15.0" fill="rgb(240,47,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="487.79" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>reschedule_interrupt (3 samples, 0.02%)</title><rect x="110.2" y="561" width="0.3" height="15.0" fill="rgb(247,112,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="113.22" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (3 samples, 0.02%)</title><rect x="542.6" y="433" width="0.3" height="15.0" fill="rgb(217,125,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="545.60" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (8 samples, 0.06%)</title><rect x="659.6" y="433" width="0.7" height="15.0" fill="rgb(210,216,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="662.56" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (9 samples, 0.07%)</title><rect x="480.6" y="401" width="0.9" height="15.0" fill="rgb(247,117,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="483.65" y="411.5" font-size="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.lock (2 samples, 0.02%)</title><rect x="174.6" y="737" width="0.2" height="15.0" fill="rgb(210,6,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="177.60" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="16.8" y="545" width="0.2" height="15.0" fill="rgb(210,225,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.84" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>enqueue_entity (4 samples, 0.03%)</title><rect x="723.6" y="529" width="0.3" height="15.0" fill="rgb(241,89,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="726.58" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (35 samples, 0.27%)</title><rect x="552.3" y="561" width="3.2" height="15.0" fill="rgb(226,97,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="555.32" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>new_inode_pseudo (5 samples, 0.04%)</title><rect x="963.6" y="529" width="0.5" height="15.0" fill="rgb(241,85,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="966.63" y="539.5" font-size="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.morestack (6 samples, 0.05%)</title><rect x="28.5" y="753" width="0.5" height="15.0" fill="rgb(242,177,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="31.46" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (9 samples, 0.07%)</title><rect x="170.1" y="593" width="0.8" height="15.0" fill="rgb(212,89,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="173.09" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (3 samples, 0.02%)</title><rect x="51.9" y="577" width="0.2" height="15.0" fill="rgb(220,102,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="54.87" y="587.5" font-size="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.goschedImpl (18 samples, 0.14%)</title><rect x="1059.2" y="769" width="1.6" height="15.0" fill="rgb(247,192,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.17" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (2 samples, 0.02%)</title><rect x="26.0" y="513" width="0.2" height="15.0" fill="rgb(254,221,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="29.03" y="523.5" font-size="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.(*mcache).refill (4 samples, 0.03%)</title><rect x="546.7" y="609" width="0.3" height="15.0" fill="rgb(217,221,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="549.65" y="619.5" font-size="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.park_m (2 samples, 0.02%)</title><rect x="436.5" y="481" width="0.2" height="15.0" fill="rgb(229,163,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.53" y="491.5" font-size="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.heapBitsSetType (2 samples, 0.02%)</title><rect x="518.1" y="641" width="0.2" height="15.0" fill="rgb(217,207,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="521.11" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule_hrtimeout_range_clock (2 samples, 0.02%)</title><rect x="144.6" y="609" width="0.2" height="15.0" fill="rgb(213,102,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="147.61" y="619.5" font-size="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.systemstack (3 samples, 0.02%)</title><rect x="560.9" y="529" width="0.2" height="15.0" fill="rgb(250,137,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="563.88" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (2 samples, 0.02%)</title><rect x="365.8" y="369" width="0.1" height="15.0" fill="rgb(227,115,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="368.76" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_sched_yield (7 samples, 0.05%)</title><rect x="142.2" y="673" width="0.6" height="15.0" fill="rgb(214,46,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="145.18" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (2 samples, 0.02%)</title><rect x="247.7" y="657" width="0.2" height="15.0" fill="rgb(225,187,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="250.71" y="667.5" font-size="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.getitab (3 samples, 0.02%)</title><rect x="365.4" y="545" width="0.3" height="15.0" fill="rgb(249,88,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="368.40" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__unqueue_futex (2 samples, 0.02%)</title><rect x="604.1" y="401" width="0.2" height="15.0" fill="rgb(246,34,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="607.10" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="30.3" y="497" width="0.1" height="15.0" fill="rgb(242,203,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="33.26" y="507.5" font-size="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.findrunnable (2 samples, 0.02%)</title><rect x="160.3" y="721" width="0.2" height="15.0" fill="rgb(239,167,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="163.28" y="731.5" font-size="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.morestack (2 samples, 0.02%)</title><rect x="337.2" y="561" width="0.2" height="15.0" fill="rgb(244,65,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="340.21" y="571.5" font-size="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.deductSweepCredit (2 samples, 0.02%)</title><rect x="471.2" y="609" width="0.2" height="15.0" fill="rgb(217,223,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="474.19" y="619.5" font-size="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.gcParkAssist (2 samples, 0.02%)</title><rect x="436.5" y="529" width="0.2" height="15.0" fill="rgb(212,60,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.53" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="373.9" y="449" width="0.2" height="15.0" fill="rgb(212,1,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="376.95" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (7 samples, 0.05%)</title><rect x="263.5" y="449" width="0.6" height="15.0" fill="rgb(241,207,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="266.47" y="459.5" font-size="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.notesleep (2 samples, 0.02%)</title><rect x="371.3" y="481" width="0.2" height="15.0" fill="rgb(207,145,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="374.34" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (29 samples, 0.22%)</title><rect x="476.6" y="449" width="2.6" height="15.0" fill="rgb(248,104,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="479.60" y="459.5" font-size="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.mcall (3 samples, 0.02%)</title><rect x="542.0" y="545" width="0.2" height="15.0" fill="rgb(232,110,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="544.97" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="277.8" y="529" width="0.2" height="15.0" fill="rgb(247,128,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="280.78" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (3 samples, 0.02%)</title><rect x="936.6" y="641" width="0.3" height="15.0" fill="rgb(224,197,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="939.62" y="651.5" font-size="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.futex (2 samples, 0.02%)</title><rect x="13.8" y="545" width="0.2" height="15.0" fill="rgb(230,59,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.78" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (27 samples, 0.21%)</title><rect x="113.3" y="641" width="2.4" height="15.0" fill="rgb(236,106,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="116.28" y="651.5" font-size="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.futex (18 samples, 0.14%)</title><rect x="678.1" y="593" width="1.6" height="15.0" fill="rgb(223,158,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="681.11" y="603.5" font-size="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.semacquire1 (4 samples, 0.03%)</title><rect x="506.6" y="513" width="0.3" height="15.0" fill="rgb(244,222,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="509.58" y="523.5" font-size="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.(*mcentral).cacheSpan (2 samples, 0.02%)</title><rect x="450.3" y="497" width="0.2" height="15.0" fill="rgb(232,128,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="453.31" y="507.5" font-size="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.newstack (2 samples, 0.02%)</title><rect x="45.7" y="737" width="0.2" height="15.0" fill="rgb(241,130,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="48.75" y="747.5" font-size="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.gcstopm (3 samples, 0.02%)</title><rect x="17.8" y="641" width="0.3" height="15.0" fill="rgb(207,124,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.83" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="46.9" y="401" width="0.2" height="15.0" fill="rgb(232,17,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="49.92" y="411.5" font-size="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.park_m (2 samples, 0.02%)</title><rect x="1189.1" y="801" width="0.2" height="15.0" fill="rgb(224,177,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.10" y="811.5" font-size="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.goparkunlock (4 samples, 0.03%)</title><rect x="491.4" y="593" width="0.3" height="15.0" fill="rgb(244,22,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="494.36" y="603.5" font-size="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.mallocgc (22 samples, 0.17%)</title><rect x="527.2" y="689" width="2.0" height="15.0" fill="rgb(249,95,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="530.20" y="699.5" font-size="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.newobject (3 samples, 0.02%)</title><rect x="270.8" y="769" width="0.2" height="15.0" fill="rgb(218,58,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="273.76" y="779.5" font-size="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.newstack (3 samples, 0.02%)</title><rect x="12.9" y="625" width="0.3" height="15.0" fill="rgb(221,141,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="15.88" y="635.5" font-size="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.schedule (2 samples, 0.02%)</title><rect x="166.0" y="753" width="0.2" height="15.0" fill="rgb(247,137,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="169.04" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="650.5" y="257" width="0.1" height="15.0" fill="rgb(249,131,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="653.47" 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>runtime.makeslice (6 samples, 0.05%)</title><rect x="451.1" y="545" width="0.6" height="15.0" fill="rgb(245,20,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="454.12" y="555.5" font-size="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.gcParkAssist (2 samples, 0.02%)</title><rect x="547.0" y="609" width="0.2" height="15.0" fill="rgb(230,154,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="550.01" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/github.com/miekg/dns.(*Client).Exchange (5 samples, 0.04%)</title><rect x="333.3" y="705" width="0.4" height="15.0" fill="rgb(228,57,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="336.25" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (25 samples, 0.19%)</title><rect x="288.0" y="497" width="2.2" height="15.0" fill="rgb(254,2,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="290.96" y="507.5" font-size="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.(*mcentral).freeSpan (4 samples, 0.03%)</title><rect x="354.8" y="385" width="0.3" height="15.0" fill="rgb(250,185,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="357.77" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net/textproto.(*Reader).readContinuedLineSlice (3 samples, 0.02%)</title><rect x="303.0" y="753" width="0.3" height="15.0" fill="rgb(228,198,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="306.00" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (2 samples, 0.02%)</title><rect x="370.5" y="385" width="0.2" height="15.0" fill="rgb(241,141,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="373.53" y="395.5" font-size="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.goparkunlock (50 samples, 0.38%)</title><rect x="691.3" y="721" width="4.5" height="15.0" fill="rgb(245,10,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="694.26" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (3 samples, 0.02%)</title><rect x="26.8" y="577" width="0.3" height="15.0" fill="rgb(227,149,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="29.84" y="587.5" font-size="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.mapassign (13 samples, 0.10%)</title><rect x="295.0" y="753" width="1.2" height="15.0" fill="rgb(206,140,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="297.98" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (2 samples, 0.02%)</title><rect x="449.0" y="449" width="0.2" height="15.0" fill="rgb(246,87,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="452.04" y="459.5" font-size="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.lock (4 samples, 0.03%)</title><rect x="637.0" y="465" width="0.3" height="15.0" fill="rgb(238,62,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="639.96" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="34.9" y="609" width="0.1" height="15.0" fill="rgb(253,179,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="37.85" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (8 samples, 0.06%)</title><rect x="496.2" y="577" width="0.7" height="15.0" fill="rgb(236,206,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="499.23" y="587.5" font-size="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.newstack (2 samples, 0.02%)</title><rect x="337.0" y="513" width="0.2" height="15.0" fill="rgb(210,9,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="340.03" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule_hrtimeout_range_clock (5 samples, 0.04%)</title><rect x="156.7" y="545" width="0.4" height="15.0" fill="rgb(238,197,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="159.68" y="555.5" font-size="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.futex (2 samples, 0.02%)</title><rect x="938.4" y="721" width="0.2" height="15.0" fill="rgb(225,167,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="941.42" y="731.5" font-size="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.mallocgc (7 samples, 0.05%)</title><rect x="362.4" y="497" width="0.7" height="15.0" fill="rgb(233,128,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="365.42" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_softirq_own_stack (5 samples, 0.04%)</title><rect x="312.6" y="337" width="0.5" height="15.0" fill="rgb(247,155,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="315.63" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (8 samples, 0.06%)</title><rect x="103.7" y="529" width="0.8" height="15.0" fill="rgb(252,202,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="106.73" y="539.5" font-size="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.stopm (3 samples, 0.02%)</title><rect x="655.7" y="497" width="0.3" height="15.0" fill="rgb(224,25,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="658.69" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (7 samples, 0.05%)</title><rect x="745.8" y="721" width="0.7" height="15.0" fill="rgb(232,165,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="748.82" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="423.2" y="449" width="0.2" height="15.0" fill="rgb(246,38,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="426.20" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net.setKeepAlivePeriod (3 samples, 0.02%)</title><rect x="961.6" y="705" width="0.2" height="15.0" fill="rgb(219,66,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="964.56" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/gopkg.in/yaml%2ev2.yaml_emitter_emit (10 samples, 0.08%)</title><rect x="506.5" y="657" width="0.9" height="15.0" fill="rgb(247,79,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="509.49" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (3 samples, 0.02%)</title><rect x="174.1" y="561" width="0.3" height="15.0" fill="rgb(233,137,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="177.15" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (3 samples, 0.02%)</title><rect x="160.0" y="625" width="0.3" height="15.0" fill="rgb(253,174,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="163.01" y="635.5" font-size="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.stopm (2 samples, 0.02%)</title><rect x="17.5" y="625" width="0.2" height="15.0" fill="rgb(211,51,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.47" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hrtimer_active (3 samples, 0.02%)</title><rect x="651.5" y="305" width="0.3" height="15.0" fill="rgb(234,98,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="654.55" 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>finish_task_switch (3 samples, 0.02%)</title><rect x="527.3" y="385" width="0.3" height="15.0" fill="rgb(253,104,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="530.29" y="395.5" font-size="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.(*mcache).nextFree.func1 (4 samples, 0.03%)</title><rect x="546.7" y="625" width="0.3" height="15.0" fill="rgb(214,200,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="549.65" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__audit_syscall_exit (3 samples, 0.02%)</title><rect x="417.5" y="561" width="0.3" height="15.0" fill="rgb(236,118,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="420.53" y="571.5" font-size="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.schedule (13 samples, 0.10%)</title><rect x="353.1" y="433" width="1.2" height="15.0" fill="rgb(224,196,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="356.15" y="443.5" font-size="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.gcstopm (4 samples, 0.03%)</title><rect x="473.7" y="545" width="0.4" height="15.0" fill="rgb(254,225,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="476.72" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (5 samples, 0.04%)</title><rect x="290.8" y="497" width="0.4" height="15.0" fill="rgb(219,120,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="293.75" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (23 samples, 0.18%)</title><rect x="54.2" y="673" width="2.1" height="15.0" fill="rgb(229,195,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="57.21" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (3 samples, 0.02%)</title><rect x="558.9" y="257" width="0.3" height="15.0" fill="rgb(232,65,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="561.90" 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>runtime.futex (4 samples, 0.03%)</title><rect x="577.7" y="353" width="0.4" height="15.0" fill="rgb(223,150,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="580.71" y="363.5" font-size="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.gchelperstart (3 samples, 0.02%)</title><rect x="767.0" y="705" width="0.3" height="15.0" fill="rgb(238,195,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="769.98" y="715.5" font-size="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.flushmcache (3 samples, 0.02%)</title><rect x="286.3" y="529" width="0.3" height="15.0" fill="rgb(205,58,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="289.34" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (4 samples, 0.03%)</title><rect x="637.0" y="289" width="0.3" height="15.0" fill="rgb(242,209,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="639.96" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (2 samples, 0.02%)</title><rect x="700.0" y="577" width="0.2" height="15.0" fill="rgb(238,221,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="702.99" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (4 samples, 0.03%)</title><rect x="472.1" y="321" width="0.4" height="15.0" fill="rgb(233,120,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="475.10" 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>finish_task_switch (3 samples, 0.02%)</title><rect x="314.0" y="465" width="0.3" height="15.0" fill="rgb(237,118,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="316.98" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (2 samples, 0.02%)</title><rect x="256.4" y="449" width="0.1" height="15.0" fill="rgb(244,38,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="259.35" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (5 samples, 0.04%)</title><rect x="27.9" y="433" width="0.5" height="15.0" fill="rgb(220,223,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="30.92" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (3 samples, 0.02%)</title><rect x="422.9" y="449" width="0.3" height="15.0" fill="rgb(251,200,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="425.93" y="459.5" font-size="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.schedule (53 samples, 0.40%)</title><rect x="658.8" y="657" width="4.7" height="15.0" fill="rgb(241,199,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="661.75" y="667.5" font-size="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.mallocgc (4 samples, 0.03%)</title><rect x="361.3" y="433" width="0.4" height="15.0" fill="rgb(239,92,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="364.34" y="443.5" font-size="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.gopreempt_m (3 samples, 0.02%)</title><rect x="361.7" y="433" width="0.3" height="15.0" fill="rgb(226,144,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="364.70" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>math/big.(*Int).Mul (2 samples, 0.02%)</title><rect x="271.7" y="593" width="0.1" height="15.0" fill="rgb(253,183,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="274.66" y="603.5" font-size="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.deductSweepCredit (3 samples, 0.02%)</title><rect x="548.6" y="561" width="0.3" height="15.0" fill="rgb(218,173,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="551.63" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="1181.2" y="577" width="0.2" height="15.0" fill="rgb(244,196,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="1184.18" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (17 samples, 0.13%)</title><rect x="672.0" y="545" width="1.5" height="15.0" fill="rgb(236,114,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="674.99" y="555.5" font-size="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.park_m (2 samples, 0.02%)</title><rect x="457.6" y="513" width="0.2" height="15.0" fill="rgb(245,175,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="460.60" y="523.5" font-size="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.findrunnable (50 samples, 0.38%)</title><rect x="691.3" y="657" width="4.5" height="15.0" fill="rgb(213,201,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="694.26" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (7 samples, 0.05%)</title><rect x="49.2" y="625" width="0.6" height="15.0" fill="rgb(219,111,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="52.17" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (7 samples, 0.05%)</title><rect x="993.2" y="641" width="0.6" height="15.0" fill="rgb(237,123,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="996.17" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (9 samples, 0.07%)</title><rect x="1057.3" y="577" width="0.8" height="15.0" fill="rgb(216,228,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="1060.28" y="587.5" font-size="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.findmoduledatap (2 samples, 0.02%)</title><rect x="1175.3" y="689" width="0.2" height="15.0" fill="rgb(233,109,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1178.32" y="699.5" font-size="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.findrunnable (2 samples, 0.02%)</title><rect x="258.8" y="545" width="0.2" height="15.0" fill="rgb(249,171,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="261.79" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (3 samples, 0.02%)</title><rect x="621.6" y="289" width="0.2" height="15.0" fill="rgb(232,23,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="624.57" y="299.5" font-size="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.notesleep (6 samples, 0.05%)</title><rect x="15.7" y="625" width="0.5" height="15.0" fill="rgb(221,165,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.67" y="635.5" font-size="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.lock (16 samples, 0.12%)</title><rect x="475.1" y="561" width="1.4" height="15.0" fill="rgb(234,70,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="478.07" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>drop_futex_key_refs.isra.14 (2 samples, 0.02%)</title><rect x="113.6" y="593" width="0.2" height="15.0" fill="rgb(242,32,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="116.64" y="603.5" font-size="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.gcAssistAlloc1 (2 samples, 0.02%)</title><rect x="557.7" y="609" width="0.2" height="15.0" fill="rgb(251,112,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="560.73" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (3 samples, 0.02%)</title><rect x="369.8" y="305" width="0.3" height="15.0" fill="rgb(223,229,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="372.81" 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>runtime.schedule (3 samples, 0.02%)</title><rect x="505.7" y="641" width="0.3" height="15.0" fill="rgb(252,84,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="508.68" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (7 samples, 0.05%)</title><rect x="412.8" y="385" width="0.6" height="15.0" fill="rgb(233,37,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="415.76" y="395.5" font-size="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.flushmcache (2 samples, 0.02%)</title><rect x="599.2" y="401" width="0.2" height="15.0" fill="rgb(207,90,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="602.23" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="341.4" y="289" width="0.1" height="15.0" fill="rgb(226,116,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="344.35" y="299.5" font-size="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.mallocgc (8 samples, 0.06%)</title><rect x="501.4" y="577" width="0.7" height="15.0" fill="rgb(220,34,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="504.36" y="587.5" font-size="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.usleep (2 samples, 0.02%)</title><rect x="489.6" y="497" width="0.1" height="15.0" fill="rgb(229,166,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="492.56" y="507.5" font-size="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.semacquire1 (2 samples, 0.02%)</title><rect x="544.5" y="577" width="0.2" height="15.0" fill="rgb(217,80,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="547.49" y="587.5" font-size="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.futex (5 samples, 0.04%)</title><rect x="489.8" y="497" width="0.5" height="15.0" fill="rgb(231,183,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="492.83" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (2 samples, 0.02%)</title><rect x="265.0" y="497" width="0.2" height="15.0" fill="rgb(231,30,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="268.00" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (2 samples, 0.02%)</title><rect x="345.7" y="289" width="0.2" height="15.0" fill="rgb(246,11,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="348.68" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (2 samples, 0.02%)</title><rect x="164.2" y="561" width="0.2" height="15.0" fill="rgb(233,202,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="167.24" y="571.5" font-size="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.systemstack (2 samples, 0.02%)</title><rect x="515.3" y="561" width="0.2" height="15.0" fill="rgb(210,145,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="518.32" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (3 samples, 0.02%)</title><rect x="466.5" y="465" width="0.3" height="15.0" fill="rgb(222,63,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="469.51" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (5 samples, 0.04%)</title><rect x="1060.3" y="529" width="0.5" height="15.0" fill="rgb(227,65,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="1063.34" y="539.5" font-size="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.newScrapeLogger (17 samples, 0.13%)</title><rect x="529.3" y="721" width="1.5" height="15.0" fill="rgb(221,60,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="532.27" y="731.5" font-size="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.park_m (25 samples, 0.19%)</title><rect x="439.0" y="609" width="2.2" height="15.0" fill="rgb(248,82,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="441.96" y="619.5" font-size="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.memclrNoHeapPointers (4 samples, 0.03%)</title><rect x="492.0" y="561" width="0.4" height="15.0" fill="rgb(226,5,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="494.99" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__audit_syscall_exit (2 samples, 0.02%)</title><rect x="985.9" y="577" width="0.2" height="15.0" fill="rgb(248,160,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="988.87" y="587.5" font-size="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.stopm (7 samples, 0.05%)</title><rect x="100.3" y="673" width="0.6" height="15.0" fill="rgb(241,70,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="103.31" y="683.5" font-size="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.(*mheap).freeSpan.func1 (4 samples, 0.03%)</title><rect x="492.7" y="433" width="0.4" height="15.0" fill="rgb(207,57,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.71" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="566.5" y="369" width="0.3" height="15.0" fill="rgb(217,68,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="569.55" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_select (3 samples, 0.02%)</title><rect x="528.0" y="433" width="0.3" height="15.0" fill="rgb(227,223,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="531.01" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (6 samples, 0.05%)</title><rect x="22.1" y="497" width="0.5" height="15.0" fill="rgb(213,25,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.07" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tcp_push (34 samples, 0.26%)</title><rect x="322.4" y="529" width="3.0" height="15.0" fill="rgb(221,132,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="325.36" y="539.5" font-size="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.markroot (3 samples, 0.02%)</title><rect x="286.3" y="545" width="0.3" height="15.0" fill="rgb(231,9,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="289.34" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (6 samples, 0.05%)</title><rect x="300.4" y="321" width="0.5" height="15.0" fill="rgb(221,10,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="303.39" 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>sort.quickSort (12 samples, 0.09%)</title><rect x="533.8" y="529" width="1.1" height="15.0" fill="rgb(244,193,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="536.77" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (8 samples, 0.06%)</title><rect x="986.4" y="481" width="0.7" height="15.0" fill="rgb(209,174,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="989.42" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (7 samples, 0.05%)</title><rect x="480.8" y="353" width="0.7" height="15.0" fill="rgb(213,117,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="483.83" y="363.5" font-size="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.writebarrierptr_prewrite1 (2 samples, 0.02%)</title><rect x="45.5" y="785" width="0.2" height="15.0" fill="rgb(243,11,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="48.48" y="795.5" font-size="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.(*mcache).nextFree.func1 (6 samples, 0.05%)</title><rect x="330.8" y="737" width="0.6" height="15.0" fill="rgb(249,122,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="333.82" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (3 samples, 0.02%)</title><rect x="594.8" y="289" width="0.3" height="15.0" fill="rgb(211,5,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="597.82" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (2 samples, 0.02%)</title><rect x="1189.1" y="561" width="0.2" height="15.0" fill="rgb(252,226,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.10" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (4 samples, 0.03%)</title><rect x="25.6" y="513" width="0.3" height="15.0" fill="rgb(207,100,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="28.58" y="523.5" font-size="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.systemstack (2 samples, 0.02%)</title><rect x="336.8" y="321" width="0.1" height="15.0" fill="rgb(239,59,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="339.76" 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>runtime.schedule (4 samples, 0.03%)</title><rect x="647.2" y="513" width="0.4" height="15.0" fill="rgb(247,93,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="650.23" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="458.5" y="465" width="0.2" height="15.0" fill="rgb(220,135,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="461.50" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>internal/poll.(*pollDesc).wait (266 samples, 2.03%)</title><rect x="665.9" y="737" width="23.9" height="15.0" fill="rgb(248,203,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="668.87" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >i..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>try_to_wake_up (3 samples, 0.02%)</title><rect x="1058.4" y="593" width="0.2" height="15.0" fill="rgb(234,30,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="1061.36" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="253.6" y="593" width="0.1" height="15.0" fill="rgb(228,48,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="256.56" y="603.5" font-size="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.gcstopm (4 samples, 0.03%)</title><rect x="364.2" y="417" width="0.4" height="15.0" fill="rgb(223,168,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="367.23" y="427.5" font-size="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.newstack (6 samples, 0.05%)</title><rect x="664.4" y="737" width="0.6" height="15.0" fill="rgb(245,153,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="667.43" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (4 samples, 0.03%)</title><rect x="314.0" y="577" width="0.3" height="15.0" fill="rgb(213,186,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="316.98" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/github.com/prometheus/procfs.parseCPUStat (2 samples, 0.02%)</title><rect x="254.5" y="721" width="0.1" height="15.0" fill="rgb(237,20,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="257.46" y="731.5" font-size="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.futex (5 samples, 0.04%)</title><rect x="112.7" y="689" width="0.5" height="15.0" fill="rgb(243,153,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="115.74" y="699.5" font-size="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.goparkunlock (2 samples, 0.02%)</title><rect x="544.5" y="561" width="0.2" height="15.0" fill="rgb(227,171,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="547.49" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>math/big.nat.mul (4 samples, 0.03%)</title><rect x="274.1" y="593" width="0.4" height="15.0" fill="rgb(215,223,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="277.09" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (2 samples, 0.02%)</title><rect x="290.2" y="449" width="0.2" height="15.0" fill="rgb(213,96,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="293.21" y="459.5" font-size="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.lock (3 samples, 0.02%)</title><rect x="20.3" y="673" width="0.2" height="15.0" fill="rgb(252,151,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.26" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_sched_yield (4 samples, 0.03%)</title><rect x="237.0" y="657" width="0.4" height="15.0" fill="rgb(246,188,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="240.00" y="667.5" font-size="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.newobject (2 samples, 0.02%)</title><rect x="464.4" y="673" width="0.2" height="15.0" fill="rgb(241,220,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="467.44" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (68 samples, 0.52%)</title><rect x="118.5" y="545" width="6.1" height="15.0" fill="rgb(229,154,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="121.50" y="555.5" font-size="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.gosweepone.func1 (6 samples, 0.05%)</title><rect x="444.5" y="609" width="0.5" height="15.0" fill="rgb(237,155,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="447.45" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (2 samples, 0.02%)</title><rect x="566.4" y="193" width="0.1" height="15.0" fill="rgb(206,29,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="569.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>runtime.futex (2 samples, 0.02%)</title><rect x="466.8" y="577" width="0.2" height="15.0" fill="rgb(232,163,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="469.78" y="587.5" font-size="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.(*mcache).nextFree.func1 (3 samples, 0.02%)</title><rect x="423.7" y="609" width="0.2" height="15.0" fill="rgb(248,206,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="426.65" y="619.5" font-size="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.stopm (5 samples, 0.04%)</title><rect x="89.7" y="689" width="0.4" height="15.0" fill="rgb(225,111,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="92.69" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (9 samples, 0.07%)</title><rect x="567.9" y="193" width="0.8" height="15.0" fill="rgb(207,124,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="570.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>runtime.notesleep (4 samples, 0.03%)</title><rect x="252.4" y="689" width="0.4" height="15.0" fill="rgb(217,133,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="255.39" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (13 samples, 0.10%)</title><rect x="192.0" y="465" width="1.1" height="15.0" fill="rgb(250,141,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="194.97" y="475.5" font-size="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.futex (21 samples, 0.16%)</title><rect x="487.5" y="593" width="1.9" height="15.0" fill="rgb(228,207,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="490.49" y="603.5" font-size="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.markrootSpans (11 samples, 0.08%)</title><rect x="1089.4" y="753" width="1.0" height="15.0" fill="rgb(236,23,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="1092.42" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="162.0" y="433" width="0.2" height="15.0" fill="rgb(251,31,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="164.99" y="443.5" font-size="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.deductSweepCredit (2 samples, 0.02%)</title><rect x="650.5" y="513" width="0.1" height="15.0" fill="rgb(215,37,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="653.47" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="250.0" y="465" width="0.1" height="15.0" fill="rgb(211,211,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="252.96" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (14 samples, 0.11%)</title><rect x="475.2" y="417" width="1.3" height="15.0" fill="rgb(226,34,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="478.25" y="427.5" font-size="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.futex (3 samples, 0.02%)</title><rect x="162.8" y="657" width="0.3" height="15.0" fill="rgb(231,149,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="165.80" y="667.5" font-size="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.notesleep (194 samples, 1.48%)</title><rect x="124.7" y="721" width="17.5" height="15.0" fill="rgb(247,102,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="127.71" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (2 samples, 0.02%)</title><rect x="345.3" y="321" width="0.2" height="15.0" fill="rgb(205,144,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="348.32" 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>x86_pmu_enable (2 samples, 0.02%)</title><rect x="1082.7" y="545" width="0.2" height="15.0" fill="rgb(232,33,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="1085.67" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (15 samples, 0.11%)</title><rect x="232.4" y="673" width="1.4" height="15.0" fill="rgb(219,5,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="235.40" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (3 samples, 0.02%)</title><rect x="442.2" y="273" width="0.3" height="15.0" fill="rgb(230,140,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="445.20" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="164.5" y="609" width="0.2" height="15.0" fill="rgb(215,81,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="167.51" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (3 samples, 0.02%)</title><rect x="171.4" y="545" width="0.3" height="15.0" fill="rgb(213,90,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="174.45" y="555.5" font-size="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.futex (46 samples, 0.35%)</title><rect x="151.0" y="673" width="4.1" height="15.0" fill="rgb(217,212,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="154.01" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (7 samples, 0.05%)</title><rect x="23.3" y="433" width="0.7" height="15.0" fill="rgb(219,10,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="26.33" y="443.5" font-size="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.rawstring (10 samples, 0.08%)</title><rect x="281.7" y="721" width="0.9" height="15.0" fill="rgb(245,38,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.66" y="731.5" font-size="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.park_m (3 samples, 0.02%)</title><rect x="644.5" y="449" width="0.3" height="15.0" fill="rgb(215,228,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="647.53" y="459.5" font-size="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.goschedImpl (2 samples, 0.02%)</title><rect x="327.8" y="737" width="0.2" height="15.0" fill="rgb(233,137,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="330.85" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__lock_text_start (2 samples, 0.02%)</title><rect x="264.6" y="529" width="0.2" height="15.0" fill="rgb(238,67,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="267.64" y="539.5" font-size="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.mallocgc (2 samples, 0.02%)</title><rect x="507.5" y="529" width="0.2" height="15.0" fill="rgb(232,32,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="510.48" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tcp_send_fin (14 samples, 0.11%)</title><rect x="311.9" y="513" width="1.3" height="15.0" fill="rgb(235,134,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="314.91" y="523.5" font-size="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.schedule (13 samples, 0.10%)</title><rect x="419.6" y="481" width="1.2" height="15.0" fill="rgb(236,54,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="422.60" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (3 samples, 0.02%)</title><rect x="939.0" y="593" width="0.2" height="15.0" fill="rgb(210,195,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="941.96" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (9 samples, 0.07%)</title><rect x="600.7" y="209" width="0.8" height="15.0" fill="rgb(214,215,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="603.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>do_syscall_64 (2 samples, 0.02%)</title><rect x="460.7" y="497" width="0.1" height="15.0" fill="rgb(240,25,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="463.66" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="522.4" y="433" width="0.2" height="15.0" fill="rgb(230,2,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="525.43" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (2 samples, 0.02%)</title><rect x="1006.2" y="513" width="0.2" height="15.0" fill="rgb(229,188,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="1009.22" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (25 samples, 0.19%)</title><rect x="42.7" y="625" width="2.2" height="15.0" fill="rgb(245,147,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="45.69" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (9 samples, 0.07%)</title><rect x="485.4" y="529" width="0.8" height="15.0" fill="rgb(220,102,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="488.42" y="539.5" font-size="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.gcDrainN (2 samples, 0.02%)</title><rect x="494.5" y="593" width="0.2" height="15.0" fill="rgb(208,160,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="497.52" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="145.8" y="417" width="0.2" height="15.0" fill="rgb(250,73,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="148.78" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="100.9" y="577" width="0.2" height="15.0" fill="rgb(231,27,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="103.94" y="587.5" font-size="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.schedule (4 samples, 0.03%)</title><rect x="11.9" y="545" width="0.4" height="15.0" fill="rgb(233,166,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.89" y="555.5" font-size="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.findrunnable (4 samples, 0.03%)</title><rect x="27.1" y="689" width="0.4" height="15.0" fill="rgb(244,106,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="30.11" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="373.8" y="401" width="0.1" height="15.0" fill="rgb(212,171,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="376.77" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule_hrtimeout_range_clock (5 samples, 0.04%)</title><rect x="563.2" y="385" width="0.5" height="15.0" fill="rgb(228,159,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="566.22" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_epoll_wait (15 samples, 0.11%)</title><rect x="103.1" y="689" width="1.4" height="15.0" fill="rgb(206,15,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="106.10" y="699.5" font-size="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.semacquire1 (11 samples, 0.08%)</title><rect x="604.9" y="545" width="1.0" height="15.0" fill="rgb(246,13,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="607.91" y="555.5" font-size="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.unlock (3 samples, 0.02%)</title><rect x="700.8" y="705" width="0.3" height="15.0" fill="rgb(237,212,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="703.80" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_out (2 samples, 0.02%)</title><rect x="833.4" y="561" width="0.2" height="15.0" fill="rgb(212,45,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="836.43" y="571.5" font-size="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.startm (24 samples, 0.18%)</title><rect x="938.7" y="721" width="2.2" height="15.0" fill="rgb(212,113,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="941.69" y="731.5" font-size="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.systemstack (2 samples, 0.02%)</title><rect x="261.8" y="657" width="0.2" height="15.0" fill="rgb(225,188,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="264.85" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="548.9" y="529" width="0.2" height="15.0" fill="rgb(220,121,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="551.90" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (2 samples, 0.02%)</title><rect x="11.3" y="241" width="0.1" height="15.0" fill="rgb(207,56,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.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>github.com/prometheus/blackbox_exporter/vendor/gopkg.in/yaml%2ev2.(*encoder).mappingv (13 samples, 0.10%)</title><rect x="510.5" y="577" width="1.2" height="15.0" fill="rgb(231,59,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="513.54" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="526.3" y="465" width="0.2" height="15.0" fill="rgb(235,218,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="529.30" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (10 samples, 0.08%)</title><rect x="412.5" y="465" width="0.9" height="15.0" fill="rgb(244,145,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="415.49" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__audit_syscall_exit (3 samples, 0.02%)</title><rect x="594.6" y="337" width="0.2" height="15.0" fill="rgb(234,6,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="597.55" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/github.com/prometheus/common/expfmt.Negotiate (77 samples, 0.59%)</title><rect x="558.4" y="689" width="7.0" height="15.0" fill="rgb(237,124,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="561.45" y="699.5" font-size="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.notesleep (6 samples, 0.05%)</title><rect x="700.2" y="689" width="0.5" height="15.0" fill="rgb(243,116,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="703.17" y="699.5" font-size="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.futex (60 samples, 0.46%)</title><rect x="724.2" y="721" width="5.4" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="727.21" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (4 samples, 0.03%)</title><rect x="548.2" y="353" width="0.3" height="15.0" fill="rgb(209,10,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="551.18" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (8 samples, 0.06%)</title><rect x="986.4" y="529" width="0.7" height="15.0" fill="rgb(242,172,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="989.42" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (8 samples, 0.06%)</title><rect x="146.4" y="529" width="0.7" height="15.0" fill="rgb(254,209,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="149.41" y="539.5" font-size="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.(*gcWork).put (2 samples, 0.02%)</title><rect x="732.0" y="641" width="0.1" height="15.0" fill="rgb(218,163,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="734.96" y="651.5" font-size="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.mapassign_faststr (10 samples, 0.08%)</title><rect x="560.4" y="657" width="0.9" height="15.0" fill="rgb(230,69,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="563.43" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (3 samples, 0.02%)</title><rect x="42.2" y="497" width="0.3" height="15.0" fill="rgb(250,206,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="45.24" y="507.5" font-size="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.futex (2 samples, 0.02%)</title><rect x="961.0" y="753" width="0.2" height="15.0" fill="rgb(251,187,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="964.02" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dequeue_entity (2 samples, 0.02%)</title><rect x="752.1" y="497" width="0.2" height="15.0" fill="rgb(214,207,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="755.13" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="594.1" y="465" width="0.2" height="15.0" fill="rgb(225,119,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="597.10" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="14.3" y="321" width="0.2" height="15.0" fill="rgb(220,172,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.32" 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>x86_pmu_enable (4 samples, 0.03%)</title><rect x="17.1" y="433" width="0.4" height="15.0" fill="rgb(247,61,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.11" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (21 samples, 0.16%)</title><rect x="487.5" y="577" width="1.9" height="15.0" fill="rgb(250,196,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="490.49" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (3 samples, 0.02%)</title><rect x="33.6" y="545" width="0.3" height="15.0" fill="rgb(229,6,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="36.59" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>internal/poll.(*pollDesc).wait (13 samples, 0.10%)</title><rect x="300.2" y="609" width="1.2" height="15.0" fill="rgb(244,14,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="303.21" y="619.5" font-size="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.park_m (13 samples, 0.10%)</title><rect x="419.6" y="497" width="1.2" height="15.0" fill="rgb(220,126,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="422.60" y="507.5" font-size="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.goschedImpl (3 samples, 0.02%)</title><rect x="250.8" y="737" width="0.2" height="15.0" fill="rgb(219,46,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="253.77" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="421.1" y="369" width="0.2" height="15.0" fill="rgb(242,157,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="424.13" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (25 samples, 0.19%)</title><rect x="147.5" y="625" width="2.2" height="15.0" fill="rgb(220,194,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="150.49" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (4 samples, 0.03%)</title><rect x="31.9" y="529" width="0.3" height="15.0" fill="rgb(229,25,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="34.88" y="539.5" font-size="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.usleep (2 samples, 0.02%)</title><rect x="145.8" y="673" width="0.2" height="15.0" fill="rgb(227,64,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="148.78" y="683.5" font-size="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.gcDrainN (5 samples, 0.04%)</title><rect x="648.5" y="545" width="0.4" height="15.0" fill="rgb(253,60,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="651.49" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="277.6" y="497" width="0.2" height="15.0" fill="rgb(234,32,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="280.60" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="339.7" y="289" width="0.2" height="15.0" fill="rgb(224,49,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="342.73" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule_hrtimeout_range (2 samples, 0.02%)</title><rect x="84.5" y="609" width="0.1" height="15.0" fill="rgb(247,41,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="87.46" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (3 samples, 0.02%)</title><rect x="577.7" y="209" width="0.3" height="15.0" fill="rgb(245,156,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="580.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>select_task_rq_fair (8 samples, 0.06%)</title><rect x="722.4" y="577" width="0.7" height="15.0" fill="rgb(214,82,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="725.41" y="587.5" font-size="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.mallocgc (2 samples, 0.02%)</title><rect x="337.8" y="481" width="0.2" height="15.0" fill="rgb(241,196,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="340.84" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (2 samples, 0.02%)</title><rect x="174.6" y="673" width="0.2" height="15.0" fill="rgb(222,98,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="177.60" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (10 samples, 0.08%)</title><rect x="593.2" y="321" width="0.9" height="15.0" fill="rgb(205,141,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="596.20" 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>runtime.markroot.func1 (5 samples, 0.04%)</title><rect x="584.3" y="481" width="0.4" height="15.0" fill="rgb(236,168,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="587.29" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (4 samples, 0.03%)</title><rect x="261.0" y="513" width="0.4" height="15.0" fill="rgb(223,167,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="264.04" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (3 samples, 0.02%)</title><rect x="181.1" y="513" width="0.2" height="15.0" fill="rgb(221,207,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="184.08" y="523.5" font-size="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.schedule (3 samples, 0.02%)</title><rect x="515.7" y="593" width="0.2" height="15.0" fill="rgb(208,115,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="518.68" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="1145.7" y="609" width="0.2" height="15.0" fill="rgb(242,217,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="1148.70" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>math/big.nat.divLarge (3 samples, 0.02%)</title><rect x="273.8" y="561" width="0.3" height="15.0" fill="rgb(235,170,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="276.82" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (5 samples, 0.04%)</title><rect x="100.5" y="593" width="0.4" height="15.0" fill="rgb(223,205,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="103.49" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (3 samples, 0.02%)</title><rect x="434.9" y="433" width="0.3" height="15.0" fill="rgb(237,12,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="437.91" y="443.5" font-size="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.schedule (2 samples, 0.02%)</title><rect x="84.6" y="721" width="0.2" height="15.0" fill="rgb(246,150,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="87.64" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="14.3" y="465" width="0.2" height="15.0" fill="rgb(239,181,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.32" y="475.5" font-size="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.schedule (3 samples, 0.02%)</title><rect x="654.7" y="561" width="0.3" height="15.0" fill="rgb(214,124,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="657.70" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="974.1" y="529" width="0.2" height="15.0" fill="rgb(229,195,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="977.08" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="421.1" y="145" width="0.2" height="15.0" fill="rgb(251,144,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="424.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>math/big.nat.div (10 samples, 0.08%)</title><rect x="272.4" y="561" width="0.9" height="15.0" fill="rgb(234,8,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="275.38" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (4 samples, 0.03%)</title><rect x="256.6" y="513" width="0.4" height="15.0" fill="rgb(225,55,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="259.62" y="523.5" font-size="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.netpollblock (2 samples, 0.02%)</title><rect x="962.6" y="609" width="0.2" height="15.0" fill="rgb(215,54,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="965.64" y="619.5" font-size="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.main.func3 (3,691 samples, 28.16%)</title><rect x="332.1" y="753" width="332.3" height="15.0" fill="rgb(207,134,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="335.08" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >main.main.func3</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="166.0" y="561" width="0.2" height="15.0" fill="rgb(233,183,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="169.04" y="571.5" font-size="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/x509.(*Certificate).Verify (57 samples, 0.43%)</title><rect x="271.2" y="753" width="5.1" height="15.0" fill="rgb(233,148,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="274.21" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__audit_syscall_exit (2 samples, 0.02%)</title><rect x="164.7" y="641" width="0.2" height="15.0" fill="rgb(209,83,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="167.69" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net.(*conf).hostLookupOrder (4 samples, 0.03%)</title><rect x="265.4" y="737" width="0.4" height="15.0" fill="rgb(242,45,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="268.45" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__audit_syscall_exit (2 samples, 0.02%)</title><rect x="171.3" y="641" width="0.1" height="15.0" fill="rgb(243,87,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="174.27" y="651.5" font-size="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.notetsleep (22 samples, 0.17%)</title><rect x="523.6" y="609" width="2.0" height="15.0" fill="rgb(230,206,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="526.60" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (6 samples, 0.05%)</title><rect x="49.2" y="513" width="0.5" height="15.0" fill="rgb(235,17,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="52.17" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="166.0" y="577" width="0.2" height="15.0" fill="rgb(220,165,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="169.04" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/gopkg.in/yaml%2ev2.(*encoder).stringv (28 samples, 0.21%)</title><rect x="508.0" y="593" width="2.5" height="15.0" fill="rgb(235,70,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="511.02" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="104.5" y="609" width="0.1" height="15.0" fill="rgb(241,31,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="107.45" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="1189.1" y="593" width="0.2" height="15.0" fill="rgb(220,49,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.10" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (42 samples, 0.32%)</title><rect x="703.7" y="593" width="3.8" height="15.0" fill="rgb(231,142,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="706.68" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (4 samples, 0.03%)</title><rect x="563.9" y="305" width="0.4" height="15.0" fill="rgb(244,23,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="566.94" 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>runtime.netpollready (2 samples, 0.02%)</title><rect x="994.4" y="737" width="0.2" height="15.0" fill="rgb(220,217,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="997.43" y="747.5" font-size="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.newstack (2 samples, 0.02%)</title><rect x="503.1" y="641" width="0.1" height="15.0" fill="rgb(224,79,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="506.07" y="651.5" font-size="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.goparkunlock (2 samples, 0.02%)</title><rect x="330.1" y="721" width="0.2" height="15.0" fill="rgb(207,187,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="333.10" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (4 samples, 0.03%)</title><rect x="19.3" y="529" width="0.3" height="15.0" fill="rgb(211,154,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="22.27" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (2 samples, 0.02%)</title><rect x="1187.7" y="609" width="0.2" height="15.0" fill="rgb(227,76,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="1190.75" y="619.5" font-size="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.mcall (10 samples, 0.08%)</title><rect x="15.3" y="705" width="0.9" height="15.0" fill="rgb(222,3,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.31" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (2 samples, 0.02%)</title><rect x="313.8" y="513" width="0.2" height="15.0" fill="rgb(234,212,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="316.80" y="523.5" font-size="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.gopreempt_m (121 samples, 0.92%)</title><rect x="144.4" y="769" width="10.9" height="15.0" fill="rgb(219,211,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="147.43" y="779.5" font-size="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.schedule (2 samples, 0.02%)</title><rect x="298.7" y="641" width="0.2" height="15.0" fill="rgb(227,8,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="301.67" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="11.3" y="209" width="0.1" height="15.0" fill="rgb(253,28,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.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>sys_epoll_wait (2 samples, 0.02%)</title><rect x="165.7" y="673" width="0.2" height="15.0" fill="rgb(222,24,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="168.68" y="683.5" font-size="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.futex (2 samples, 0.02%)</title><rect x="259.4" y="481" width="0.2" height="15.0" fill="rgb(250,130,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="262.42" y="491.5" font-size="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.gosweepone.func1 (2 samples, 0.02%)</title><rect x="663.7" y="593" width="0.2" height="15.0" fill="rgb(248,123,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="666.70" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (2 samples, 0.02%)</title><rect x="365.8" y="353" width="0.1" height="15.0" fill="rgb(232,220,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="368.76" y="363.5" font-size="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.schedule (2 samples, 0.02%)</title><rect x="465.3" y="561" width="0.1" height="15.0" fill="rgb(208,221,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="468.25" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>iptable_mangle_hook (2 samples, 0.02%)</title><rect x="324.8" y="177" width="0.2" height="15.0" fill="rgb(240,187,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="327.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>schedule (2 samples, 0.02%)</title><rect x="1189.1" y="609" width="0.2" height="15.0" fill="rgb(239,181,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.10" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (8 samples, 0.06%)</title><rect x="10.9" y="497" width="0.7" height="15.0" fill="rgb(253,72,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.90" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (7 samples, 0.05%)</title><rect x="526.5" y="497" width="0.6" height="15.0" fill="rgb(238,6,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="529.48" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (2 samples, 0.02%)</title><rect x="502.9" y="385" width="0.2" height="15.0" fill="rgb(228,171,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="505.89" y="395.5" font-size="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.newstack (6 samples, 0.05%)</title><rect x="341.2" y="545" width="0.5" height="15.0" fill="rgb(252,69,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="344.17" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (3 samples, 0.02%)</title><rect x="23.1" y="497" width="0.2" height="15.0" fill="rgb(236,131,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="26.06" y="507.5" font-size="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.goschedImpl (2 samples, 0.02%)</title><rect x="254.7" y="705" width="0.2" height="15.0" fill="rgb(230,129,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="257.73" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (2 samples, 0.02%)</title><rect x="295.2" y="385" width="0.1" height="15.0" fill="rgb(206,78,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="298.16" y="395.5" font-size="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.park_m (4 samples, 0.03%)</title><rect x="470.7" y="593" width="0.4" height="15.0" fill="rgb(238,62,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="473.74" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (5 samples, 0.04%)</title><rect x="386.4" y="385" width="0.4" height="15.0" fill="rgb(219,224,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="389.38" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="595.1" y="369" width="0.2" height="15.0" fill="rgb(218,32,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="598.09" y="379.5" font-size="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.morestack (2 samples, 0.02%)</title><rect x="251.0" y="817" width="0.2" height="15.0" fill="rgb(216,51,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="254.04" y="827.5" font-size="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.systemstack (2 samples, 0.02%)</title><rect x="973.6" y="705" width="0.2" height="15.0" fill="rgb(215,37,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="976.63" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (12 samples, 0.09%)</title><rect x="184.6" y="673" width="1.1" height="15.0" fill="rgb(210,219,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="187.59" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>audit_filter_syscall (2 samples, 0.02%)</title><rect x="14.0" y="481" width="0.1" height="15.0" fill="rgb(239,107,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.96" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="144.6" y="593" width="0.2" height="15.0" fill="rgb(223,220,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="147.61" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (63 samples, 0.48%)</title><rect x="613.3" y="273" width="5.7" height="15.0" fill="rgb(214,218,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="616.28" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (2 samples, 0.02%)</title><rect x="30.3" y="433" width="0.1" height="15.0" fill="rgb(252,9,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="33.26" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/github.com/go-stack/stack.Call.Format (5 samples, 0.04%)</title><rect x="338.4" y="417" width="0.4" height="15.0" fill="rgb(251,25,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="341.38" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (40 samples, 0.31%)</title><rect x="303.6" y="625" width="3.6" height="15.0" fill="rgb(251,190,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="306.63" y="635.5" font-size="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.futex (2 samples, 0.02%)</title><rect x="307.9" y="497" width="0.1" height="15.0" fill="rgb(235,28,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="310.86" y="507.5" font-size="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.schedule (17 samples, 0.13%)</title><rect x="259.1" y="561" width="1.5" height="15.0" fill="rgb(232,35,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="262.06" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ep_poll_callback (3 samples, 0.02%)</title><rect x="268.8" y="113" width="0.3" height="15.0" fill="rgb(252,5,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="271.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>runtime.findrunnable (3 samples, 0.02%)</title><rect x="491.4" y="529" width="0.2" height="15.0" fill="rgb(215,105,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="494.36" y="539.5" font-size="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.systemstack (3 samples, 0.02%)</title><rect x="465.8" y="689" width="0.3" height="15.0" fill="rgb(211,66,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="468.79" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (3 samples, 0.02%)</title><rect x="709.1" y="577" width="0.3" height="15.0" fill="rgb(225,224,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="712.09" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (51 samples, 0.39%)</title><rect x="988.6" y="561" width="4.6" height="15.0" fill="rgb(226,65,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="991.58" y="571.5" font-size="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.morestack (3 samples, 0.02%)</title><rect x="449.2" y="705" width="0.3" height="15.0" fill="rgb(210,179,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="452.22" y="715.5" font-size="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.schedule (4 samples, 0.03%)</title><rect x="264.6" y="641" width="0.4" height="15.0" fill="rgb(224,131,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="267.64" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net.lookupStaticHost (56 samples, 0.43%)</title><rect x="259.1" y="705" width="5.0" height="15.0" fill="rgb(219,72,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="262.06" y="715.5" font-size="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.mallocgc (6 samples, 0.05%)</title><rect x="318.1" y="657" width="0.6" height="15.0" fill="rgb(205,120,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="321.12" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sync.(*Pool).Get (2 samples, 0.02%)</title><rect x="341.8" y="593" width="0.2" height="15.0" fill="rgb(220,150,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="344.80" y="603.5" font-size="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.findrunnable (2 samples, 0.02%)</title><rect x="168.6" y="689" width="0.1" height="15.0" fill="rgb(244,200,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="171.56" y="699.5" font-size="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.markroot (3 samples, 0.02%)</title><rect x="116.9" y="689" width="0.2" height="15.0" fill="rgb(222,37,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="119.88" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="562.0" y="225" width="0.2" height="15.0" fill="rgb(253,32,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="565.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>runtime.notesleep (3 samples, 0.02%)</title><rect x="97.0" y="673" width="0.3" height="15.0" fill="rgb(254,138,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="99.98" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (3 samples, 0.02%)</title><rect x="448.3" y="481" width="0.3" height="15.0" fill="rgb(235,36,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="451.32" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_sched_yield (3 samples, 0.02%)</title><rect x="347.8" y="561" width="0.3" height="15.0" fill="rgb(229,112,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="350.84" y="571.5" font-size="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.mallocgc (17 samples, 0.13%)</title><rect x="651.5" y="625" width="1.5" height="15.0" fill="rgb(231,182,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="654.46" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (2 samples, 0.02%)</title><rect x="516.7" y="289" width="0.1" height="15.0" fill="rgb(225,18,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="519.67" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__calc_delta (2 samples, 0.02%)</title><rect x="947.1" y="497" width="0.1" height="15.0" fill="rgb(208,58,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="950.07" y="507.5" font-size="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.stopm (2 samples, 0.02%)</title><rect x="273.6" y="449" width="0.1" height="15.0" fill="rgb(236,52,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="276.55" y="459.5" font-size="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.systemstack (2 samples, 0.02%)</title><rect x="494.5" y="641" width="0.2" height="15.0" fill="rgb(247,155,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="497.52" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (50 samples, 0.38%)</title><rect x="106.0" y="689" width="4.5" height="15.0" fill="rgb(230,91,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="108.98" y="699.5" font-size="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_sock (5 samples, 0.04%)</title><rect x="311.5" y="513" width="0.4" height="15.0" fill="rgb(231,152,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="314.46" y="523.5" font-size="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.goparkunlock (2 samples, 0.02%)</title><rect x="248.1" y="721" width="0.2" height="15.0" fill="rgb(242,73,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="251.07" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="344.4" y="433" width="0.2" height="15.0" fill="rgb(253,197,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="347.42" y="443.5" font-size="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.goparkunlock (14 samples, 0.11%)</title><rect x="549.4" y="593" width="1.2" height="15.0" fill="rgb(219,103,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="552.35" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sync.(*Pool).getSlow (3 samples, 0.02%)</title><rect x="298.3" y="753" width="0.3" height="15.0" fill="rgb(245,32,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="301.31" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="1145.7" y="593" width="0.2" height="15.0" fill="rgb(220,46,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="1148.70" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (2 samples, 0.02%)</title><rect x="548.9" y="465" width="0.2" height="15.0" fill="rgb(250,168,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="551.90" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (14 samples, 0.11%)</title><rect x="417.5" y="577" width="1.3" height="15.0" fill="rgb(220,5,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="420.53" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (20 samples, 0.15%)</title><rect x="1054.2" y="609" width="1.8" height="15.0" fill="rgb(207,39,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="1057.22" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (4 samples, 0.03%)</title><rect x="587.0" y="225" width="0.3" height="15.0" fill="rgb(226,133,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="589.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>runtime.mcall (6 samples, 0.05%)</title><rect x="18.1" y="737" width="0.5" height="15.0" fill="rgb(236,99,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.10" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="13.8" y="337" width="0.2" height="15.0" fill="rgb(208,14,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.78" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="361.7" y="353" width="0.3" height="15.0" fill="rgb(226,133,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="364.70" y="363.5" font-size="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.goparkunlock (2 samples, 0.02%)</title><rect x="472.5" y="625" width="0.1" height="15.0" fill="rgb(254,64,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="475.46" y="635.5" font-size="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.futex (3 samples, 0.02%)</title><rect x="82.7" y="673" width="0.2" height="15.0" fill="rgb(210,66,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="85.66" y="683.5" font-size="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.goparkunlock (9 samples, 0.07%)</title><rect x="522.2" y="593" width="0.9" height="15.0" fill="rgb(241,105,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="525.25" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="341.5" y="353" width="0.2" height="15.0" fill="rgb(208,14,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="344.53" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (2 samples, 0.02%)</title><rect x="414.6" y="353" width="0.2" height="15.0" fill="rgb(238,79,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="417.65" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_epoll_wait (31 samples, 0.24%)</title><rect x="283.1" y="545" width="2.8" height="15.0" fill="rgb(222,53,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.10" y="555.5" font-size="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.growslice (18 samples, 0.14%)</title><rect x="468.7" y="705" width="1.6" height="15.0" fill="rgb(223,82,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="471.67" y="715.5" font-size="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_curr (2 samples, 0.02%)</title><rect x="947.1" y="513" width="0.1" height="15.0" fill="rgb(231,200,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="950.07" y="523.5" font-size="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.epollwait (3 samples, 0.02%)</title><rect x="264.6" y="609" width="0.3" height="15.0" fill="rgb(224,15,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="267.64" y="619.5" font-size="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.(*lfstack).pop (2 samples, 0.02%)</title><rect x="690.6" y="625" width="0.2" height="15.0" fill="rgb(216,174,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="693.63" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (226 samples, 1.72%)</title><rect x="206.7" y="497" width="20.4" height="15.0" fill="rgb(248,13,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="209.74" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (3 samples, 0.02%)</title><rect x="566.5" y="353" width="0.3" height="15.0" fill="rgb(238,103,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="569.55" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>try_to_wake_up (2 samples, 0.02%)</title><rect x="492.7" y="145" width="0.2" height="15.0" fill="rgb(235,147,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.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>runtime.schedule (5 samples, 0.04%)</title><rect x="329.6" y="641" width="0.4" height="15.0" fill="rgb(230,73,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="332.56" y="651.5" font-size="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.stopm (4 samples, 0.03%)</title><rect x="344.4" y="497" width="0.4" height="15.0" fill="rgb(228,44,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="347.42" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (3 samples, 0.02%)</title><rect x="505.4" y="497" width="0.3" height="15.0" fill="rgb(228,159,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="508.41" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (3 samples, 0.02%)</title><rect x="939.0" y="529" width="0.2" height="15.0" fill="rgb(210,96,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="941.96" y="539.5" font-size="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.lock (6 samples, 0.05%)</title><rect x="177.8" y="737" width="0.6" height="15.0" fill="rgb(233,158,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="180.84" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (22 samples, 0.17%)</title><rect x="388.7" y="305" width="2.0" height="15.0" fill="rgb(231,226,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="391.72" 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>runtime.lock (11 samples, 0.08%)</title><rect x="593.1" y="481" width="1.0" height="15.0" fill="rgb(212,84,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="596.11" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>poll_schedule_timeout (3 samples, 0.02%)</title><rect x="47.4" y="561" width="0.2" height="15.0" fill="rgb(231,176,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="50.37" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sync.(*WaitGroup).Wait (6 samples, 0.05%)</title><rect x="253.8" y="801" width="0.6" height="15.0" fill="rgb(232,47,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="256.83" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>audit_uid_comparator (2 samples, 0.02%)</title><rect x="611.9" y="369" width="0.2" height="15.0" fill="rgb(254,74,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="614.93" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__audit_syscall_exit (5 samples, 0.04%)</title><rect x="117.2" y="657" width="0.5" height="15.0" fill="rgb(246,154,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="120.24" y="667.5" font-size="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.(*mcentral).cacheSpan (2 samples, 0.02%)</title><rect x="530.9" y="625" width="0.2" height="15.0" fill="rgb(247,164,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="533.89" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="457.6" y="401" width="0.2" height="15.0" fill="rgb(240,85,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="460.60" y="411.5" font-size="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.mcall (4 samples, 0.03%)</title><rect x="97.0" y="753" width="0.3" height="15.0" fill="rgb(207,149,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="99.98" y="763.5" font-size="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.park_m (2 samples, 0.02%)</title><rect x="546.5" y="561" width="0.2" height="15.0" fill="rgb(211,19,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="549.47" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="164.2" y="689" width="0.2" height="15.0" fill="rgb(213,226,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="167.24" y="699.5" font-size="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.systemstack (4 samples, 0.03%)</title><rect x="271.8" y="529" width="0.4" height="15.0" fill="rgb(231,155,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="274.84" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (3 samples, 0.02%)</title><rect x="20.3" y="529" width="0.2" height="15.0" fill="rgb(247,214,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.26" y="539.5" font-size="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.gopreempt_m (3 samples, 0.02%)</title><rect x="493.7" y="625" width="0.3" height="15.0" fill="rgb(253,15,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="496.71" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>internal/poll.(*pollDesc).close (4 samples, 0.03%)</title><rect x="311.1" y="689" width="0.4" height="15.0" fill="rgb(246,209,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="314.10" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (3 samples, 0.02%)</title><rect x="1187.3" y="625" width="0.3" height="15.0" fill="rgb(254,96,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="1190.30" y="635.5" font-size="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.semacquire1 (4 samples, 0.03%)</title><rect x="437.1" y="577" width="0.3" height="15.0" fill="rgb(245,81,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="440.07" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (4 samples, 0.03%)</title><rect x="642.2" y="193" width="0.3" height="15.0" fill="rgb(239,224,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="645.18" 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>perf_pmu_enable (8 samples, 0.06%)</title><rect x="672.8" y="401" width="0.7" height="15.0" fill="rgb(233,226,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="675.80" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="516.7" y="465" width="0.1" height="15.0" fill="rgb(249,21,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="519.67" y="475.5" font-size="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.lock (2 samples, 0.02%)</title><rect x="100.3" y="657" width="0.2" height="15.0" fill="rgb(219,192,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="103.31" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (57 samples, 0.43%)</title><rect x="988.0" y="593" width="5.2" height="15.0" fill="rgb(233,150,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="991.04" y="603.5" font-size="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.gentraceback (9 samples, 0.07%)</title><rect x="265.9" y="689" width="0.8" height="15.0" fill="rgb(205,213,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="268.90" y="699.5" font-size="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.goschedImpl (121 samples, 0.92%)</title><rect x="144.4" y="753" width="10.9" height="15.0" fill="rgb(211,157,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="147.43" y="763.5" font-size="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.newobject (2 samples, 0.02%)</title><rect x="431.2" y="561" width="0.2" height="15.0" fill="rgb(205,196,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="434.22" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net/http.(*Server).trackConn (2 samples, 0.02%)</title><rect x="961.3" y="721" width="0.2" height="15.0" fill="rgb(247,90,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="964.29" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>nf_hook_slow (4 samples, 0.03%)</title><rect x="324.1" y="49" width="0.3" height="15.0" fill="rgb(210,130,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="327.07" 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>intel_pmu_enable_all (15 samples, 0.11%)</title><rect x="959.4" y="529" width="1.4" height="15.0" fill="rgb(227,81,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="962.40" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (7 samples, 0.05%)</title><rect x="230.5" y="577" width="0.6" height="15.0" fill="rgb(252,87,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="233.51" y="587.5" font-size="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.(*mcache).refill (4 samples, 0.03%)</title><rect x="371.6" y="577" width="0.4" height="15.0" fill="rgb(238,17,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="374.61" y="587.5" font-size="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.gcDrainN (2 samples, 0.02%)</title><rect x="364.0" y="401" width="0.1" height="15.0" fill="rgb(233,207,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="366.95" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_epoll_wait (83 samples, 0.63%)</title><rect x="378.9" y="449" width="7.5" height="15.0" fill="rgb(242,139,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="381.90" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (19 samples, 0.14%)</title><rect x="694.0" y="497" width="1.8" height="15.0" fill="rgb(226,216,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="697.05" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (4 samples, 0.03%)</title><rect x="278.2" y="609" width="0.4" height="15.0" fill="rgb(212,144,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="281.24" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (80 samples, 0.61%)</title><rect x="612.2" y="385" width="7.2" height="15.0" fill="rgb(242,9,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="615.20" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (2 samples, 0.02%)</title><rect x="651.9" y="257" width="0.2" height="15.0" fill="rgb(207,152,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="654.91" 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>runtime.mallocgc (7 samples, 0.05%)</title><rect x="502.4" y="641" width="0.7" height="15.0" fill="rgb(205,148,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="505.44" y="651.5" font-size="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.mcall (2 samples, 0.02%)</title><rect x="352.9" y="481" width="0.2" height="15.0" fill="rgb(228,3,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="355.88" y="491.5" font-size="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.goschedImpl (11 samples, 0.08%)</title><rect x="1187.7" y="785" width="1.0" height="15.0" fill="rgb(214,111,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="1190.75" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (2 samples, 0.02%)</title><rect x="563.8" y="353" width="0.1" height="15.0" fill="rgb(213,148,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="566.76" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>skb_release_data (3 samples, 0.02%)</title><rect x="418.3" y="433" width="0.2" height="15.0" fill="rgb(219,105,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="421.25" y="443.5" font-size="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.gcStart (5 samples, 0.04%)</title><rect x="468.9" y="673" width="0.5" height="15.0" fill="rgb(209,155,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="471.94" y="683.5" font-size="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.goparkunlock (3 samples, 0.02%)</title><rect x="655.7" y="577" width="0.3" height="15.0" fill="rgb(230,77,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="658.69" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (3 samples, 0.02%)</title><rect x="82.7" y="465" width="0.2" height="15.0" fill="rgb(247,198,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="85.66" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (3 samples, 0.02%)</title><rect x="1187.3" y="545" width="0.3" height="15.0" fill="rgb(233,10,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="1190.30" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (94 samples, 0.72%)</title><rect x="193.6" y="689" width="8.5" height="15.0" fill="rgb(209,77,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="196.60" y="699.5" font-size="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.stopm (3 samples, 0.02%)</title><rect x="551.3" y="529" width="0.3" height="15.0" fill="rgb(214,164,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="554.33" y="539.5" font-size="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.futex (3 samples, 0.02%)</title><rect x="260.3" y="497" width="0.3" height="15.0" fill="rgb(236,67,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="263.32" y="507.5" font-size="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.futex (3 samples, 0.02%)</title><rect x="542.6" y="513" width="0.3" height="15.0" fill="rgb(241,141,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="545.60" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__audit_syscall_exit (3 samples, 0.02%)</title><rect x="525.8" y="513" width="0.2" height="15.0" fill="rgb(238,1,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="528.76" y="523.5" font-size="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.gcDrainN (2 samples, 0.02%)</title><rect x="595.8" y="513" width="0.2" height="15.0" fill="rgb(225,107,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="598.81" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (5 samples, 0.04%)</title><rect x="598.6" y="289" width="0.5" height="15.0" fill="rgb(209,57,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="601.60" y="299.5" font-size="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.schedule (48 samples, 0.37%)</title><rect x="708.4" y="753" width="4.3" height="15.0" fill="rgb(217,183,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="711.37" y="763.5" font-size="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.schedule (15 samples, 0.11%)</title><rect x="20.2" y="721" width="1.3" height="15.0" fill="rgb(230,46,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.17" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="164.0" y="673" width="0.2" height="15.0" fill="rgb(226,40,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="166.97" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_select (9 samples, 0.07%)</title><rect x="116.1" y="625" width="0.8" height="15.0" fill="rgb(233,202,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="119.07" y="635.5" font-size="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.newproc1 (2 samples, 0.02%)</title><rect x="465.8" y="657" width="0.2" height="15.0" fill="rgb(210,145,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="468.79" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (2 samples, 0.02%)</title><rect x="640.7" y="449" width="0.2" height="15.0" fill="rgb(231,170,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="643.74" y="459.5" font-size="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.mapassign_fast64 (5 samples, 0.04%)</title><rect x="483.5" y="673" width="0.5" height="15.0" fill="rgb(222,138,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="486.53" y="683.5" font-size="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.gcMarkTermination.func1 (2 samples, 0.02%)</title><rect x="596.5" y="529" width="0.2" height="15.0" fill="rgb(247,132,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="599.53" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (5 samples, 0.04%)</title><rect x="489.8" y="369" width="0.5" height="15.0" fill="rgb(222,61,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="492.83" y="379.5" font-size="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.notesleep (4 samples, 0.03%)</title><rect x="164.7" y="705" width="0.4" height="15.0" fill="rgb(241,152,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="167.69" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (2 samples, 0.02%)</title><rect x="164.5" y="593" width="0.2" height="15.0" fill="rgb(242,184,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="167.51" y="603.5" font-size="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.stopTheWorldWithSema (6 samples, 0.05%)</title><rect x="278.7" y="721" width="0.5" height="15.0" fill="rgb(244,124,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="281.69" y="731.5" font-size="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.goparkunlock (7 samples, 0.05%)</title><rect x="281.7" y="641" width="0.6" height="15.0" fill="rgb(248,48,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.66" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (5 samples, 0.04%)</title><rect x="1059.5" y="481" width="0.5" height="15.0" fill="rgb(234,200,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.53" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="164.2" y="609" width="0.2" height="15.0" fill="rgb(234,85,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="167.24" y="619.5" font-size="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.goschedImpl (6 samples, 0.05%)</title><rect x="341.2" y="513" width="0.5" height="15.0" fill="rgb(219,71,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="344.17" y="523.5" font-size="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.park_m (4 samples, 0.03%)</title><rect x="249.2" y="785" width="0.4" height="15.0" fill="rgb(216,106,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="252.24" y="795.5" font-size="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.schedule (2 samples, 0.02%)</title><rect x="248.3" y="753" width="0.2" height="15.0" fill="rgb(228,156,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="251.34" y="763.5" font-size="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.futex (4 samples, 0.03%)</title><rect x="164.7" y="689" width="0.4" height="15.0" fill="rgb(225,110,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="167.69" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (32 samples, 0.24%)</title><rect x="391.7" y="241" width="2.9" height="15.0" fill="rgb(209,124,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="394.69" 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>runtime.stopm (3 samples, 0.02%)</title><rect x="162.8" y="689" width="0.3" height="15.0" fill="rgb(243,78,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="165.80" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (3 samples, 0.02%)</title><rect x="493.7" y="369" width="0.3" height="15.0" fill="rgb(248,216,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="496.71" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="691.3" y="369" width="0.2" height="15.0" fill="rgb(244,11,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="694.35" y="379.5" font-size="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.osyield (2 samples, 0.02%)</title><rect x="449.0" y="593" width="0.2" height="15.0" fill="rgb(252,43,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="452.04" y="603.5" font-size="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.osyield (63 samples, 0.48%)</title><rect x="930.8" y="721" width="5.6" height="15.0" fill="rgb(227,86,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="933.77" y="731.5" font-size="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.stopm (3 samples, 0.02%)</title><rect x="348.6" y="513" width="0.2" height="15.0" fill="rgb(221,185,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="351.56" y="523.5" font-size="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.scanobject (2 samples, 0.02%)</title><rect x="437.9" y="545" width="0.2" height="15.0" fill="rgb(219,138,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="440.88" y="555.5" font-size="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.gopreempt_m (4 samples, 0.03%)</title><rect x="357.0" y="497" width="0.4" height="15.0" fill="rgb(213,90,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="360.02" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (106 samples, 0.81%)</title><rect x="679.7" y="577" width="9.6" height="15.0" fill="rgb(214,92,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="682.73" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (5 samples, 0.04%)</title><rect x="386.9" y="289" width="0.5" height="15.0" fill="rgb(246,159,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="389.92" y="299.5" font-size="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.goready.func1 (2 samples, 0.02%)</title><rect x="255.0" y="721" width="0.2" height="15.0" fill="rgb(212,192,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="258.00" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/github.com/go-kit/kit/log.(*timeFormat).MarshalText (6 samples, 0.05%)</title><rect x="337.8" y="529" width="0.6" height="15.0" fill="rgb(237,147,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="340.84" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>audit_uid_comparator (2 samples, 0.02%)</title><rect x="125.9" y="625" width="0.2" height="15.0" fill="rgb(252,57,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="128.88" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/github.com/go-logfmt/logfmt.invalidKeyString (3 samples, 0.02%)</title><rect x="451.7" y="561" width="0.2" height="15.0" fill="rgb(246,183,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="454.66" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (4 samples, 0.03%)</title><rect x="19.3" y="433" width="0.3" height="15.0" fill="rgb(205,191,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="22.27" y="443.5" font-size="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.notesleep (3 samples, 0.02%)</title><rect x="336.4" y="369" width="0.3" height="15.0" fill="rgb(211,114,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="339.40" y="379.5" font-size="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.startm (2 samples, 0.02%)</title><rect x="528.4" y="529" width="0.2" height="15.0" fill="rgb(221,129,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="531.37" y="539.5" font-size="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.goparkunlock (4 samples, 0.03%)</title><rect x="470.4" y="641" width="0.3" height="15.0" fill="rgb(246,135,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="473.38" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ep_poll (3 samples, 0.02%)</title><rect x="259.1" y="465" width="0.2" height="15.0" fill="rgb(232,50,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="262.06" y="475.5" font-size="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.(*mcache).refill (4 samples, 0.03%)</title><rect x="479.8" y="577" width="0.4" height="15.0" fill="rgb(231,185,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="482.84" y="587.5" font-size="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.gopreempt_m (3 samples, 0.02%)</title><rect x="1188.7" y="785" width="0.3" height="15.0" fill="rgb(233,213,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.74" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="653.9" y="417" width="0.2" height="15.0" fill="rgb(254,125,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="656.89" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (15 samples, 0.11%)</title><rect x="232.4" y="657" width="1.4" height="15.0" fill="rgb(205,9,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="235.40" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (5 samples, 0.04%)</title><rect x="369.8" y="481" width="0.5" height="15.0" fill="rgb(237,32,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="372.81" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="98.3" y="401" width="0.2" height="15.0" fill="rgb(213,140,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="101.33" y="411.5" font-size="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.lock (5 samples, 0.04%)</title><rect x="549.7" y="497" width="0.5" height="15.0" fill="rgb(211,168,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="552.71" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_pselect6 (9 samples, 0.07%)</title><rect x="25.2" y="625" width="0.8" height="15.0" fill="rgb(223,44,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="28.22" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (28 samples, 0.21%)</title><rect x="427.6" y="577" width="2.5" height="15.0" fill="rgb(250,160,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="430.61" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (6 samples, 0.05%)</title><rect x="604.4" y="321" width="0.5" height="15.0" fill="rgb(205,6,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="607.37" 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>runtime.deductSweepCredit (3 samples, 0.02%)</title><rect x="307.8" y="641" width="0.2" height="15.0" fill="rgb(223,64,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="310.77" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (4 samples, 0.03%)</title><rect x="577.7" y="225" width="0.4" height="15.0" fill="rgb(229,170,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="580.71" 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>perf_pmu_enable (2 samples, 0.02%)</title><rect x="492.4" y="241" width="0.2" height="15.0" fill="rgb(243,85,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.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>__intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="973.9" y="449" width="0.2" height="15.0" fill="rgb(228,146,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="976.90" y="459.5" font-size="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.futex (5 samples, 0.04%)</title><rect x="517.2" y="497" width="0.5" height="15.0" fill="rgb(242,17,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="520.21" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (4 samples, 0.03%)</title><rect x="31.9" y="561" width="0.3" height="15.0" fill="rgb(250,101,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="34.88" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="649.1" y="385" width="0.2" height="15.0" fill="rgb(224,47,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="652.12" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="277.6" y="593" width="0.2" height="15.0" fill="rgb(215,137,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="280.60" y="603.5" font-size="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.(*scrapeLogger).Log (111 samples, 0.85%)</title><rect x="335.1" y="673" width="9.9" height="15.0" fill="rgb(241,199,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="338.05" y="683.5" font-size="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.park_m (6 samples, 0.05%)</title><rect x="253.0" y="785" width="0.6" height="15.0" fill="rgb(251,99,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="256.02" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>audit_filter_rules (3 samples, 0.02%)</title><rect x="996.2" y="641" width="0.3" height="15.0" fill="rgb(244,129,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="999.23" y="651.5" font-size="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.gosweepone.func1 (3 samples, 0.02%)</title><rect x="559.6" y="529" width="0.3" height="15.0" fill="rgb(231,200,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="562.62" y="539.5" font-size="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.schedule (2 samples, 0.02%)</title><rect x="371.3" y="529" width="0.2" height="15.0" fill="rgb(213,219,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="374.34" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (96 samples, 0.73%)</title><rect x="754.0" y="449" width="8.7" height="15.0" fill="rgb(236,167,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="757.02" y="459.5" font-size="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.newstack (4 samples, 0.03%)</title><rect x="422.8" y="625" width="0.4" height="15.0" fill="rgb(226,188,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="425.84" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (153 samples, 1.17%)</title><rect x="398.3" y="337" width="13.7" height="15.0" fill="rgb(220,83,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="401.26" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="639.1" y="241" width="0.2" height="15.0" fill="rgb(206,78,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="642.12" 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>audit_filter_syscall (2 samples, 0.02%)</title><rect x="297.1" y="609" width="0.1" height="15.0" fill="rgb(214,67,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="300.05" y="619.5" font-size="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.schedule (9 samples, 0.07%)</title><rect x="498.7" y="497" width="0.8" height="15.0" fill="rgb(246,47,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="501.66" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (3 samples, 0.02%)</title><rect x="436.8" y="305" width="0.3" height="15.0" fill="rgb(253,44,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.80" 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>runtime.(*mcache).nextFree.func1 (2 samples, 0.02%)</title><rect x="506.9" y="529" width="0.2" height="15.0" fill="rgb(252,225,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="509.94" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/gopkg.in/yaml%2ev2.yaml_emitter_analyze_event (2 samples, 0.02%)</title><rect x="510.5" y="529" width="0.2" height="15.0" fill="rgb(216,131,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="513.54" y="539.5" font-size="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.schedule (2 samples, 0.02%)</title><rect x="98.3" y="673" width="0.2" height="15.0" fill="rgb(220,53,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="101.33" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (9 samples, 0.07%)</title><rect x="488.5" y="385" width="0.8" height="15.0" fill="rgb(234,139,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.48" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="344.6" y="321" width="0.2" height="15.0" fill="rgb(213,54,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="347.60" 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>runtime.findrunnable (3 samples, 0.02%)</title><rect x="96.7" y="721" width="0.3" height="15.0" fill="rgb(208,223,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="99.71" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (7 samples, 0.05%)</title><rect x="171.9" y="673" width="0.6" height="15.0" fill="rgb(240,18,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="174.90" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (3 samples, 0.02%)</title><rect x="174.8" y="705" width="0.2" height="15.0" fill="rgb(239,183,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="177.78" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="559.2" y="353" width="0.1" height="15.0" fill="rgb(229,79,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="562.17" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule_hrtimeout_range (2 samples, 0.02%)</title><rect x="474.7" y="433" width="0.2" height="15.0" fill="rgb(229,194,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="477.71" y="443.5" font-size="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.convT2Eslice (3 samples, 0.02%)</title><rect x="267.2" y="785" width="0.2" height="15.0" fill="rgb(213,64,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="270.16" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (3 samples, 0.02%)</title><rect x="442.2" y="305" width="0.3" height="15.0" fill="rgb(214,35,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="445.20" 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>runtime.lock (2 samples, 0.02%)</title><rect x="34.1" y="737" width="0.2" height="15.0" fill="rgb(249,102,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="37.13" y="747.5" font-size="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.goparkunlock (2 samples, 0.02%)</title><rect x="423.2" y="593" width="0.2" height="15.0" fill="rgb(224,173,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="426.20" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (4 samples, 0.03%)</title><rect x="522.7" y="337" width="0.4" height="15.0" fill="rgb(216,196,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="525.70" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (9 samples, 0.07%)</title><rect x="600.7" y="241" width="0.8" height="15.0" fill="rgb(227,111,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="603.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>nf_iterate (4 samples, 0.03%)</title><rect x="428.6" y="401" width="0.4" height="15.0" fill="rgb(254,11,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="431.61" y="411.5" font-size="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.notesleep (4 samples, 0.03%)</title><rect x="46.7" y="641" width="0.4" height="15.0" fill="rgb(213,30,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="49.74" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>read_tsc (2 samples, 0.02%)</title><rect x="545.4" y="401" width="0.2" height="15.0" fill="rgb(233,73,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="548.39" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (2 samples, 0.02%)</title><rect x="644.3" y="193" width="0.1" height="15.0" fill="rgb(235,162,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="647.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>futex_wait (12 samples, 0.09%)</title><rect x="184.6" y="625" width="1.1" height="15.0" fill="rgb(233,58,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="187.59" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (83 samples, 0.63%)</title><rect x="117.2" y="689" width="7.5" height="15.0" fill="rgb(252,46,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="120.24" y="699.5" font-size="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.epollwait (46 samples, 0.35%)</title><rect x="965.2" y="465" width="4.1" height="15.0" fill="rgb(237,211,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="968.17" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (24 samples, 0.18%)</title><rect x="553.2" y="481" width="2.2" height="15.0" fill="rgb(244,11,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="556.22" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="249.7" y="529" width="0.2" height="15.0" fill="rgb(224,109,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="252.69" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="164.5" y="657" width="0.2" height="15.0" fill="rgb(209,195,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="167.51" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (11 samples, 0.08%)</title><rect x="102.0" y="577" width="1.0" height="15.0" fill="rgb(236,90,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="105.02" y="587.5" font-size="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.mallocgc (8 samples, 0.06%)</title><rect x="423.2" y="641" width="0.7" height="15.0" fill="rgb(224,28,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="426.20" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule_hrtimeout_range (10 samples, 0.08%)</title><rect x="103.6" y="657" width="0.9" height="15.0" fill="rgb(233,51,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="106.55" y="667.5" font-size="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.mallocgc (9 samples, 0.07%)</title><rect x="369.5" y="593" width="0.8" height="15.0" fill="rgb(236,56,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="372.54" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_sched_yield (2 samples, 0.02%)</title><rect x="692.2" y="497" width="0.2" height="15.0" fill="rgb(227,77,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="695.25" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_pselect6 (3 samples, 0.02%)</title><rect x="543.9" y="401" width="0.2" height="15.0" fill="rgb(213,34,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="546.86" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (2 samples, 0.02%)</title><rect x="458.5" y="433" width="0.2" height="15.0" fill="rgb(243,186,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="461.50" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (3 samples, 0.02%)</title><rect x="654.7" y="369" width="0.3" height="15.0" fill="rgb(208,130,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="657.70" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="1145.7" y="673" width="0.2" height="15.0" fill="rgb(253,134,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="1148.70" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_epoll_wait (8 samples, 0.06%)</title><rect x="300.2" y="449" width="0.7" height="15.0" fill="rgb(211,33,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="303.21" y="459.5" font-size="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.newstack (7 samples, 0.05%)</title><rect x="466.3" y="689" width="0.7" height="15.0" fill="rgb(208,40,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="469.33" y="699.5" font-size="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.lock (3 samples, 0.02%)</title><rect x="162.8" y="673" width="0.3" height="15.0" fill="rgb(245,228,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="165.80" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (3 samples, 0.02%)</title><rect x="652.6" y="529" width="0.3" height="15.0" fill="rgb(208,183,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="655.63" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (2 samples, 0.02%)</title><rect x="482.4" y="305" width="0.1" height="15.0" fill="rgb(239,216,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="485.36" 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>__perf_event_task_sched_in (4 samples, 0.03%)</title><rect x="702.2" y="529" width="0.4" height="15.0" fill="rgb(209,66,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="705.24" y="539.5" font-size="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.schedule (2 samples, 0.02%)</title><rect x="45.9" y="737" width="0.2" height="15.0" fill="rgb(238,168,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="48.93" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (9 samples, 0.07%)</title><rect x="602.7" y="321" width="0.8" height="15.0" fill="rgb(238,53,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="605.66" 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>__intel_pmu_enable_all (4 samples, 0.03%)</title><rect x="89.8" y="433" width="0.3" height="15.0" fill="rgb(250,24,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="92.78" y="443.5" font-size="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.findrunnable (2 samples, 0.02%)</title><rect x="342.5" y="465" width="0.2" height="15.0" fill="rgb(249,16,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="345.52" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (2 samples, 0.02%)</title><rect x="232.2" y="481" width="0.2" height="15.0" fill="rgb(228,186,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="235.22" y="491.5" font-size="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.schedule (2 samples, 0.02%)</title><rect x="509.2" y="481" width="0.2" height="15.0" fill="rgb(215,165,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="512.19" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net.ListenPacket (57 samples, 0.43%)</title><rect x="430.6" y="689" width="5.1" height="15.0" fill="rgb(213,151,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="433.59" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>math/big.(*Int).QuoRem (5 samples, 0.04%)</title><rect x="271.2" y="577" width="0.5" height="15.0" fill="rgb(223,44,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="274.21" y="587.5" font-size="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.gopreempt_m (7 samples, 0.05%)</title><rect x="434.5" y="577" width="0.7" height="15.0" fill="rgb(254,175,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="437.55" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (2 samples, 0.02%)</title><rect x="436.3" y="401" width="0.1" height="15.0" fill="rgb(233,11,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.26" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>internal/poll.(*FD).decref (6 samples, 0.05%)</title><rect x="376.7" y="641" width="0.6" height="15.0" fill="rgb(218,29,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="379.74" y="651.5" font-size="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.futex (2 samples, 0.02%)</title><rect x="974.1" y="545" width="0.2" height="15.0" fill="rgb(253,22,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="977.08" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>vfs_read (4 samples, 0.03%)</title><rect x="301.6" y="545" width="0.3" height="15.0" fill="rgb(236,6,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="304.56" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="96.7" y="593" width="0.2" height="15.0" fill="rgb(234,168,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="99.71" y="603.5" font-size="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.gcBgMarkWorker.func2 (1,372 samples, 10.47%)</title><rect x="1061.1" y="801" width="123.6" height="15.0" fill="rgb(233,29,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="1064.15" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >runtime.gcBgMar..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (6 samples, 0.05%)</title><rect x="496.4" y="545" width="0.5" height="15.0" fill="rgb(221,137,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="499.41" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (2 samples, 0.02%)</title><rect x="548.9" y="513" width="0.2" height="15.0" fill="rgb(251,168,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="551.90" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (3 samples, 0.02%)</title><rect x="160.7" y="561" width="0.3" height="15.0" fill="rgb(223,131,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="163.73" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (5 samples, 0.04%)</title><rect x="15.8" y="401" width="0.4" height="15.0" fill="rgb(219,88,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.76" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (3 samples, 0.02%)</title><rect x="164.0" y="545" width="0.2" height="15.0" fill="rgb(211,83,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="166.97" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (4 samples, 0.03%)</title><rect x="268.4" y="625" width="0.4" height="15.0" fill="rgb(239,64,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="271.42" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (3 samples, 0.02%)</title><rect x="444.2" y="385" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="447.18" y="395.5" font-size="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.(*mheap).alloc.func1 (12 samples, 0.09%)</title><rect x="492.4" y="545" width="1.0" height="15.0" fill="rgb(245,4,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.35" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (10 samples, 0.08%)</title><rect x="744.9" y="545" width="0.9" height="15.0" fill="rgb(232,110,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="747.92" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ip_finish_output2 (22 samples, 0.17%)</title><rect x="323.2" y="401" width="1.9" height="15.0" fill="rgb(234,22,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="326.17" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (83 samples, 0.63%)</title><rect x="117.2" y="673" width="7.5" height="15.0" fill="rgb(222,197,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="120.24" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ep_poll (58 samples, 0.44%)</title><rect x="666.4" y="561" width="5.2" height="15.0" fill="rgb(209,148,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="669.41" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (20 samples, 0.15%)</title><rect x="179.1" y="561" width="1.8" height="15.0" fill="rgb(225,173,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="182.10" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (49 samples, 0.37%)</title><rect x="725.0" y="497" width="4.4" height="15.0" fill="rgb(215,177,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="728.02" y="507.5" font-size="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.notesleep (4 samples, 0.03%)</title><rect x="473.7" y="513" width="0.4" height="15.0" fill="rgb(206,207,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="476.72" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (16 samples, 0.12%)</title><rect x="520.4" y="401" width="1.5" height="15.0" fill="rgb(236,112,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="523.45" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (7 samples, 0.05%)</title><rect x="993.2" y="561" width="0.6" height="15.0" fill="rgb(245,158,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="996.17" y="571.5" font-size="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.stopm (8 samples, 0.06%)</title><rect x="231.3" y="705" width="0.7" height="15.0" fill="rgb(206,118,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="234.32" y="715.5" font-size="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.mcall (4 samples, 0.03%)</title><rect x="165.6" y="785" width="0.4" height="15.0" fill="rgb(219,32,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="168.59" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (9 samples, 0.07%)</title><rect x="1185.3" y="737" width="0.8" height="15.0" fill="rgb(221,133,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="1188.32" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="474.7" y="385" width="0.2" height="15.0" fill="rgb(208,101,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="477.71" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (3 samples, 0.02%)</title><rect x="260.3" y="417" width="0.3" height="15.0" fill="rgb(227,174,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="263.32" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (2 samples, 0.02%)</title><rect x="100.9" y="545" width="0.2" height="15.0" fill="rgb(251,93,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="103.94" y="555.5" font-size="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.lock (11 samples, 0.08%)</title><rect x="659.4" y="609" width="1.0" height="15.0" fill="rgb(247,102,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="662.38" y="619.5" font-size="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.(*mcache).releaseAll (6 samples, 0.05%)</title><rect x="1005.9" y="673" width="0.5" height="15.0" fill="rgb(243,78,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="1008.86" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/gopkg.in/yaml%2ev2.yaml_emitter_append_tag_directive (3 samples, 0.02%)</title><rect x="507.5" y="561" width="0.3" height="15.0" fill="rgb(231,132,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="510.48" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="31.5" y="625" width="0.2" height="15.0" fill="rgb(236,133,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="34.52" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (3 samples, 0.02%)</title><rect x="12.0" y="369" width="0.3" height="15.0" fill="rgb(243,180,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.98" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__audit_syscall_exit (3 samples, 0.02%)</title><rect x="147.1" y="625" width="0.3" height="15.0" fill="rgb(250,59,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="150.13" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (10 samples, 0.08%)</title><rect x="419.8" y="321" width="0.9" height="15.0" fill="rgb(240,100,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="422.78" 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>runtime.(*mcache).nextFree.func1 (3 samples, 0.02%)</title><rect x="295.4" y="689" width="0.3" height="15.0" fill="rgb(211,172,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="298.43" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>try_to_wake_up (2 samples, 0.02%)</title><rect x="413.7" y="337" width="0.2" height="15.0" fill="rgb(226,142,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="416.75" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>retint_user (4 samples, 0.03%)</title><rect x="1163.7" y="737" width="0.4" height="15.0" fill="rgb(253,6,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="1166.71" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="413.7" y="417" width="0.2" height="15.0" fill="rgb(251,50,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="416.75" y="427.5" font-size="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.mallocgc (18 samples, 0.14%)</title><rect x="279.9" y="769" width="1.7" height="15.0" fill="rgb(216,82,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="282.95" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="98.3" y="577" width="0.2" height="15.0" fill="rgb(217,154,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="101.33" y="587.5" font-size="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.morestack (3 samples, 0.02%)</title><rect x="596.3" y="609" width="0.2" height="15.0" fill="rgb(226,171,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="599.26" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (13 samples, 0.10%)</title><rect x="149.8" y="465" width="1.2" height="15.0" fill="rgb(248,156,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="152.84" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (181 samples, 1.38%)</title><rect x="941.9" y="705" width="16.3" height="15.0" fill="rgb(240,31,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="944.93" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (4 samples, 0.03%)</title><rect x="1163.7" y="689" width="0.4" height="15.0" fill="rgb(217,17,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="1166.71" y="699.5" font-size="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.mcall (3 samples, 0.02%)</title><rect x="654.7" y="593" width="0.3" height="15.0" fill="rgb(244,204,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="657.70" y="603.5" font-size="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.gcstopm (5 samples, 0.04%)</title><rect x="89.7" y="705" width="0.4" height="15.0" fill="rgb(226,202,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="92.69" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (30 samples, 0.23%)</title><rect x="704.7" y="465" width="2.7" height="15.0" fill="rgb(237,2,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="707.67" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (3 samples, 0.02%)</title><rect x="543.9" y="433" width="0.2" height="15.0" fill="rgb(224,183,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="546.86" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sync.runtime_SemacquireMutex (20 samples, 0.15%)</title><rect x="262.3" y="673" width="1.8" height="15.0" fill="rgb(226,62,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="265.30" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (4 samples, 0.03%)</title><rect x="973.1" y="481" width="0.3" height="15.0" fill="rgb(223,108,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="976.09" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (27 samples, 0.21%)</title><rect x="476.6" y="401" width="2.4" height="15.0" fill="rgb(206,171,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="479.60" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (2 samples, 0.02%)</title><rect x="595.1" y="209" width="0.2" height="15.0" fill="rgb(253,139,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="598.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>x86_pmu_enable (50 samples, 0.38%)</title><rect x="931.7" y="577" width="4.5" height="15.0" fill="rgb(240,226,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="934.67" y="587.5" font-size="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.stackcache_clear (2 samples, 0.02%)</title><rect x="671.8" y="529" width="0.2" height="15.0" fill="rgb(217,176,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="674.81" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (3 samples, 0.02%)</title><rect x="315.8" y="625" width="0.3" height="15.0" fill="rgb(245,13,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.78" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>compress/flate.(*huffmanEncoder).generate (54 samples, 0.41%)</title><rect x="533.5" y="577" width="4.9" height="15.0" fill="rgb(219,68,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="536.50" y="587.5" font-size="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.deferreturn (2 samples, 0.02%)</title><rect x="546.3" y="673" width="0.2" height="15.0" fill="rgb(231,155,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="549.29" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="100.3" y="417" width="0.2" height="15.0" fill="rgb(240,158,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="103.31" y="427.5" font-size="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.gcAssistAlloc.func1 (2 samples, 0.02%)</title><rect x="595.8" y="545" width="0.2" height="15.0" fill="rgb(226,69,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="598.81" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (2 samples, 0.02%)</title><rect x="645.7" y="305" width="0.2" height="15.0" fill="rgb(229,5,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="648.70" 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>runtime.schedule (2 samples, 0.02%)</title><rect x="254.2" y="705" width="0.2" height="15.0" fill="rgb(229,224,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="257.19" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (2 samples, 0.02%)</title><rect x="973.9" y="513" width="0.2" height="15.0" fill="rgb(219,86,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="976.90" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (4 samples, 0.03%)</title><rect x="647.7" y="481" width="0.3" height="15.0" fill="rgb(247,228,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="650.68" y="491.5" font-size="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.mcall (2 samples, 0.02%)</title><rect x="11.7" y="513" width="0.2" height="15.0" fill="rgb(244,136,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.71" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (22 samples, 0.17%)</title><rect x="54.3" y="657" width="2.0" height="15.0" fill="rgb(207,75,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="57.30" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (11 samples, 0.08%)</title><rect x="585.5" y="385" width="1.0" height="15.0" fill="rgb(228,105,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="588.55" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (2 samples, 0.02%)</title><rect x="577.2" y="289" width="0.2" height="15.0" fill="rgb(227,98,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="580.17" y="299.5" font-size="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.(*mspan).sweep (2 samples, 0.02%)</title><rect x="548.7" y="497" width="0.2" height="15.0" fill="rgb(250,215,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="551.72" y="507.5" font-size="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.findrunnable (3 samples, 0.02%)</title><rect x="658.8" y="641" width="0.2" height="15.0" fill="rgb(232,5,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="661.75" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_select (2 samples, 0.02%)</title><rect x="232.2" y="609" width="0.2" height="15.0" fill="rgb(227,35,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="235.22" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="691.9" y="369" width="0.2" height="15.0" fill="rgb(236,205,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="694.89" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="256.4" y="481" width="0.1" height="15.0" fill="rgb(249,86,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="259.35" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (2 samples, 0.02%)</title><rect x="45.3" y="465" width="0.2" height="15.0" fill="rgb(229,38,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="48.30" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (10 samples, 0.08%)</title><rect x="20.6" y="561" width="0.9" height="15.0" fill="rgb(239,199,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.62" y="571.5" font-size="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.gcDrainN (2 samples, 0.02%)</title><rect x="298.9" y="673" width="0.1" height="15.0" fill="rgb(211,134,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="301.85" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ip_local_deliver (15 samples, 0.11%)</title><rect x="323.6" y="225" width="1.4" height="15.0" fill="rgb(220,49,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="326.62" 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.systemstack (31 samples, 0.24%)</title><rect x="591.5" y="529" width="2.8" height="15.0" fill="rgb(225,33,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="594.49" y="539.5" font-size="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.goschedImpl (5 samples, 0.04%)</title><rect x="364.1" y="449" width="0.5" height="15.0" fill="rgb(215,90,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="367.14" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (3 samples, 0.02%)</title><rect x="691.5" y="545" width="0.3" height="15.0" fill="rgb(242,41,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="694.53" y="555.5" font-size="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.systemstack (9 samples, 0.07%)</title><rect x="572.9" y="545" width="0.8" height="15.0" fill="rgb(220,99,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="575.85" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (2 samples, 0.02%)</title><rect x="163.2" y="577" width="0.1" height="15.0" fill="rgb(221,93,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="166.16" y="587.5" font-size="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.gcDrainN (2 samples, 0.02%)</title><rect x="318.5" y="593" width="0.2" height="15.0" fill="rgb(230,135,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="321.48" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="638.9" y="305" width="0.2" height="15.0" fill="rgb(205,167,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="641.94" 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>runtime.schedule (7 samples, 0.05%)</title><rect x="174.5" y="785" width="0.6" height="15.0" fill="rgb(210,175,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="177.51" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (4 samples, 0.03%)</title><rect x="472.1" y="481" width="0.4" height="15.0" fill="rgb(246,198,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="475.10" y="491.5" font-size="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.goschedImpl (13 samples, 0.10%)</title><rect x="22.9" y="689" width="1.1" height="15.0" fill="rgb(240,140,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.88" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (5 samples, 0.04%)</title><rect x="517.2" y="465" width="0.5" height="15.0" fill="rgb(209,108,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="520.21" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (6 samples, 0.05%)</title><rect x="280.9" y="513" width="0.6" height="15.0" fill="rgb(235,148,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.94" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="45.3" y="513" width="0.2" height="15.0" fill="rgb(205,7,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="48.30" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (6 samples, 0.05%)</title><rect x="246.7" y="577" width="0.6" height="15.0" fill="rgb(217,7,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="249.72" y="587.5" font-size="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.mallocgc (4 samples, 0.03%)</title><rect x="658.2" y="689" width="0.4" height="15.0" fill="rgb(243,15,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="661.21" y="699.5" font-size="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.gcstopm (2 samples, 0.02%)</title><rect x="527.8" y="545" width="0.2" height="15.0" fill="rgb(240,204,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="530.83" y="555.5" font-size="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.gcAssistAlloc (3 samples, 0.02%)</title><rect x="495.5" y="657" width="0.3" height="15.0" fill="rgb(247,219,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="498.51" y="667.5" font-size="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.notesleep (2 samples, 0.02%)</title><rect x="166.0" y="705" width="0.2" height="15.0" fill="rgb(224,77,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="169.04" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (2 samples, 0.02%)</title><rect x="592.9" y="273" width="0.2" height="15.0" fill="rgb(227,188,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="595.93" y="283.5" font-size="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.futex (3 samples, 0.02%)</title><rect x="436.8" y="497" width="0.3" height="15.0" fill="rgb(247,217,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.80" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (5 samples, 0.04%)</title><rect x="155.5" y="481" width="0.5" height="15.0" fill="rgb(254,207,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="158.51" y="491.5" font-size="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_balance (2 samples, 0.02%)</title><rect x="201.5" y="561" width="0.2" height="15.0" fill="rgb(227,2,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="204.52" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>audit_comparator (2 samples, 0.02%)</title><rect x="290.5" y="513" width="0.2" height="15.0" fill="rgb(231,148,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="293.48" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (18 samples, 0.14%)</title><rect x="172.5" y="609" width="1.6" height="15.0" fill="rgb(232,196,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="175.53" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sync.(*Pool).Get (9 samples, 0.07%)</title><rect x="457.3" y="625" width="0.8" height="15.0" fill="rgb(220,103,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="460.33" y="635.5" font-size="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.(*mheap).reclaimList (4 samples, 0.03%)</title><rect x="492.4" y="497" width="0.3" height="15.0" fill="rgb(214,197,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.35" y="507.5" font-size="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.goschedImpl (9 samples, 0.07%)</title><rect x="49.1" y="737" width="0.8" height="15.0" fill="rgb(247,86,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="52.08" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (5 samples, 0.04%)</title><rect x="1060.3" y="673" width="0.5" height="15.0" fill="rgb(229,174,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="1063.34" y="683.5" font-size="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.schedule (2 samples, 0.02%)</title><rect x="45.7" y="689" width="0.2" height="15.0" fill="rgb(233,112,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="48.75" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>audit_filter_syscall (2 samples, 0.02%)</title><rect x="938.8" y="625" width="0.2" height="15.0" fill="rgb(241,15,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="941.78" y="635.5" font-size="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.park_m (9 samples, 0.07%)</title><rect x="164.2" y="769" width="0.9" height="15.0" fill="rgb(209,2,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="167.24" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (5 samples, 0.04%)</title><rect x="489.8" y="481" width="0.5" height="15.0" fill="rgb(209,162,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="492.83" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (3 samples, 0.02%)</title><rect x="557.9" y="561" width="0.3" height="15.0" fill="rgb(206,144,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="560.91" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (3 samples, 0.02%)</title><rect x="265.2" y="577" width="0.2" height="15.0" fill="rgb(208,102,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="268.18" y="587.5" font-size="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.goparkunlock (4 samples, 0.03%)</title><rect x="264.6" y="689" width="0.4" height="15.0" fill="rgb(253,207,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="267.64" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (10 samples, 0.08%)</title><rect x="419.8" y="337" width="0.9" height="15.0" fill="rgb(219,185,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="422.78" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="278.1" y="417" width="0.1" height="15.0" fill="rgb(237,144,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="281.05" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sync.(*Mutex).Lock (3 samples, 0.02%)</title><rect x="457.5" y="593" width="0.3" height="15.0" fill="rgb(216,175,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="460.51" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (3 samples, 0.02%)</title><rect x="34.9" y="705" width="0.2" height="15.0" fill="rgb(246,178,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="37.85" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (59 samples, 0.45%)</title><rect x="185.8" y="609" width="5.3" height="15.0" fill="rgb(217,217,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="188.76" y="619.5" font-size="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.findrunnable (2 samples, 0.02%)</title><rect x="46.4" y="673" width="0.2" height="15.0" fill="rgb(213,192,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="49.38" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>new_inode_pseudo (2 samples, 0.02%)</title><rect x="434.2" y="481" width="0.2" height="15.0" fill="rgb(246,198,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="437.19" y="491.5" font-size="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.findrunnable (2 samples, 0.02%)</title><rect x="365.9" y="481" width="0.2" height="15.0" fill="rgb(238,140,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="368.94" y="491.5" font-size="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.stopm (45 samples, 0.34%)</title><rect x="286.3" y="593" width="4.1" height="15.0" fill="rgb(231,211,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="289.34" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net.(*Resolver).LookupIPAddr.func1 (101 samples, 0.77%)</title><rect x="258.3" y="801" width="9.1" height="15.0" fill="rgb(247,126,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="261.34" y="811.5" font-size="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.futex (4 samples, 0.03%)</title><rect x="522.7" y="481" width="0.4" height="15.0" fill="rgb(243,143,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="525.70" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (2 samples, 0.02%)</title><rect x="248.3" y="625" width="0.2" height="15.0" fill="rgb(247,121,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="251.34" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (10 samples, 0.08%)</title><rect x="161.1" y="577" width="0.9" height="15.0" fill="rgb(226,180,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="164.09" y="587.5" font-size="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.gcParkAssist (3 samples, 0.02%)</title><rect x="372.9" y="609" width="0.2" height="15.0" fill="rgb(219,52,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="375.87" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (5 samples, 0.04%)</title><rect x="489.8" y="273" width="0.5" height="15.0" fill="rgb(254,47,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="492.83" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bytes.(*Buffer).grow (8 samples, 0.06%)</title><rect x="450.9" y="577" width="0.8" height="15.0" fill="rgb(218,72,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="453.94" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (2 samples, 0.02%)</title><rect x="460.7" y="481" width="0.1" height="15.0" fill="rgb(243,148,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="463.66" y="491.5" font-size="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.mallocgc (20 samples, 0.15%)</title><rect x="643.2" y="545" width="1.8" height="15.0" fill="rgb(224,120,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="646.18" y="555.5" font-size="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.gopreempt_m (3 samples, 0.02%)</title><rect x="327.8" y="753" width="0.3" height="15.0" fill="rgb(213,17,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="330.85" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (3 samples, 0.02%)</title><rect x="639.6" y="337" width="0.2" height="15.0" fill="rgb(226,75,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="642.57" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (3 samples, 0.02%)</title><rect x="314.3" y="609" width="0.3" height="15.0" fill="rgb(209,80,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="317.34" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (5 samples, 0.04%)</title><rect x="1059.5" y="641" width="0.5" height="15.0" fill="rgb(212,59,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.53" y="651.5" font-size="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.deferreturn (2 samples, 0.02%)</title><rect x="168.6" y="769" width="0.1" height="15.0" fill="rgb(253,186,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="171.56" y="779.5" font-size="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.gcAssistAlloc.func1 (2 samples, 0.02%)</title><rect x="471.4" y="657" width="0.2" height="15.0" fill="rgb(249,36,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="474.38" y="667.5" font-size="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.notesleep (2 samples, 0.02%)</title><rect x="558.7" y="465" width="0.2" height="15.0" fill="rgb(225,66,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="561.72" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_select (4 samples, 0.03%)</title><rect x="642.2" y="273" width="0.3" height="15.0" fill="rgb(222,9,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="645.18" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="691.5" y="561" width="0.3" height="15.0" fill="rgb(240,136,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="694.53" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (6 samples, 0.05%)</title><rect x="496.4" y="481" width="0.5" height="15.0" fill="rgb(222,207,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="499.41" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="973.9" y="657" width="0.2" height="15.0" fill="rgb(214,43,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="976.90" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ttwu_do_wakeup (2 samples, 0.02%)</title><rect x="938.2" y="561" width="0.1" height="15.0" fill="rgb(228,181,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="941.15" y="571.5" font-size="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.newobject (2 samples, 0.02%)</title><rect x="972.8" y="673" width="0.2" height="15.0" fill="rgb(254,195,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="975.82" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (4 samples, 0.03%)</title><rect x="95.4" y="641" width="0.4" height="15.0" fill="rgb(233,190,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="98.45" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="567.5" y="289" width="0.2" height="15.0" fill="rgb(220,12,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="570.54" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="253.6" y="577" width="0.1" height="15.0" fill="rgb(233,22,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="256.56" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/github.com/prometheus/client_golang/prometheus.(*processCollector).(github.com/prometheus/blackbox_exporter/vendor/github.com/prometheus/client_golang/prometheus.processCollect)-fm (2 samples, 0.02%)</title><rect x="254.5" y="785" width="0.1" height="15.0" fill="rgb(237,49,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="257.46" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (3 samples, 0.02%)</title><rect x="436.8" y="449" width="0.3" height="15.0" fill="rgb(228,117,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.80" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="1059.3" y="577" width="0.2" height="15.0" fill="rgb(209,3,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.35" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="247.7" y="689" width="0.2" height="15.0" fill="rgb(231,0,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="250.71" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__vfs_write (57 samples, 0.43%)</title><rect x="320.6" y="609" width="5.2" height="15.0" fill="rgb(209,38,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="323.64" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>fmt.Fscanf (2 samples, 0.02%)</title><rect x="254.5" y="689" width="0.1" height="15.0" fill="rgb(205,153,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="257.46" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net/textproto.MIMEHeader.Get (3 samples, 0.02%)</title><rect x="654.2" y="705" width="0.2" height="15.0" fill="rgb(244,143,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="657.16" y="715.5" font-size="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.(*mheap).alloc_m (4 samples, 0.03%)</title><rect x="336.7" y="401" width="0.3" height="15.0" fill="rgb(247,129,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="339.67" y="411.5" font-size="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.park_m (2 samples, 0.02%)</title><rect x="258.8" y="577" width="0.2" height="15.0" fill="rgb(240,33,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="261.79" y="587.5" font-size="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.notesleep (7 samples, 0.05%)</title><rect x="1187.9" y="721" width="0.7" height="15.0" fill="rgb(211,143,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="1190.93" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (2 samples, 0.02%)</title><rect x="650.5" y="337" width="0.1" height="15.0" fill="rgb(223,146,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="653.47" y="347.5" font-size="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.makeslice (2 samples, 0.02%)</title><rect x="557.2" y="641" width="0.2" height="15.0" fill="rgb(246,28,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="560.19" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (9 samples, 0.07%)</title><rect x="1057.3" y="513" width="0.8" height="15.0" fill="rgb(227,73,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="1060.28" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_select (2 samples, 0.02%)</title><rect x="145.8" y="593" width="0.2" height="15.0" fill="rgb(251,229,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="148.78" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (5 samples, 0.04%)</title><rect x="1186.6" y="561" width="0.4" height="15.0" fill="rgb(254,176,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.58" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_pselect6 (2 samples, 0.02%)</title><rect x="595.1" y="353" width="0.2" height="15.0" fill="rgb(226,208,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="598.09" y="363.5" font-size="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.(*mcache).nextFree.func1 (5 samples, 0.04%)</title><rect x="463.9" y="625" width="0.5" height="15.0" fill="rgb(229,52,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="466.90" y="635.5" font-size="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.mcall (2 samples, 0.02%)</title><rect x="294.5" y="641" width="0.2" height="15.0" fill="rgb(230,124,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="297.53" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (2 samples, 0.02%)</title><rect x="370.5" y="321" width="0.2" height="15.0" fill="rgb(248,87,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="373.53" 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>__audit_syscall_exit (2 samples, 0.02%)</title><rect x="157.3" y="625" width="0.2" height="15.0" fill="rgb(253,204,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="160.31" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>audit_filter_rules (5 samples, 0.04%)</title><rect x="930.9" y="641" width="0.4" height="15.0" fill="rgb(253,21,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="933.86" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (4 samples, 0.03%)</title><rect x="291.2" y="513" width="0.4" height="15.0" fill="rgb(214,105,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="294.20" y="523.5" font-size="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.gcstopm (2 samples, 0.02%)</title><rect x="104.5" y="737" width="0.1" height="15.0" fill="rgb(238,189,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="107.45" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (10 samples, 0.08%)</title><rect x="32.4" y="449" width="0.9" height="15.0" fill="rgb(250,136,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="35.42" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>audit_filter_rules (7 samples, 0.05%)</title><rect x="125.3" y="625" width="0.6" height="15.0" fill="rgb(205,78,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="128.25" y="635.5" font-size="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_sd_lb_stats (2 samples, 0.02%)</title><rect x="957.2" y="529" width="0.1" height="15.0" fill="rgb(219,101,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="960.15" y="539.5" font-size="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.(*mcache).refill (5 samples, 0.04%)</title><rect x="559.4" y="593" width="0.5" height="15.0" fill="rgb(231,102,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="562.44" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="439.2" y="321" width="0.2" height="15.0" fill="rgb(223,58,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="442.23" 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>runtime.gcAssistAlloc (5 samples, 0.04%)</title><rect x="498.0" y="593" width="0.5" height="15.0" fill="rgb(225,161,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="501.03" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="493.1" y="417" width="0.2" height="15.0" fill="rgb(249,101,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="496.08" y="427.5" font-size="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.systemstack (2 samples, 0.02%)</title><rect x="279.7" y="609" width="0.2" height="15.0" fill="rgb(235,81,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="282.68" y="619.5" font-size="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.systemstack (41 samples, 0.31%)</title><rect x="303.5" y="721" width="3.7" height="15.0" fill="rgb(254,120,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="306.54" y="731.5" font-size="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.notetsleep_internal (7 samples, 0.05%)</title><rect x="355.3" y="481" width="0.6" height="15.0" fill="rgb(245,43,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="358.31" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="386.6" y="321" width="0.2" height="15.0" fill="rgb(209,138,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="389.65" 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>x86_pmu_enable (2 samples, 0.02%)</title><rect x="421.1" y="177" width="0.2" height="15.0" fill="rgb(228,171,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="424.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>pick_next_task_fair (6 samples, 0.05%)</title><rect x="1016.0" y="577" width="0.6" height="15.0" fill="rgb(238,101,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="1019.04" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (35 samples, 0.27%)</title><rect x="668.2" y="465" width="3.2" height="15.0" fill="rgb(228,134,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.21" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="16.8" y="609" width="0.2" height="15.0" fill="rgb(218,86,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.84" y="619.5" font-size="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_balance (3 samples, 0.02%)</title><rect x="619.0" y="305" width="0.2" height="15.0" fill="rgb(242,92,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="621.95" 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>runtime.helpgc (4 samples, 0.03%)</title><rect x="690.8" y="673" width="0.4" height="15.0" fill="rgb(238,123,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="693.81" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>run_rebalance_domains (2 samples, 0.02%)</title><rect x="398.4" y="257" width="0.1" height="15.0" fill="rgb(211,118,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="401.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>runtime.lock (6 samples, 0.05%)</title><rect x="50.3" y="673" width="0.6" height="15.0" fill="rgb(243,213,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="53.34" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="498.3" y="225" width="0.2" height="15.0" fill="rgb(214,6,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="501.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>schedule (2 samples, 0.02%)</title><rect x="336.2" y="209" width="0.2" height="15.0" fill="rgb(213,147,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="339.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>net.internetSocket (49 samples, 0.37%)</title><rect x="431.0" y="641" width="4.4" height="15.0" fill="rgb(228,4,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="434.04" y="651.5" font-size="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.mcall (2 samples, 0.02%)</title><rect x="45.9" y="769" width="0.2" height="15.0" fill="rgb(208,213,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="48.93" y="779.5" font-size="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.osyield (6 samples, 0.05%)</title><rect x="246.7" y="705" width="0.6" height="15.0" fill="rgb(230,5,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="249.72" y="715.5" font-size="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.runqsteal (4 samples, 0.03%)</title><rect x="232.0" y="721" width="0.4" height="15.0" fill="rgb(219,189,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="235.04" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sync.(*Pool).Put (2 samples, 0.02%)</title><rect x="160.3" y="801" width="0.2" height="15.0" fill="rgb(209,202,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="163.28" y="811.5" font-size="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.runqsteal (4 samples, 0.03%)</title><rect x="353.9" y="401" width="0.3" height="15.0" fill="rgb(252,113,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="356.87" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>poll_schedule_timeout (5 samples, 0.04%)</title><rect x="329.6" y="481" width="0.4" height="15.0" fill="rgb(227,1,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="332.56" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>audit_filter_syscall (2 samples, 0.02%)</title><rect x="307.9" y="433" width="0.1" height="15.0" fill="rgb(208,12,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="310.86" y="443.5" font-size="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.freedefer (2 samples, 0.02%)</title><rect x="98.5" y="753" width="0.2" height="15.0" fill="rgb(212,10,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="101.51" y="763.5" font-size="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_hard_start_xmit (8 samples, 0.06%)</title><rect x="429.1" y="273" width="0.8" height="15.0" fill="rgb(205,40,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="432.15" y="283.5" font-size="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.gcstopm (3 samples, 0.02%)</title><rect x="535.5" y="417" width="0.3" height="15.0" fill="rgb(232,21,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="538.48" y="427.5" font-size="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.mcall (2 samples, 0.02%)</title><rect x="371.3" y="561" width="0.2" height="15.0" fill="rgb(248,104,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="374.34" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>wake_q_add (3 samples, 0.02%)</title><rect x="721.6" y="593" width="0.3" height="15.0" fill="rgb(215,222,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="724.60" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="157.1" y="657" width="0.2" height="15.0" fill="rgb(224,91,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="160.13" y="667.5" font-size="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.runqsteal (3 samples, 0.02%)</title><rect x="270.4" y="609" width="0.3" height="15.0" fill="rgb(234,98,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="273.40" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (3 samples, 0.02%)</title><rect x="1057.0" y="673" width="0.3" height="15.0" fill="rgb(215,164,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1060.01" y="683.5" font-size="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.(*mcache).nextFree.func1 (6 samples, 0.05%)</title><rect x="469.4" y="657" width="0.5" height="15.0" fill="rgb(253,184,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="472.39" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>runtime.gfget.func1 (2 samples, 0.02%)</title><rect x="497.3" y="625" width="0.2" height="15.0" fill="rgb(215,69,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="500.31" y="635.5" font-size="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.assertI2I2 (2 samples, 0.02%)</title><rect x="451.9" y="545" width="0.2" height="15.0" fill="rgb(206,80,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="454.93" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>context.WithCancel.func1 (6 samples, 0.05%)</title><rect x="277.1" y="801" width="0.5" height="15.0" fill="rgb(228,119,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="280.06" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (5 samples, 0.04%)</title><rect x="42.2" y="577" width="0.5" height="15.0" fill="rgb(207,216,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="45.24" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (4 samples, 0.03%)</title><rect x="442.7" y="497" width="0.3" height="15.0" fill="rgb(250,190,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="445.65" y="507.5" font-size="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.schedule (2 samples, 0.02%)</title><rect x="479.6" y="513" width="0.1" height="15.0" fill="rgb(210,216,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="482.57" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>pick_next_task_fair (2 samples, 0.02%)</title><rect x="570.1" y="273" width="0.1" height="15.0" fill="rgb(220,179,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="573.06" y="283.5" font-size="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.stopm (9 samples, 0.07%)</title><rect x="471.6" y="561" width="0.9" height="15.0" fill="rgb(228,49,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="474.65" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net_rx_action (5 samples, 0.04%)</title><rect x="312.6" y="305" width="0.5" height="15.0" fill="rgb(228,107,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="315.63" 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>runtime.osyield (7 samples, 0.05%)</title><rect x="745.8" y="737" width="0.7" height="15.0" fill="rgb(213,228,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="748.82" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (3 samples, 0.02%)</title><rect x="501.6" y="257" width="0.3" height="15.0" fill="rgb(218,174,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="504.63" 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>__schedule (4 samples, 0.03%)</title><rect x="268.4" y="609" width="0.4" height="15.0" fill="rgb(238,162,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="271.42" y="619.5" font-size="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.pcvalue (16 samples, 0.12%)</title><rect x="1175.5" y="673" width="1.4" height="15.0" fill="rgb(245,50,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1178.50" y="683.5" font-size="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.sweepone (2 samples, 0.02%)</title><rect x="471.2" y="561" width="0.2" height="15.0" fill="rgb(242,158,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="474.19" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (4 samples, 0.03%)</title><rect x="639.6" y="353" width="0.3" height="15.0" fill="rgb(251,72,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="642.57" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="1189.1" y="641" width="0.2" height="15.0" fill="rgb(206,214,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.10" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sync.(*Cond).Broadcast (3 samples, 0.02%)</title><rect x="697.0" y="801" width="0.3" height="15.0" fill="rgb(220,57,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="700.02" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="357.6" y="225" width="0.1" height="15.0" fill="rgb(235,13,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="360.56" 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>return_from_SYSCALL_64 (5 samples, 0.04%)</title><rect x="386.4" y="433" width="0.4" height="15.0" fill="rgb(242,64,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="389.38" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (4 samples, 0.03%)</title><rect x="559.9" y="369" width="0.3" height="15.0" fill="rgb(224,210,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="562.89" y="379.5" font-size="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.mcall (8 samples, 0.06%)</title><rect x="16.4" y="721" width="0.7" height="15.0" fill="rgb(216,1,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.39" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (139 samples, 1.06%)</title><rect x="67.6" y="545" width="12.5" height="15.0" fill="rgb(217,100,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="70.63" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (2 samples, 0.02%)</title><rect x="34.9" y="545" width="0.1" height="15.0" fill="rgb(207,107,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="37.85" y="555.5" font-size="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.mapiternext (24 samples, 0.18%)</title><rect x="50.3" y="785" width="2.2" height="15.0" fill="rgb(251,154,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="53.34" y="795.5" font-size="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.systemstack (6 samples, 0.05%)</title><rect x="278.7" y="737" width="0.5" height="15.0" fill="rgb(241,87,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="281.69" y="747.5" font-size="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.schedule (2 samples, 0.02%)</title><rect x="346.8" y="529" width="0.1" height="15.0" fill="rgb(225,12,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="349.76" y="539.5" font-size="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.gcAssistAlloc (3 samples, 0.02%)</title><rect x="972.3" y="609" width="0.2" height="15.0" fill="rgb(228,30,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="975.28" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (26 samples, 0.20%)</title><rect x="37.5" y="481" width="2.3" height="15.0" fill="rgb(206,49,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="40.46" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_epoll_wait (2 samples, 0.02%)</title><rect x="276.6" y="401" width="0.2" height="15.0" fill="rgb(226,178,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="279.61" y="411.5" font-size="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.gosweepone.func1 (36 samples, 0.27%)</title><rect x="619.5" y="513" width="3.2" height="15.0" fill="rgb(229,21,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="622.49" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="144.2" y="657" width="0.2" height="15.0" fill="rgb(214,23,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="147.16" y="667.5" font-size="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.lock (16 samples, 0.12%)</title><rect x="90.2" y="689" width="1.5" height="15.0" fill="rgb(226,145,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="93.23" y="699.5" font-size="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.newobject (6 samples, 0.05%)</title><rect x="308.8" y="737" width="0.6" height="15.0" fill="rgb(214,62,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="311.85" y="747.5" font-size="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.park_m (2 samples, 0.02%)</title><rect x="346.8" y="545" width="0.1" height="15.0" fill="rgb(243,43,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="349.76" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (3 samples, 0.02%)</title><rect x="16.6" y="545" width="0.2" height="15.0" fill="rgb(220,208,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.57" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>audit_filter_rules (4 samples, 0.03%)</title><rect x="768.7" y="641" width="0.4" height="15.0" fill="rgb(230,188,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="771.69" y="651.5" font-size="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.gcDrainN (2 samples, 0.02%)</title><rect x="557.7" y="593" width="0.2" height="15.0" fill="rgb(207,74,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="560.73" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__audit_syscall_exit (3 samples, 0.02%)</title><rect x="37.0" y="641" width="0.3" height="15.0" fill="rgb(250,63,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="40.01" y="651.5" font-size="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.notesleep (5 samples, 0.04%)</title><rect x="229.4" y="737" width="0.5" height="15.0" fill="rgb(222,100,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="232.43" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="689.4" y="561" width="0.1" height="15.0" fill="rgb(236,62,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="692.37" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>poll_schedule_timeout (2 samples, 0.02%)</title><rect x="457.6" y="337" width="0.2" height="15.0" fill="rgb(227,120,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="460.60" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="14.1" y="321" width="0.2" height="15.0" fill="rgb(209,183,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.14" 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>audit_filter_rules (8 samples, 0.06%)</title><rect x="702.7" y="609" width="0.7" height="15.0" fill="rgb(238,88,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="705.69" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sock_read_iter (3 samples, 0.02%)</title><rect x="301.6" y="513" width="0.2" height="15.0" fill="rgb(226,114,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="304.56" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wake (2 samples, 0.02%)</title><rect x="689.5" y="497" width="0.2" height="15.0" fill="rgb(248,150,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="692.55" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/github.com/go-logfmt/logfmt.safeMarshal (68 samples, 0.52%)</title><rect x="357.4" y="561" width="6.1" height="15.0" fill="rgb(242,118,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="360.38" y="571.5" font-size="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.stopm (2 samples, 0.02%)</title><rect x="337.2" y="465" width="0.2" height="15.0" fill="rgb(238,13,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="340.21" y="475.5" font-size="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.goparkunlock (2 samples, 0.02%)</title><rect x="250.3" y="721" width="0.2" height="15.0" fill="rgb(221,134,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="253.32" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>drop_futex_key_refs.isra.14 (6 samples, 0.05%)</title><rect x="826.0" y="609" width="0.5" height="15.0" fill="rgb(225,116,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="828.96" y="619.5" font-size="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.futex (3 samples, 0.02%)</title><rect x="160.7" y="689" width="0.3" height="15.0" fill="rgb(222,45,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="163.73" y="699.5" font-size="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.stopm (4 samples, 0.03%)</title><rect x="249.2" y="737" width="0.4" height="15.0" fill="rgb(254,78,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="252.24" y="747.5" font-size="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.goschedImpl (2 samples, 0.02%)</title><rect x="566.2" y="417" width="0.2" height="15.0" fill="rgb(240,12,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="569.19" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (12 samples, 0.09%)</title><rect x="439.8" y="321" width="1.1" height="15.0" fill="rgb(237,211,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="442.77" 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>runtime.lock (4 samples, 0.03%)</title><rect x="537.9" y="449" width="0.4" height="15.0" fill="rgb(236,108,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="540.92" y="459.5" font-size="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.usleep (2 samples, 0.02%)</title><rect x="457.6" y="433" width="0.2" height="15.0" fill="rgb(245,216,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="460.60" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (2 samples, 0.02%)</title><rect x="279.5" y="369" width="0.2" height="15.0" fill="rgb(212,68,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="282.50" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (39 samples, 0.30%)</title><rect x="86.2" y="545" width="3.5" height="15.0" fill="rgb(245,204,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="89.18" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (14 samples, 0.11%)</title><rect x="191.9" y="513" width="1.2" height="15.0" fill="rgb(230,125,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="194.88" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>audit_filter_syscall (2 samples, 0.02%)</title><rect x="655.8" y="401" width="0.2" height="15.0" fill="rgb(237,28,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="658.78" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (25 samples, 0.19%)</title><rect x="1053.9" y="705" width="2.2" height="15.0" fill="rgb(214,213,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="1056.86" y="715.5" font-size="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.newarray (2 samples, 0.02%)</title><rect x="650.9" y="609" width="0.2" height="15.0" fill="rgb(252,193,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="653.92" y="619.5" font-size="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.growslice (3 samples, 0.02%)</title><rect x="376.3" y="689" width="0.3" height="15.0" fill="rgb(217,106,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="379.29" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (18 samples, 0.14%)</title><rect x="172.5" y="657" width="1.6" height="15.0" fill="rgb(238,124,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="175.53" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="347.4" y="353" width="0.2" height="15.0" fill="rgb(232,121,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="350.39" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="639.1" y="321" width="0.2" height="15.0" fill="rgb(253,55,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="642.12" 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>github.com/prometheus/blackbox_exporter/vendor/github.com/go-kit/kit/log.TimestampFormat.func1 (3 samples, 0.02%)</title><rect x="459.5" y="641" width="0.3" height="15.0" fill="rgb(238,200,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="462.49" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (26 samples, 0.20%)</title><rect x="92.3" y="481" width="2.3" height="15.0" fill="rgb(208,115,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="95.30" y="491.5" font-size="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.park_m (3 samples, 0.02%)</title><rect x="19.8" y="593" width="0.3" height="15.0" fill="rgb(236,196,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="22.81" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (5 samples, 0.04%)</title><rect x="712.0" y="593" width="0.4" height="15.0" fill="rgb(205,114,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="714.97" y="603.5" font-size="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.freeSomeWbufs.func1 (3 samples, 0.02%)</title><rect x="713.1" y="785" width="0.3" height="15.0" fill="rgb(236,46,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="716.14" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (7 samples, 0.05%)</title><rect x="41.4" y="513" width="0.7" height="15.0" fill="rgb(205,228,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="44.42" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (3 samples, 0.02%)</title><rect x="709.7" y="497" width="0.3" height="15.0" fill="rgb(237,38,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="712.72" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (5 samples, 0.04%)</title><rect x="517.2" y="417" width="0.5" height="15.0" fill="rgb(207,161,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="520.21" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (15 samples, 0.11%)</title><rect x="488.0" y="529" width="1.4" height="15.0" fill="rgb(224,125,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.03" y="539.5" font-size="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.putfull (2 samples, 0.02%)</title><rect x="578.8" y="465" width="0.2" height="15.0" fill="rgb(207,75,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="581.80" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (3 samples, 0.02%)</title><rect x="252.0" y="609" width="0.3" height="15.0" fill="rgb(238,140,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="255.03" y="619.5" font-size="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_sys_select (2 samples, 0.02%)</title><rect x="474.7" y="481" width="0.2" height="15.0" fill="rgb(239,223,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="477.71" y="491.5" font-size="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.stopm (6 samples, 0.05%)</title><rect x="46.6" y="657" width="0.6" height="15.0" fill="rgb(234,130,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="49.65" y="667.5" font-size="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.lock (3 samples, 0.02%)</title><rect x="101.5" y="753" width="0.3" height="15.0" fill="rgb(205,140,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="104.48" y="763.5" font-size="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.gcAssistAlloc.func1 (2 samples, 0.02%)</title><rect x="298.9" y="705" width="0.1" height="15.0" fill="rgb(230,210,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="301.85" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (11 samples, 0.08%)</title><rect x="475.3" y="401" width="1.0" height="15.0" fill="rgb(207,39,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="478.34" y="411.5" font-size="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.osyield (2 samples, 0.02%)</title><rect x="365.8" y="497" width="0.1" height="15.0" fill="rgb(238,36,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="368.76" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="264.6" y="577" width="0.3" height="15.0" fill="rgb(229,54,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="267.64" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (5 samples, 0.04%)</title><rect x="1186.6" y="593" width="0.4" height="15.0" fill="rgb(248,129,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.58" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (7 samples, 0.05%)</title><rect x="412.8" y="417" width="0.6" height="15.0" fill="rgb(218,212,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="415.76" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (5 samples, 0.04%)</title><rect x="155.5" y="529" width="0.5" height="15.0" fill="rgb(244,189,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="158.51" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (3 samples, 0.02%)</title><rect x="271.8" y="401" width="0.3" height="15.0" fill="rgb(213,100,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="274.84" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (3 samples, 0.02%)</title><rect x="744.2" y="641" width="0.3" height="15.0" fill="rgb(226,218,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="747.20" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net.sortByRFC6724 (3 samples, 0.02%)</title><rect x="264.3" y="721" width="0.2" height="15.0" fill="rgb(234,114,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="267.28" y="731.5" font-size="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.morestack (3 samples, 0.02%)</title><rect x="326.6" y="721" width="0.3" height="15.0" fill="rgb(208,183,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="329.59" y="731.5" font-size="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.systemstack (16 samples, 0.12%)</title><rect x="296.8" y="737" width="1.4" height="15.0" fill="rgb(210,66,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="299.78" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (8 samples, 0.06%)</title><rect x="602.7" y="273" width="0.8" height="15.0" fill="rgb(248,57,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="605.75" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="13.4" y="449" width="0.2" height="15.0" fill="rgb(222,212,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.42" y="459.5" font-size="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.gcDrain (2 samples, 0.02%)</title><rect x="146.1" y="673" width="0.2" height="15.0" fill="rgb(205,112,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="149.14" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (6 samples, 0.05%)</title><rect x="263.5" y="305" width="0.5" height="15.0" fill="rgb(226,134,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="266.47" 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>runtime.gcstopm (4 samples, 0.03%)</title><rect x="181.0" y="737" width="0.3" height="15.0" fill="rgb(228,87,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="183.99" y="747.5" font-size="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.osyield (7 samples, 0.05%)</title><rect x="142.2" y="721" width="0.6" height="15.0" fill="rgb(207,201,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="145.18" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="973.9" y="561" width="0.2" height="15.0" fill="rgb(252,48,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="976.90" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (5 samples, 0.04%)</title><rect x="155.5" y="497" width="0.5" height="15.0" fill="rgb(225,201,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="158.51" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (3 samples, 0.02%)</title><rect x="16.6" y="609" width="0.2" height="15.0" fill="rgb(251,97,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.57" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (3 samples, 0.02%)</title><rect x="260.3" y="433" width="0.3" height="15.0" fill="rgb(215,43,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="263.32" y="443.5" font-size="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.schedule (2 samples, 0.02%)</title><rect x="11.7" y="481" width="0.2" height="15.0" fill="rgb(210,130,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.71" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/gopkg.in/yaml%2ev2.yaml_string_write_handler (2 samples, 0.02%)</title><rect x="29.2" y="721" width="0.2" height="15.0" fill="rgb(219,57,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="32.18" y="731.5" font-size="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.castogscanstatus (2 samples, 0.02%)</title><rect x="1172.3" y="721" width="0.1" height="15.0" fill="rgb(244,18,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="1175.26" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (3 samples, 0.02%)</title><rect x="549.9" y="433" width="0.3" height="15.0" fill="rgb(213,188,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="552.89" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tcp_transmit_skb (6 samples, 0.05%)</title><rect x="324.0" y="113" width="0.5" height="15.0" fill="rgb(219,112,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="326.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>runtime.goschedImpl (3 samples, 0.02%)</title><rect x="12.9" y="593" width="0.3" height="15.0" fill="rgb(205,112,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="15.88" y="603.5" font-size="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.notesleep (4 samples, 0.03%)</title><rect x="165.1" y="721" width="0.4" height="15.0" fill="rgb(247,190,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="168.14" y="731.5" font-size="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.findrunnable (3 samples, 0.02%)</title><rect x="315.8" y="689" width="0.3" height="15.0" fill="rgb(214,66,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.78" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule_hrtimeout_range_clock (4 samples, 0.03%)</title><rect x="651.5" y="337" width="0.4" height="15.0" fill="rgb(239,148,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="654.55" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>inode_init_always (2 samples, 0.02%)</title><rect x="434.2" y="449" width="0.2" height="15.0" fill="rgb(232,221,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="437.19" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="526.3" y="545" width="0.2" height="15.0" fill="rgb(227,29,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="529.30" y="555.5" font-size="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.(*mspan).sweep (2 samples, 0.02%)</title><rect x="561.1" y="481" width="0.2" height="15.0" fill="rgb(238,221,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="564.15" y="491.5" font-size="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.park_m (4 samples, 0.03%)</title><rect x="506.6" y="465" width="0.3" height="15.0" fill="rgb(230,55,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="509.58" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="588.4" y="257" width="0.2" height="15.0" fill="rgb(253,38,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="591.43" 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>do_syscall_64 (2 samples, 0.02%)</title><rect x="17.9" y="561" width="0.2" height="15.0" fill="rgb(207,169,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.92" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule_hrtimeout_range_clock (2 samples, 0.02%)</title><rect x="232.2" y="561" width="0.2" height="15.0" fill="rgb(228,83,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="235.22" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (2 samples, 0.02%)</title><rect x="664.5" y="529" width="0.2" height="15.0" fill="rgb(218,194,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="667.52" y="539.5" font-size="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.gcstopm (5 samples, 0.04%)</title><rect x="335.4" y="385" width="0.5" height="15.0" fill="rgb(229,114,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="338.41" y="395.5" font-size="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.systemstack (7 samples, 0.05%)</title><rect x="528.6" y="673" width="0.6" height="15.0" fill="rgb(229,224,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="531.55" y="683.5" font-size="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.schedule (3 samples, 0.02%)</title><rect x="487.0" y="609" width="0.2" height="15.0" fill="rgb(249,78,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="489.95" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (8 samples, 0.06%)</title><rect x="575.1" y="177" width="0.7" height="15.0" fill="rgb(217,58,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="578.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>schedule (6 samples, 0.05%)</title><rect x="15.7" y="497" width="0.5" height="15.0" fill="rgb(231,74,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.67" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bytes.IndexFunc (2 samples, 0.02%)</title><rect x="340.7" y="529" width="0.2" height="15.0" fill="rgb(251,113,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="343.72" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="347.4" y="385" width="0.2" height="15.0" fill="rgb(224,125,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="350.39" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="104.5" y="673" width="0.1" height="15.0" fill="rgb(221,35,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="107.45" y="683.5" font-size="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.funcspdelta (3 samples, 0.02%)</title><rect x="609.1" y="497" width="0.3" height="15.0" fill="rgb(230,59,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="612.14" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (96 samples, 0.73%)</title><rect x="754.0" y="465" width="8.7" height="15.0" fill="rgb(247,118,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="757.02" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (3 samples, 0.02%)</title><rect x="636.2" y="289" width="0.3" height="15.0" fill="rgb(236,200,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="639.24" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (13 samples, 0.10%)</title><rect x="90.4" y="449" width="1.2" height="15.0" fill="rgb(229,17,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="93.41" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (2 samples, 0.02%)</title><rect x="466.8" y="385" width="0.2" height="15.0" fill="rgb(228,135,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="469.78" y="395.5" font-size="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.newstack (4 samples, 0.03%)</title><rect x="587.0" y="561" width="0.3" height="15.0" fill="rgb(235,105,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="589.99" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="567.7" y="353" width="0.2" height="15.0" fill="rgb(217,106,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="570.72" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="528.0" y="273" width="0.2" height="15.0" fill="rgb(235,74,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="531.01" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net.(*netFD).Read (5 samples, 0.04%)</title><rect x="333.3" y="593" width="0.4" height="15.0" fill="rgb(211,99,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="336.25" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__audit_syscall_exit (4 samples, 0.03%)</title><rect x="480.3" y="497" width="0.3" height="15.0" fill="rgb(213,114,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="483.29" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="265.0" y="561" width="0.2" height="15.0" fill="rgb(253,79,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="268.00" y="571.5" font-size="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.gcAssistAlloc (58 samples, 0.44%)</title><rect x="690.6" y="753" width="5.2" height="15.0" fill="rgb(236,173,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="693.63" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (5 samples, 0.04%)</title><rect x="40.3" y="497" width="0.5" height="15.0" fill="rgb(206,193,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="43.34" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (5 samples, 0.04%)</title><rect x="156.7" y="449" width="0.4" height="15.0" fill="rgb(207,115,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="159.68" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule_hrtimeout_range_clock (10 samples, 0.08%)</title><rect x="103.6" y="641" width="0.9" height="15.0" fill="rgb(236,214,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="106.55" y="651.5" font-size="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.goschedImpl (56 samples, 0.43%)</title><rect x="708.0" y="769" width="5.0" height="15.0" fill="rgb(249,194,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="711.01" y="779.5" font-size="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.profilealloc (4 samples, 0.03%)</title><rect x="576.3" y="561" width="0.3" height="15.0" fill="rgb(247,80,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="579.27" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (3 samples, 0.02%)</title><rect x="484.8" y="433" width="0.3" height="15.0" fill="rgb(212,94,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="487.79" y="443.5" font-size="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.semacquire1 (2 samples, 0.02%)</title><rect x="651.9" y="577" width="0.2" height="15.0" fill="rgb(214,89,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="654.91" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_socket (9 samples, 0.07%)</title><rect x="433.7" y="529" width="0.8" height="15.0" fill="rgb(216,99,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="436.74" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/github.com/prometheus/common/expfmt.encoder.Encode (936 samples, 7.14%)</title><rect x="565.6" y="689" width="84.2" height="15.0" fill="rgb(236,74,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.56" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.co..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>runtime.stopTheWorldWithSema (15 samples, 0.11%)</title><rect x="603.6" y="545" width="1.3" height="15.0" fill="rgb(207,162,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="606.56" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="492.4" y="209" width="0.2" height="15.0" fill="rgb(205,100,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.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>do_futex (5 samples, 0.04%)</title><rect x="645.5" y="417" width="0.5" height="15.0" fill="rgb(214,31,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="648.52" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (3 samples, 0.02%)</title><rect x="566.8" y="273" width="0.3" height="15.0" fill="rgb(248,139,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="569.82" y="283.5" font-size="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.(*mcache).refill (2 samples, 0.02%)</title><rect x="261.8" y="625" width="0.2" height="15.0" fill="rgb(208,93,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="264.85" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net/http.(*Server).ListenAndServe (149 samples, 1.14%)</title><rect x="961.2" y="769" width="13.4" height="15.0" fill="rgb(225,194,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="964.20" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (5 samples, 0.04%)</title><rect x="335.4" y="273" width="0.5" height="15.0" fill="rgb(234,56,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="338.41" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (7 samples, 0.05%)</title><rect x="26.2" y="561" width="0.6" height="15.0" fill="rgb(229,188,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="29.21" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (5 samples, 0.04%)</title><rect x="1059.5" y="545" width="0.5" height="15.0" fill="rgb(242,37,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.53" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (9 samples, 0.07%)</title><rect x="569.3" y="209" width="0.8" height="15.0" fill="rgb(212,83,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="572.25" 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>finish_task_switch (2 samples, 0.02%)</title><rect x="1187.7" y="561" width="0.2" height="15.0" fill="rgb(230,86,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="1190.75" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>runtime.lock (5 samples, 0.04%)</title><rect x="588.2" y="497" width="0.4" height="15.0" fill="rgb(249,83,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="591.16" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="644.3" y="257" width="0.1" height="15.0" fill="rgb(227,31,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="647.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>intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="644.3" y="177" width="0.1" height="15.0" fill="rgb(245,42,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="647.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>runtime.mcall (2 samples, 0.02%)</title><rect x="163.7" y="801" width="0.2" height="15.0" fill="rgb(227,67,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="166.70" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (2 samples, 0.02%)</title><rect x="423.2" y="385" width="0.2" height="15.0" fill="rgb(223,87,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="426.20" y="395.5" font-size="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.findrunnable (4 samples, 0.03%)</title><rect x="165.6" y="737" width="0.4" height="15.0" fill="rgb(229,160,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="168.59" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (18 samples, 0.14%)</title><rect x="43.3" y="433" width="1.6" height="15.0" fill="rgb(207,142,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="46.32" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (19 samples, 0.14%)</title><rect x="520.2" y="465" width="1.7" height="15.0" fill="rgb(208,213,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="523.18" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (9 samples, 0.07%)</title><rect x="47.8" y="609" width="0.8" height="15.0" fill="rgb(205,14,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="50.82" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (15 samples, 0.11%)</title><rect x="232.4" y="577" width="1.4" height="15.0" fill="rgb(213,63,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="235.40" y="587.5" font-size="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.lock (4 samples, 0.03%)</title><rect x="448.7" y="593" width="0.3" height="15.0" fill="rgb(207,171,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="451.68" y="603.5" font-size="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.systemstack (7 samples, 0.05%)</title><rect x="469.4" y="673" width="0.6" height="15.0" fill="rgb(218,43,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="472.39" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="843.3" y="513" width="0.2" height="15.0" fill="rgb(224,200,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="846.34" y="523.5" font-size="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.gcAssistAlloc.func1 (2 samples, 0.02%)</title><rect x="364.0" y="433" width="0.1" height="15.0" fill="rgb(250,229,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="366.95" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="638.9" y="369" width="0.2" height="15.0" fill="rgb(207,200,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="641.94" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/github.com/go-logfmt/logfmt.getBuffer (12 samples, 0.09%)</title><rect x="363.9" y="529" width="1.0" height="15.0" fill="rgb(223,148,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="366.86" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net.(*netFD).Close (8 samples, 0.06%)</title><rect x="376.7" y="673" width="0.8" height="15.0" fill="rgb(215,59,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="379.74" y="683.5" font-size="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.stopTheWorldWithSema (29 samples, 0.22%)</title><rect x="958.6" y="785" width="2.6" height="15.0" fill="rgb(225,6,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="961.59" y="795.5" font-size="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.mallocgc (2 samples, 0.02%)</title><rect x="650.9" y="593" width="0.2" height="15.0" fill="rgb(237,17,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="653.92" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (5 samples, 0.04%)</title><rect x="1059.5" y="577" width="0.5" height="15.0" fill="rgb(220,228,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.53" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (6 samples, 0.05%)</title><rect x="1189.4" y="673" width="0.5" height="15.0" fill="rgb(223,150,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.37" y="683.5" font-size="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.timerproc (17 samples, 0.13%)</title><rect x="1184.7" y="817" width="1.5" height="15.0" fill="rgb(240,8,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="1187.69" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (2 samples, 0.02%)</title><rect x="164.5" y="641" width="0.2" height="15.0" fill="rgb(254,90,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="167.51" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net/textproto.(*Reader).ReadLine (32 samples, 0.24%)</title><rect x="300.0" y="769" width="2.9" height="15.0" fill="rgb(207,134,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="303.03" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (5 samples, 0.04%)</title><rect x="177.1" y="593" width="0.5" height="15.0" fill="rgb(225,213,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="180.12" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="470.7" y="417" width="0.2" height="15.0" fill="rgb(252,126,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="473.74" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (66 samples, 0.50%)</title><rect x="380.3" y="305" width="5.9" height="15.0" fill="rgb(244,200,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="383.25" 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>runtime.stopm (48 samples, 0.37%)</title><rect x="474.9" y="577" width="4.3" height="15.0" fill="rgb(210,224,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="477.89" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="278.4" y="497" width="0.2" height="15.0" fill="rgb(240,101,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="281.42" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>raw_recvmsg (7 samples, 0.05%)</title><rect x="418.0" y="497" width="0.6" height="15.0" fill="rgb(253,161,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="420.98" y="507.5" font-size="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.notesleep (2 samples, 0.02%)</title><rect x="13.4" y="545" width="0.2" height="15.0" fill="rgb(228,101,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.42" y="555.5" font-size="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.lock (2 samples, 0.02%)</title><rect x="436.3" y="481" width="0.1" height="15.0" fill="rgb(211,36,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.26" y="491.5" font-size="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.mapaccess2 (2 samples, 0.02%)</title><rect x="646.5" y="593" width="0.2" height="15.0" fill="rgb(235,131,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="649.51" y="603.5" font-size="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.gcMarkDone (134 samples, 1.02%)</title><rect x="718.2" y="801" width="12.0" height="15.0" fill="rgb(234,216,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="721.18" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="540.3" y="337" width="0.1" height="15.0" fill="rgb(222,180,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="543.26" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (5 samples, 0.04%)</title><rect x="22.2" y="417" width="0.4" height="15.0" fill="rgb(240,179,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.16" y="427.5" font-size="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.park_m (4 samples, 0.03%)</title><rect x="270.3" y="657" width="0.4" height="15.0" fill="rgb(225,201,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="273.31" y="667.5" font-size="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.stopm (2 samples, 0.02%)</title><rect x="362.5" y="369" width="0.2" height="15.0" fill="rgb(244,114,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="365.51" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="517.9" y="449" width="0.2" height="15.0" fill="rgb(247,210,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="520.93" y="459.5" font-size="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.(*lfstack).push (8 samples, 0.06%)</title><rect x="1081.7" y="737" width="0.7" height="15.0" fill="rgb(217,196,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="1084.68" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (6 samples, 0.05%)</title><rect x="716.3" y="657" width="0.5" height="15.0" fill="rgb(218,225,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="719.29" y="667.5" font-size="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.resetspinning (24 samples, 0.18%)</title><rect x="938.7" y="753" width="2.2" height="15.0" fill="rgb(238,149,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="941.69" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (15 samples, 0.11%)</title><rect x="232.4" y="641" width="1.4" height="15.0" fill="rgb(241,171,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="235.40" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>audit_filter_syscall (2 samples, 0.02%)</title><rect x="647.7" y="433" width="0.2" height="15.0" fill="rgb(251,86,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="650.68" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (70 samples, 0.53%)</title><rect x="682.6" y="401" width="6.3" height="15.0" fill="rgb(208,194,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="685.61" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (6 samples, 0.05%)</title><rect x="22.1" y="465" width="0.5" height="15.0" fill="rgb(214,128,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.07" y="475.5" font-size="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.sweepone (2 samples, 0.02%)</title><rect x="302.7" y="609" width="0.2" height="15.0" fill="rgb(244,45,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="305.73" y="619.5" font-size="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.goparkunlock (9 samples, 0.07%)</title><rect x="498.7" y="545" width="0.8" height="15.0" fill="rgb(236,0,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="501.66" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (5 samples, 0.04%)</title><rect x="489.8" y="385" width="0.5" height="15.0" fill="rgb(235,0,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="492.83" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (12 samples, 0.09%)</title><rect x="603.8" y="433" width="1.1" height="15.0" fill="rgb(207,62,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="606.83" y="443.5" font-size="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.scanobject (2 samples, 0.02%)</title><rect x="650.6" y="513" width="0.2" height="15.0" fill="rgb(240,76,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="653.65" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (3 samples, 0.02%)</title><rect x="962.2" y="369" width="0.3" height="15.0" fill="rgb(216,5,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="965.19" y="379.5" font-size="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.gcstopm (9 samples, 0.07%)</title><rect x="1060.0" y="737" width="0.8" height="15.0" fill="rgb(215,190,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.98" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>preempt_schedule_common (9 samples, 0.07%)</title><rect x="321.2" y="481" width="0.8" height="15.0" fill="rgb(252,139,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="324.19" y="491.5" font-size="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.findrunnable (2 samples, 0.02%)</title><rect x="546.5" y="529" width="0.2" height="15.0" fill="rgb(254,28,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="549.47" y="539.5" font-size="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.schedule (8 samples, 0.06%)</title><rect x="527.8" y="577" width="0.8" height="15.0" fill="rgb(224,53,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="530.83" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (2 samples, 0.02%)</title><rect x="18.7" y="417" width="0.2" height="15.0" fill="rgb(208,0,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.73" y="427.5" font-size="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.schedule (2 samples, 0.02%)</title><rect x="250.5" y="769" width="0.2" height="15.0" fill="rgb(218,77,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="253.50" y="779.5" font-size="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.findrunnable (4 samples, 0.03%)</title><rect x="264.6" y="625" width="0.4" height="15.0" fill="rgb(238,100,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="267.64" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>internal/poll.(*FD).SetReadDeadline (4 samples, 0.03%)</title><rect x="326.9" y="753" width="0.3" height="15.0" fill="rgb(249,79,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="329.86" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (14 samples, 0.11%)</title><rect x="101.8" y="641" width="1.2" height="15.0" fill="rgb(209,160,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="104.75" y="651.5" font-size="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.schedule (47 samples, 0.36%)</title><rect x="176.8" y="785" width="4.2" height="15.0" fill="rgb(236,83,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="179.76" y="795.5" font-size="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.findrunnable (2 samples, 0.02%)</title><rect x="375.7" y="529" width="0.1" height="15.0" fill="rgb(251,74,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="378.66" y="539.5" font-size="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.schedule (11 samples, 0.08%)</title><rect x="18.6" y="673" width="1.0" height="15.0" fill="rgb(221,120,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.64" y="683.5" font-size="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.gopark (3 samples, 0.02%)</title><rect x="516.4" y="593" width="0.3" height="15.0" fill="rgb(248,188,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="519.40" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (40 samples, 0.31%)</title><rect x="391.1" y="385" width="3.6" height="15.0" fill="rgb(209,63,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="394.15" y="395.5" font-size="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.schedule (6 samples, 0.05%)</title><rect x="252.3" y="737" width="0.5" height="15.0" fill="rgb(207,98,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="255.30" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (4 samples, 0.03%)</title><rect x="700.4" y="497" width="0.3" height="15.0" fill="rgb(220,85,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="703.35" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (9 samples, 0.07%)</title><rect x="262.7" y="417" width="0.8" height="15.0" fill="rgb(219,46,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="265.66" y="427.5" font-size="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.notetsleep (15 samples, 0.11%)</title><rect x="480.2" y="577" width="1.3" height="15.0" fill="rgb(216,160,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="483.20" y="587.5" font-size="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.gopreempt_m (3 samples, 0.02%)</title><rect x="362.2" y="481" width="0.2" height="15.0" fill="rgb(210,99,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="365.15" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net/http.readTransfer (3 samples, 0.02%)</title><rect x="299.8" y="769" width="0.2" height="15.0" fill="rgb(240,173,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="302.76" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>drop_futex_key_refs.isra.14 (5 samples, 0.04%)</title><rect x="1022.8" y="625" width="0.4" height="15.0" fill="rgb(248,8,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="1025.79" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (22 samples, 0.17%)</title><rect x="54.3" y="481" width="2.0" height="15.0" fill="rgb(238,176,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="57.30" y="491.5" font-size="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.park_m (14 samples, 0.11%)</title><rect x="549.4" y="561" width="1.2" height="15.0" fill="rgb(216,209,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="552.35" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (5 samples, 0.04%)</title><rect x="550.2" y="417" width="0.4" height="15.0" fill="rgb(222,37,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="553.16" y="427.5" font-size="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.gcDrain (2 samples, 0.02%)</title><rect x="364.2" y="369" width="0.2" height="15.0" fill="rgb(216,101,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="367.23" y="379.5" font-size="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.futex (2 samples, 0.02%)</title><rect x="1189.1" y="721" width="0.2" height="15.0" fill="rgb(224,22,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.10" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (13 samples, 0.10%)</title><rect x="90.4" y="465" width="1.2" height="15.0" fill="rgb(229,39,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="93.41" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/github.com/go-logfmt/logfmt.writeQuotedString (2 samples, 0.02%)</title><rect x="340.9" y="529" width="0.2" height="15.0" fill="rgb(210,227,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="343.90" y="539.5" font-size="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.mcall (10 samples, 0.08%)</title><rect x="643.6" y="481" width="0.9" height="15.0" fill="rgb(221,64,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="646.63" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="561.9" y="433" width="0.1" height="15.0" fill="rgb(217,176,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="564.87" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="97.0" y="625" width="0.3" height="15.0" fill="rgb(215,104,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="99.98" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (65 samples, 0.50%)</title><rect x="1010.2" y="529" width="5.8" height="15.0" fill="rgb(234,100,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="1013.19" y="539.5" font-size="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.stackalloc (2 samples, 0.02%)</title><rect x="316.8" y="705" width="0.2" height="15.0" fill="rgb(246,218,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="319.77" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (4 samples, 0.03%)</title><rect x="414.0" y="449" width="0.4" height="15.0" fill="rgb(247,73,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="417.02" y="459.5" font-size="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.mallocgc (19 samples, 0.14%)</title><rect x="558.5" y="641" width="1.7" height="15.0" fill="rgb(214,166,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="561.54" y="651.5" font-size="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.futex (4 samples, 0.03%)</title><rect x="549.8" y="481" width="0.4" height="15.0" fill="rgb(249,141,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="552.80" y="491.5" font-size="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.stopm (3 samples, 0.02%)</title><rect x="293.5" y="673" width="0.3" height="15.0" fill="rgb(233,187,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="296.54" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (36 samples, 0.27%)</title><rect x="233.8" y="673" width="3.2" height="15.0" fill="rgb(208,205,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="236.75" y="683.5" font-size="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.(*mcache).nextFree.func1 (2 samples, 0.02%)</title><rect x="973.6" y="689" width="0.2" height="15.0" fill="rgb(220,135,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="976.63" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="598.0" y="337" width="0.2" height="15.0" fill="rgb(234,31,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="600.97" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="700.0" y="593" width="0.2" height="15.0" fill="rgb(250,180,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="702.99" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="588.4" y="369" width="0.2" height="15.0" fill="rgb(225,183,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="591.43" y="379.5" font-size="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.(*mcache).nextFree.func1 (13 samples, 0.10%)</title><rect x="547.7" y="609" width="1.2" height="15.0" fill="rgb(214,99,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="550.73" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (2 samples, 0.02%)</title><rect x="14.3" y="369" width="0.2" height="15.0" fill="rgb(227,161,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.32" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__audit_syscall_exit (2 samples, 0.02%)</title><rect x="112.7" y="641" width="0.2" height="15.0" fill="rgb(234,107,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="115.74" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="588.6" y="465" width="0.2" height="15.0" fill="rgb(252,108,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="591.61" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>deactivate_task (2 samples, 0.02%)</title><rect x="488.0" y="449" width="0.2" height="15.0" fill="rgb(250,205,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.03" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="328.3" y="513" width="0.2" height="15.0" fill="rgb(246,199,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="331.30" y="523.5" font-size="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_blocked_averages (2 samples, 0.02%)</title><rect x="411.9" y="305" width="0.1" height="15.0" fill="rgb(209,28,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="414.86" 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>runtime.mallocgc (21 samples, 0.16%)</title><rect x="436.2" y="625" width="1.9" height="15.0" fill="rgb(251,7,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.17" y="635.5" font-size="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.gcstopm (3 samples, 0.02%)</title><rect x="459.8" y="561" width="0.3" height="15.0" fill="rgb(206,155,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="462.85" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (8 samples, 0.06%)</title><rect x="585.8" y="273" width="0.7" height="15.0" fill="rgb(207,178,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="588.82" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (5 samples, 0.04%)</title><rect x="712.0" y="625" width="0.4" height="15.0" fill="rgb(246,220,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="714.97" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>mutex_lock (3 samples, 0.02%)</title><rect x="311.2" y="593" width="0.3" height="15.0" fill="rgb(226,44,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="314.19" y="603.5" font-size="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.newstack (4 samples, 0.03%)</title><rect x="529.7" y="689" width="0.4" height="15.0" fill="rgb(209,39,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="532.72" y="699.5" font-size="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.runqsteal (10 samples, 0.08%)</title><rect x="701.2" y="721" width="0.9" height="15.0" fill="rgb(248,73,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="704.16" y="731.5" font-size="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.futex (2 samples, 0.02%)</title><rect x="247.5" y="673" width="0.2" height="15.0" fill="rgb(233,52,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="250.53" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (3 samples, 0.02%)</title><rect x="101.5" y="721" width="0.3" height="15.0" fill="rgb(218,100,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="104.48" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (18 samples, 0.14%)</title><rect x="172.5" y="593" width="1.6" height="15.0" fill="rgb(206,80,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="175.53" y="603.5" font-size="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.stopm (4 samples, 0.03%)</title><rect x="1187.2" y="753" width="0.4" height="15.0" fill="rgb(240,99,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="1190.21" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>internal/poll.accept (80 samples, 0.61%)</title><rect x="962.8" y="657" width="7.2" height="15.0" fill="rgb(239,73,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="965.82" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (3 samples, 0.02%)</title><rect x="171.4" y="577" width="0.3" height="15.0" fill="rgb(233,148,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="174.45" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (2 samples, 0.02%)</title><rect x="19.9" y="353" width="0.2" height="15.0" fill="rgb(224,72,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="22.90" y="363.5" font-size="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.gcstopm (3 samples, 0.02%)</title><rect x="535.1" y="449" width="0.3" height="15.0" fill="rgb(231,209,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="538.12" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (3 samples, 0.02%)</title><rect x="498.2" y="305" width="0.3" height="15.0" fill="rgb(218,103,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="501.21" 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>futex_wait_queue_me (2 samples, 0.02%)</title><rect x="279.5" y="449" width="0.2" height="15.0" fill="rgb(217,23,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="282.50" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_sched_yield (3 samples, 0.02%)</title><rect x="191.1" y="673" width="0.2" height="15.0" fill="rgb(242,107,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="194.07" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (4 samples, 0.03%)</title><rect x="587.0" y="305" width="0.3" height="15.0" fill="rgb(224,215,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="589.99" 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>runtime.goparkunlock (3 samples, 0.02%)</title><rect x="487.0" y="657" width="0.2" height="15.0" fill="rgb(247,181,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="489.95" y="667.5" font-size="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.goparkunlock (2 samples, 0.02%)</title><rect x="547.0" y="593" width="0.2" height="15.0" fill="rgb(217,196,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="550.01" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="163.2" y="641" width="0.1" height="15.0" fill="rgb(215,204,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="166.16" y="651.5" font-size="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.newproc.func1 (8 samples, 0.06%)</title><rect x="496.9" y="673" width="0.8" height="15.0" fill="rgb(211,223,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="499.95" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (103 samples, 0.79%)</title><rect x="753.4" y="513" width="9.3" height="15.0" fill="rgb(245,15,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="756.39" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="529.8" y="433" width="0.2" height="15.0" fill="rgb(212,178,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="532.81" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (7 samples, 0.05%)</title><rect x="26.2" y="465" width="0.6" height="15.0" fill="rgb(250,65,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="29.21" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (3 samples, 0.02%)</title><rect x="101.5" y="513" width="0.3" height="15.0" fill="rgb(228,24,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="104.48" y="523.5" font-size="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.notesleep (2 samples, 0.02%)</title><rect x="100.9" y="625" width="0.2" height="15.0" fill="rgb(248,172,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="103.94" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (9 samples, 0.07%)</title><rect x="47.8" y="625" width="0.8" height="15.0" fill="rgb(233,169,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="50.82" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule_hrtimeout_range (25 samples, 0.19%)</title><rect x="182.3" y="673" width="2.3" height="15.0" fill="rgb(246,60,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="185.34" y="683.5" font-size="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.park_m (2 samples, 0.02%)</title><rect x="252.8" y="785" width="0.2" height="15.0" fill="rgb(207,174,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="255.84" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="973.9" y="641" width="0.2" height="15.0" fill="rgb(217,33,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="976.90" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (2 samples, 0.02%)</title><rect x="386.6" y="257" width="0.2" height="15.0" fill="rgb(242,133,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="389.65" 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>runtime.usleep (3 samples, 0.02%)</title><rect x="605.0" y="417" width="0.3" height="15.0" fill="rgb(220,81,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="608.00" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (3 samples, 0.02%)</title><rect x="174.8" y="561" width="0.2" height="15.0" fill="rgb(230,121,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="177.78" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="345.3" y="353" width="0.2" height="15.0" fill="rgb(208,188,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="348.32" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net.ipEmptyString (5 samples, 0.04%)</title><rect x="340.1" y="513" width="0.4" height="15.0" fill="rgb(214,206,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="343.09" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (9 samples, 0.07%)</title><rect x="739.9" y="625" width="0.8" height="15.0" fill="rgb(224,156,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="742.88" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (11 samples, 0.08%)</title><rect x="490.3" y="417" width="1.0" height="15.0" fill="rgb(221,167,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="493.28" y="427.5" font-size="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.park_m (2 samples, 0.02%)</title><rect x="362.5" y="417" width="0.2" height="15.0" fill="rgb(217,110,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="365.51" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_cond_resched (2 samples, 0.02%)</title><rect x="311.6" y="481" width="0.1" height="15.0" fill="rgb(227,98,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="314.55" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (5 samples, 0.04%)</title><rect x="100.5" y="417" width="0.4" height="15.0" fill="rgb(249,56,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="103.49" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (178 samples, 1.36%)</title><rect x="396.4" y="417" width="16.0" height="15.0" fill="rgb(252,19,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="399.37" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>math/big.(*Int).Mod (3 samples, 0.02%)</title><rect x="273.8" y="609" width="0.3" height="15.0" fill="rgb(238,8,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="276.82" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="265.2" y="561" width="0.2" height="15.0" fill="rgb(214,24,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="268.18" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sock_sendmsg (24 samples, 0.18%)</title><rect x="428.0" y="529" width="2.1" height="15.0" fill="rgb(216,156,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="430.97" y="539.5" font-size="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.lock (2 samples, 0.02%)</title><rect x="691.3" y="609" width="0.2" height="15.0" fill="rgb(220,74,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="694.35" y="619.5" font-size="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.semacquire (8 samples, 0.06%)</title><rect x="527.8" y="657" width="0.8" height="15.0" fill="rgb(233,176,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="530.83" y="667.5" font-size="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.deductSweepCredit (6 samples, 0.05%)</title><rect x="444.5" y="641" width="0.5" height="15.0" fill="rgb(235,163,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="447.45" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (2 samples, 0.02%)</title><rect x="17.9" y="497" width="0.2" height="15.0" fill="rgb(212,176,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.92" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ep_scan_ready_list (9 samples, 0.07%)</title><rect x="977.4" y="673" width="0.8" height="15.0" fill="rgb(225,152,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="980.41" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net.(*conn).Close (8 samples, 0.06%)</title><rect x="376.7" y="689" width="0.8" height="15.0" fill="rgb(236,44,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="379.74" y="699.5" font-size="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.gcmarknewobject (2 samples, 0.02%)</title><rect x="98.5" y="769" width="0.2" height="15.0" fill="rgb(233,208,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="101.51" y="779.5" font-size="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.runqgrab (3 samples, 0.02%)</title><rect x="528.0" y="529" width="0.3" height="15.0" fill="rgb(218,12,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="531.01" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (11 samples, 0.08%)</title><rect x="20.5" y="625" width="1.0" height="15.0" fill="rgb(227,152,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.53" y="635.5" font-size="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.sweepone (2 samples, 0.02%)</title><rect x="280.0" y="641" width="0.2" height="15.0" fill="rgb(208,144,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.04" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>fmt.(*pp).printArg (11 samples, 0.08%)</title><rect x="501.4" y="657" width="0.9" height="15.0" fill="rgb(227,146,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="504.36" y="667.5" font-size="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.(*mcentral).grow (3 samples, 0.02%)</title><rect x="546.7" y="577" width="0.2" height="15.0" fill="rgb(206,2,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="549.65" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (9 samples, 0.07%)</title><rect x="116.1" y="497" width="0.8" height="15.0" fill="rgb(244,129,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="119.07" y="507.5" font-size="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.stopm (4 samples, 0.03%)</title><rect x="640.6" y="529" width="0.3" height="15.0" fill="rgb(249,5,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="643.56" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (6 samples, 0.05%)</title><rect x="702.1" y="561" width="0.5" height="15.0" fill="rgb(243,51,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="705.06" y="571.5" font-size="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.schedule (3 samples, 0.02%)</title><rect x="370.4" y="545" width="0.3" height="15.0" fill="rgb(209,156,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="373.44" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="333.5" y="257" width="0.2" height="15.0" fill="rgb(207,50,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="336.52" 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>futex_wait (5 samples, 0.04%)</title><rect x="177.9" y="641" width="0.5" height="15.0" fill="rgb(218,16,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="180.93" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/github.com/go-logfmt/logfmt.writeStringValue (8 samples, 0.06%)</title><rect x="455.8" y="577" width="0.7" height="15.0" fill="rgb(222,181,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="458.80" y="587.5" font-size="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.futex (4 samples, 0.03%)</title><rect x="345.5" y="481" width="0.4" height="15.0" fill="rgb(221,191,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="348.50" y="491.5" font-size="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.futex (3 samples, 0.02%)</title><rect x="16.6" y="625" width="0.2" height="15.0" fill="rgb(213,35,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.57" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (26 samples, 0.20%)</title><rect x="660.7" y="401" width="2.4" height="15.0" fill="rgb(207,172,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="663.73" y="411.5" font-size="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.stopm (2 samples, 0.02%)</title><rect x="470.7" y="529" width="0.2" height="15.0" fill="rgb(221,58,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="473.74" y="539.5" font-size="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.schedule (2 samples, 0.02%)</title><rect x="317.6" y="593" width="0.2" height="15.0" fill="rgb(218,131,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.58" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (13 samples, 0.10%)</title><rect x="149.8" y="641" width="1.2" height="15.0" fill="rgb(225,168,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="152.84" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>fmt.newPrinter (14 samples, 0.11%)</title><rect x="542.0" y="673" width="1.2" height="15.0" fill="rgb(251,197,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="544.97" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/github.com/prometheus/client_golang/prometheus.populateMetric (9 samples, 0.07%)</title><rect x="543.5" y="657" width="0.8" height="15.0" fill="rgb(248,124,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="546.50" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="330.5" y="433" width="0.1" height="15.0" fill="rgb(236,22,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="333.46" y="443.5" font-size="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.notetsleep (35 samples, 0.27%)</title><rect x="552.3" y="609" width="3.2" height="15.0" fill="rgb(213,184,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="555.32" y="619.5" font-size="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.futex (3 samples, 0.02%)</title><rect x="20.3" y="657" width="0.2" height="15.0" fill="rgb(232,164,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.26" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__audit_syscall_exit (3 samples, 0.02%)</title><rect x="387.5" y="433" width="0.3" height="15.0" fill="rgb(238,181,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="390.55" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/github.com/go-kit/kit/log.logfmtLogger.Log (2 samples, 0.02%)</title><rect x="333.9" y="625" width="0.2" height="15.0" fill="rgb(235,185,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="336.88" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (3 samples, 0.02%)</title><rect x="566.5" y="385" width="0.3" height="15.0" fill="rgb(214,26,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="569.55" y="395.5" font-size="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.makeslice (2 samples, 0.02%)</title><rect x="507.5" y="545" width="0.2" height="15.0" fill="rgb(250,40,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="510.48" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (4 samples, 0.03%)</title><rect x="1060.0" y="593" width="0.3" height="15.0" fill="rgb(216,185,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.98" y="603.5" font-size="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.(*semaRoot).dequeue (2 samples, 0.02%)</title><rect x="30.4" y="785" width="0.2" height="15.0" fill="rgb(242,119,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="33.44" y="795.5" font-size="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.(*mheap).alloc.func1 (4 samples, 0.03%)</title><rect x="523.1" y="545" width="0.4" height="15.0" fill="rgb(227,3,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="526.15" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (8 samples, 0.06%)</title><rect x="290.5" y="593" width="0.7" height="15.0" fill="rgb(230,101,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="293.48" y="603.5" font-size="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.stopm (10 samples, 0.08%)</title><rect x="144.8" y="689" width="0.9" height="15.0" fill="rgb(214,21,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="147.79" y="699.5" font-size="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.morestack (2 samples, 0.02%)</title><rect x="545.8" y="609" width="0.2" height="15.0" fill="rgb(205,48,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="548.84" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="664.5" y="497" width="0.2" height="15.0" fill="rgb(229,80,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="667.52" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net.(*Resolver).exchange (34 samples, 0.26%)</title><rect x="268.0" y="785" width="3.0" height="15.0" fill="rgb(232,98,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="270.97" y="795.5" font-size="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.notetsleep (26 samples, 0.20%)</title><rect x="958.7" y="769" width="2.3" height="15.0" fill="rgb(241,200,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="961.68" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (5 samples, 0.04%)</title><rect x="177.1" y="513" width="0.5" height="15.0" fill="rgb(235,160,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="180.12" y="523.5" font-size="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.notesleep (5 samples, 0.04%)</title><rect x="335.4" y="353" width="0.5" height="15.0" fill="rgb(238,74,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="338.41" y="363.5" font-size="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.schedule (2 samples, 0.02%)</title><rect x="250.3" y="673" width="0.2" height="15.0" fill="rgb(244,67,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="253.32" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (5 samples, 0.04%)</title><rect x="645.5" y="433" width="0.5" height="15.0" fill="rgb(220,148,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="648.52" y="443.5" font-size="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.sweepone (6 samples, 0.05%)</title><rect x="444.5" y="593" width="0.5" height="15.0" fill="rgb(219,29,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="447.45" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tcp_poll (2 samples, 0.02%)</title><rect x="970.5" y="529" width="0.2" height="15.0" fill="rgb(251,167,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="973.48" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="691.3" y="385" width="0.2" height="15.0" fill="rgb(230,122,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="694.35" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (2 samples, 0.02%)</title><rect x="458.5" y="449" width="0.2" height="15.0" fill="rgb(237,122,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="461.50" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>find_busiest_group (2 samples, 0.02%)</title><rect x="80.4" y="529" width="0.2" height="15.0" fill="rgb(230,182,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="83.41" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (14 samples, 0.11%)</title><rect x="101.8" y="609" width="1.2" height="15.0" fill="rgb(226,25,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="104.75" y="619.5" font-size="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.lock (4 samples, 0.03%)</title><rect x="82.9" y="705" width="0.4" height="15.0" fill="rgb(240,54,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="85.93" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>drop_futex_key_refs.isra.14 (2 samples, 0.02%)</title><rect x="612.2" y="369" width="0.2" height="15.0" fill="rgb(210,111,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="615.20" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (4 samples, 0.03%)</title><rect x="291.2" y="561" width="0.4" height="15.0" fill="rgb(213,19,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="294.20" y="571.5" font-size="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.deductSweepCredit (2 samples, 0.02%)</title><rect x="973.6" y="641" width="0.2" height="15.0" fill="rgb(211,223,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="976.63" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="969.5" y="225" width="0.2" height="15.0" fill="rgb(209,92,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="972.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>x86_pmu_enable (2 samples, 0.02%)</title><rect x="639.1" y="257" width="0.2" height="15.0" fill="rgb(216,84,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="642.12" 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>internal/poll.(*pollDesc).waitRead (266 samples, 2.03%)</title><rect x="665.9" y="753" width="23.9" height="15.0" fill="rgb(240,43,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="668.87" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >i..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>runtime.notetsleep_internal (4 samples, 0.03%)</title><rect x="291.2" y="641" width="0.4" height="15.0" fill="rgb(220,55,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="294.20" y="651.5" font-size="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_blocked_averages (2 samples, 0.02%)</title><rect x="263.3" y="369" width="0.2" height="15.0" fill="rgb(219,171,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="266.29" y="379.5" font-size="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.writebarrierptr (2 samples, 0.02%)</title><rect x="461.2" y="625" width="0.2" height="15.0" fill="rgb(252,127,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="464.20" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (6 samples, 0.05%)</title><rect x="21.0" y="433" width="0.5" height="15.0" fill="rgb(230,174,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.99" y="443.5" font-size="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.systemstack (5 samples, 0.04%)</title><rect x="291.9" y="705" width="0.5" height="15.0" fill="rgb(230,23,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="294.92" y="715.5" font-size="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.gcstopm (3 samples, 0.02%)</title><rect x="539.9" y="513" width="0.3" height="15.0" fill="rgb(228,94,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="542.90" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (38 samples, 0.29%)</title><rect x="391.2" y="369" width="3.5" height="15.0" fill="rgb(241,203,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="394.24" y="379.5" font-size="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.futex (3 samples, 0.02%)</title><rect x="265.2" y="593" width="0.2" height="15.0" fill="rgb(219,103,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="268.18" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (5 samples, 0.04%)</title><rect x="598.6" y="241" width="0.5" height="15.0" fill="rgb(245,194,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="601.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>runtime.notesleep (3 samples, 0.02%)</title><rect x="275.4" y="385" width="0.3" height="15.0" fill="rgb(211,189,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="278.44" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/github.com/golang/protobuf/proto.(*Buffer).enc_struct_message (3 samples, 0.02%)</title><rect x="641.6" y="513" width="0.3" height="15.0" fill="rgb(216,77,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="644.64" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="1006.0" y="593" width="0.2" height="15.0" fill="rgb(219,59,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="1009.04" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (3 samples, 0.02%)</title><rect x="664.7" y="433" width="0.3" height="15.0" fill="rgb(207,229,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="667.70" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (26 samples, 0.20%)</title><rect x="287.9" y="545" width="2.3" height="15.0" fill="rgb(207,126,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="290.87" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__audit_syscall_exit (2 samples, 0.02%)</title><rect x="90.2" y="625" width="0.2" height="15.0" fill="rgb(209,91,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="93.23" y="635.5" font-size="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.stopm (3 samples, 0.02%)</title><rect x="505.7" y="609" width="0.3" height="15.0" fill="rgb(213,14,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="508.68" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net.(*Resolver).internetAddrList.func1 (2 samples, 0.02%)</title><rect x="351.8" y="641" width="0.2" height="15.0" fill="rgb(210,76,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="354.80" y="651.5" font-size="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.notesleep (4 samples, 0.03%)</title><rect x="257.3" y="641" width="0.3" height="15.0" fill="rgb(249,116,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="260.26" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="436.3" y="353" width="0.1" height="15.0" fill="rgb(211,13,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.26" y="363.5" font-size="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.goschedImpl (2 samples, 0.02%)</title><rect x="550.9" y="625" width="0.2" height="15.0" fill="rgb(219,158,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="553.88" y="635.5" font-size="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.futex (8 samples, 0.06%)</title><rect x="574.1" y="385" width="0.7" height="15.0" fill="rgb(253,220,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="577.11" y="395.5" font-size="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.stopm (2 samples, 0.02%)</title><rect x="509.2" y="449" width="0.2" height="15.0" fill="rgb(234,5,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="512.19" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__audit_syscall_exit (3 samples, 0.02%)</title><rect x="412.5" y="433" width="0.3" height="15.0" fill="rgb(205,167,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="415.49" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (49 samples, 0.37%)</title><rect x="931.8" y="561" width="4.4" height="15.0" fill="rgb(221,136,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="934.76" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (22 samples, 0.17%)</title><rect x="693.8" y="577" width="2.0" height="15.0" fill="rgb(251,8,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="696.78" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (6 samples, 0.05%)</title><rect x="970.1" y="577" width="0.6" height="15.0" fill="rgb(216,146,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="973.12" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (5 samples, 0.04%)</title><rect x="712.0" y="529" width="0.4" height="15.0" fill="rgb(252,35,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="714.97" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (3 samples, 0.02%)</title><rect x="29.8" y="497" width="0.3" height="15.0" fill="rgb(226,135,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="32.81" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (3 samples, 0.02%)</title><rect x="171.0" y="673" width="0.3" height="15.0" fill="rgb(207,88,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="174.00" y="683.5" font-size="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.(*mheap).freeManual (3 samples, 0.02%)</title><rect x="713.1" y="769" width="0.3" height="15.0" fill="rgb(232,99,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="716.14" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net/http.(*persistConn).readLoop (2 samples, 0.02%)</title><rect x="697.3" y="817" width="0.2" height="15.0" fill="rgb(219,119,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="700.29" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (9 samples, 0.07%)</title><rect x="116.1" y="561" width="0.8" height="15.0" fill="rgb(219,47,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="119.07" y="571.5" font-size="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.systemstack (3 samples, 0.02%)</title><rect x="622.5" y="465" width="0.2" height="15.0" fill="rgb(237,135,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="625.47" y="475.5" font-size="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.stopm (3 samples, 0.02%)</title><rect x="350.0" y="577" width="0.3" height="15.0" fill="rgb(211,203,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="353.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (4 samples, 0.03%)</title><rect x="516.8" y="385" width="0.4" height="15.0" fill="rgb(249,27,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="519.85" y="395.5" font-size="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.runSafePointFn (4 samples, 0.03%)</title><rect x="940.9" y="753" width="0.3" height="15.0" fill="rgb(244,1,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="943.85" y="763.5" font-size="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.heapBits.initSpan (8 samples, 0.06%)</title><rect x="588.1" y="529" width="0.7" height="15.0" fill="rgb(207,61,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="591.07" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (20 samples, 0.15%)</title><rect x="1054.2" y="577" width="1.8" height="15.0" fill="rgb(242,102,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1057.22" y="587.5" font-size="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.gcMarkDone (4 samples, 0.03%)</title><rect x="261.4" y="641" width="0.4" height="15.0" fill="rgb(205,106,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="264.40" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (16 samples, 0.12%)</title><rect x="698.5" y="609" width="1.4" height="15.0" fill="rgb(238,195,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="701.46" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/gopkg.in/yaml%2ev2.yaml_emitter_emit (2 samples, 0.02%)</title><rect x="29.2" y="785" width="0.2" height="15.0" fill="rgb(222,93,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="32.18" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (4 samples, 0.03%)</title><rect x="252.4" y="625" width="0.4" height="15.0" fill="rgb(249,32,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="255.39" y="635.5" font-size="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.(*mheap).freeSpan.func1 (2 samples, 0.02%)</title><rect x="336.8" y="305" width="0.1" height="15.0" fill="rgb(242,161,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="339.76" 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>runtime.newobject (7 samples, 0.05%)</title><rect x="318.1" y="673" width="0.7" height="15.0" fill="rgb(210,208,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="321.12" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (5 samples, 0.04%)</title><rect x="335.4" y="177" width="0.5" height="15.0" fill="rgb(209,166,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="338.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>__perf_event_task_sched_in (15 samples, 0.11%)</title><rect x="698.5" y="561" width="1.3" height="15.0" fill="rgb(213,14,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="701.46" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule_hrtimeout_range (3 samples, 0.02%)</title><rect x="566.8" y="369" width="0.3" height="15.0" fill="rgb(251,0,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="569.82" y="379.5" font-size="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.(*mheap).freeSpan.func1 (2 samples, 0.02%)</title><rect x="307.9" y="529" width="0.1" height="15.0" fill="rgb(225,213,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="310.86" y="539.5" font-size="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.findrunnable (8 samples, 0.06%)</title><rect x="278.0" y="689" width="0.7" height="15.0" fill="rgb(233,63,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="280.96" y="699.5" font-size="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.(*mcache).nextFree.func1 (2 samples, 0.02%)</title><rect x="483.7" y="609" width="0.2" height="15.0" fill="rgb(209,36,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="486.71" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_raw_spin_lock_irqsave (2 samples, 0.02%)</title><rect x="103.2" y="657" width="0.2" height="15.0" fill="rgb(213,49,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="106.19" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (3 samples, 0.02%)</title><rect x="621.6" y="353" width="0.2" height="15.0" fill="rgb(224,195,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="624.57" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (409 samples, 3.12%)</title><rect x="1016.9" y="705" width="36.9" height="15.0" fill="rgb(214,77,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="1019.94" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ret..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>runtime.stopm (2 samples, 0.02%)</title><rect x="298.7" y="609" width="0.2" height="15.0" fill="rgb(254,202,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="301.67" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (3 samples, 0.02%)</title><rect x="414.4" y="385" width="0.2" height="15.0" fill="rgb(253,1,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="417.38" y="395.5" font-size="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.netpollunblock (2 samples, 0.02%)</title><rect x="994.4" y="721" width="0.2" height="15.0" fill="rgb(220,185,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="997.43" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>poll_schedule_timeout (2 samples, 0.02%)</title><rect x="232.2" y="593" width="0.2" height="15.0" fill="rgb(209,66,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="235.22" y="603.5" font-size="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.park_m (2 samples, 0.02%)</title><rect x="273.6" y="497" width="0.1" height="15.0" fill="rgb(209,70,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="276.55" y="507.5" font-size="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.notewakeup (4 samples, 0.03%)</title><rect x="690.8" y="657" width="0.4" height="15.0" fill="rgb(207,21,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="693.81" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>select_task_rq_fair (2 samples, 0.02%)</title><rect x="937.3" y="577" width="0.2" height="15.0" fill="rgb(237,219,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="940.34" y="587.5" font-size="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.futex (2 samples, 0.02%)</title><rect x="563.8" y="449" width="0.1" height="15.0" fill="rgb(227,169,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="566.76" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (3 samples, 0.02%)</title><rect x="652.6" y="369" width="0.3" height="15.0" fill="rgb(223,168,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="655.63" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (2 samples, 0.02%)</title><rect x="357.6" y="241" width="0.1" height="15.0" fill="rgb(224,116,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="360.56" 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>do_syscall_64 (31 samples, 0.24%)</title><rect x="660.4" y="561" width="2.8" height="15.0" fill="rgb(236,48,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="663.37" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (3 samples, 0.02%)</title><rect x="492.7" y="273" width="0.3" height="15.0" fill="rgb(215,185,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.71" y="283.5" font-size="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.(*mcentral).freeSpan (3 samples, 0.02%)</title><rect x="444.6" y="561" width="0.3" height="15.0" fill="rgb(247,130,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="447.63" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (3 samples, 0.02%)</title><rect x="20.3" y="561" width="0.2" height="15.0" fill="rgb(209,9,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.26" y="571.5" font-size="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.mcall (939 samples, 7.17%)</title><rect x="974.6" y="817" width="84.6" height="15.0" fill="rgb(222,177,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="977.62" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >runtime.m..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>runtime.park_m (14 samples, 0.11%)</title><rect x="563.0" y="529" width="1.3" height="15.0" fill="rgb(229,2,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="566.04" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>internal/poll.(*pollDesc).waitRead (13 samples, 0.10%)</title><rect x="300.2" y="625" width="1.2" height="15.0" fill="rgb(244,12,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="303.21" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (78 samples, 0.60%)</title><rect x="998.6" y="577" width="7.0" height="15.0" fill="rgb(221,18,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="1001.57" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (2 samples, 0.02%)</title><rect x="598.0" y="369" width="0.2" height="15.0" fill="rgb(239,66,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="600.97" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wake (3 samples, 0.02%)</title><rect x="744.2" y="609" width="0.3" height="15.0" fill="rgb(238,120,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="747.20" y="619.5" font-size="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.gcAssistAlloc1 (2 samples, 0.02%)</title><rect x="652.4" y="577" width="0.2" height="15.0" fill="rgb(243,169,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="655.45" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="11.3" y="113" width="0.1" height="15.0" fill="rgb(251,208,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.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>runtime.systemstack (8 samples, 0.06%)</title><rect x="547.9" y="545" width="0.7" height="15.0" fill="rgb(251,186,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="550.91" y="555.5" font-size="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.(*mcentral).freeSpan (14 samples, 0.11%)</title><rect x="715.7" y="737" width="1.2" height="15.0" fill="rgb(246,96,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="718.66" y="747.5" font-size="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.mallocgc (23 samples, 0.18%)</title><rect x="547.0" y="641" width="2.1" height="15.0" fill="rgb(240,220,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="550.01" y="651.5" font-size="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.stopm (63 samples, 0.48%)</title><rect x="702.1" y="721" width="5.6" height="15.0" fill="rgb(214,110,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="705.06" y="731.5" font-size="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.stopm (2 samples, 0.02%)</title><rect x="45.3" y="689" width="0.2" height="15.0" fill="rgb(223,1,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="48.30" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ip_send_skb (15 samples, 0.11%)</title><rect x="428.6" y="465" width="1.4" height="15.0" fill="rgb(241,208,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="431.61" y="475.5" font-size="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.goparkunlock (2 samples, 0.02%)</title><rect x="162.0" y="721" width="0.2" height="15.0" fill="rgb(223,154,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="164.99" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (8 samples, 0.06%)</title><rect x="672.8" y="385" width="0.7" height="15.0" fill="rgb(253,15,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="675.80" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="279.5" y="401" width="0.2" height="15.0" fill="rgb(231,59,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="282.50" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/github.com/go-kit/kit/log/level.Info (13 samples, 0.10%)</title><rect x="345.2" y="689" width="1.2" height="15.0" fill="rgb(235,195,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="348.23" y="699.5" font-size="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.findrunnable (3 samples, 0.02%)</title><rect x="437.1" y="497" width="0.2" height="15.0" fill="rgb(213,165,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="440.07" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="329.8" y="401" width="0.2" height="15.0" fill="rgb(231,207,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="332.83" y="411.5" font-size="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.stopm (11 samples, 0.08%)</title><rect x="23.1" y="641" width="0.9" height="15.0" fill="rgb(238,101,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="26.06" y="651.5" font-size="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.gcDrain (3 samples, 0.02%)</title><rect x="739.3" y="689" width="0.3" height="15.0" fill="rgb(238,143,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="742.34" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="972.6" y="609" width="0.2" height="15.0" fill="rgb(209,211,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="975.64" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (2 samples, 0.02%)</title><rect x="325.9" y="449" width="0.1" height="15.0" fill="rgb(249,79,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="328.87" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (5 samples, 0.04%)</title><rect x="712.0" y="513" width="0.4" height="15.0" fill="rgb(219,192,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="714.97" y="523.5" font-size="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.(*mcentral).cacheSpan (2 samples, 0.02%)</title><rect x="537.2" y="481" width="0.2" height="15.0" fill="rgb(215,59,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="540.20" y="491.5" font-size="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.unlock (3 samples, 0.02%)</title><rect x="744.2" y="705" width="0.3" height="15.0" fill="rgb(248,142,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="747.20" y="715.5" font-size="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.growslice (11 samples, 0.08%)</title><rect x="642.0" y="545" width="1.0" height="15.0" fill="rgb(236,226,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="645.00" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (5 samples, 0.04%)</title><rect x="746.0" y="673" width="0.5" height="15.0" fill="rgb(219,145,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="749.00" y="683.5" font-size="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.findrunnable (3 samples, 0.02%)</title><rect x="267.5" y="689" width="0.3" height="15.0" fill="rgb(211,205,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="270.52" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (33 samples, 0.25%)</title><rect x="674.5" y="433" width="3.0" height="15.0" fill="rgb(218,166,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="677.51" y="443.5" font-size="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.schedule (4 samples, 0.03%)</title><rect x="270.3" y="641" width="0.4" height="15.0" fill="rgb(216,130,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="273.31" y="651.5" font-size="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.futex (3 samples, 0.02%)</title><rect x="24.7" y="657" width="0.2" height="15.0" fill="rgb(240,142,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="27.68" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (94 samples, 0.72%)</title><rect x="193.6" y="657" width="8.5" height="15.0" fill="rgb(225,78,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="196.60" y="667.5" font-size="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.notesleep (2 samples, 0.02%)</title><rect x="350.1" y="561" width="0.2" height="15.0" fill="rgb(235,125,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="353.09" y="571.5" font-size="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.mallocgc (4 samples, 0.03%)</title><rect x="329.0" y="769" width="0.4" height="15.0" fill="rgb(205,142,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="332.02" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (3 samples, 0.02%)</title><rect x="558.9" y="321" width="0.3" height="15.0" fill="rgb(250,170,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="561.90" 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>__perf_event_task_sched_in (2 samples, 0.02%)</title><rect x="24.1" y="513" width="0.2" height="15.0" fill="rgb(210,153,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="27.14" y="523.5" font-size="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.futex (3 samples, 0.02%)</title><rect x="434.9" y="481" width="0.3" height="15.0" fill="rgb(243,107,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="437.91" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (2 samples, 0.02%)</title><rect x="302.1" y="417" width="0.2" height="15.0" fill="rgb(236,128,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="305.10" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (2 samples, 0.02%)</title><rect x="142.8" y="593" width="0.2" height="15.0" fill="rgb(253,73,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="145.81" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__audit_syscall_exit (2 samples, 0.02%)</title><rect x="35.2" y="641" width="0.2" height="15.0" fill="rgb(215,64,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="38.21" y="651.5" font-size="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.stopm (5 samples, 0.04%)</title><rect x="265.0" y="625" width="0.4" height="15.0" fill="rgb(234,163,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="268.00" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (5 samples, 0.04%)</title><rect x="1060.3" y="561" width="0.5" height="15.0" fill="rgb(216,212,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="1063.34" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>wake_up_q (2 samples, 0.02%)</title><rect x="673.5" y="481" width="0.2" height="15.0" fill="rgb(220,119,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="676.52" y="491.5" font-size="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.gcDrainN (2 samples, 0.02%)</title><rect x="461.5" y="593" width="0.2" height="15.0" fill="rgb(224,22,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="464.47" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (3 samples, 0.02%)</title><rect x="565.1" y="465" width="0.3" height="15.0" fill="rgb(230,12,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.11" y="475.5" font-size="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_blocked_averages (6 samples, 0.05%)</title><rect x="762.8" y="513" width="0.6" height="15.0" fill="rgb(239,197,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="765.84" y="523.5" font-size="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.futex (2 samples, 0.02%)</title><rect x="470.7" y="497" width="0.2" height="15.0" fill="rgb(253,120,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="473.74" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (5 samples, 0.04%)</title><rect x="329.6" y="545" width="0.4" height="15.0" fill="rgb(240,116,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="332.56" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="994.2" y="625" width="0.2" height="15.0" fill="rgb(251,205,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="997.25" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (4 samples, 0.03%)</title><rect x="261.0" y="497" width="0.4" height="15.0" fill="rgb(206,37,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="264.04" y="507.5" font-size="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.(*gcWork).tryGet (2 samples, 0.02%)</title><rect x="609.8" y="513" width="0.1" height="15.0" fill="rgb(210,88,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="612.77" y="523.5" font-size="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.osyield (4 samples, 0.03%)</title><rect x="572.3" y="433" width="0.4" height="15.0" fill="rgb(217,121,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="575.31" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (13 samples, 0.10%)</title><rect x="439.7" y="369" width="1.2" height="15.0" fill="rgb(223,101,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="442.68" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule_hrtimeout_range_clock (9 samples, 0.07%)</title><rect x="701.3" y="561" width="0.8" height="15.0" fill="rgb(244,136,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="704.25" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (3 samples, 0.02%)</title><rect x="557.9" y="481" width="0.3" height="15.0" fill="rgb(214,71,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="560.91" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="480.0" y="273" width="0.2" height="15.0" fill="rgb(244,198,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="483.02" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (4 samples, 0.03%)</title><rect x="353.9" y="353" width="0.3" height="15.0" fill="rgb(252,81,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="356.87" y="363.5" font-size="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.mcall (52 samples, 0.40%)</title><rect x="965.1" y="529" width="4.7" height="15.0" fill="rgb(214,225,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="968.08" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (4 samples, 0.03%)</title><rect x="172.2" y="641" width="0.3" height="15.0" fill="rgb(250,202,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="175.17" y="651.5" font-size="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.futex (3 samples, 0.02%)</title><rect x="971.2" y="497" width="0.3" height="15.0" fill="rgb(233,149,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="974.20" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="15.5" y="577" width="0.2" height="15.0" fill="rgb(221,149,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.49" y="587.5" font-size="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.growslice (2 samples, 0.02%)</title><rect x="29.2" y="705" width="0.2" height="15.0" fill="rgb(236,200,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="32.18" y="715.5" font-size="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.futex (2 samples, 0.02%)</title><rect x="598.2" y="449" width="0.2" height="15.0" fill="rgb(253,188,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="601.24" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__audit_syscall_exit (2 samples, 0.02%)</title><rect x="475.1" y="497" width="0.1" height="15.0" fill="rgb(213,118,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="478.07" y="507.5" font-size="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.morestack (7 samples, 0.05%)</title><rect x="466.3" y="705" width="0.7" height="15.0" fill="rgb(245,60,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="469.33" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="505.5" y="305" width="0.2" height="15.0" fill="rgb(211,86,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="508.50" 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>runtime.semacquire1 (2 samples, 0.02%)</title><rect x="515.0" y="529" width="0.2" height="15.0" fill="rgb(239,158,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="518.05" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (3 samples, 0.02%)</title><rect x="498.2" y="369" width="0.3" height="15.0" fill="rgb(222,89,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="501.21" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (2 samples, 0.02%)</title><rect x="969.5" y="257" width="0.2" height="15.0" fill="rgb(215,9,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="972.49" 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>runtime.futex (2 samples, 0.02%)</title><rect x="337.0" y="401" width="0.2" height="15.0" fill="rgb(254,148,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="340.03" y="411.5" font-size="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.gentraceback (6 samples, 0.05%)</title><rect x="292.6" y="721" width="0.6" height="15.0" fill="rgb(212,93,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="295.64" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (2 samples, 0.02%)</title><rect x="277.6" y="561" width="0.2" height="15.0" fill="rgb(217,131,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="280.60" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hash/crc32.Update (2 samples, 0.02%)</title><rect x="640.4" y="625" width="0.2" height="15.0" fill="rgb(215,210,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="643.38" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net.(*netFD).init (11 samples, 0.08%)</title><rect x="431.4" y="593" width="1.0" height="15.0" fill="rgb(240,161,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="434.40" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>inet_sendmsg (56 samples, 0.43%)</title><rect x="320.6" y="561" width="5.1" height="15.0" fill="rgb(239,26,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="323.64" y="571.5" font-size="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.gcAssistAlloc (2 samples, 0.02%)</title><rect x="351.8" y="593" width="0.2" height="15.0" fill="rgb(224,52,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="354.80" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (3 samples, 0.02%)</title><rect x="97.0" y="641" width="0.3" height="15.0" fill="rgb(212,81,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="99.98" y="651.5" font-size="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.schedule (4 samples, 0.03%)</title><rect x="160.7" y="753" width="0.4" height="15.0" fill="rgb(207,77,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="163.73" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>audit_filter_syscall (13 samples, 0.10%)</title><rect x="202.7" y="657" width="1.2" height="15.0" fill="rgb(235,115,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="205.69" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (5 samples, 0.04%)</title><rect x="143.7" y="529" width="0.5" height="15.0" fill="rgb(237,11,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="146.71" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="15.5" y="481" width="0.2" height="15.0" fill="rgb(223,88,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.49" y="491.5" font-size="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.scanobject (907 samples, 6.92%)</title><rect x="1090.5" y="769" width="81.7" height="15.0" fill="rgb(238,119,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="1093.50" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >runtime.s..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (3 samples, 0.02%)</title><rect x="423.7" y="369" width="0.2" height="15.0" fill="rgb(210,113,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="426.65" y="379.5" font-size="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.lock (2 samples, 0.02%)</title><rect x="671.8" y="513" width="0.2" height="15.0" fill="rgb(239,152,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="674.81" y="523.5" font-size="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.lock (3 samples, 0.02%)</title><rect x="423.7" y="449" width="0.2" height="15.0" fill="rgb(236,58,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="426.65" y="459.5" font-size="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.futex (6 samples, 0.05%)</title><rect x="594.6" y="385" width="0.5" height="15.0" fill="rgb(229,129,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="597.55" y="395.5" font-size="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.park_m (2 samples, 0.02%)</title><rect x="162.4" y="769" width="0.1" height="15.0" fill="rgb(213,94,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="165.35" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="638.9" y="241" width="0.2" height="15.0" fill="rgb(246,96,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="641.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>runtime.notetsleep_internal (21 samples, 0.16%)</title><rect x="487.5" y="609" width="1.9" height="15.0" fill="rgb(241,91,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="490.49" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (4 samples, 0.03%)</title><rect x="573.2" y="369" width="0.4" height="15.0" fill="rgb(232,116,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="576.21" y="379.5" font-size="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.mallocgc (7 samples, 0.05%)</title><rect x="275.3" y="529" width="0.6" height="15.0" fill="rgb(253,218,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="278.26" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (4 samples, 0.03%)</title><rect x="169.4" y="641" width="0.3" height="15.0" fill="rgb(245,115,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="172.37" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="447.3" y="545" width="0.2" height="15.0" fill="rgb(230,98,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="450.33" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (12 samples, 0.09%)</title><rect x="32.2" y="641" width="1.1" height="15.0" fill="rgb(229,28,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="35.24" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="516.5" y="353" width="0.2" height="15.0" fill="rgb(218,214,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="519.49" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (3 samples, 0.02%)</title><rect x="20.3" y="545" width="0.2" height="15.0" fill="rgb(217,154,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.26" y="555.5" font-size="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.futex (2 samples, 0.02%)</title><rect x="540.3" y="481" width="0.1" height="15.0" fill="rgb(218,61,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="543.26" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>smp_apic_timer_interrupt (3 samples, 0.02%)</title><rect x="833.2" y="545" width="0.2" height="15.0" fill="rgb(244,117,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="836.16" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (5 samples, 0.04%)</title><rect x="42.2" y="609" width="0.5" height="15.0" fill="rgb(218,143,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="45.24" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="505.5" y="369" width="0.2" height="15.0" fill="rgb(243,161,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="508.50" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ep_poll (55 samples, 0.42%)</title><rect x="734.0" y="673" width="5.0" height="15.0" fill="rgb(247,70,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="737.03" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="84.5" y="545" width="0.1" height="15.0" fill="rgb(235,172,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="87.46" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="644.6" y="337" width="0.2" height="15.0" fill="rgb(251,40,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="647.62" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__audit_syscall_exit (3 samples, 0.02%)</title><rect x="958.9" y="689" width="0.2" height="15.0" fill="rgb(240,73,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="961.86" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (3 samples, 0.02%)</title><rect x="191.1" y="657" width="0.2" height="15.0" fill="rgb(223,119,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="194.07" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (4 samples, 0.03%)</title><rect x="46.7" y="529" width="0.4" height="15.0" fill="rgb(241,141,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="49.74" y="539.5" font-size="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.findrunnable (2 samples, 0.02%)</title><rect x="427.0" y="545" width="0.2" height="15.0" fill="rgb(254,144,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="429.98" y="555.5" font-size="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.stackcacherefill (2 samples, 0.02%)</title><rect x="316.8" y="689" width="0.2" height="15.0" fill="rgb(232,69,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="319.77" y="699.5" font-size="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.goparkunlock (8 samples, 0.06%)</title><rect x="558.6" y="577" width="0.7" height="15.0" fill="rgb(244,90,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="561.63" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (4 samples, 0.03%)</title><rect x="610.9" y="433" width="0.3" height="15.0" fill="rgb(239,134,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="613.85" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="969.5" y="353" width="0.2" height="15.0" fill="rgb(207,138,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="972.49" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>nf_iterate (3 samples, 0.02%)</title><rect x="322.9" y="401" width="0.3" height="15.0" fill="rgb(244,81,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="325.90" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="700.8" y="657" width="0.3" height="15.0" fill="rgb(250,154,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="703.80" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (3 samples, 0.02%)</title><rect x="557.9" y="385" width="0.3" height="15.0" fill="rgb(228,136,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="560.91" y="395.5" font-size="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.stopm (2 samples, 0.02%)</title><rect x="545.8" y="513" width="0.2" height="15.0" fill="rgb(224,214,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="548.84" y="523.5" font-size="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.gcStart (9 samples, 0.07%)</title><rect x="522.2" y="641" width="0.9" height="15.0" fill="rgb(225,2,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="525.25" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ktime_get_ts64 (2 samples, 0.02%)</title><rect x="677.5" y="513" width="0.2" height="15.0" fill="rgb(222,217,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="680.48" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (2 samples, 0.02%)</title><rect x="163.2" y="481" width="0.1" height="15.0" fill="rgb(238,216,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="166.16" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_sched_yield (11 samples, 0.08%)</title><rect x="227.5" y="689" width="0.9" height="15.0" fill="rgb(234,4,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="230.45" y="699.5" font-size="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.osyield (3 samples, 0.02%)</title><rect x="326.6" y="657" width="0.3" height="15.0" fill="rgb(244,151,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="329.59" y="667.5" font-size="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.futex (14 samples, 0.11%)</title><rect x="280.3" y="689" width="1.3" height="15.0" fill="rgb(222,3,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.31" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (4 samples, 0.03%)</title><rect x="50.5" y="497" width="0.4" height="15.0" fill="rgb(238,27,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="53.52" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (2 samples, 0.02%)</title><rect x="466.8" y="417" width="0.2" height="15.0" fill="rgb(251,156,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="469.78" y="427.5" font-size="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.park_m (18 samples, 0.14%)</title><rect x="82.7" y="769" width="1.6" height="15.0" fill="rgb(241,187,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="85.66" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/gopkg.in/yaml%2ev2.yaml_emitter_state_machine (2 samples, 0.02%)</title><rect x="29.2" y="769" width="0.2" height="15.0" fill="rgb(245,81,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="32.18" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="576.7" y="401" width="0.2" height="15.0" fill="rgb(208,213,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="579.72" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (4 samples, 0.03%)</title><rect x="544.7" y="465" width="0.3" height="15.0" fill="rgb(228,42,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="547.67" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (5 samples, 0.04%)</title><rect x="1060.3" y="497" width="0.5" height="15.0" fill="rgb(243,206,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="1063.34" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (5 samples, 0.04%)</title><rect x="27.9" y="417" width="0.5" height="15.0" fill="rgb(251,178,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="30.92" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (2 samples, 0.02%)</title><rect x="345.3" y="305" width="0.2" height="15.0" fill="rgb(239,48,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="348.32" 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>schedule (2 samples, 0.02%)</title><rect x="279.5" y="433" width="0.2" height="15.0" fill="rgb(247,121,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="282.50" y="443.5" font-size="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.gcParkAssist (84 samples, 0.64%)</title><rect x="282.9" y="689" width="7.6" height="15.0" fill="rgb(225,185,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="285.92" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (13 samples, 0.10%)</title><rect x="569.1" y="289" width="1.1" height="15.0" fill="rgb(248,214,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="572.07" y="299.5" font-size="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.deductSweepCredit (4 samples, 0.03%)</title><rect x="464.0" y="577" width="0.4" height="15.0" fill="rgb(239,116,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="466.99" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="994.2" y="593" width="0.2" height="15.0" fill="rgb(248,121,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="997.25" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (7 samples, 0.05%)</title><rect x="41.4" y="449" width="0.7" height="15.0" fill="rgb(242,59,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="44.42" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (2 samples, 0.02%)</title><rect x="563.8" y="401" width="0.1" height="15.0" fill="rgb(234,42,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="566.76" y="411.5" font-size="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.stopTheWorldWithSema (4 samples, 0.03%)</title><rect x="295.7" y="689" width="0.4" height="15.0" fill="rgb(216,166,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="298.70" y="699.5" font-size="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.systemstack (3 samples, 0.02%)</title><rect x="552.1" y="561" width="0.2" height="15.0" fill="rgb(241,27,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="555.05" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (2 samples, 0.02%)</title><rect x="18.7" y="545" width="0.2" height="15.0" fill="rgb(242,72,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.73" y="555.5" font-size="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.growslice (3 samples, 0.02%)</title><rect x="529.4" y="689" width="0.2" height="15.0" fill="rgb(213,65,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="532.36" y="699.5" font-size="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.adjustdefers (2 samples, 0.02%)</title><rect x="656.6" y="625" width="0.2" height="15.0" fill="rgb(218,218,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="659.59" y="635.5" font-size="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.gchelper (3 samples, 0.02%)</title><rect x="739.3" y="705" width="0.3" height="15.0" fill="rgb(225,130,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="742.34" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="644.3" y="369" width="0.1" height="15.0" fill="rgb(247,6,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="647.26" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tcp_rcv_established (3 samples, 0.02%)</title><rect x="322.0" y="481" width="0.3" height="15.0" fill="rgb(205,21,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="325.00" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (7 samples, 0.05%)</title><rect x="26.2" y="545" width="0.6" height="15.0" fill="rgb(205,65,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="29.21" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>try_to_wake_up (13 samples, 0.10%)</title><rect x="939.6" y="577" width="1.2" height="15.0" fill="rgb(254,32,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="942.59" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (3 samples, 0.02%)</title><rect x="527.6" y="321" width="0.2" height="15.0" fill="rgb(240,24,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="530.56" 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>update_blocked_averages (19 samples, 0.14%)</title><rect x="927.7" y="545" width="1.7" height="15.0" fill="rgb(206,61,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="930.71" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_sched_yield (2 samples, 0.02%)</title><rect x="290.2" y="529" width="0.2" height="15.0" fill="rgb(236,55,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="293.21" y="539.5" font-size="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.futex (2 samples, 0.02%)</title><rect x="46.4" y="609" width="0.2" height="15.0" fill="rgb(209,152,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="49.38" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (18 samples, 0.14%)</title><rect x="678.1" y="561" width="1.6" height="15.0" fill="rgb(221,25,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="681.11" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="27.3" y="417" width="0.2" height="15.0" fill="rgb(205,164,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="30.29" y="427.5" font-size="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.findrunnable (10 samples, 0.08%)</title><rect x="471.6" y="577" width="0.9" height="15.0" fill="rgb(207,202,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="474.56" y="587.5" font-size="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.(*mspan).sweep (2 samples, 0.02%)</title><rect x="292.0" y="577" width="0.2" height="15.0" fill="rgb(229,0,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="295.01" y="587.5" font-size="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.notesleep (2 samples, 0.02%)</title><rect x="640.7" y="513" width="0.2" height="15.0" fill="rgb(226,49,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="643.74" y="523.5" font-size="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.newobject (2 samples, 0.02%)</title><rect x="513.3" y="561" width="0.2" height="15.0" fill="rgb(205,209,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="516.33" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (9 samples, 0.07%)</title><rect x="659.6" y="577" width="0.8" height="15.0" fill="rgb(244,150,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="662.56" y="587.5" font-size="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_sys_select (3 samples, 0.02%)</title><rect x="35.4" y="625" width="0.3" height="15.0" fill="rgb(231,19,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="38.39" y="635.5" font-size="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.stopm (2 samples, 0.02%)</title><rect x="566.4" y="417" width="0.1" height="15.0" fill="rgb(220,54,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="569.37" y="427.5" font-size="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.gcAssistAlloc (16 samples, 0.12%)</title><rect x="516.3" y="641" width="1.4" height="15.0" fill="rgb(242,185,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="519.31" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>prometheus-blac (13,105 samples, 100.00%)</title><rect x="10.0" y="849" width="1180.0" height="15.0" fill="rgb(250,50,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.00" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >prometheus-blac</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>runtime.usleep (27 samples, 0.21%)</title><rect x="388.4" y="465" width="2.5" height="15.0" fill="rgb(206,176,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="391.45" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (10 samples, 0.08%)</title><rect x="599.4" y="305" width="0.9" height="15.0" fill="rgb(234,169,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="602.41" 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>runtime.(*mcentral).cacheSpan (6 samples, 0.05%)</title><rect x="484.7" y="593" width="0.5" height="15.0" fill="rgb(234,2,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="487.70" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="259.4" y="465" width="0.2" height="15.0" fill="rgb(240,183,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="262.42" y="475.5" font-size="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.shade (2 samples, 0.02%)</title><rect x="372.4" y="545" width="0.2" height="15.0" fill="rgb(205,102,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="375.42" y="555.5" font-size="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.stopm (3 samples, 0.02%)</title><rect x="462.7" y="577" width="0.3" height="15.0" fill="rgb(242,154,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="465.73" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule_hrtimeout_range (4 samples, 0.03%)</title><rect x="25.6" y="561" width="0.3" height="15.0" fill="rgb(214,47,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="28.58" y="571.5" font-size="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.runqsteal (4 samples, 0.03%)</title><rect x="643.6" y="417" width="0.4" height="15.0" fill="rgb(227,77,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="646.63" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hash/crc32.archUpdateIEEE (2 samples, 0.02%)</title><rect x="640.4" y="609" width="0.2" height="15.0" fill="rgb(209,176,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="643.38" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net.(*Resolver).LookupIPAddr (16 samples, 0.12%)</title><rect x="350.4" y="657" width="1.4" height="15.0" fill="rgb(247,102,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="353.36" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (5 samples, 0.04%)</title><rect x="40.3" y="513" width="0.5" height="15.0" fill="rgb(242,54,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="43.34" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="174.6" y="609" width="0.2" height="15.0" fill="rgb(214,141,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="177.60" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (5 samples, 0.04%)</title><rect x="253.1" y="609" width="0.5" height="15.0" fill="rgb(225,64,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="256.11" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (2 samples, 0.02%)</title><rect x="415.5" y="417" width="0.2" height="15.0" fill="rgb(221,173,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="418.55" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hrtimer_interrupt (2 samples, 0.02%)</title><rect x="1073.5" y="721" width="0.2" height="15.0" fill="rgb(254,36,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="1076.49" y="731.5" font-size="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.notesleep (3 samples, 0.02%)</title><rect x="164.0" y="721" width="0.2" height="15.0" fill="rgb(231,61,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="166.97" y="731.5" font-size="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.gcstopm (6 samples, 0.05%)</title><rect x="341.2" y="481" width="0.5" height="15.0" fill="rgb(221,9,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="344.17" y="491.5" font-size="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.adjustframe (3 samples, 0.02%)</title><rect x="656.8" y="609" width="0.2" height="15.0" fill="rgb(247,215,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="659.77" y="619.5" font-size="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.park_m (6 samples, 0.05%)</title><rect x="330.3" y="673" width="0.5" height="15.0" fill="rgb(236,170,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="333.28" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (12 samples, 0.09%)</title><rect x="32.2" y="657" width="1.1" height="15.0" fill="rgb(250,48,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="35.24" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (5 samples, 0.04%)</title><rect x="175.1" y="721" width="0.5" height="15.0" fill="rgb(217,154,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="178.14" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="229.3" y="641" width="0.1" height="15.0" fill="rgb(237,150,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="232.25" y="651.5" font-size="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.epollwait (32 samples, 0.24%)</title><rect x="283.0" y="593" width="2.9" height="15.0" fill="rgb(229,14,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.01" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (2 samples, 0.02%)</title><rect x="250.0" y="513" width="0.1" height="15.0" fill="rgb(254,66,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="252.96" y="523.5" font-size="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.(*Func).FileLine (2 samples, 0.02%)</title><rect x="338.6" y="401" width="0.1" height="15.0" fill="rgb(209,183,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="341.56" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (3 samples, 0.02%)</title><rect x="664.7" y="513" width="0.3" height="15.0" fill="rgb(223,109,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="667.70" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>account_entity_dequeue (2 samples, 0.02%)</title><rect x="63.7" y="513" width="0.1" height="15.0" fill="rgb(236,181,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="66.67" y="523.5" font-size="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.unlock (9 samples, 0.07%)</title><rect x="142.8" y="721" width="0.8" height="15.0" fill="rgb(222,20,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="145.81" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (2 samples, 0.02%)</title><rect x="348.6" y="289" width="0.2" height="15.0" fill="rgb(251,176,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="351.65" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (7 samples, 0.05%)</title><rect x="263.5" y="513" width="0.6" height="15.0" fill="rgb(243,44,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="266.47" y="523.5" font-size="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.gcAssistAlloc (2 samples, 0.02%)</title><rect x="276.6" y="561" width="0.2" height="15.0" fill="rgb(247,123,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="279.61" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="365.8" y="321" width="0.1" height="15.0" fill="rgb(211,33,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="368.76" 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>intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="174.6" y="513" width="0.2" height="15.0" fill="rgb(253,219,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="177.60" y="523.5" font-size="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.goparkunlock (11 samples, 0.08%)</title><rect x="604.9" y="529" width="1.0" height="15.0" fill="rgb(221,93,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="607.91" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="17.9" y="449" width="0.2" height="15.0" fill="rgb(211,6,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.92" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (2 samples, 0.02%)</title><rect x="19.9" y="449" width="0.2" height="15.0" fill="rgb(210,45,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="22.90" y="459.5" font-size="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.park_m (2 samples, 0.02%)</title><rect x="345.9" y="561" width="0.1" height="15.0" fill="rgb(251,93,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="348.86" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (94 samples, 0.72%)</title><rect x="193.6" y="705" width="8.5" height="15.0" fill="rgb(212,117,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="196.60" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="1006.0" y="417" width="0.2" height="15.0" fill="rgb(230,128,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="1009.04" y="427.5" font-size="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.futex (5 samples, 0.04%)</title><rect x="229.4" y="721" width="0.5" height="15.0" fill="rgb(242,165,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="232.43" y="731.5" font-size="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.(*mcache).nextFree.func1 (2 samples, 0.02%)</title><rect x="457.1" y="513" width="0.1" height="15.0" fill="rgb(205,12,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="460.06" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (4 samples, 0.03%)</title><rect x="700.4" y="593" width="0.3" height="15.0" fill="rgb(253,108,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="703.35" y="603.5" font-size="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.writebarrierptr (4 samples, 0.03%)</title><rect x="472.9" y="673" width="0.4" height="15.0" fill="rgb(229,35,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="475.91" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="31.7" y="449" width="0.2" height="15.0" fill="rgb(206,56,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="34.70" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (3 samples, 0.02%)</title><rect x="257.3" y="401" width="0.3" height="15.0" fill="rgb(240,20,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="260.35" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="493.1" y="385" width="0.2" height="15.0" fill="rgb(244,179,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="496.08" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (135 samples, 1.03%)</title><rect x="399.5" y="305" width="12.2" height="15.0" fill="rgb(231,80,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="402.52" 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>math/big.nat.divLarge (5 samples, 0.04%)</title><rect x="271.2" y="545" width="0.5" height="15.0" fill="rgb(248,227,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="274.21" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="169.2" y="673" width="0.2" height="15.0" fill="rgb(254,210,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="172.19" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>internal/poll.runtime_pollWait (13 samples, 0.10%)</title><rect x="300.2" y="593" width="1.2" height="15.0" fill="rgb(220,2,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="303.21" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="492.4" y="193" width="0.2" height="15.0" fill="rgb(249,96,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.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>runtime.goparkunlock (2 samples, 0.02%)</title><rect x="494.3" y="609" width="0.2" height="15.0" fill="rgb(249,39,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="497.34" y="619.5" font-size="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.gcStart (2 samples, 0.02%)</title><rect x="270.0" y="721" width="0.2" height="15.0" fill="rgb(220,50,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="273.04" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net.dialSerial (2 samples, 0.02%)</title><rect x="268.1" y="737" width="0.1" height="15.0" fill="rgb(236,29,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="271.06" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (3 samples, 0.02%)</title><rect x="260.3" y="305" width="0.3" height="15.0" fill="rgb(229,74,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="263.32" 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>__intel_pmu_enable_all (5 samples, 0.04%)</title><rect x="716.4" y="449" width="0.4" height="15.0" fill="rgb(229,135,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="719.38" y="459.5" font-size="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.gosweepone.func1 (2 samples, 0.02%)</title><rect x="652.3" y="513" width="0.1" height="15.0" fill="rgb(241,186,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="655.27" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="174.1" y="689" width="0.3" height="15.0" fill="rgb(235,87,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="177.15" y="699.5" font-size="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.forEachP (5 samples, 0.04%)</title><rect x="349.3" y="561" width="0.4" height="15.0" fill="rgb(251,95,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="352.28" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="259.4" y="401" width="0.2" height="15.0" fill="rgb(225,227,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="262.42" y="411.5" font-size="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.gcParkAssist (4 samples, 0.03%)</title><rect x="295.1" y="689" width="0.3" height="15.0" fill="rgb(249,147,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="298.07" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (2 samples, 0.02%)</title><rect x="638.9" y="321" width="0.2" height="15.0" fill="rgb(244,35,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="641.94" 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>runtime.epollwait (8 samples, 0.06%)</title><rect x="300.2" y="497" width="0.7" height="15.0" fill="rgb(236,210,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="303.21" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (6 samples, 0.05%)</title><rect x="1189.4" y="641" width="0.5" height="15.0" fill="rgb(214,13,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.37" y="651.5" font-size="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.goschedImpl (4 samples, 0.03%)</title><rect x="473.3" y="641" width="0.3" height="15.0" fill="rgb(210,51,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="476.27" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (145 samples, 1.11%)</title><rect x="128.7" y="481" width="13.0" height="15.0" fill="rgb(220,119,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="131.68" y="491.5" font-size="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.gcstopm (3 samples, 0.02%)</title><rect x="493.7" y="577" width="0.3" height="15.0" fill="rgb(237,188,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="496.71" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (5 samples, 0.04%)</title><rect x="301.6" y="577" width="0.4" height="15.0" fill="rgb(232,29,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="304.56" y="587.5" font-size="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.scanobject (2 samples, 0.02%)</title><rect x="298.9" y="657" width="0.1" height="15.0" fill="rgb(247,96,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="301.85" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (3 samples, 0.02%)</title><rect x="336.4" y="337" width="0.3" height="15.0" fill="rgb(237,87,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="339.40" y="347.5" font-size="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.(*mheap).freeSpanLocked (2 samples, 0.02%)</title><rect x="279.7" y="577" width="0.2" height="15.0" fill="rgb(253,118,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="282.68" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (9 samples, 0.07%)</title><rect x="659.6" y="497" width="0.8" height="15.0" fill="rgb(234,212,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="662.56" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>audit_filter_syscall (2 samples, 0.02%)</title><rect x="496.2" y="529" width="0.2" height="15.0" fill="rgb(239,178,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="499.23" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="821.8" y="641" width="0.2" height="15.0" fill="rgb(231,223,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="824.82" y="651.5" font-size="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.futex (2 samples, 0.02%)</title><rect x="587.9" y="401" width="0.2" height="15.0" fill="rgb(236,114,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="590.89" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (15 samples, 0.11%)</title><rect x="232.4" y="625" width="1.4" height="15.0" fill="rgb(228,64,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="235.40" y="635.5" font-size="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.notesleep (79 samples, 0.60%)</title><rect x="239.6" y="705" width="7.1" height="15.0" fill="rgb(219,20,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="242.61" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>audit_filter_syscall (11 samples, 0.08%)</title><rect x="303.8" y="593" width="1.0" height="15.0" fill="rgb(212,41,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="306.81" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (6 samples, 0.05%)</title><rect x="246.7" y="561" width="0.6" height="15.0" fill="rgb(215,202,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="249.72" y="571.5" font-size="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.callers.func1 (16 samples, 0.12%)</title><rect x="368.1" y="561" width="1.4" height="15.0" fill="rgb(237,173,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="371.10" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="527.8" y="417" width="0.2" height="15.0" fill="rgb(232,109,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="530.83" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_softirq.part.19 (5 samples, 0.04%)</title><rect x="268.8" y="417" width="0.4" height="15.0" fill="rgb(238,5,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="271.78" y="427.5" font-size="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.mallocgc (4 samples, 0.03%)</title><rect x="317.6" y="689" width="0.3" height="15.0" fill="rgb(250,77,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.58" y="699.5" font-size="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.goschedImpl (3 samples, 0.02%)</title><rect x="350.0" y="625" width="0.3" height="15.0" fill="rgb(231,204,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="353.00" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (4 samples, 0.03%)</title><rect x="494.9" y="545" width="0.3" height="15.0" fill="rgb(251,170,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="497.88" y="555.5" font-size="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.(*mcache).nextFree.func1 (3 samples, 0.02%)</title><rect x="361.3" y="401" width="0.3" height="15.0" fill="rgb(250,128,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="364.34" y="411.5" font-size="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.park_m (13 samples, 0.10%)</title><rect x="300.2" y="545" width="1.2" height="15.0" fill="rgb(242,102,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="303.21" y="555.5" font-size="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.mallocgc (19 samples, 0.14%)</title><rect x="335.3" y="529" width="1.7" height="15.0" fill="rgb(221,6,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="338.32" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (21 samples, 0.16%)</title><rect x="288.2" y="369" width="1.9" height="15.0" fill="rgb(247,31,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="291.23" y="379.5" font-size="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.(*semaRoot).dequeue (4 samples, 0.03%)</title><rect x="163.9" y="817" width="0.3" height="15.0" fill="rgb(231,27,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="166.88" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (7 samples, 0.05%)</title><rect x="142.2" y="625" width="0.6" height="15.0" fill="rgb(246,128,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="145.18" y="635.5" font-size="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.schedule (14 samples, 0.11%)</title><rect x="549.4" y="545" width="1.2" height="15.0" fill="rgb(230,219,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="552.35" y="555.5" font-size="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.futex (6 samples, 0.05%)</title><rect x="556.6" y="545" width="0.5" height="15.0" fill="rgb(239,172,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="559.55" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (5 samples, 0.04%)</title><rect x="83.7" y="465" width="0.5" height="15.0" fill="rgb(205,69,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="86.74" y="475.5" font-size="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.systemstack (17 samples, 0.13%)</title><rect x="354.4" y="529" width="1.5" height="15.0" fill="rgb(213,219,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="357.41" y="539.5" font-size="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.writebarrierptr (2 samples, 0.02%)</title><rect x="361.0" y="465" width="0.2" height="15.0" fill="rgb(249,208,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="363.98" y="475.5" font-size="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.(*mcentral).cacheSpan (4 samples, 0.03%)</title><rect x="552.0" y="593" width="0.3" height="15.0" fill="rgb(229,108,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="554.96" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="941.0" y="689" width="0.2" height="15.0" fill="rgb(233,212,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="944.03" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (4 samples, 0.03%)</title><rect x="95.1" y="609" width="0.3" height="15.0" fill="rgb(242,200,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="98.09" y="619.5" font-size="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.newstack (2 samples, 0.02%)</title><rect x="46.4" y="737" width="0.2" height="15.0" fill="rgb(212,68,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="49.38" y="747.5" font-size="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.heapBitsSetType (2 samples, 0.02%)</title><rect x="317.8" y="673" width="0.1" height="15.0" fill="rgb(212,49,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.76" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (2 samples, 0.02%)</title><rect x="16.6" y="465" width="0.2" height="15.0" fill="rgb(212,196,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.57" y="475.5" font-size="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.(*mcentral).grow (10 samples, 0.08%)</title><rect x="547.7" y="561" width="0.9" height="15.0" fill="rgb(222,91,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="550.73" y="571.5" font-size="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.gcParkAssist (2 samples, 0.02%)</title><rect x="345.9" y="609" width="0.1" height="15.0" fill="rgb(238,74,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="348.86" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (13 samples, 0.10%)</title><rect x="149.8" y="449" width="1.2" height="15.0" fill="rgb(235,83,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="152.84" y="459.5" font-size="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.(*mspan).sweep (3 samples, 0.02%)</title><rect x="308.4" y="593" width="0.3" height="15.0" fill="rgb(235,185,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="311.40" y="603.5" font-size="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.memmove (2 samples, 0.02%)</title><rect x="309.5" y="769" width="0.2" height="15.0" fill="rgb(250,219,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="312.48" y="779.5" font-size="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.usleep (3 samples, 0.02%)</title><rect x="558.9" y="465" width="0.3" height="15.0" fill="rgb(205,75,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="561.90" y="475.5" font-size="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.stopm (3 samples, 0.02%)</title><rect x="436.3" y="497" width="0.2" height="15.0" fill="rgb(206,220,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.26" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>compress/flate.(*huffmanBitWriter).indexTokens (57 samples, 0.43%)</title><rect x="533.3" y="593" width="5.2" height="15.0" fill="rgb(250,64,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="536.32" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net.(*conn).Write (77 samples, 0.59%)</title><rect x="319.9" y="753" width="7.0" height="15.0" fill="rgb(241,214,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="322.92" y="763.5" font-size="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.lock (2 samples, 0.02%)</title><rect x="576.7" y="449" width="0.2" height="15.0" fill="rgb(227,79,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="579.72" y="459.5" font-size="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.mcall (2 samples, 0.02%)</title><rect x="14.6" y="657" width="0.2" height="15.0" fill="rgb(254,144,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.59" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>exit_to_usermode_loop (2 samples, 0.02%)</title><rect x="821.8" y="657" width="0.2" height="15.0" fill="rgb(242,162,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="824.82" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (5 samples, 0.04%)</title><rect x="290.8" y="465" width="0.4" height="15.0" fill="rgb(238,19,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="293.75" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (2 samples, 0.02%)</title><rect x="480.0" y="321" width="0.2" height="15.0" fill="rgb(251,95,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="483.02" 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>kmem_cache_alloc (2 samples, 0.02%)</title><rect x="964.2" y="497" width="0.2" height="15.0" fill="rgb(253,55,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="967.17" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="423.2" y="337" width="0.2" height="15.0" fill="rgb(237,95,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="426.20" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="370.5" y="273" width="0.2" height="15.0" fill="rgb(251,211,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="373.53" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (22 samples, 0.17%)</title><rect x="54.3" y="593" width="2.0" height="15.0" fill="rgb(254,126,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="57.30" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="231.3" y="641" width="0.2" height="15.0" fill="rgb(231,171,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="234.32" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dequeue_task_fair (2 samples, 0.02%)</title><rect x="752.1" y="513" width="0.2" height="15.0" fill="rgb(238,165,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="755.13" y="523.5" font-size="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.goexit0 (4 samples, 0.03%)</title><rect x="34.4" y="769" width="0.4" height="15.0" fill="rgb(245,95,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="37.40" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (2 samples, 0.02%)</title><rect x="277.8" y="449" width="0.2" height="15.0" fill="rgb(238,51,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="280.78" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (18 samples, 0.14%)</title><rect x="601.9" y="449" width="1.7" height="15.0" fill="rgb(234,89,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="604.94" y="459.5" font-size="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.goschedImpl (2 samples, 0.02%)</title><rect x="337.0" y="481" width="0.2" height="15.0" fill="rgb(206,103,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="340.03" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (7 samples, 0.05%)</title><rect x="263.5" y="481" width="0.6" height="15.0" fill="rgb(239,67,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="266.47" y="491.5" font-size="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.gcStart (2 samples, 0.02%)</title><rect x="275.7" y="513" width="0.2" height="15.0" fill="rgb(218,52,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="278.71" y="523.5" font-size="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.park_m (5 samples, 0.04%)</title><rect x="651.5" y="545" width="0.4" height="15.0" fill="rgb(236,3,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="654.46" y="555.5" font-size="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.futex (412 samples, 3.14%)</title><rect x="1016.7" y="721" width="37.1" height="15.0" fill="rgb(248,185,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="1019.67" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >run..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (3 samples, 0.02%)</title><rect x="314.0" y="433" width="0.3" height="15.0" fill="rgb(220,124,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="316.98" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="229.3" y="593" width="0.1" height="15.0" fill="rgb(214,187,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="232.25" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tcp_recvmsg (2 samples, 0.02%)</title><rect x="301.6" y="465" width="0.1" height="15.0" fill="rgb(206,6,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="304.56" y="475.5" font-size="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.runqgrab (2 samples, 0.02%)</title><rect x="491.5" y="497" width="0.1" height="15.0" fill="rgb(216,139,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="494.45" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (44 samples, 0.34%)</title><rect x="106.5" y="577" width="4.0" height="15.0" fill="rgb(247,201,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="109.52" y="587.5" font-size="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.futex (6 samples, 0.05%)</title><rect x="645.4" y="481" width="0.6" height="15.0" fill="rgb(219,77,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="648.43" y="491.5" font-size="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_balance (10 samples, 0.08%)</title><rect x="926.7" y="545" width="0.9" height="15.0" fill="rgb(209,6,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="929.72" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (2 samples, 0.02%)</title><rect x="457.6" y="209" width="0.2" height="15.0" fill="rgb(206,80,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="460.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>runtime.(*mspan).countAlloc (2 samples, 0.02%)</title><rect x="714.9" y="753" width="0.2" height="15.0" fill="rgb(237,88,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="717.94" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (4 samples, 0.03%)</title><rect x="228.5" y="593" width="0.4" height="15.0" fill="rgb(220,35,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="231.53" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_softirq.part.19 (5 samples, 0.04%)</title><rect x="312.6" y="353" width="0.5" height="15.0" fill="rgb(229,176,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="315.63" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="417.3" y="369" width="0.1" height="15.0" fill="rgb(233,181,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="420.26" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (14 samples, 0.11%)</title><rect x="744.6" y="705" width="1.2" height="15.0" fill="rgb(217,203,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="747.56" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__wake_up_locked (3 samples, 0.02%)</title><rect x="268.8" y="97" width="0.3" height="15.0" fill="rgb(214,157,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="271.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>runtime.gcAssistAlloc (2 samples, 0.02%)</title><rect x="539.4" y="545" width="0.2" height="15.0" fill="rgb(216,99,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="542.45" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (5 samples, 0.04%)</title><rect x="517.2" y="385" width="0.5" height="15.0" fill="rgb(220,70,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="520.21" y="395.5" font-size="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.schedule (6 samples, 0.05%)</title><rect x="505.1" y="577" width="0.6" height="15.0" fill="rgb(236,16,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="508.14" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_sched_yield (7 samples, 0.05%)</title><rect x="993.2" y="673" width="0.6" height="15.0" fill="rgb(215,95,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="996.17" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (15 samples, 0.11%)</title><rect x="488.0" y="513" width="1.4" height="15.0" fill="rgb(224,221,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.03" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (5 samples, 0.04%)</title><rect x="100.5" y="433" width="0.4" height="15.0" fill="rgb(227,117,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="103.49" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>strings.IndexAny (2 samples, 0.02%)</title><rect x="656.4" y="673" width="0.2" height="15.0" fill="rgb(212,218,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="659.41" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (3 samples, 0.02%)</title><rect x="164.0" y="481" width="0.2" height="15.0" fill="rgb(237,89,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="166.97" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (10 samples, 0.08%)</title><rect x="103.6" y="577" width="0.9" height="15.0" fill="rgb(206,141,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="106.55" y="587.5" font-size="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.park_m (2 samples, 0.02%)</title><rect x="423.2" y="561" width="0.2" height="15.0" fill="rgb(206,223,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="426.20" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="972.1" y="641" width="0.2" height="15.0" fill="rgb(238,179,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="975.10" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>audit_filter_syscall (2 samples, 0.02%)</title><rect x="112.7" y="625" width="0.2" height="15.0" fill="rgb(209,176,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="115.74" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>audit_filter_syscall (11 samples, 0.08%)</title><rect x="57.5" y="673" width="1.0" height="15.0" fill="rgb(207,119,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="60.54" y="683.5" font-size="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.schedule (3 samples, 0.02%)</title><rect x="644.5" y="433" width="0.3" height="15.0" fill="rgb(212,86,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="647.53" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (3 samples, 0.02%)</title><rect x="301.1" y="417" width="0.3" height="15.0" fill="rgb(211,101,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="304.11" y="427.5" font-size="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.findrunnable (66 samples, 0.50%)</title><rect x="566.8" y="465" width="6.0" height="15.0" fill="rgb(252,149,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="569.82" y="475.5" font-size="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.gcParkAssist (7 samples, 0.05%)</title><rect x="502.4" y="609" width="0.7" height="15.0" fill="rgb(211,52,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="505.44" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (4 samples, 0.03%)</title><rect x="516.8" y="321" width="0.4" height="15.0" fill="rgb(242,71,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="519.85" 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>runtime.execute (9 samples, 0.07%)</title><rect x="731.5" y="753" width="0.8" height="15.0" fill="rgb(231,170,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="734.51" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (14 samples, 0.11%)</title><rect x="692.5" y="513" width="1.3" height="15.0" fill="rgb(252,139,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="695.52" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (14 samples, 0.11%)</title><rect x="692.5" y="481" width="1.3" height="15.0" fill="rgb(241,124,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="695.52" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (7 samples, 0.05%)</title><rect x="1187.9" y="609" width="0.7" height="15.0" fill="rgb(217,201,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="1190.93" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (4 samples, 0.03%)</title><rect x="25.6" y="529" width="0.3" height="15.0" fill="rgb(227,99,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="28.58" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (5 samples, 0.04%)</title><rect x="1189.5" y="513" width="0.4" height="15.0" fill="rgb(206,180,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.46" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="526.3" y="481" width="0.2" height="15.0" fill="rgb(211,51,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="529.30" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (24 samples, 0.18%)</title><rect x="553.2" y="513" width="2.2" height="15.0" fill="rgb(248,227,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="556.22" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>find_busiest_group (10 samples, 0.08%)</title><rect x="812.5" y="529" width="0.9" height="15.0" fill="rgb(229,124,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="815.45" y="539.5" font-size="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.usleep (4 samples, 0.03%)</title><rect x="642.2" y="353" width="0.3" height="15.0" fill="rgb(210,189,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="645.18" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (4 samples, 0.03%)</title><rect x="516.8" y="289" width="0.4" height="15.0" fill="rgb(244,68,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="519.85" y="299.5" font-size="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.findrunnable (6 samples, 0.05%)</title><rect x="527.3" y="577" width="0.5" height="15.0" fill="rgb(237,40,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="530.29" y="587.5" font-size="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_sys_select (2 samples, 0.02%)</title><rect x="540.8" y="289" width="0.2" height="15.0" fill="rgb(227,224,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="543.80" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (4 samples, 0.03%)</title><rect x="559.9" y="449" width="0.3" height="15.0" fill="rgb(220,14,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="562.89" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="651.9" y="321" width="0.2" height="15.0" fill="rgb(217,170,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="654.91" 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>runtime.funcspdelta (16 samples, 0.12%)</title><rect x="1175.5" y="689" width="1.4" height="15.0" fill="rgb(207,45,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="1178.50" y="699.5" font-size="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/x509.(*CertPool).findVerifiedParents (57 samples, 0.43%)</title><rect x="271.2" y="721" width="5.1" height="15.0" fill="rgb(227,214,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="274.21" y="731.5" font-size="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.deductSweepCredit (3 samples, 0.02%)</title><rect x="308.4" y="657" width="0.3" height="15.0" fill="rgb(207,112,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="311.40" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (5 samples, 0.04%)</title><rect x="27.9" y="465" width="0.5" height="15.0" fill="rgb(208,219,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="30.92" y="475.5" font-size="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.newstack (7 samples, 0.05%)</title><rect x="494.7" y="673" width="0.6" height="15.0" fill="rgb(246,213,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="497.70" y="683.5" font-size="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.schedule (22 samples, 0.17%)</title><rect x="489.4" y="561" width="2.0" height="15.0" fill="rgb(228,116,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="492.38" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (2 samples, 0.02%)</title><rect x="649.1" y="465" width="0.2" height="15.0" fill="rgb(252,26,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="652.12" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="259.4" y="257" width="0.2" height="15.0" fill="rgb(214,209,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="262.42" 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>runtime.futex (193 samples, 1.47%)</title><rect x="124.8" y="705" width="17.4" height="15.0" fill="rgb(231,90,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="127.80" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>poll_schedule_timeout (9 samples, 0.07%)</title><rect x="116.1" y="609" width="0.8" height="15.0" fill="rgb(223,168,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="119.07" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tcp_data_queue (2 samples, 0.02%)</title><rect x="324.6" y="145" width="0.2" height="15.0" fill="rgb(224,69,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="327.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>do_syscall_64 (7 samples, 0.05%)</title><rect x="745.8" y="705" width="0.7" height="15.0" fill="rgb(226,85,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="748.82" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (7 samples, 0.05%)</title><rect x="574.2" y="209" width="0.6" height="15.0" fill="rgb(238,17,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="577.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>audit_filter_syscall (2 samples, 0.02%)</title><rect x="971.2" y="433" width="0.2" height="15.0" fill="rgb(248,60,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="974.20" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (4 samples, 0.03%)</title><rect x="577.7" y="289" width="0.4" height="15.0" fill="rgb(216,164,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="580.71" y="299.5" font-size="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.schedule (3 samples, 0.02%)</title><rect x="250.8" y="721" width="0.2" height="15.0" fill="rgb(237,131,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="253.77" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (8 samples, 0.06%)</title><rect x="230.4" y="609" width="0.7" height="15.0" fill="rgb(216,14,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="233.42" y="619.5" font-size="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.park_m (2 samples, 0.02%)</title><rect x="470.6" y="609" width="0.1" height="15.0" fill="rgb(222,102,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="473.56" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (3 samples, 0.02%)</title><rect x="24.7" y="609" width="0.2" height="15.0" fill="rgb(251,121,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="27.68" y="619.5" font-size="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.(*mheap).alloc_m (2 samples, 0.02%)</title><rect x="450.3" y="433" width="0.2" height="15.0" fill="rgb(234,100,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="453.31" y="443.5" font-size="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.gcStart (7 samples, 0.05%)</title><rect x="1186.5" y="801" width="0.6" height="15.0" fill="rgb(210,184,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.49" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="974.3" y="545" width="0.2" height="15.0" fill="rgb(246,80,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="977.35" y="555.5" font-size="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.makeslice (17 samples, 0.13%)</title><rect x="330.1" y="785" width="1.5" height="15.0" fill="rgb(226,110,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="333.10" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (16 samples, 0.12%)</title><rect x="698.5" y="593" width="1.4" height="15.0" fill="rgb(251,210,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="701.46" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (47 samples, 0.36%)</title><rect x="988.9" y="481" width="4.3" height="15.0" fill="rgb(235,99,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="991.94" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (15 samples, 0.11%)</title><rect x="524.2" y="513" width="1.4" height="15.0" fill="rgb(244,23,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="527.23" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (5 samples, 0.04%)</title><rect x="256.5" y="577" width="0.5" height="15.0" fill="rgb(244,96,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="259.53" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (3 samples, 0.02%)</title><rect x="493.7" y="337" width="0.3" height="15.0" fill="rgb(239,85,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="496.71" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (6 samples, 0.05%)</title><rect x="246.7" y="545" width="0.6" height="15.0" fill="rgb(217,164,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="249.72" y="555.5" font-size="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.mcall (112 samples, 0.85%)</title><rect x="84.9" y="769" width="10.1" height="15.0" fill="rgb(228,223,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="87.91" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_pselect6 (4 samples, 0.03%)</title><rect x="330.5" y="545" width="0.3" height="15.0" fill="rgb(229,99,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="333.46" y="555.5" font-size="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.semacquire1 (2 samples, 0.02%)</title><rect x="294.5" y="673" width="0.2" height="15.0" fill="rgb(222,10,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="297.53" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (26 samples, 0.20%)</title><rect x="37.5" y="465" width="2.3" height="15.0" fill="rgb(215,36,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="40.46" y="475.5" font-size="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.stopm (10 samples, 0.08%)</title><rect x="161.1" y="753" width="0.9" height="15.0" fill="rgb(243,135,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="164.09" y="763.5" font-size="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.mcall (2 samples, 0.02%)</title><rect x="250.5" y="801" width="0.2" height="15.0" fill="rgb(235,222,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="253.50" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (4 samples, 0.03%)</title><rect x="448.7" y="417" width="0.3" height="15.0" fill="rgb(237,228,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="451.68" y="427.5" font-size="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.goparkunlock (2 samples, 0.02%)</title><rect x="253.6" y="817" width="0.1" height="15.0" fill="rgb(244,129,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="256.56" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="447.3" y="433" width="0.2" height="15.0" fill="rgb(247,162,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="450.33" y="443.5" font-size="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.stopm (6 samples, 0.05%)</title><rect x="443.9" y="593" width="0.6" height="15.0" fill="rgb(254,133,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="446.91" y="603.5" font-size="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.stopm (2 samples, 0.02%)</title><rect x="423.2" y="513" width="0.2" height="15.0" fill="rgb(231,163,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="426.20" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dequeue_task_fair (3 samples, 0.02%)</title><rect x="773.1" y="545" width="0.3" height="15.0" fill="rgb(252,161,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="776.11" y="555.5" font-size="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.systemstack (5 samples, 0.04%)</title><rect x="544.7" y="609" width="0.4" height="15.0" fill="rgb(234,79,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="547.67" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (3 samples, 0.02%)</title><rect x="640.0" y="385" width="0.3" height="15.0" fill="rgb(216,142,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="643.02" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (64 samples, 0.49%)</title><rect x="613.2" y="305" width="5.8" height="15.0" fill="rgb(206,197,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="616.19" 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>futex_wait_queue_me (4 samples, 0.03%)</title><rect x="19.3" y="513" width="0.3" height="15.0" fill="rgb(218,112,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="22.27" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="577.2" y="257" width="0.2" height="15.0" fill="rgb(234,42,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="580.17" 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>__schedule (3 samples, 0.02%)</title><rect x="260.3" y="369" width="0.3" height="15.0" fill="rgb(208,109,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="263.32" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (2 samples, 0.02%)</title><rect x="347.4" y="417" width="0.2" height="15.0" fill="rgb(242,140,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="350.39" y="427.5" font-size="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.exitsyscall0 (2 samples, 0.02%)</title><rect x="249.7" y="785" width="0.2" height="15.0" fill="rgb(213,12,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="252.69" y="795.5" font-size="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.makeslice (8 samples, 0.06%)</title><rect x="328.2" y="785" width="0.7" height="15.0" fill="rgb(214,159,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="331.21" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (4 samples, 0.03%)</title><rect x="700.4" y="625" width="0.3" height="15.0" fill="rgb(218,168,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="703.35" y="635.5" font-size="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.send (3 samples, 0.02%)</title><rect x="255.0" y="753" width="0.3" height="15.0" fill="rgb(252,19,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="258.00" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (2 samples, 0.02%)</title><rect x="548.4" y="289" width="0.1" height="15.0" fill="rgb(238,3,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="551.36" y="299.5" font-size="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.findrunnable (5 samples, 0.04%)</title><rect x="275.3" y="417" width="0.4" height="15.0" fill="rgb(243,195,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="278.26" y="427.5" font-size="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.park_m (4 samples, 0.03%)</title><rect x="469.0" y="593" width="0.4" height="15.0" fill="rgb(208,96,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="472.03" y="603.5" font-size="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.futex (3 samples, 0.02%)</title><rect x="1188.7" y="689" width="0.3" height="15.0" fill="rgb(241,39,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="1191.74" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="517.9" y="369" width="0.2" height="15.0" fill="rgb(245,53,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="520.93" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sort.quickSort (2 samples, 0.02%)</title><rect x="545.8" y="625" width="0.2" height="15.0" fill="rgb(238,105,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="548.84" y="635.5" font-size="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.gchelper (3 samples, 0.02%)</title><rect x="116.9" y="721" width="0.2" height="15.0" fill="rgb(238,203,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="119.88" y="731.5" font-size="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.stopm (2 samples, 0.02%)</title><rect x="168.6" y="673" width="0.1" height="15.0" fill="rgb(243,158,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="171.56" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (42 samples, 0.32%)</title><rect x="667.8" y="497" width="3.8" height="15.0" fill="rgb(253,172,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="670.85" y="507.5" font-size="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.findrunnable (3 samples, 0.02%)</title><rect x="11.2" y="385" width="0.2" height="15.0" fill="rgb(244,70,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.17" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (7 samples, 0.05%)</title><rect x="526.5" y="513" width="0.6" height="15.0" fill="rgb(253,46,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="529.48" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net.(*TCPListener).accept (129 samples, 0.98%)</title><rect x="961.8" y="705" width="11.6" height="15.0" fill="rgb(249,0,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="964.83" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="12.1" y="337" width="0.2" height="15.0" fill="rgb(221,183,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="15.07" y="347.5" font-size="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.gcAssistAlloc (3 samples, 0.02%)</title><rect x="347.3" y="609" width="0.3" height="15.0" fill="rgb(251,117,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="350.30" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (8 samples, 0.06%)</title><rect x="97.6" y="417" width="0.7" height="15.0" fill="rgb(212,169,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="100.61" y="427.5" font-size="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.sweepone (6 samples, 0.05%)</title><rect x="577.5" y="449" width="0.6" height="15.0" fill="rgb(236,94,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="580.53" y="459.5" font-size="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.deductSweepCredit (7 samples, 0.05%)</title><rect x="279.2" y="689" width="0.7" height="15.0" fill="rgb(209,170,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="282.23" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (59 samples, 0.45%)</title><rect x="185.8" y="577" width="5.3" height="15.0" fill="rgb(215,6,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="188.76" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (3 samples, 0.02%)</title><rect x="1006.4" y="465" width="0.3" height="15.0" fill="rgb(251,71,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="1009.40" y="475.5" font-size="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.systemstack (20 samples, 0.15%)</title><rect x="491.9" y="641" width="1.8" height="15.0" fill="rgb(211,191,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="494.90" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (249 samples, 1.90%)</title><rect x="1030.2" y="497" width="22.4" height="15.0" fill="rgb(251,71,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="1033.18" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (2 samples, 0.02%)</title><rect x="635.5" y="417" width="0.2" height="15.0" fill="rgb(232,218,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="638.52" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (2 samples, 0.02%)</title><rect x="277.8" y="513" width="0.2" height="15.0" fill="rgb(220,190,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="280.78" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sync.runtime_Semacquire (5 samples, 0.04%)</title><rect x="253.9" y="785" width="0.5" height="15.0" fill="rgb(240,47,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="256.92" y="795.5" font-size="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.schedule (2 samples, 0.02%)</title><rect x="423.4" y="529" width="0.2" height="15.0" fill="rgb(243,40,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="426.38" y="539.5" font-size="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.futex (13 samples, 0.10%)</title><rect x="149.8" y="673" width="1.2" height="15.0" fill="rgb(221,146,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="152.84" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (2 samples, 0.02%)</title><rect x="17.9" y="401" width="0.2" height="15.0" fill="rgb(239,98,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.92" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sync.(*Pool).Put (2 samples, 0.02%)</title><rect x="367.2" y="609" width="0.2" height="15.0" fill="rgb(210,99,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="370.20" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="466.8" y="353" width="0.2" height="15.0" fill="rgb(227,103,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="469.78" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (3 samples, 0.02%)</title><rect x="591.9" y="417" width="0.3" height="15.0" fill="rgb(205,101,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="594.94" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (8 samples, 0.06%)</title><rect x="47.8" y="513" width="0.7" height="15.0" fill="rgb(231,179,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="50.82" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (53 samples, 0.40%)</title><rect x="724.8" y="593" width="4.8" height="15.0" fill="rgb(242,199,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="727.84" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (7 samples, 0.05%)</title><rect x="20.9" y="449" width="0.6" height="15.0" fill="rgb(231,33,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.90" y="459.5" font-size="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.gopreempt_m (6 samples, 0.05%)</title><rect x="28.5" y="721" width="0.5" height="15.0" fill="rgb(215,185,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="31.46" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (74 samples, 0.56%)</title><rect x="194.9" y="513" width="6.6" height="15.0" fill="rgb(244,56,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="197.86" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (6 samples, 0.05%)</title><rect x="596.8" y="321" width="0.5" height="15.0" fill="rgb(219,131,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="599.80" 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>runtime.gopreempt_m (4 samples, 0.03%)</title><rect x="456.5" y="545" width="0.4" height="15.0" fill="rgb(223,25,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="459.52" y="555.5" font-size="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.gcParkAssist (13 samples, 0.10%)</title><rect x="419.6" y="545" width="1.2" height="15.0" fill="rgb(249,185,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="422.60" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bytes.(*Buffer).grow (25 samples, 0.19%)</title><rect x="479.5" y="673" width="2.2" height="15.0" fill="rgb(250,115,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="482.48" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>time.Time.AppendFormat (6 samples, 0.05%)</title><rect x="358.0" y="513" width="0.6" height="15.0" fill="rgb(249,149,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="361.01" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__audit_syscall_exit (5 samples, 0.04%)</title><rect x="280.3" y="641" width="0.5" height="15.0" fill="rgb(224,157,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.31" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>pick_next_task_fair (2 samples, 0.02%)</title><rect x="440.9" y="385" width="0.1" height="15.0" fill="rgb(206,35,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="443.85" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (10 samples, 0.08%)</title><rect x="599.4" y="337" width="0.9" height="15.0" fill="rgb(218,27,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="602.41" y="347.5" font-size="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.notetsleep_internal (11 samples, 0.08%)</title><rect x="485.2" y="593" width="1.0" height="15.0" fill="rgb(220,32,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="488.24" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (23 samples, 0.18%)</title><rect x="661.0" y="369" width="2.1" height="15.0" fill="rgb(242,134,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="664.00" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="567.5" y="193" width="0.2" height="15.0" fill="rgb(253,130,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="570.54" 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>runtime.gcDrain (2 samples, 0.02%)</title><rect x="974.1" y="625" width="0.2" height="15.0" fill="rgb(250,112,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="977.08" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net/http.glob..func13 (7 samples, 0.05%)</title><rect x="318.1" y="689" width="0.7" height="15.0" fill="rgb(212,65,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="321.12" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (5 samples, 0.04%)</title><rect x="253.1" y="577" width="0.5" height="15.0" fill="rgb(232,93,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="256.11" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>audit_filter_rules (2 samples, 0.02%)</title><rect x="745.8" y="657" width="0.2" height="15.0" fill="rgb(248,211,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="748.82" y="667.5" font-size="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.gcDrain (2 samples, 0.02%)</title><rect x="567.1" y="401" width="0.2" height="15.0" fill="rgb(251,188,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="570.09" y="411.5" font-size="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.(*mcache).refill (3 samples, 0.02%)</title><rect x="307.8" y="673" width="0.2" height="15.0" fill="rgb(208,49,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="310.77" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (7 samples, 0.05%)</title><rect x="49.2" y="593" width="0.6" height="15.0" fill="rgb(231,80,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="52.17" y="603.5" font-size="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.unlock (2 samples, 0.02%)</title><rect x="413.4" y="481" width="0.2" height="15.0" fill="rgb(222,98,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="416.39" y="491.5" font-size="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.stopm (2 samples, 0.02%)</title><rect x="160.3" y="705" width="0.2" height="15.0" fill="rgb(240,206,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="163.28" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="436.3" y="449" width="0.1" height="15.0" fill="rgb(234,82,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.26" y="459.5" font-size="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.findrunnable (23 samples, 0.18%)</title><rect x="574.0" y="449" width="2.1" height="15.0" fill="rgb(248,111,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="577.02" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (3 samples, 0.02%)</title><rect x="375.4" y="321" width="0.3" height="15.0" fill="rgb(225,41,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="378.39" 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>futex_wait_queue_me (2 samples, 0.02%)</title><rect x="434.7" y="385" width="0.2" height="15.0" fill="rgb(226,47,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="437.73" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (5 samples, 0.04%)</title><rect x="517.2" y="337" width="0.5" height="15.0" fill="rgb(229,8,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="520.21" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="31.7" y="513" width="0.2" height="15.0" fill="rgb(232,178,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="34.70" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (2 samples, 0.02%)</title><rect x="517.9" y="321" width="0.2" height="15.0" fill="rgb(233,196,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="520.93" 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>runtime.resetspinning (2 samples, 0.02%)</title><rect x="528.4" y="561" width="0.2" height="15.0" fill="rgb(230,220,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="531.37" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (5 samples, 0.04%)</title><rect x="175.1" y="657" width="0.5" height="15.0" fill="rgb(253,140,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="178.14" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="562.0" y="305" width="0.2" height="15.0" fill="rgb(245,138,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="565.05" 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>runtime.findrunnable (4 samples, 0.03%)</title><rect x="11.9" y="529" width="0.4" height="15.0" fill="rgb(232,130,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.89" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (3 samples, 0.02%)</title><rect x="414.4" y="401" width="0.2" height="15.0" fill="rgb(205,63,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="417.38" y="411.5" font-size="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.goschedImpl (4 samples, 0.03%)</title><rect x="169.0" y="769" width="0.4" height="15.0" fill="rgb(236,213,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="172.01" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (2 samples, 0.02%)</title><rect x="1059.3" y="593" width="0.2" height="15.0" fill="rgb(215,126,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.35" y="603.5" font-size="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.futex (4 samples, 0.03%)</title><rect x="559.9" y="561" width="0.3" height="15.0" fill="rgb(219,2,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="562.89" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="330.5" y="449" width="0.1" height="15.0" fill="rgb(253,102,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="333.46" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (154 samples, 1.18%)</title><rect x="398.3" y="353" width="13.8" height="15.0" fill="rgb(240,157,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="401.26" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (8 samples, 0.06%)</title><rect x="575.1" y="193" width="0.7" height="15.0" fill="rgb(208,29,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="578.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>do_futex (10 samples, 0.08%)</title><rect x="480.6" y="481" width="0.9" height="15.0" fill="rgb(223,9,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="483.65" y="491.5" font-size="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.writebarrierptr_prewrite1 (10 samples, 0.08%)</title><rect x="1189.1" y="833" width="0.9" height="15.0" fill="rgb(247,166,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.10" y="843.5" font-size="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.findrunnable (5 samples, 0.04%)</title><rect x="651.5" y="513" width="0.4" height="15.0" fill="rgb(231,70,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="654.46" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (26 samples, 0.20%)</title><rect x="741.2" y="497" width="2.4" height="15.0" fill="rgb(217,16,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="744.23" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (66 samples, 0.50%)</title><rect x="380.3" y="321" width="5.9" height="15.0" fill="rgb(231,25,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="383.25" 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>x86_pmu_enable (3 samples, 0.02%)</title><rect x="1060.0" y="497" width="0.2" height="15.0" fill="rgb(245,6,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.98" y="507.5" font-size="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.mcall (2 samples, 0.02%)</title><rect x="248.1" y="705" width="0.2" height="15.0" fill="rgb(214,117,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="251.07" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="290.2" y="481" width="0.2" height="15.0" fill="rgb(252,94,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="293.21" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="561.9" y="225" width="0.1" height="15.0" fill="rgb(210,48,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="564.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>runtime.park_m (4 samples, 0.03%)</title><rect x="437.1" y="529" width="0.3" height="15.0" fill="rgb(239,75,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="440.07" y="539.5" font-size="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.morestack (2 samples, 0.02%)</title><rect x="45.5" y="769" width="0.2" height="15.0" fill="rgb(247,80,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="48.48" y="779.5" font-size="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.mallocgc (14 samples, 0.11%)</title><rect x="168.5" y="817" width="1.2" height="15.0" fill="rgb(248,157,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="171.47" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (4 samples, 0.03%)</title><rect x="973.1" y="401" width="0.3" height="15.0" fill="rgb(240,6,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="976.09" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (3 samples, 0.02%)</title><rect x="498.2" y="289" width="0.3" height="15.0" fill="rgb(247,29,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="501.21" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="766.1" y="497" width="0.2" height="15.0" fill="rgb(233,143,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="769.08" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (4 samples, 0.03%)</title><rect x="472.1" y="513" width="0.4" height="15.0" fill="rgb(229,138,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="475.10" y="523.5" font-size="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.schedule (121 samples, 0.92%)</title><rect x="144.4" y="737" width="10.9" height="15.0" fill="rgb(249,208,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="147.43" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (4 samples, 0.03%)</title><rect x="326.1" y="385" width="0.4" height="15.0" fill="rgb(252,140,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="329.14" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (3 samples, 0.02%)</title><rect x="171.4" y="529" width="0.3" height="15.0" fill="rgb(213,38,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="174.45" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule_hrtimeout_range (2 samples, 0.02%)</title><rect x="248.1" y="561" width="0.2" height="15.0" fill="rgb(212,3,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="251.07" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>reflect.Value.Interface (10 samples, 0.08%)</title><rect x="514.6" y="657" width="0.9" height="15.0" fill="rgb(218,115,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="517.60" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (4 samples, 0.03%)</title><rect x="237.0" y="577" width="0.4" height="15.0" fill="rgb(239,90,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="240.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (3 samples, 0.02%)</title><rect x="53.7" y="497" width="0.2" height="15.0" fill="rgb(249,155,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="56.67" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="655.7" y="433" width="0.3" height="15.0" fill="rgb(213,46,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="658.69" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (63 samples, 0.48%)</title><rect x="119.0" y="481" width="5.6" height="15.0" fill="rgb(240,82,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="121.95" y="491.5" font-size="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.gosweepone.func1 (2 samples, 0.02%)</title><rect x="557.5" y="545" width="0.2" height="15.0" fill="rgb(228,187,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="560.55" y="555.5" font-size="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.gcAssistAlloc.func1 (2 samples, 0.02%)</title><rect x="292.2" y="689" width="0.2" height="15.0" fill="rgb(226,191,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="295.19" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>audit_filter_syscall (2 samples, 0.02%)</title><rect x="610.7" y="449" width="0.2" height="15.0" fill="rgb(236,35,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="613.67" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (8 samples, 0.06%)</title><rect x="228.5" y="689" width="0.8" height="15.0" fill="rgb(254,179,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="231.53" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (3 samples, 0.02%)</title><rect x="228.6" y="577" width="0.3" height="15.0" fill="rgb(246,223,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="231.62" y="587.5" font-size="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.step (15 samples, 0.11%)</title><rect x="1178.2" y="625" width="1.4" height="15.0" fill="rgb(222,143,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="1181.20" y="635.5" font-size="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.gcDrainN (2 samples, 0.02%)</title><rect x="376.6" y="609" width="0.1" height="15.0" fill="rgb(251,188,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="379.56" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (3 samples, 0.02%)</title><rect x="112.9" y="577" width="0.3" height="15.0" fill="rgb(222,84,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="115.92" y="587.5" font-size="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.notesleep (3 samples, 0.02%)</title><rect x="261.5" y="577" width="0.3" height="15.0" fill="rgb(254,182,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="264.49" y="587.5" font-size="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.newstack (2 samples, 0.02%)</title><rect x="337.2" y="545" width="0.2" height="15.0" fill="rgb(239,52,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="340.21" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net/http.newTextprotoReader (11 samples, 0.08%)</title><rect x="298.7" y="769" width="1.0" height="15.0" fill="rgb(223,169,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="301.67" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (11 samples, 0.08%)</title><rect x="102.0" y="529" width="1.0" height="15.0" fill="rgb(250,157,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="105.02" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (5 samples, 0.04%)</title><rect x="229.4" y="689" width="0.5" height="15.0" fill="rgb(225,229,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="232.43" y="699.5" font-size="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.futex (3 samples, 0.02%)</title><rect x="691.5" y="593" width="0.3" height="15.0" fill="rgb(225,57,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="694.53" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (13 samples, 0.10%)</title><rect x="175.6" y="705" width="1.2" height="15.0" fill="rgb(214,82,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="178.59" y="715.5" font-size="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.schedule (9 samples, 0.07%)</title><rect x="49.1" y="721" width="0.8" height="15.0" fill="rgb(211,203,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="52.08" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hrtimer_interrupt (2 samples, 0.02%)</title><rect x="492.7" y="209" width="0.2" height="15.0" fill="rgb(218,102,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.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>runtime.gchelper (2 samples, 0.02%)</title><rect x="31.7" y="689" width="0.2" height="15.0" fill="rgb(217,68,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="34.70" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>run_rebalance_domains (3 samples, 0.02%)</title><rect x="1144.9" y="689" width="0.3" height="15.0" fill="rgb(216,114,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="1147.89" y="699.5" font-size="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.(*mcache).releaseAll (3 samples, 0.02%)</title><rect x="985.6" y="657" width="0.3" height="15.0" fill="rgb(219,55,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="988.60" y="667.5" font-size="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.schedule (10 samples, 0.08%)</title><rect x="15.3" y="673" width="0.9" height="15.0" fill="rgb(226,219,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.31" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (9 samples, 0.07%)</title><rect x="47.8" y="577" width="0.8" height="15.0" fill="rgb(248,20,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="50.82" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (2 samples, 0.02%)</title><rect x="691.3" y="529" width="0.2" height="15.0" fill="rgb(253,33,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="694.35" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/github.com/prometheus/client_golang/prometheus.(*value).Write (4 samples, 0.03%)</title><rect x="483.1" y="689" width="0.3" height="15.0" fill="rgb(244,115,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="486.08" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="26.0" y="561" width="0.2" height="15.0" fill="rgb(234,95,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="29.03" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net.sysSocket (12 samples, 0.09%)</title><rect x="433.5" y="609" width="1.0" height="15.0" fill="rgb(209,9,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="436.47" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (3 samples, 0.02%)</title><rect x="376.8" y="593" width="0.3" height="15.0" fill="rgb(206,19,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="379.83" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__netif_receive_skb_core (17 samples, 0.13%)</title><rect x="323.5" y="273" width="1.6" height="15.0" fill="rgb(254,219,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="326.53" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (22 samples, 0.17%)</title><rect x="182.6" y="593" width="2.0" height="15.0" fill="rgb(234,77,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="185.61" y="603.5" font-size="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.mcall (266 samples, 2.03%)</title><rect x="665.9" y="689" width="23.9" height="15.0" fill="rgb(206,35,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="668.87" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >r..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (10 samples, 0.08%)</title><rect x="599.4" y="401" width="0.9" height="15.0" fill="rgb(243,35,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="602.41" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (3 samples, 0.02%)</title><rect x="259.1" y="321" width="0.2" height="15.0" fill="rgb(228,187,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="262.06" 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>runtime.futex (4 samples, 0.03%)</title><rect x="587.0" y="449" width="0.3" height="15.0" fill="rgb(254,13,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="589.99" y="459.5" font-size="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.stopm (6 samples, 0.05%)</title><rect x="691.3" y="625" width="0.6" height="15.0" fill="rgb(242,115,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="694.35" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>wake_up_q (2 samples, 0.02%)</title><rect x="413.7" y="353" width="0.2" height="15.0" fill="rgb(217,59,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="416.75" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>fmt.newPrinter (4 samples, 0.03%)</title><rect x="357.0" y="545" width="0.4" height="15.0" fill="rgb(213,135,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="360.02" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net.IP.String (27 samples, 0.21%)</title><rect x="435.8" y="673" width="2.4" height="15.0" fill="rgb(248,167,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="438.81" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ttwu_do_activate (7 samples, 0.05%)</title><rect x="940.1" y="561" width="0.7" height="15.0" fill="rgb(220,118,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="943.13" y="571.5" font-size="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.mcall (2 samples, 0.02%)</title><rect x="98.3" y="705" width="0.2" height="15.0" fill="rgb(221,162,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="101.33" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (3 samples, 0.02%)</title><rect x="816.1" y="609" width="0.2" height="15.0" fill="rgb(250,98,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="819.06" y="619.5" font-size="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.(*mheap).alloc.func1 (3 samples, 0.02%)</title><rect x="330.8" y="657" width="0.3" height="15.0" fill="rgb(229,86,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="333.82" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (25 samples, 0.19%)</title><rect x="107.9" y="529" width="2.2" height="15.0" fill="rgb(217,193,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="110.88" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (2 samples, 0.02%)</title><rect x="347.4" y="401" width="0.2" height="15.0" fill="rgb(250,221,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="350.39" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (19 samples, 0.14%)</title><rect x="191.6" y="689" width="1.7" height="15.0" fill="rgb(206,201,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="194.61" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="164.9" y="561" width="0.2" height="15.0" fill="rgb(237,151,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="167.87" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ip_local_out (7 samples, 0.05%)</title><rect x="268.8" y="497" width="0.6" height="15.0" fill="rgb(227,61,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="271.78" y="507.5" font-size="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.gosched_m (56 samples, 0.43%)</title><rect x="708.0" y="785" width="5.0" height="15.0" fill="rgb(248,131,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="711.01" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>strings.genSplit (3 samples, 0.02%)</title><rect x="562.6" y="641" width="0.3" height="15.0" fill="rgb(208,163,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="565.59" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="11.3" y="321" width="0.1" height="15.0" fill="rgb(231,56,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.26" 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>sys_futex (2 samples, 0.02%)</title><rect x="647.9" y="449" width="0.1" height="15.0" fill="rgb(214,177,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="650.86" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (4 samples, 0.03%)</title><rect x="448.7" y="545" width="0.3" height="15.0" fill="rgb(223,193,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="451.68" y="555.5" font-size="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.futex (17 samples, 0.13%)</title><rect x="415.7" y="513" width="1.6" height="15.0" fill="rgb(213,43,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="418.73" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (4 samples, 0.03%)</title><rect x="50.5" y="481" width="0.4" height="15.0" fill="rgb(217,137,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="53.52" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (1,019 samples, 7.78%)</title><rect x="834.5" y="561" width="91.8" height="15.0" fill="rgb(221,63,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="837.51" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >finish_tas..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="290.2" y="401" width="0.2" height="15.0" fill="rgb(246,151,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="293.21" y="411.5" font-size="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.futex (79 samples, 0.60%)</title><rect x="239.6" y="689" width="7.1" height="15.0" fill="rgb(239,139,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="242.61" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="588.6" y="321" width="0.2" height="15.0" fill="rgb(229,110,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="591.61" 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>runtime.startm (2 samples, 0.02%)</title><rect x="413.7" y="481" width="0.2" height="15.0" fill="rgb(233,135,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="416.75" y="491.5" font-size="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.mcall (2 samples, 0.02%)</title><rect x="470.4" y="593" width="0.2" height="15.0" fill="rgb(206,45,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="473.38" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (2 samples, 0.02%)</title><rect x="176.8" y="609" width="0.2" height="15.0" fill="rgb(228,72,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="179.85" y="619.5" font-size="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.deductSweepCredit (2 samples, 0.02%)</title><rect x="302.7" y="657" width="0.2" height="15.0" fill="rgb(239,53,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="305.73" y="667.5" font-size="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.usleep (4 samples, 0.03%)</title><rect x="281.8" y="529" width="0.4" height="15.0" fill="rgb(252,161,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.84" y="539.5" font-size="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.systemstack (20 samples, 0.15%)</title><rect x="609.5" y="577" width="1.8" height="15.0" fill="rgb(228,193,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="612.50" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="598.0" y="401" width="0.2" height="15.0" fill="rgb(231,13,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="600.97" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (49 samples, 0.37%)</title><rect x="10.9" y="705" width="4.4" height="15.0" fill="rgb(231,51,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.90" y="715.5" font-size="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.scanframeworker (61 samples, 0.47%)</title><rect x="1177.1" y="673" width="5.5" height="15.0" fill="rgb(224,106,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="1180.12" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="345.7" y="401" width="0.2" height="15.0" fill="rgb(223,81,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="348.68" y="411.5" font-size="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.growslice (3 samples, 0.02%)</title><rect x="460.2" y="657" width="0.3" height="15.0" fill="rgb(244,210,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="463.21" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ip_local_out (9 samples, 0.07%)</title><rect x="312.4" y="433" width="0.8" height="15.0" fill="rgb(214,150,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="315.36" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (94 samples, 0.72%)</title><rect x="193.6" y="673" width="8.5" height="15.0" fill="rgb(229,112,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="196.60" y="683.5" font-size="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.stopm (2 samples, 0.02%)</title><rect x="474.4" y="561" width="0.2" height="15.0" fill="rgb(219,168,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="477.44" y="571.5" font-size="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.sweepone (2 samples, 0.02%)</title><rect x="310.1" y="625" width="0.2" height="15.0" fill="rgb(251,98,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="313.11" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="434.7" y="337" width="0.2" height="15.0" fill="rgb(245,204,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="437.73" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (4 samples, 0.03%)</title><rect x="559.9" y="401" width="0.3" height="15.0" fill="rgb(222,175,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="562.89" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (3 samples, 0.02%)</title><rect x="42.2" y="481" width="0.3" height="15.0" fill="rgb(210,159,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="45.24" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (3 samples, 0.02%)</title><rect x="936.6" y="529" width="0.3" height="15.0" fill="rgb(245,201,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="939.62" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (3 samples, 0.02%)</title><rect x="293.5" y="449" width="0.3" height="15.0" fill="rgb(241,24,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="296.54" y="459.5" font-size="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.semacquire1 (6 samples, 0.05%)</title><rect x="642.1" y="481" width="0.5" height="15.0" fill="rgb(246,146,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="645.09" y="491.5" font-size="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.(*mcentral).cacheSpan (2 samples, 0.02%)</title><rect x="337.8" y="417" width="0.2" height="15.0" fill="rgb(210,137,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="340.84" y="427.5" font-size="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.stopm (2 samples, 0.02%)</title><rect x="30.3" y="657" width="0.1" height="15.0" fill="rgb(234,48,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="33.26" y="667.5" font-size="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.runqsteal (5 samples, 0.04%)</title><rect x="35.2" y="721" width="0.5" height="15.0" fill="rgb(251,67,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="38.21" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="278.1" y="513" width="0.1" height="15.0" fill="rgb(254,176,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="281.05" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>audit_filter_syscall (2 samples, 0.02%)</title><rect x="90.2" y="609" width="0.2" height="15.0" fill="rgb(211,170,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="93.23" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (8 samples, 0.06%)</title><rect x="574.1" y="353" width="0.7" height="15.0" fill="rgb(210,12,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="577.11" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="1006.0" y="401" width="0.2" height="15.0" fill="rgb(254,22,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="1009.04" y="411.5" font-size="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.mapdelete (3 samples, 0.02%)</title><rect x="277.2" y="753" width="0.2" height="15.0" fill="rgb(246,124,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="280.15" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sync.runtime_SemacquireMutex (3 samples, 0.02%)</title><rect x="457.9" y="561" width="0.2" height="15.0" fill="rgb(232,133,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="460.87" y="571.5" font-size="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.(*mcache).refill (2 samples, 0.02%)</title><rect x="506.9" y="513" width="0.2" height="15.0" fill="rgb(215,190,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="509.94" y="523.5" font-size="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.futex (2 samples, 0.02%)</title><rect x="31.7" y="593" width="0.2" height="15.0" fill="rgb(227,157,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="34.70" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="345.7" y="337" width="0.2" height="15.0" fill="rgb(232,131,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="348.68" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (4 samples, 0.03%)</title><rect x="420.8" y="353" width="0.3" height="15.0" fill="rgb(222,151,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="423.77" y="363.5" font-size="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.lock (2 samples, 0.02%)</title><rect x="231.3" y="689" width="0.2" height="15.0" fill="rgb(251,29,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="234.32" y="699.5" font-size="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.morestack (8 samples, 0.06%)</title><rect x="973.9" y="753" width="0.7" height="15.0" fill="rgb(224,6,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="976.90" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (4 samples, 0.03%)</title><rect x="95.4" y="529" width="0.4" height="15.0" fill="rgb(245,113,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="98.45" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="598.0" y="385" width="0.2" height="15.0" fill="rgb(210,216,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="600.97" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>strings.makeCutsetFunc (19 samples, 0.14%)</title><rect x="562.9" y="641" width="1.8" height="15.0" fill="rgb(249,214,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="565.95" y="651.5" font-size="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.findrunnable (2 samples, 0.02%)</title><rect x="22.9" y="657" width="0.2" height="15.0" fill="rgb(224,74,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="25.88" y="667.5" font-size="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.lock (2 samples, 0.02%)</title><rect x="587.9" y="417" width="0.2" height="15.0" fill="rgb(231,123,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="590.89" y="427.5" font-size="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.gosweepone.func1 (6 samples, 0.05%)</title><rect x="354.6" y="433" width="0.5" height="15.0" fill="rgb(248,165,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="357.59" y="443.5" font-size="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.(*mcache).nextFree.func1 (6 samples, 0.05%)</title><rect x="523.1" y="625" width="0.5" height="15.0" fill="rgb(239,55,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="526.06" y="635.5" font-size="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.newstack (8 samples, 0.06%)</title><rect x="460.5" y="641" width="0.7" height="15.0" fill="rgb(248,2,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="463.48" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (4 samples, 0.03%)</title><rect x="18.9" y="401" width="0.4" height="15.0" fill="rgb(221,22,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.91" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (3 samples, 0.02%)</title><rect x="538.0" y="337" width="0.3" height="15.0" fill="rgb(236,200,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="541.01" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/github.com/go-kit/kit/log.logfmtLogger.Log (90 samples, 0.69%)</title><rect x="450.0" y="641" width="8.1" height="15.0" fill="rgb(209,212,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="453.04" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tcp_send_mss (3 samples, 0.02%)</title><rect x="325.4" y="529" width="0.3" height="15.0" fill="rgb(251,167,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="328.42" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (2 samples, 0.02%)</title><rect x="145.8" y="481" width="0.2" height="15.0" fill="rgb(241,107,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="148.78" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule_hrtimeout_range_clock (2 samples, 0.02%)</title><rect x="595.1" y="273" width="0.2" height="15.0" fill="rgb(250,45,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="598.09" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (3 samples, 0.02%)</title><rect x="691.9" y="593" width="0.3" height="15.0" fill="rgb(212,34,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="694.89" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="548.9" y="433" width="0.2" height="15.0" fill="rgb(254,117,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="551.90" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>syscall.Syscall (15 samples, 0.11%)</title><rect x="268.4" y="689" width="1.4" height="15.0" fill="rgb(219,76,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="271.42" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (21 samples, 0.16%)</title><rect x="157.5" y="529" width="1.9" height="15.0" fill="rgb(252,187,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="160.49" y="539.5" font-size="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.semacquire (2 samples, 0.02%)</title><rect x="546.5" y="625" width="0.2" height="15.0" fill="rgb(219,109,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="549.47" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (7 samples, 0.05%)</title><rect x="51.2" y="513" width="0.7" height="15.0" fill="rgb(247,13,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="54.24" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (2 samples, 0.02%)</title><rect x="653.5" y="497" width="0.2" height="15.0" fill="rgb(243,68,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="656.53" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (3 samples, 0.02%)</title><rect x="174.8" y="609" width="0.2" height="15.0" fill="rgb(223,68,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="177.78" y="619.5" font-size="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.stopTheWorldWithSema (6 samples, 0.05%)</title><rect x="369.8" y="561" width="0.5" height="15.0" fill="rgb(252,14,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="372.81" y="571.5" font-size="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.gcAssistAlloc.func1 (3 samples, 0.02%)</title><rect x="332.9" y="641" width="0.3" height="15.0" fill="rgb(242,52,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="335.89" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (2 samples, 0.02%)</title><rect x="671.8" y="433" width="0.2" height="15.0" fill="rgb(222,176,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="674.81" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (2 samples, 0.02%)</title><rect x="423.2" y="417" width="0.2" height="15.0" fill="rgb(239,36,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="426.20" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (13 samples, 0.10%)</title><rect x="710.6" y="577" width="1.2" height="15.0" fill="rgb(205,0,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="713.62" y="587.5" font-size="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.gcAssistAlloc (3 samples, 0.02%)</title><rect x="357.5" y="481" width="0.2" height="15.0" fill="rgb(242,28,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="360.47" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (4 samples, 0.03%)</title><rect x="252.4" y="657" width="0.4" height="15.0" fill="rgb(231,41,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="255.39" y="667.5" font-size="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.lock (3 samples, 0.02%)</title><rect x="644.0" y="401" width="0.3" height="15.0" fill="rgb(244,117,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="646.99" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (8 samples, 0.06%)</title><rect x="230.4" y="689" width="0.7" height="15.0" fill="rgb(206,51,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="233.42" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (12 samples, 0.09%)</title><rect x="439.8" y="337" width="1.1" height="15.0" fill="rgb(223,39,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="442.77" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (4 samples, 0.03%)</title><rect x="17.1" y="497" width="0.4" height="15.0" fill="rgb(243,190,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.11" y="507.5" font-size="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.futex (2 samples, 0.02%)</title><rect x="15.5" y="609" width="0.2" height="15.0" fill="rgb(252,95,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.49" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>poll_schedule_timeout (237 samples, 1.81%)</title><rect x="60.1" y="641" width="21.3" height="15.0" fill="rgb(248,182,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="63.06" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>runtime.growslice (21 samples, 0.16%)</title><rect x="643.1" y="561" width="1.9" height="15.0" fill="rgb(245,35,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="646.09" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (2 samples, 0.02%)</title><rect x="566.4" y="225" width="0.1" height="15.0" fill="rgb(209,147,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="569.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>runtime.newproc.func1 (2 samples, 0.02%)</title><rect x="465.8" y="673" width="0.2" height="15.0" fill="rgb(252,204,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="468.79" y="683.5" font-size="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.(*mcache).refill (3 samples, 0.02%)</title><rect x="430.3" y="609" width="0.3" height="15.0" fill="rgb(236,85,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="433.32" y="619.5" font-size="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.notesleep (4 samples, 0.03%)</title><rect x="89.8" y="673" width="0.3" height="15.0" fill="rgb(236,5,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="92.78" y="683.5" font-size="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.wakep (3 samples, 0.02%)</title><rect x="247.4" y="721" width="0.3" height="15.0" fill="rgb(218,160,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="250.44" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (6 samples, 0.05%)</title><rect x="290.7" y="529" width="0.5" height="15.0" fill="rgb(211,191,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="293.66" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>poll_schedule_timeout (2 samples, 0.02%)</title><rect x="330.5" y="497" width="0.1" height="15.0" fill="rgb(211,62,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="333.46" y="507.5" font-size="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.notesleep (2 samples, 0.02%)</title><rect x="12.7" y="513" width="0.2" height="15.0" fill="rgb(234,220,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="15.70" y="523.5" font-size="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.findrunnable (2 samples, 0.02%)</title><rect x="276.6" y="465" width="0.2" height="15.0" fill="rgb(240,150,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="279.61" y="475.5" font-size="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.findrunnable (8 samples, 0.06%)</title><rect x="594.6" y="449" width="0.7" height="15.0" fill="rgb(212,116,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="597.55" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (79 samples, 0.60%)</title><rect x="239.6" y="657" width="7.1" height="15.0" fill="rgb(224,182,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="242.61" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (2 samples, 0.02%)</title><rect x="969.5" y="337" width="0.2" height="15.0" fill="rgb(248,188,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="972.49" y="347.5" font-size="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.unlock (2 samples, 0.02%)</title><rect x="52.1" y="673" width="0.2" height="15.0" fill="rgb(244,43,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="55.14" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (3 samples, 0.02%)</title><rect x="286.1" y="401" width="0.2" height="15.0" fill="rgb(245,146,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="289.07" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (4 samples, 0.03%)</title><rect x="175.2" y="529" width="0.4" height="15.0" fill="rgb(247,76,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="178.23" y="539.5" font-size="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.gcAssistAlloc (3 samples, 0.02%)</title><rect x="348.6" y="625" width="0.2" height="15.0" fill="rgb(218,70,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="351.56" y="635.5" font-size="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.morestack (8 samples, 0.06%)</title><rect x="1189.3" y="817" width="0.7" height="15.0" fill="rgb(208,145,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.28" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (5 samples, 0.04%)</title><rect x="496.5" y="417" width="0.4" height="15.0" fill="rgb(222,77,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="499.50" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>audit_filter_syscall (3 samples, 0.02%)</title><rect x="21.7" y="561" width="0.3" height="15.0" fill="rgb(237,105,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.71" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (9 samples, 0.07%)</title><rect x="47.8" y="561" width="0.8" height="15.0" fill="rgb(238,169,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="50.82" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule_hrtimeout_range (2 samples, 0.02%)</title><rect x="330.5" y="481" width="0.1" height="15.0" fill="rgb(213,178,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="333.46" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (2 samples, 0.02%)</title><rect x="456.7" y="289" width="0.2" height="15.0" fill="rgb(214,194,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="459.70" y="299.5" font-size="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.usleep (10 samples, 0.08%)</title><rect x="567.9" y="417" width="0.9" height="15.0" fill="rgb(224,49,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="570.90" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (3 samples, 0.02%)</title><rect x="51.9" y="497" width="0.2" height="15.0" fill="rgb(241,33,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="54.87" y="507.5" font-size="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.(*mcentral).grow (2 samples, 0.02%)</title><rect x="315.3" y="593" width="0.2" height="15.0" fill="rgb(205,129,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.33" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (2 samples, 0.02%)</title><rect x="598.2" y="257" width="0.2" height="15.0" fill="rgb(226,138,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="601.24" 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>internal/poll.runtime_pollClose (4 samples, 0.03%)</title><rect x="311.1" y="673" width="0.4" height="15.0" fill="rgb(205,219,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="314.10" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (3 samples, 0.02%)</title><rect x="53.7" y="513" width="0.2" height="15.0" fill="rgb(216,211,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="56.67" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="20.3" y="625" width="0.2" height="15.0" fill="rgb(207,191,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.26" y="635.5" font-size="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.mcall (2 samples, 0.02%)</title><rect x="14.9" y="689" width="0.1" height="15.0" fill="rgb(207,174,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.86" y="699.5" font-size="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.stopm (2 samples, 0.02%)</title><rect x="13.8" y="577" width="0.2" height="15.0" fill="rgb(228,97,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.78" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (4 samples, 0.03%)</title><rect x="637.0" y="257" width="0.3" height="15.0" fill="rgb(223,206,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="639.96" 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>do_syscall_64 (181 samples, 1.38%)</title><rect x="941.9" y="689" width="16.3" height="15.0" fill="rgb(215,210,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="944.93" y="699.5" font-size="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.stopm (3 samples, 0.02%)</title><rect x="516.4" y="513" width="0.3" height="15.0" fill="rgb(254,77,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="519.40" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="18.5" y="625" width="0.1" height="15.0" fill="rgb(246,114,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.46" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="373.8" y="513" width="0.1" height="15.0" fill="rgb(220,142,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="376.77" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (4 samples, 0.03%)</title><rect x="237.0" y="529" width="0.4" height="15.0" fill="rgb(208,62,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="240.00" y="539.5" font-size="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.park_m (2 samples, 0.02%)</title><rect x="24.5" y="737" width="0.2" height="15.0" fill="rgb(240,221,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="27.50" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (5 samples, 0.04%)</title><rect x="499.8" y="353" width="0.5" height="15.0" fill="rgb(232,123,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="502.83" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (9 samples, 0.07%)</title><rect x="41.2" y="625" width="0.9" height="15.0" fill="rgb(224,123,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="44.24" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (3 samples, 0.02%)</title><rect x="12.0" y="465" width="0.3" height="15.0" fill="rgb(244,74,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.98" y="475.5" font-size="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_hard_start_xmit (2 samples, 0.02%)</title><rect x="429.2" y="177" width="0.2" height="15.0" fill="rgb(234,221,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="432.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>runtime.futex (2 samples, 0.02%)</title><rect x="341.5" y="433" width="0.2" height="15.0" fill="rgb(233,15,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="344.53" y="443.5" font-size="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.sweepone (2 samples, 0.02%)</title><rect x="663.7" y="577" width="0.2" height="15.0" fill="rgb(240,107,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="666.70" y="587.5" font-size="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.epollwait (4 samples, 0.03%)</title><rect x="144.4" y="705" width="0.4" height="15.0" fill="rgb(249,173,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="147.43" y="715.5" font-size="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.findrunnable (3 samples, 0.02%)</title><rect x="351.3" y="513" width="0.2" height="15.0" fill="rgb(240,177,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="354.26" y="523.5" font-size="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.semacquire1 (2 samples, 0.02%)</title><rect x="462.2" y="641" width="0.2" height="15.0" fill="rgb(252,82,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="465.19" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (2 samples, 0.02%)</title><rect x="562.0" y="385" width="0.2" height="15.0" fill="rgb(206,202,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="565.05" y="395.5" font-size="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.semacquire1 (2 samples, 0.02%)</title><rect x="270.0" y="689" width="0.2" height="15.0" fill="rgb(240,154,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="273.04" y="699.5" font-size="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.findrunnable (2 samples, 0.02%)</title><rect x="163.2" y="721" width="0.1" height="15.0" fill="rgb(206,12,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="166.16" y="731.5" font-size="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.goschedImpl (4 samples, 0.03%)</title><rect x="542.5" y="593" width="0.4" height="15.0" fill="rgb(240,15,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="545.51" y="603.5" font-size="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.notesleep (2 samples, 0.02%)</title><rect x="969.5" y="449" width="0.2" height="15.0" fill="rgb(214,107,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="972.49" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (3 samples, 0.02%)</title><rect x="689.0" y="497" width="0.3" height="15.0" fill="rgb(249,227,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="692.01" y="507.5" font-size="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.(*mspan).sweep (2 samples, 0.02%)</title><rect x="577.2" y="401" width="0.2" height="15.0" fill="rgb(207,147,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="580.17" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (7 samples, 0.05%)</title><rect x="563.0" y="465" width="0.7" height="15.0" fill="rgb(230,221,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="566.04" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>exit_to_usermode_loop (4 samples, 0.03%)</title><rect x="268.4" y="641" width="0.4" height="15.0" fill="rgb(210,149,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="271.42" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (5 samples, 0.04%)</title><rect x="40.3" y="609" width="0.5" height="15.0" fill="rgb(235,180,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="43.34" y="619.5" font-size="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.mallocgc (4 samples, 0.03%)</title><rect x="465.2" y="657" width="0.3" height="15.0" fill="rgb(216,121,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="468.16" y="667.5" font-size="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.getArgInfo (2 samples, 0.02%)</title><rect x="1183.2" y="689" width="0.1" height="15.0" fill="rgb(227,83,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="1186.16" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/github.com/go-kit/kit/log.bindValues (11 samples, 0.08%)</title><rect x="342.0" y="625" width="1.0" height="15.0" fill="rgb(219,74,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="344.98" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (4 samples, 0.03%)</title><rect x="636.2" y="385" width="0.3" height="15.0" fill="rgb(253,189,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="639.15" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="500.3" y="433" width="0.2" height="15.0" fill="rgb(205,39,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="503.28" y="443.5" font-size="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.stopm (6 samples, 0.05%)</title><rect x="974.1" y="657" width="0.5" height="15.0" fill="rgb(228,119,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="977.08" y="667.5" font-size="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.schedule (2 samples, 0.02%)</title><rect x="162.4" y="753" width="0.1" height="15.0" fill="rgb(212,226,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="165.35" y="763.5" font-size="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.(*Func).FileLine (6 samples, 0.05%)</title><rect x="453.6" y="433" width="0.6" height="15.0" fill="rgb(236,150,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="456.64" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (258 samples, 1.97%)</title><rect x="1029.4" y="529" width="23.2" height="15.0" fill="rgb(220,221,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="1032.37" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >x..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (3 samples, 0.02%)</title><rect x="1185.0" y="497" width="0.3" height="15.0" fill="rgb(225,130,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="1188.05" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="766.1" y="481" width="0.2" height="15.0" fill="rgb(242,189,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="769.08" y="491.5" font-size="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.gcParkAssist (5 samples, 0.04%)</title><rect x="647.1" y="577" width="0.5" height="15.0" fill="rgb(238,76,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="650.14" y="587.5" font-size="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.gopreempt_m (194 samples, 1.48%)</title><rect x="230.2" y="785" width="17.5" height="15.0" fill="rgb(229,210,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="233.24" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (4 samples, 0.03%)</title><rect x="587.0" y="353" width="0.3" height="15.0" fill="rgb(231,88,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="589.99" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (9 samples, 0.07%)</title><rect x="170.1" y="513" width="0.8" height="15.0" fill="rgb(211,139,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="173.09" y="523.5" font-size="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.(*mheap).alloc_m (6 samples, 0.05%)</title><rect x="482.0" y="529" width="0.5" height="15.0" fill="rgb(220,1,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="485.00" y="539.5" font-size="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.usleep (11 samples, 0.08%)</title><rect x="574.8" y="401" width="1.0" height="15.0" fill="rgb(248,107,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="577.83" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (4 samples, 0.03%)</title><rect x="295.7" y="545" width="0.4" height="15.0" fill="rgb(250,124,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="298.70" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>poll_schedule_timeout (4 samples, 0.03%)</title><rect x="353.9" y="273" width="0.3" height="15.0" fill="rgb(246,130,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="356.87" y="283.5" font-size="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.goschedImpl (3 samples, 0.02%)</title><rect x="266.7" y="689" width="0.3" height="15.0" fill="rgb(250,118,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="269.71" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__wake_up_sync_key (2 samples, 0.02%)</title><rect x="324.6" y="113" width="0.2" height="15.0" fill="rgb(225,18,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="327.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>__schedule (2 samples, 0.02%)</title><rect x="311.6" y="449" width="0.1" height="15.0" fill="rgb(246,55,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="314.55" y="459.5" font-size="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.systemstack (2 samples, 0.02%)</title><rect x="652.3" y="529" width="0.1" height="15.0" fill="rgb(225,95,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="655.27" y="539.5" font-size="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.stopm (5 samples, 0.04%)</title><rect x="442.0" y="529" width="0.5" height="15.0" fill="rgb(250,195,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="445.02" y="539.5" font-size="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.assertE2I2 (4 samples, 0.03%)</title><rect x="511.9" y="593" width="0.4" height="15.0" fill="rgb(211,40,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="514.89" y="603.5" font-size="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.mcall (3 samples, 0.02%)</title><rect x="269.5" y="673" width="0.3" height="15.0" fill="rgb(206,196,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="272.50" y="683.5" font-size="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.makemap (2 samples, 0.02%)</title><rect x="464.4" y="689" width="0.2" height="15.0" fill="rgb(231,196,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="467.44" y="699.5" font-size="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.mallocgc (2 samples, 0.02%)</title><rect x="482.7" y="625" width="0.2" height="15.0" fill="rgb(222,201,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="485.72" y="635.5" font-size="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.stopm (4 samples, 0.03%)</title><rect x="181.3" y="737" width="0.4" height="15.0" fill="rgb(205,197,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="184.35" y="747.5" font-size="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.lock (5 samples, 0.04%)</title><rect x="112.7" y="705" width="0.5" height="15.0" fill="rgb(228,30,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="115.74" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>_raw_spin_lock_irqsave (3 samples, 0.02%)</title><rect x="965.2" y="385" width="0.2" height="15.0" fill="rgb(227,52,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="968.17" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="671.8" y="465" width="0.2" height="15.0" fill="rgb(244,173,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="674.81" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (3 samples, 0.02%)</title><rect x="259.1" y="513" width="0.2" height="15.0" fill="rgb(208,2,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="262.06" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (20 samples, 0.15%)</title><rect x="698.1" y="705" width="1.8" height="15.0" fill="rgb(254,170,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="701.10" y="715.5" font-size="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.futex (10 samples, 0.08%)</title><rect x="26.2" y="673" width="0.9" height="15.0" fill="rgb(241,109,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="29.21" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>fmt.(*pp).handleMethods (10 samples, 0.08%)</title><rect x="453.5" y="481" width="0.9" height="15.0" fill="rgb(229,177,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="456.55" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (2 samples, 0.02%)</title><rect x="971.5" y="449" width="0.1" height="15.0" fill="rgb(236,225,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="974.47" y="459.5" font-size="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.mcall (4 samples, 0.03%)</title><rect x="517.7" y="577" width="0.4" height="15.0" fill="rgb(246,64,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="520.75" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (2 samples, 0.02%)</title><rect x="14.1" y="481" width="0.2" height="15.0" fill="rgb(232,127,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.14" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tcp_v4_do_rcv (10 samples, 0.08%)</title><rect x="323.9" y="177" width="0.9" height="15.0" fill="rgb(210,134,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="326.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>__perf_event_task_sched_in (3 samples, 0.02%)</title><rect x="645.6" y="321" width="0.3" height="15.0" fill="rgb(218,188,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="648.61" 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>github.com/prometheus/blackbox_exporter/vendor/gopkg.in/yaml%2ev2.isZero (3 samples, 0.02%)</title><rect x="512.4" y="577" width="0.3" height="15.0" fill="rgb(218,102,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="515.43" y="587.5" font-size="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.wakep (6 samples, 0.05%)</title><rect x="1058.2" y="753" width="0.5" height="15.0" fill="rgb(241,45,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="1061.18" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (10 samples, 0.08%)</title><rect x="567.9" y="401" width="0.9" height="15.0" fill="rgb(251,62,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="570.90" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (2 samples, 0.02%)</title><rect x="18.5" y="465" width="0.1" height="15.0" fill="rgb(252,103,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.46" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="1006.0" y="513" width="0.2" height="15.0" fill="rgb(223,96,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="1009.04" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (3 samples, 0.02%)</title><rect x="474.2" y="369" width="0.2" height="15.0" fill="rgb(212,73,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="477.17" y="379.5" font-size="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.gcAssistAlloc.func1 (2 samples, 0.02%)</title><rect x="376.6" y="641" width="0.1" height="15.0" fill="rgb(249,166,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="379.56" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (3 samples, 0.02%)</title><rect x="527.3" y="353" width="0.3" height="15.0" fill="rgb(233,182,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="530.29" y="363.5" font-size="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.futex (7 samples, 0.05%)</title><rect x="386.8" y="449" width="0.7" height="15.0" fill="rgb(215,101,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="389.83" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (2 samples, 0.02%)</title><rect x="24.1" y="609" width="0.2" height="15.0" fill="rgb(222,19,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="27.14" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tcp_fin (2 samples, 0.02%)</title><rect x="312.8" y="113" width="0.2" height="15.0" fill="rgb(217,0,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="315.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.schedule (2 samples, 0.02%)</title><rect x="12.7" y="561" width="0.2" height="15.0" fill="rgb(222,114,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="15.70" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (3 samples, 0.02%)</title><rect x="260.3" y="481" width="0.3" height="15.0" fill="rgb(251,228,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="263.32" y="491.5" font-size="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.systemstack (6 samples, 0.05%)</title><rect x="577.5" y="481" width="0.6" height="15.0" fill="rgb(225,107,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="580.53" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>smp_apic_timer_interrupt (7 samples, 0.05%)</title><rect x="1144.9" y="737" width="0.6" height="15.0" fill="rgb(233,22,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="1147.89" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (5 samples, 0.04%)</title><rect x="1059.5" y="561" width="0.5" height="15.0" fill="rgb(208,39,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.53" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="278.4" y="513" width="0.2" height="15.0" fill="rgb(211,10,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="281.42" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="605.0" y="385" width="0.3" height="15.0" fill="rgb(240,61,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="608.00" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="971.5" y="369" width="0.1" height="15.0" fill="rgb(226,145,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="974.47" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (8 samples, 0.06%)</title><rect x="986.4" y="497" width="0.7" height="15.0" fill="rgb(239,211,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="989.42" y="507.5" font-size="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.newobject (18 samples, 0.14%)</title><rect x="563.0" y="625" width="1.7" height="15.0" fill="rgb(233,28,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="566.04" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (2 samples, 0.02%)</title><rect x="13.2" y="465" width="0.2" height="15.0" fill="rgb(206,133,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.24" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (6 samples, 0.05%)</title><rect x="15.7" y="513" width="0.5" height="15.0" fill="rgb(207,127,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.67" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (2 samples, 0.02%)</title><rect x="644.6" y="177" width="0.2" height="15.0" fill="rgb(236,22,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="647.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>return_from_SYSCALL_64 (3 samples, 0.02%)</title><rect x="414.4" y="465" width="0.2" height="15.0" fill="rgb(238,24,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="417.38" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (4 samples, 0.03%)</title><rect x="232.0" y="657" width="0.4" height="15.0" fill="rgb(210,117,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="235.04" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (4 samples, 0.03%)</title><rect x="95.1" y="513" width="0.3" height="15.0" fill="rgb(249,97,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="98.09" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (3 samples, 0.02%)</title><rect x="20.3" y="593" width="0.2" height="15.0" fill="rgb(245,215,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.26" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (409 samples, 3.12%)</title><rect x="1016.9" y="689" width="36.9" height="15.0" fill="rgb(238,147,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1019.94" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do_..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (4 samples, 0.03%)</title><rect x="460.8" y="497" width="0.4" height="15.0" fill="rgb(242,27,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="463.84" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (3 samples, 0.02%)</title><rect x="112.9" y="481" width="0.3" height="15.0" fill="rgb(242,206,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="115.92" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (2 samples, 0.02%)</title><rect x="470.7" y="305" width="0.2" height="15.0" fill="rgb(208,150,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="473.74" 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>syscall.RawSyscall (12 samples, 0.09%)</title><rect x="433.5" y="577" width="1.0" height="15.0" fill="rgb(252,78,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="436.47" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="176.8" y="625" width="0.2" height="15.0" fill="rgb(209,221,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="179.85" y="635.5" font-size="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.goparkunlock (2 samples, 0.02%)</title><rect x="317.6" y="641" width="0.2" height="15.0" fill="rgb(234,167,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.58" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__audit_syscall_exit (2 samples, 0.02%)</title><rect x="290.5" y="561" width="0.2" height="15.0" fill="rgb(209,228,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="293.48" y="571.5" font-size="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.findrunnable (3 samples, 0.02%)</title><rect x="19.8" y="561" width="0.3" height="15.0" fill="rgb(219,123,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="22.81" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (14 samples, 0.11%)</title><rect x="101.8" y="657" width="1.2" height="15.0" fill="rgb(243,166,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="104.75" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (5 samples, 0.04%)</title><rect x="175.1" y="689" width="0.5" height="15.0" fill="rgb(236,28,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="178.14" y="699.5" font-size="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.newobject (9 samples, 0.07%)</title><rect x="309.7" y="769" width="0.8" height="15.0" fill="rgb(251,146,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="312.66" y="779.5" font-size="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.gopreempt_m (6 samples, 0.05%)</title><rect x="664.4" y="721" width="0.6" height="15.0" fill="rgb(230,149,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="667.43" y="731.5" font-size="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.mcall (4 samples, 0.03%)</title><rect x="469.0" y="609" width="0.4" height="15.0" fill="rgb(220,115,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="472.03" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>inet_sendmsg (7 samples, 0.05%)</title><rect x="268.8" y="561" width="0.6" height="15.0" fill="rgb(239,60,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="271.78" y="571.5" font-size="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.newstack (2 samples, 0.02%)</title><rect x="456.3" y="545" width="0.2" height="15.0" fill="rgb(229,131,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="459.34" y="555.5" font-size="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.mapassign_faststr (2 samples, 0.02%)</title><rect x="650.9" y="625" width="0.2" height="15.0" fill="rgb(242,113,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="653.92" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (905 samples, 6.91%)</title><rect x="844.6" y="481" width="81.5" height="15.0" fill="rgb(208,142,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="847.60" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__intel_p..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>retint_user (2 samples, 0.02%)</title><rect x="458.5" y="545" width="0.2" height="15.0" fill="rgb(244,90,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="461.50" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (3 samples, 0.02%)</title><rect x="279.0" y="609" width="0.2" height="15.0" fill="rgb(237,216,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="281.96" y="619.5" font-size="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.park_m (4 samples, 0.03%)</title><rect x="159.9" y="753" width="0.4" height="15.0" fill="rgb(207,56,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="162.92" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (5 samples, 0.04%)</title><rect x="229.4" y="497" width="0.5" height="15.0" fill="rgb(246,162,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="232.43" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="48.6" y="561" width="0.2" height="15.0" fill="rgb(252,139,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="51.63" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>audit_filter_rules (2 samples, 0.02%)</title><rect x="567.4" y="321" width="0.1" height="15.0" fill="rgb(245,119,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="570.36" 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>__schedule (13 samples, 0.10%)</title><rect x="710.6" y="561" width="1.2" height="15.0" fill="rgb(239,171,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="713.62" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/github.com/golang/protobuf/proto.(*Buffer).enc_struct (2 samples, 0.02%)</title><rect x="162.5" y="737" width="0.2" height="15.0" fill="rgb(252,164,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="165.53" y="747.5" font-size="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.gcBgMarkWorker (5 samples, 0.04%)</title><rect x="165.1" y="817" width="0.5" height="15.0" fill="rgb(249,173,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="168.14" y="827.5" font-size="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.(*mcache).nextFree.func1 (5 samples, 0.04%)</title><rect x="595.4" y="545" width="0.4" height="15.0" fill="rgb(250,193,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="598.36" y="555.5" font-size="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.newstack (3 samples, 0.02%)</title><rect x="509.1" y="529" width="0.3" height="15.0" fill="rgb(222,18,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="512.10" y="539.5" font-size="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.goschedImpl (4 samples, 0.03%)</title><rect x="473.7" y="577" width="0.4" height="15.0" fill="rgb(248,188,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="476.72" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>audit_filter_syscall (8 samples, 0.06%)</title><rect x="702.7" y="625" width="0.7" height="15.0" fill="rgb(250,118,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="705.69" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (3 samples, 0.02%)</title><rect x="529.7" y="561" width="0.3" height="15.0" fill="rgb(226,196,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="532.72" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>consume_skb (3 samples, 0.02%)</title><rect x="429.5" y="225" width="0.3" height="15.0" fill="rgb(243,119,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="432.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>runtime.makeslice (2 samples, 0.02%)</title><rect x="315.3" y="689" width="0.2" height="15.0" fill="rgb(208,216,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.33" y="699.5" font-size="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.lock (3 samples, 0.02%)</title><rect x="1006.0" y="641" width="0.2" height="15.0" fill="rgb(222,154,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="1008.95" y="651.5" font-size="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.stopm (5 samples, 0.04%)</title><rect x="498.9" y="465" width="0.5" height="15.0" fill="rgb(252,153,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="501.93" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="45.3" y="545" width="0.2" height="15.0" fill="rgb(249,10,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="48.30" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (4 samples, 0.03%)</title><rect x="473.7" y="321" width="0.4" height="15.0" fill="rgb(244,44,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="476.72" 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>runtime.netpollblock (266 samples, 2.03%)</title><rect x="665.9" y="705" width="23.9" height="15.0" fill="rgb(227,110,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="668.87" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >r..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (5 samples, 0.04%)</title><rect x="471.6" y="305" width="0.5" height="15.0" fill="rgb(224,90,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="474.65" 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>runtime.runqgrab (4 samples, 0.03%)</title><rect x="281.8" y="545" width="0.4" height="15.0" fill="rgb(231,162,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.84" y="555.5" font-size="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.gcParkAssist (5 samples, 0.04%)</title><rect x="344.3" y="593" width="0.5" height="15.0" fill="rgb(245,45,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="347.33" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/github.com/go-kit/kit/log.Caller.func1 (15 samples, 0.11%)</title><rect x="458.1" y="641" width="1.4" height="15.0" fill="rgb(217,66,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="461.14" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (8 samples, 0.06%)</title><rect x="280.8" y="529" width="0.7" height="15.0" fill="rgb(239,168,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.76" y="539.5" font-size="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.startm (2 samples, 0.02%)</title><rect x="673.5" y="609" width="0.2" height="15.0" fill="rgb(234,193,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="676.52" y="619.5" font-size="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.runqgrab (3 samples, 0.02%)</title><rect x="543.9" y="465" width="0.2" height="15.0" fill="rgb(231,112,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="546.86" y="475.5" font-size="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.nanotime (2 samples, 0.02%)</title><rect x="53.9" y="737" width="0.2" height="15.0" fill="rgb(245,55,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="56.94" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="165.7" y="577" width="0.2" height="15.0" fill="rgb(206,12,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="168.68" y="587.5" font-size="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.newobject (8 samples, 0.06%)</title><rect x="556.4" y="641" width="0.7" height="15.0" fill="rgb(209,209,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="559.37" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sort.insertionSort (4 samples, 0.03%)</title><rect x="486.5" y="625" width="0.4" height="15.0" fill="rgb(241,214,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="489.50" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (2 samples, 0.02%)</title><rect x="344.6" y="305" width="0.2" height="15.0" fill="rgb(234,87,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="347.60" 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>runtime.exitsyscall0 (25 samples, 0.19%)</title><rect x="174.5" y="801" width="2.3" height="15.0" fill="rgb(233,131,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="177.51" y="811.5" font-size="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.typedslicecopy.func1 (3 samples, 0.02%)</title><rect x="372.4" y="625" width="0.3" height="15.0" fill="rgb(221,34,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="375.42" y="635.5" font-size="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.notesleep (2 samples, 0.02%)</title><rect x="250.0" y="705" width="0.1" height="15.0" fill="rgb(248,91,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="252.96" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net/http.(*connReader).Read (27 samples, 0.21%)</title><rect x="300.0" y="689" width="2.5" height="15.0" fill="rgb(211,1,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="303.03" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (2 samples, 0.02%)</title><rect x="330.5" y="401" width="0.1" height="15.0" fill="rgb(246,191,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="333.46" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (2 samples, 0.02%)</title><rect x="144.6" y="545" width="0.2" height="15.0" fill="rgb(250,67,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="147.61" y="555.5" font-size="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.futex (5 samples, 0.04%)</title><rect x="171.3" y="689" width="0.4" height="15.0" fill="rgb(238,116,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="174.27" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>rb_erase (4 samples, 0.03%)</title><rect x="957.7" y="561" width="0.4" height="15.0" fill="rgb(216,30,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="960.69" y="571.5" font-size="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.sweepone (36 samples, 0.27%)</title><rect x="619.5" y="497" width="3.2" height="15.0" fill="rgb(223,186,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="622.49" y="507.5" font-size="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.notesleep (2 samples, 0.02%)</title><rect x="651.9" y="449" width="0.2" height="15.0" fill="rgb(234,162,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="654.91" y="459.5" font-size="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.newstack (14 samples, 0.11%)</title><rect x="292.6" y="753" width="1.2" height="15.0" fill="rgb(226,1,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="295.55" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wake (2 samples, 0.02%)</title><rect x="673.5" y="497" width="0.2" height="15.0" fill="rgb(250,151,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="676.52" y="507.5" font-size="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.gcDrainN (3 samples, 0.02%)</title><rect x="375.0" y="593" width="0.3" height="15.0" fill="rgb(229,6,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="378.03" y="603.5" font-size="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.runqgrab (2 samples, 0.02%)</title><rect x="97.3" y="641" width="0.2" height="15.0" fill="rgb(230,169,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="100.34" y="651.5" font-size="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.stopm (4 samples, 0.03%)</title><rect x="565.0" y="577" width="0.4" height="15.0" fill="rgb(244,117,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.02" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>deactivate_task (3 samples, 0.02%)</title><rect x="773.1" y="561" width="0.3" height="15.0" fill="rgb(238,15,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="776.11" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="265.0" y="577" width="0.2" height="15.0" fill="rgb(210,16,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="268.00" y="587.5" font-size="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.gcStart (3 samples, 0.02%)</title><rect x="551.6" y="641" width="0.3" height="15.0" fill="rgb(235,96,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="554.60" y="651.5" font-size="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.unlock (2 samples, 0.02%)</title><rect x="518.9" y="577" width="0.2" height="15.0" fill="rgb(230,146,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="521.92" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (11 samples, 0.08%)</title><rect x="524.5" y="369" width="1.0" height="15.0" fill="rgb(241,71,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="527.50" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (3 samples, 0.02%)</title><rect x="174.1" y="625" width="0.3" height="15.0" fill="rgb(207,83,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="177.15" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (3 samples, 0.02%)</title><rect x="178.1" y="497" width="0.3" height="15.0" fill="rgb(250,173,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="181.11" y="507.5" font-size="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.heapBitsSetType (2 samples, 0.02%)</title><rect x="547.6" y="625" width="0.1" height="15.0" fill="rgb(214,213,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="550.55" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (4 samples, 0.03%)</title><rect x="261.0" y="417" width="0.4" height="15.0" fill="rgb(211,177,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="264.04" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (5 samples, 0.04%)</title><rect x="53.5" y="577" width="0.4" height="15.0" fill="rgb(242,148,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="56.49" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule_hrtimeout_range (3 samples, 0.02%)</title><rect x="286.1" y="449" width="0.2" height="15.0" fill="rgb(245,72,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="289.07" y="459.5" font-size="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.semacquire (2 samples, 0.02%)</title><rect x="479.6" y="593" width="0.1" height="15.0" fill="rgb(242,5,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="482.57" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (2 samples, 0.02%)</title><rect x="277.8" y="545" width="0.2" height="15.0" fill="rgb(220,113,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="280.78" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="279.0" y="465" width="0.2" height="15.0" fill="rgb(253,15,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="282.05" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>poll_schedule_timeout (18 samples, 0.14%)</title><rect x="191.6" y="625" width="1.6" height="15.0" fill="rgb(224,101,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="194.61" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="548.9" y="481" width="0.2" height="15.0" fill="rgb(223,90,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="551.90" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (4 samples, 0.03%)</title><rect x="559.9" y="385" width="0.3" height="15.0" fill="rgb(206,119,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="562.89" y="395.5" font-size="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.findrunnable (25 samples, 0.19%)</title><rect x="439.0" y="577" width="2.2" height="15.0" fill="rgb(235,128,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="441.96" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>pick_next_task_fair (3 samples, 0.02%)</title><rect x="572.0" y="273" width="0.3" height="15.0" fill="rgb(246,51,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="575.04" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="17.9" y="481" width="0.2" height="15.0" fill="rgb(241,168,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.92" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (33 samples, 0.25%)</title><rect x="668.4" y="401" width="3.0" height="15.0" fill="rgb(223,77,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="671.39" y="411.5" font-size="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.sweepone (7 samples, 0.05%)</title><rect x="279.2" y="641" width="0.7" height="15.0" fill="rgb(231,24,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="282.23" y="651.5" font-size="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.park_m (2 samples, 0.02%)</title><rect x="544.5" y="529" width="0.2" height="15.0" fill="rgb(206,94,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="547.49" y="539.5" font-size="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.stopm (2 samples, 0.02%)</title><rect x="98.5" y="673" width="0.2" height="15.0" fill="rgb(247,226,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="101.51" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="163.2" y="529" width="0.1" height="15.0" fill="rgb(231,81,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="166.16" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>syscall.anyToSockaddr (2 samples, 0.02%)</title><rect x="276.6" y="609" width="0.2" height="15.0" fill="rgb(242,1,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="279.61" y="619.5" font-size="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.gcParkAssist (6 samples, 0.05%)</title><rect x="527.3" y="657" width="0.5" height="15.0" fill="rgb(245,144,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="530.29" y="667.5" font-size="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.lock (3 samples, 0.02%)</title><rect x="156.0" y="673" width="0.2" height="15.0" fill="rgb(217,23,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="158.96" y="683.5" font-size="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.semacquire (2 samples, 0.02%)</title><rect x="270.0" y="705" width="0.2" height="15.0" fill="rgb(235,72,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="273.04" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="164.5" y="673" width="0.2" height="15.0" fill="rgb(217,12,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="167.51" y="683.5" font-size="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.morestack (3 samples, 0.02%)</title><rect x="462.7" y="673" width="0.3" height="15.0" fill="rgb(226,229,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="465.73" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (6 samples, 0.05%)</title><rect x="246.7" y="593" width="0.6" height="15.0" fill="rgb(250,178,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="249.72" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="100.3" y="529" width="0.2" height="15.0" fill="rgb(242,192,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="103.31" y="539.5" font-size="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.chanrecv2 (2 samples, 0.02%)</title><rect x="546.1" y="673" width="0.2" height="15.0" fill="rgb(206,211,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="549.11" y="683.5" font-size="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.schedule (7 samples, 0.05%)</title><rect x="281.7" y="593" width="0.6" height="15.0" fill="rgb(225,163,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="284.66" y="603.5" font-size="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.stopm (2 samples, 0.02%)</title><rect x="522.4" y="497" width="0.2" height="15.0" fill="rgb(254,147,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="525.43" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ep_send_events_proc (2 samples, 0.02%)</title><rect x="103.4" y="641" width="0.2" height="15.0" fill="rgb(225,93,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="106.37" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (4 samples, 0.03%)</title><rect x="472.1" y="305" width="0.4" height="15.0" fill="rgb(249,36,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="475.10" 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>runtime.mstart (333 samples, 2.54%)</title><rect x="52.6" y="785" width="30.0" height="15.0" fill="rgb(243,138,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="55.59" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ru..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>runtime.(*mcache).refill (2 samples, 0.02%)</title><rect x="271.4" y="465" width="0.2" height="15.0" fill="rgb(235,221,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="274.39" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (27 samples, 0.21%)</title><rect x="283.3" y="433" width="2.4" height="15.0" fill="rgb(252,69,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.28" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__audit_syscall_exit (37 samples, 0.28%)</title><rect x="942.0" y="673" width="3.4" height="15.0" fill="rgb(249,167,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="945.02" y="683.5" font-size="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.futex (5 samples, 0.04%)</title><rect x="555.8" y="577" width="0.5" height="15.0" fill="rgb(237,218,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="558.83" y="587.5" font-size="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.(*mcentral).grow (3 samples, 0.02%)</title><rect x="595.4" y="497" width="0.2" height="15.0" fill="rgb(231,126,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="598.36" y="507.5" font-size="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.futex (2 samples, 0.02%)</title><rect x="98.3" y="609" width="0.2" height="15.0" fill="rgb(230,192,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="101.33" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_select (9 samples, 0.07%)</title><rect x="701.3" y="609" width="0.8" height="15.0" fill="rgb(232,90,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="704.25" y="619.5" font-size="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.mallocgc (3 samples, 0.02%)</title><rect x="973.5" y="721" width="0.3" height="15.0" fill="rgb(230,211,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="976.54" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="14.3" y="433" width="0.2" height="15.0" fill="rgb(237,172,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="17.32" y="443.5" font-size="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.semacquire1 (4 samples, 0.03%)</title><rect x="695.8" y="721" width="0.4" height="15.0" fill="rgb(214,81,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="698.85" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (6 samples, 0.05%)</title><rect x="496.4" y="513" width="0.5" height="15.0" fill="rgb(248,23,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="499.41" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>time.Time.AppendFormat (3 samples, 0.02%)</title><rect x="338.1" y="497" width="0.3" height="15.0" fill="rgb(236,225,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="341.11" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="31.5" y="577" width="0.2" height="15.0" fill="rgb(248,9,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="34.52" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="493.1" y="481" width="0.2" height="15.0" fill="rgb(231,21,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="496.08" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (5 samples, 0.04%)</title><rect x="100.5" y="609" width="0.4" height="15.0" fill="rgb(215,59,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="103.49" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (2 samples, 0.02%)</title><rect x="549.4" y="257" width="0.2" height="15.0" fill="rgb(231,21,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="552.44" 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>runtime.findrunnable (10 samples, 0.08%)</title><rect x="15.3" y="657" width="0.9" height="15.0" fill="rgb(230,226,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.31" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (5 samples, 0.04%)</title><rect x="177.1" y="609" width="0.5" height="15.0" fill="rgb(224,21,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="180.12" y="619.5" font-size="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.(*gcWork).init (3 samples, 0.02%)</title><rect x="764.5" y="673" width="0.2" height="15.0" fill="rgb(241,163,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="767.46" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (6 samples, 0.05%)</title><rect x="231.5" y="465" width="0.5" height="15.0" fill="rgb(245,54,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="234.50" y="475.5" font-size="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.stopm (3 samples, 0.02%)</title><rect x="575.8" y="433" width="0.3" height="15.0" fill="rgb(230,112,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="578.82" y="443.5" font-size="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.gcAssistAlloc (4 samples, 0.03%)</title><rect x="542.0" y="593" width="0.3" height="15.0" fill="rgb(249,99,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="544.97" y="603.5" font-size="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.copystack (2 samples, 0.02%)</title><rect x="270.9" y="705" width="0.1" height="15.0" fill="rgb(235,97,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="273.85" y="715.5" font-size="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.schedule (3 samples, 0.02%)</title><rect x="30.2" y="689" width="0.2" height="15.0" fill="rgb(213,108,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="33.17" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>tcp_v4_do_rcv (2 samples, 0.02%)</title><rect x="311.7" y="481" width="0.2" height="15.0" fill="rgb(224,110,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="314.73" y="491.5" font-size="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.notesleep (2 samples, 0.02%)</title><rect x="495.6" y="529" width="0.2" height="15.0" fill="rgb(208,153,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="498.60" y="539.5" font-size="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.mcall (4 samples, 0.03%)</title><rect x="491.4" y="577" width="0.3" height="15.0" fill="rgb(224,160,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="494.36" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="551.4" y="417" width="0.2" height="15.0" fill="rgb(254,26,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="554.42" y="427.5" font-size="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.shade (2 samples, 0.02%)</title><rect x="327.3" y="673" width="0.2" height="15.0" fill="rgb(246,164,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="330.31" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (3 samples, 0.02%)</title><rect x="260.3" y="321" width="0.3" height="15.0" fill="rgb(206,169,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="263.32" 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>runtime.mapassign_fast64 (4 samples, 0.03%)</title><rect x="464.6" y="689" width="0.4" height="15.0" fill="rgb(234,217,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="467.62" y="699.5" font-size="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.park_m (4 samples, 0.03%)</title><rect x="163.9" y="785" width="0.3" height="15.0" fill="rgb(212,115,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="166.88" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="253.6" y="625" width="0.1" height="15.0" fill="rgb(225,65,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="256.56" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/gopkg.in/yaml%2ev2.(*encoder).mappingv (78 samples, 0.60%)</title><rect x="507.5" y="641" width="7.0" height="15.0" fill="rgb(232,155,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="510.48" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (3 samples, 0.02%)</title><rect x="162.8" y="641" width="0.3" height="15.0" fill="rgb(214,157,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="165.80" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="598.2" y="305" width="0.2" height="15.0" fill="rgb(244,199,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="601.24" 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>github.com/prometheus/blackbox_exporter/vendor/github.com/go-stack/stack.(*Call).Format (22 samples, 0.17%)</title><rect x="358.7" y="449" width="2.0" height="15.0" fill="rgb(230,132,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="361.73" y="459.5" font-size="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_queue_xmit (9 samples, 0.07%)</title><rect x="429.1" y="305" width="0.8" height="15.0" fill="rgb(239,74,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="432.06" 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>__perf_event_task_sched_in (2 samples, 0.02%)</title><rect x="551.4" y="337" width="0.2" height="15.0" fill="rgb(229,66,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="554.42" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (13 samples, 0.10%)</title><rect x="692.5" y="449" width="1.2" height="15.0" fill="rgb(233,172,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="695.52" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="31.7" y="385" width="0.2" height="15.0" fill="rgb(214,65,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="34.70" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (7 samples, 0.05%)</title><rect x="297.4" y="561" width="0.6" height="15.0" fill="rgb(242,68,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="300.41" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>audit_filter_syscall (2 samples, 0.02%)</title><rect x="567.4" y="337" width="0.1" height="15.0" fill="rgb(234,201,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="570.36" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sock_poll (2 samples, 0.02%)</title><rect x="432.2" y="465" width="0.2" height="15.0" fill="rgb(237,55,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="435.21" y="475.5" font-size="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.futex (2 samples, 0.02%)</title><rect x="18.7" y="609" width="0.2" height="15.0" fill="rgb(210,182,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.73" y="619.5" font-size="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.semacquire1 (3 samples, 0.02%)</title><rect x="644.5" y="497" width="0.3" height="15.0" fill="rgb(231,52,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="647.53" y="507.5" font-size="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.convT2Islice (5 samples, 0.04%)</title><rect x="545.2" y="657" width="0.5" height="15.0" fill="rgb(245,210,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="548.21" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (2 samples, 0.02%)</title><rect x="691.3" y="401" width="0.2" height="15.0" fill="rgb(220,111,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="694.35" y="411.5" font-size="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.gcMarkDone.func1 (2 samples, 0.02%)</title><rect x="560.5" y="577" width="0.2" height="15.0" fill="rgb(230,126,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="563.52" y="587.5" font-size="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.resetspinning (2 samples, 0.02%)</title><rect x="413.7" y="513" width="0.2" height="15.0" fill="rgb(252,20,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="416.75" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (2 samples, 0.02%)</title><rect x="157.1" y="625" width="0.2" height="15.0" fill="rgb(253,157,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="160.13" y="635.5" font-size="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.goready.func1 (10 samples, 0.08%)</title><rect x="1186.2" y="833" width="0.9" height="15.0" fill="rgb(223,36,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.22" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ep_poll (2 samples, 0.02%)</title><rect x="164.2" y="657" width="0.2" height="15.0" fill="rgb(240,21,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="167.24" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="650.5" y="273" width="0.1" height="15.0" fill="rgb(206,42,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="653.47" y="283.5" font-size="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.flushmcache (4 samples, 0.03%)</title><rect x="659.0" y="561" width="0.4" height="15.0" fill="rgb(221,108,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="662.02" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (23 samples, 0.18%)</title><rect x="477.0" y="369" width="2.0" height="15.0" fill="rgb(252,109,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="479.96" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="84.5" y="577" width="0.1" height="15.0" fill="rgb(220,56,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="87.46" y="587.5" font-size="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.(*mcache).nextFree.func1 (3 samples, 0.02%)</title><rect x="280.0" y="737" width="0.3" height="15.0" fill="rgb(251,192,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="283.04" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="766.1" y="513" width="0.2" height="15.0" fill="rgb(236,38,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="769.08" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (3 samples, 0.02%)</title><rect x="557.9" y="433" width="0.3" height="15.0" fill="rgb(226,31,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="560.91" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (323 samples, 2.46%)</title><rect x="1024.6" y="609" width="29.1" height="15.0" fill="rgb(211,36,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="1027.59" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sc..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>runtime.goparkunlock (7 samples, 0.05%)</title><rect x="971.2" y="609" width="0.6" height="15.0" fill="rgb(219,215,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="974.20" y="619.5" font-size="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.notesleep (3 samples, 0.02%)</title><rect x="174.8" y="737" width="0.2" height="15.0" fill="rgb(234,83,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="177.78" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (10 samples, 0.08%)</title><rect x="744.9" y="529" width="0.9" height="15.0" fill="rgb(237,163,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="747.92" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="49.5" y="433" width="0.2" height="15.0" fill="rgb(215,101,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="52.53" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule_hrtimeout_range (2 samples, 0.02%)</title><rect x="97.3" y="513" width="0.2" height="15.0" fill="rgb(219,82,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="100.34" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (87 samples, 0.66%)</title><rect x="611.6" y="449" width="7.8" height="15.0" fill="rgb(236,71,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="614.57" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>time.nextStdChunk (4 samples, 0.03%)</title><rect x="453.0" y="513" width="0.4" height="15.0" fill="rgb(239,42,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="456.01" y="523.5" font-size="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.deductSweepCredit (2 samples, 0.02%)</title><rect x="663.7" y="625" width="0.2" height="15.0" fill="rgb(215,68,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="666.70" y="635.5" font-size="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.gcParkAssist (2 samples, 0.02%)</title><rect x="298.7" y="705" width="0.2" height="15.0" fill="rgb(246,31,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="301.67" y="715.5" font-size="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.deferreturn (4 samples, 0.03%)</title><rect x="97.0" y="785" width="0.3" height="15.0" fill="rgb(215,102,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="99.98" y="795.5" font-size="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.schedule (3 samples, 0.02%)</title><rect x="1186.2" y="721" width="0.3" height="15.0" fill="rgb(212,163,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.22" y="731.5" font-size="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.gcDrainN (2 samples, 0.02%)</title><rect x="343.2" y="545" width="0.2" height="15.0" fill="rgb(232,1,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="346.25" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (11 samples, 0.08%)</title><rect x="585.5" y="401" width="1.0" height="15.0" fill="rgb(232,122,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="588.55" y="411.5" font-size="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_sys_select (2 samples, 0.02%)</title><rect x="330.5" y="529" width="0.1" height="15.0" fill="rgb(248,196,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="333.46" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="423.2" y="257" width="0.2" height="15.0" fill="rgb(231,223,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="426.20" 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>runtime.findrunnable (2 samples, 0.02%)</title><rect x="162.4" y="737" width="0.1" height="15.0" fill="rgb(209,135,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="165.35" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (7 samples, 0.05%)</title><rect x="142.2" y="593" width="0.6" height="15.0" fill="rgb(231,192,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="145.18" y="603.5" font-size="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.goparkunlock (7 samples, 0.05%)</title><rect x="502.4" y="593" width="0.7" height="15.0" fill="rgb(226,89,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="505.44" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (4 samples, 0.03%)</title><rect x="175.2" y="609" width="0.4" height="15.0" fill="rgb(247,198,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="178.23" y="619.5" font-size="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.epollctl (6 samples, 0.05%)</title><rect x="970.1" y="609" width="0.6" height="15.0" fill="rgb(224,154,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="973.12" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (2 samples, 0.02%)</title><rect x="671.8" y="401" width="0.2" height="15.0" fill="rgb(237,148,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="674.81" y="411.5" font-size="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.schedule (4 samples, 0.03%)</title><rect x="315.8" y="705" width="0.3" height="15.0" fill="rgb(210,64,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.78" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="527.8" y="369" width="0.2" height="15.0" fill="rgb(238,169,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="530.83" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (25 samples, 0.19%)</title><rect x="288.0" y="481" width="2.2" height="15.0" fill="rgb(240,64,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="290.96" y="491.5" font-size="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.deductSweepCredit (2 samples, 0.02%)</title><rect x="331.2" y="689" width="0.2" height="15.0" fill="rgb(207,83,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="334.18" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (2 samples, 0.02%)</title><rect x="567.7" y="257" width="0.2" height="15.0" fill="rgb(246,41,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="570.72" 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>perf_pmu_enable (15 samples, 0.11%)</title><rect x="238.2" y="513" width="1.3" height="15.0" fill="rgb(237,178,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="241.17" y="523.5" font-size="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.schedule (3 samples, 0.02%)</title><rect x="649.0" y="577" width="0.3" height="15.0" fill="rgb(235,176,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="652.03" y="587.5" font-size="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.semacquire1 (6 samples, 0.05%)</title><rect x="329.6" y="705" width="0.5" height="15.0" fill="rgb(225,159,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="332.56" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dequeue_task_fair (2 samples, 0.02%)</title><rect x="1026.3" y="561" width="0.2" height="15.0" fill="rgb(250,6,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="1029.30" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (3 samples, 0.02%)</title><rect x="434.9" y="465" width="0.3" height="15.0" fill="rgb(212,59,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="437.91" y="475.5" font-size="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.goschedImpl (3 samples, 0.02%)</title><rect x="17.8" y="673" width="0.3" height="15.0" fill="rgb(236,85,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.83" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (2 samples, 0.02%)</title><rect x="653.9" y="497" width="0.2" height="15.0" fill="rgb(212,52,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="656.89" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (2 samples, 0.02%)</title><rect x="250.9" y="465" width="0.1" height="15.0" fill="rgb(216,193,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="253.86" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (5 samples, 0.04%)</title><rect x="336.0" y="337" width="0.4" height="15.0" fill="rgb(218,40,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="338.95" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (4 samples, 0.03%)</title><rect x="355.6" y="369" width="0.3" height="15.0" fill="rgb(211,59,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="358.58" y="379.5" font-size="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.funcspdelta (3 samples, 0.02%)</title><rect x="266.4" y="673" width="0.3" height="15.0" fill="rgb(231,60,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="269.44" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (4 samples, 0.03%)</title><rect x="237.0" y="593" width="0.4" height="15.0" fill="rgb(226,191,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="240.00" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (8 samples, 0.06%)</title><rect x="97.6" y="529" width="0.7" height="15.0" fill="rgb(246,117,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="100.61" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="528.0" y="337" width="0.2" height="15.0" fill="rgb(226,157,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="531.01" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (3 samples, 0.02%)</title><rect x="101.5" y="593" width="0.3" height="15.0" fill="rgb(247,191,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="104.48" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (7 samples, 0.05%)</title><rect x="386.8" y="417" width="0.7" height="15.0" fill="rgb(245,108,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="389.83" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (3 samples, 0.02%)</title><rect x="462.7" y="529" width="0.3" height="15.0" fill="rgb(247,25,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="465.73" y="539.5" font-size="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.systemstack (52 samples, 0.40%)</title><rect x="635.7" y="545" width="4.7" height="15.0" fill="rgb(228,178,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="638.70" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="941.0" y="705" width="0.2" height="15.0" fill="rgb(232,95,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="944.03" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (3 samples, 0.02%)</title><rect x="636.2" y="257" width="0.3" height="15.0" fill="rgb(210,140,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="639.24" 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>runtime.mcall (7 samples, 0.05%)</title><rect x="971.2" y="593" width="0.6" height="15.0" fill="rgb(209,27,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="974.20" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (4 samples, 0.03%)</title><rect x="181.3" y="593" width="0.4" height="15.0" fill="rgb(244,133,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="184.35" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (4 samples, 0.03%)</title><rect x="166.4" y="577" width="0.4" height="15.0" fill="rgb(212,147,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="169.40" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (13 samples, 0.10%)</title><rect x="149.8" y="561" width="1.2" height="15.0" fill="rgb(206,35,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="152.84" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (2 samples, 0.02%)</title><rect x="994.2" y="577" width="0.2" height="15.0" fill="rgb(223,78,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="997.25" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule_hrtimeout_range_clock (3 samples, 0.02%)</title><rect x="47.4" y="529" width="0.2" height="15.0" fill="rgb(232,188,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="50.37" y="539.5" font-size="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.mcall (24 samples, 0.18%)</title><rect x="574.0" y="497" width="2.2" height="15.0" fill="rgb(241,15,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="577.02" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>internal/poll.(*fdMutex).rwlock (2 samples, 0.02%)</title><rect x="665.7" y="737" width="0.2" height="15.0" fill="rgb(218,217,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="668.69" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="1059.3" y="561" width="0.2" height="15.0" fill="rgb(222,193,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1062.35" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>[unknown] (11 samples, 0.08%)</title><rect x="10.9" y="577" width="1.0" height="15.0" fill="rgb(209,7,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="13.90" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (2 samples, 0.02%)</title><rect x="449.0" y="465" width="0.2" height="15.0" fill="rgb(233,198,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="452.04" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (22 samples, 0.17%)</title><rect x="304.9" y="513" width="2.0" height="15.0" fill="rgb(232,60,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="307.89" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (16 samples, 0.12%)</title><rect x="678.3" y="545" width="1.4" height="15.0" fill="rgb(213,213,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="681.29" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (7 samples, 0.05%)</title><rect x="145.1" y="577" width="0.6" height="15.0" fill="rgb(234,165,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="148.06" y="587.5" font-size="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.funcspdelta (6 samples, 0.05%)</title><rect x="458.8" y="545" width="0.5" height="15.0" fill="rgb(243,95,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="461.77" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="1082.7" y="593" width="0.2" height="15.0" fill="rgb(239,181,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="1085.67" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="436.3" y="385" width="0.1" height="15.0" fill="rgb(228,82,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.26" y="395.5" font-size="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.futex (3 samples, 0.02%)</title><rect x="101.5" y="737" width="0.3" height="15.0" fill="rgb(235,45,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="104.48" y="747.5" font-size="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.morestack (3 samples, 0.02%)</title><rect x="493.7" y="657" width="0.3" height="15.0" fill="rgb(246,182,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="496.71" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (17 samples, 0.13%)</title><rect x="172.6" y="529" width="1.5" height="15.0" fill="rgb(239,14,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="175.62" y="539.5" font-size="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.gcParkAssist (4 samples, 0.03%)</title><rect x="561.9" y="577" width="0.3" height="15.0" fill="rgb(254,149,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="564.87" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>strings.Split (2 samples, 0.02%)</title><rect x="557.2" y="673" width="0.2" height="15.0" fill="rgb(230,11,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="560.19" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__audit_syscall_exit (3 samples, 0.02%)</title><rect x="515.7" y="481" width="0.2" height="15.0" fill="rgb(237,53,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="518.68" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (2 samples, 0.02%)</title><rect x="971.5" y="321" width="0.1" height="15.0" fill="rgb(226,108,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="974.47" 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>runtime.gcAssistAlloc (2 samples, 0.02%)</title><rect x="547.0" y="625" width="0.2" height="15.0" fill="rgb(231,122,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="550.01" y="635.5" font-size="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.futex (4 samples, 0.03%)</title><rect x="165.1" y="705" width="0.4" height="15.0" fill="rgb(208,132,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="168.14" y="715.5" font-size="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.stopm (3 samples, 0.02%)</title><rect x="101.1" y="657" width="0.3" height="15.0" fill="rgb(225,111,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="104.12" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (2 samples, 0.02%)</title><rect x="347.4" y="273" width="0.2" height="15.0" fill="rgb(252,113,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="350.39" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (3 samples, 0.02%)</title><rect x="414.4" y="305" width="0.2" height="15.0" fill="rgb(242,171,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="417.38" 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>runtime.(*mcentral).grow (5 samples, 0.04%)</title><rect x="523.1" y="577" width="0.4" height="15.0" fill="rgb(237,198,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="526.06" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (3 samples, 0.02%)</title><rect x="664.7" y="417" width="0.3" height="15.0" fill="rgb(242,4,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="667.70" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (14 samples, 0.11%)</title><rect x="416.0" y="433" width="1.3" height="15.0" fill="rgb(224,162,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="419.00" y="443.5" font-size="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.park_m (3 samples, 0.02%)</title><rect x="529.4" y="593" width="0.2" height="15.0" fill="rgb(207,4,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="532.36" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/github.com/go-logfmt/logfmt.getBuffer (2 samples, 0.02%)</title><rect x="340.9" y="513" width="0.2" height="15.0" fill="rgb(248,163,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="343.90" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (2 samples, 0.02%)</title><rect x="330.5" y="369" width="0.1" height="15.0" fill="rgb(237,158,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="333.46" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="30.3" y="513" width="0.1" height="15.0" fill="rgb(226,53,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="33.26" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (28 samples, 0.21%)</title><rect x="113.2" y="657" width="2.5" height="15.0" fill="rgb(208,188,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="116.19" y="667.5" font-size="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.epollctl (10 samples, 0.08%)</title><rect x="431.5" y="529" width="0.9" height="15.0" fill="rgb(242,170,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="434.49" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (2 samples, 0.02%)</title><rect x="493.1" y="449" width="0.2" height="15.0" fill="rgb(219,127,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="496.08" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (3 samples, 0.02%)</title><rect x="53.7" y="545" width="0.2" height="15.0" fill="rgb(221,146,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="56.67" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (6 samples, 0.05%)</title><rect x="701.4" y="465" width="0.6" height="15.0" fill="rgb(234,148,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="704.43" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (2 samples, 0.02%)</title><rect x="415.5" y="465" width="0.2" height="15.0" fill="rgb(239,189,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="418.55" y="475.5" font-size="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.notesleep (2 samples, 0.02%)</title><rect x="456.7" y="465" width="0.2" height="15.0" fill="rgb(244,195,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="459.70" y="475.5" font-size="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.semacquire1 (16 samples, 0.12%)</title><rect x="441.8" y="641" width="1.5" height="15.0" fill="rgb(249,28,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="444.84" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="551.4" y="481" width="0.2" height="15.0" fill="rgb(238,66,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="554.42" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (2 samples, 0.02%)</title><rect x="691.3" y="545" width="0.2" height="15.0" fill="rgb(205,192,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="694.35" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (2 samples, 0.02%)</title><rect x="528.0" y="305" width="0.2" height="15.0" fill="rgb(225,146,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="531.01" 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>do_futex (2 samples, 0.02%)</title><rect x="15.5" y="545" width="0.2" height="15.0" fill="rgb(253,103,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.49" y="555.5" font-size="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.(*mcache).refill (4 samples, 0.03%)</title><rect x="336.7" y="481" width="0.3" height="15.0" fill="rgb(244,97,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="339.67" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="516.5" y="465" width="0.2" height="15.0" fill="rgb(220,220,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="519.49" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="11.3" y="225" width="0.1" height="15.0" fill="rgb(215,47,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="14.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>runtime.gcstopm (3 samples, 0.02%)</title><rect x="540.2" y="529" width="0.2" height="15.0" fill="rgb(210,42,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="543.17" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (2 samples, 0.02%)</title><rect x="691.6" y="401" width="0.2" height="15.0" fill="rgb(227,187,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="694.62" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net.(*conn).Read (22 samples, 0.17%)</title><rect x="300.0" y="673" width="2.0" height="15.0" fill="rgb(217,214,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="303.03" y="683.5" font-size="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.notesleep (5 samples, 0.04%)</title><rect x="100.5" y="657" width="0.4" height="15.0" fill="rgb(221,158,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="103.49" y="667.5" font-size="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.futex (6 samples, 0.05%)</title><rect x="177.0" y="705" width="0.6" height="15.0" fill="rgb(216,126,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="180.03" y="715.5" font-size="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.goparkunlock (3 samples, 0.02%)</title><rect x="653.1" y="593" width="0.2" height="15.0" fill="rgb(212,68,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="656.08" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (12 samples, 0.09%)</title><rect x="35.8" y="481" width="1.1" height="15.0" fill="rgb(232,55,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="38.84" y="491.5" font-size="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.(*mcache).nextFree.func1 (4 samples, 0.03%)</title><rect x="371.6" y="593" width="0.4" height="15.0" fill="rgb(224,44,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="374.61" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/github.com/go-stack/stack.Call.Format (20 samples, 0.15%)</title><rect x="358.8" y="433" width="1.8" height="15.0" fill="rgb(237,77,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="361.82" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/gopkg.in/yaml%2ev2.yaml_emitter_analyze_scalar (2 samples, 0.02%)</title><rect x="508.0" y="513" width="0.2" height="15.0" fill="rgb(234,62,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="511.02" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (7 samples, 0.05%)</title><rect x="993.2" y="657" width="0.6" height="15.0" fill="rgb(205,93,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="996.17" y="667.5" font-size="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_blocked_averages (2 samples, 0.02%)</title><rect x="833.2" y="465" width="0.1" height="15.0" fill="rgb(240,43,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="836.16" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (3 samples, 0.02%)</title><rect x="314.0" y="417" width="0.3" height="15.0" fill="rgb(229,120,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="316.98" y="427.5" font-size="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.mProf_FlushLocked (10 samples, 0.08%)</title><rect x="718.4" y="753" width="0.9" height="15.0" fill="rgb(226,185,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="721.36" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="370.5" y="353" width="0.2" height="15.0" fill="rgb(251,76,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="373.53" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (7 samples, 0.05%)</title><rect x="480.8" y="321" width="0.7" height="15.0" fill="rgb(251,190,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="483.83" 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>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="480.0" y="401" width="0.2" height="15.0" fill="rgb(224,18,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="483.02" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="12.7" y="353" width="0.2" height="15.0" fill="rgb(238,145,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="15.70" y="363.5" font-size="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.shade (2 samples, 0.02%)</title><rect x="363.1" y="449" width="0.2" height="15.0" fill="rgb(246,29,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="366.14" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (6 samples, 0.05%)</title><rect x="716.3" y="593" width="0.5" height="15.0" fill="rgb(253,3,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="719.29" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (94 samples, 0.72%)</title><rect x="193.6" y="641" width="8.5" height="15.0" fill="rgb(241,135,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="196.60" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/github.com/matttproud/golang_protobuf_extensions/pbutil.WriteDelimited (936 samples, 7.14%)</title><rect x="565.6" y="657" width="84.2" height="15.0" fill="rgb(248,181,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.56" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.co..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>runtime.schedule (2 samples, 0.02%)</title><rect x="168.6" y="705" width="0.1" height="15.0" fill="rgb(223,171,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="171.56" y="715.5" font-size="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.mcall (4 samples, 0.03%)</title><rect x="437.1" y="545" width="0.3" height="15.0" fill="rgb(245,0,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="440.07" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (6 samples, 0.05%)</title><rect x="290.7" y="561" width="0.5" height="15.0" fill="rgb(205,30,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="293.66" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (3 samples, 0.02%)</title><rect x="962.2" y="401" width="0.3" height="15.0" fill="rgb(244,17,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="965.19" y="411.5" font-size="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_blocked_averages (3 samples, 0.02%)</title><rect x="201.7" y="561" width="0.3" height="15.0" fill="rgb(212,149,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="204.70" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule_hrtimeout_range (2 samples, 0.02%)</title><rect x="145.8" y="561" width="0.2" height="15.0" fill="rgb(208,83,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="148.78" y="571.5" font-size="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.stopm (14 samples, 0.11%)</title><rect x="20.3" y="689" width="1.2" height="15.0" fill="rgb(246,103,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="23.26" y="699.5" font-size="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.newobject (4 samples, 0.03%)</title><rect x="347.3" y="641" width="0.4" height="15.0" fill="rgb(232,18,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="350.30" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="449.0" y="433" width="0.2" height="15.0" fill="rgb(215,126,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="452.04" y="443.5" font-size="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.(*mcentral).grow (5 samples, 0.04%)</title><rect x="560.7" y="545" width="0.4" height="15.0" fill="rgb(209,71,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="563.70" y="555.5" font-size="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.(*mcache).refill (2 samples, 0.02%)</title><rect x="310.1" y="705" width="0.2" height="15.0" fill="rgb(227,52,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="313.11" y="715.5" font-size="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.mallocgc (21 samples, 0.16%)</title><rect x="647.0" y="609" width="1.9" height="15.0" fill="rgb(219,198,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="650.05" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (3 samples, 0.02%)</title><rect x="29.8" y="481" width="0.3" height="15.0" fill="rgb(247,149,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="32.81" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (23 samples, 0.18%)</title><rect x="570.2" y="337" width="2.1" height="15.0" fill="rgb(216,2,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="573.24" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (139 samples, 1.06%)</title><rect x="67.6" y="481" width="12.5" height="15.0" fill="rgb(234,192,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="70.63" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (14 samples, 0.11%)</title><rect x="488.0" y="481" width="1.3" height="15.0" fill="rgb(210,151,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="491.03" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (7 samples, 0.05%)</title><rect x="263.5" y="465" width="0.6" height="15.0" fill="rgb(239,220,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="266.47" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (5 samples, 0.04%)</title><rect x="143.7" y="513" width="0.5" height="15.0" fill="rgb(235,110,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="146.71" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>reflect.packEface (10 samples, 0.08%)</title><rect x="514.6" y="625" width="0.9" height="15.0" fill="rgb(243,176,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="517.60" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (18 samples, 0.14%)</title><rect x="694.1" y="417" width="1.7" height="15.0" fill="rgb(246,82,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="697.14" y="427.5" font-size="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.gcStart (2 samples, 0.02%)</title><rect x="544.5" y="609" width="0.2" height="15.0" fill="rgb(222,75,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="547.49" y="619.5" font-size="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.notesleep (2 samples, 0.02%)</title><rect x="277.8" y="625" width="0.2" height="15.0" fill="rgb(247,155,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="280.78" y="635.5" font-size="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.goparkunlock (2 samples, 0.02%)</title><rect x="273.6" y="529" width="0.1" height="15.0" fill="rgb(250,38,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="276.55" y="539.5" font-size="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.findrunnable (3 samples, 0.02%)</title><rect x="547.2" y="513" width="0.3" height="15.0" fill="rgb(212,87,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="550.19" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (196 samples, 1.50%)</title><rect x="394.8" y="449" width="17.7" height="15.0" fill="rgb(235,158,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="397.84" y="459.5" font-size="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.(*mheap).reclaim (2 samples, 0.02%)</title><rect x="547.9" y="497" width="0.2" height="15.0" fill="rgb(229,97,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="550.91" y="507.5" font-size="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.systemstack (4 samples, 0.03%)</title><rect x="318.3" y="641" width="0.4" height="15.0" fill="rgb(217,88,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="321.30" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (4 samples, 0.03%)</title><rect x="973.1" y="385" width="0.3" height="15.0" fill="rgb(247,102,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="976.09" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>syscall.Syscall6 (2 samples, 0.02%)</title><rect x="961.7" y="657" width="0.1" height="15.0" fill="rgb(207,118,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="964.65" y="667.5" font-size="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/elliptic.(*CurveParams).doubleJacobian (15 samples, 0.11%)</title><rect x="272.4" y="609" width="1.3" height="15.0" fill="rgb(213,78,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="275.38" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (174 samples, 1.33%)</title><rect x="64.5" y="561" width="15.6" height="15.0" fill="rgb(216,4,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="67.48" y="571.5" font-size="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.goparkunlock (2 samples, 0.02%)</title><rect x="457.6" y="545" width="0.2" height="15.0" fill="rgb(232,105,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="460.60" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (3 samples, 0.02%)</title><rect x="647.2" y="209" width="0.3" height="15.0" fill="rgb(217,91,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="650.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>runtime.(*mcache).refill (2 samples, 0.02%)</title><rect x="648.3" y="561" width="0.2" height="15.0" fill="rgb(213,96,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="651.31" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (19 samples, 0.14%)</title><rect x="147.9" y="513" width="1.7" height="15.0" fill="rgb(244,170,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="150.85" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (5 samples, 0.04%)</title><rect x="1060.3" y="513" width="0.5" height="15.0" fill="rgb(250,8,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="1063.34" y="523.5" font-size="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.mallocgc (4 samples, 0.03%)</title><rect x="374.9" y="657" width="0.4" height="15.0" fill="rgb(213,98,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="377.94" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (2 samples, 0.02%)</title><rect x="13.4" y="433" width="0.2" height="15.0" fill="rgb(247,158,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.42" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (5 samples, 0.04%)</title><rect x="1186.6" y="449" width="0.4" height="15.0" fill="rgb(244,81,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="1189.58" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (18 samples, 0.14%)</title><rect x="147.9" y="449" width="1.7" height="15.0" fill="rgb(248,81,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="150.94" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (18 samples, 0.14%)</title><rect x="172.5" y="673" width="1.6" height="15.0" fill="rgb(232,37,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="175.53" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (3 samples, 0.02%)</title><rect x="271.8" y="449" width="0.3" height="15.0" fill="rgb(252,34,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="274.84" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (35 samples, 0.27%)</title><rect x="233.8" y="577" width="3.2" height="15.0" fill="rgb(236,45,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="236.84" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_pselect6 (3 samples, 0.02%)</title><rect x="540.7" y="305" width="0.3" height="15.0" fill="rgb(230,11,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="543.71" 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>x86_pmu_enable (2 samples, 0.02%)</title><rect x="551.4" y="305" width="0.2" height="15.0" fill="rgb(240,107,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="554.42" 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>compress/flate.(*huffmanBitWriter).writeBits (2 samples, 0.02%)</title><rect x="538.5" y="593" width="0.1" height="15.0" fill="rgb(252,15,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="541.46" y="603.5" font-size="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.findrunnable (2 samples, 0.02%)</title><rect x="479.6" y="497" width="0.1" height="15.0" fill="rgb(219,109,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="482.57" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="492.4" y="385" width="0.2" height="15.0" fill="rgb(218,82,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.35" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="640.7" y="385" width="0.2" height="15.0" fill="rgb(211,10,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="643.74" y="395.5" font-size="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.notesleep (2 samples, 0.02%)</title><rect x="347.4" y="481" width="0.2" height="15.0" fill="rgb(227,15,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="350.39" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (27 samples, 0.21%)</title><rect x="388.4" y="449" width="2.5" height="15.0" fill="rgb(237,78,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="391.45" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>internal/poll.runtime_pollOpen (6 samples, 0.05%)</title><rect x="970.1" y="625" width="0.6" height="15.0" fill="rgb(213,57,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="973.12" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (4 samples, 0.03%)</title><rect x="516.8" y="433" width="0.4" height="15.0" fill="rgb(227,32,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="519.85" y="443.5" font-size="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.mcall (2 samples, 0.02%)</title><rect x="547.0" y="577" width="0.2" height="15.0" fill="rgb(228,197,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="550.01" y="587.5" font-size="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_sock (4 samples, 0.03%)</title><rect x="311.6" y="497" width="0.3" height="15.0" fill="rgb(224,199,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="314.55" y="507.5" font-size="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.semacquire (11 samples, 0.08%)</title><rect x="604.9" y="561" width="1.0" height="15.0" fill="rgb(218,90,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="607.91" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="328.3" y="481" width="0.2" height="15.0" fill="rgb(238,176,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="331.30" y="491.5" font-size="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.osyield (2 samples, 0.02%)</title><rect x="594.1" y="481" width="0.2" height="15.0" fill="rgb(220,194,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="597.10" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (4 samples, 0.03%)</title><rect x="248.5" y="657" width="0.4" height="15.0" fill="rgb(222,86,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="251.52" y="667.5" font-size="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.shade (2 samples, 0.02%)</title><rect x="374.1" y="561" width="0.2" height="15.0" fill="rgb(206,193,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="377.13" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>wake_up_q (3 samples, 0.02%)</title><rect x="556.0" y="481" width="0.3" height="15.0" fill="rgb(226,4,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="559.01" y="491.5" font-size="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.gcmarkwb_m (2 samples, 0.02%)</title><rect x="515.9" y="609" width="0.2" height="15.0" fill="rgb(253,140,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="518.95" y="619.5" font-size="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.schedule (2 samples, 0.02%)</title><rect x="251.0" y="753" width="0.2" height="15.0" fill="rgb(253,48,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="254.04" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>poll_schedule_timeout (4 samples, 0.03%)</title><rect x="642.2" y="257" width="0.3" height="15.0" fill="rgb(228,199,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="645.18" 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>do_futex (3 samples, 0.02%)</title><rect x="144.2" y="625" width="0.2" height="15.0" fill="rgb(250,222,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="147.16" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>smp_apic_timer_interrupt (3 samples, 0.02%)</title><rect x="1073.4" y="753" width="0.3" height="15.0" fill="rgb(247,146,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="1076.40" y="763.5" font-size="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.schedule (10 samples, 0.08%)</title><rect x="13.7" y="609" width="0.9" height="15.0" fill="rgb(250,208,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.69" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (3 samples, 0.02%)</title><rect x="962.2" y="449" width="0.3" height="15.0" fill="rgb(231,51,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="965.19" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="548.9" y="545" width="0.2" height="15.0" fill="rgb(240,175,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="551.90" y="555.5" font-size="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.(*mcache).refill (11 samples, 0.08%)</title><rect x="499.5" y="561" width="1.0" height="15.0" fill="rgb(222,202,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="502.47" y="571.5" font-size="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.freedefer (2 samples, 0.02%)</title><rect x="163.2" y="785" width="0.1" height="15.0" fill="rgb(229,197,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="166.16" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="461.0" y="401" width="0.2" height="15.0" fill="rgb(244,59,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="464.02" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (2 samples, 0.02%)</title><rect x="1082.7" y="561" width="0.2" height="15.0" fill="rgb(207,27,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="1085.67" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (4 samples, 0.03%)</title><rect x="172.2" y="625" width="0.3" height="15.0" fill="rgb(232,87,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="175.17" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="370.5" y="369" width="0.2" height="15.0" fill="rgb(221,96,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="373.53" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (2 samples, 0.02%)</title><rect x="104.5" y="529" width="0.1" height="15.0" fill="rgb(238,165,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="107.45" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>hrtimer_try_to_cancel (11 samples, 0.08%)</title><rect x="62.1" y="593" width="1.0" height="15.0" fill="rgb(228,143,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="65.13" y="603.5" font-size="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_blocked_averages (7 samples, 0.05%)</title><rect x="80.6" y="545" width="0.6" height="15.0" fill="rgb(223,107,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="83.59" y="555.5" font-size="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.futex (5 samples, 0.04%)</title><rect x="498.9" y="433" width="0.5" height="15.0" fill="rgb(222,16,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="501.93" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net/http.Header.WriteSubset (3 samples, 0.02%)</title><rect x="19.8" y="753" width="0.3" height="15.0" fill="rgb(208,64,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="22.81" y="763.5" font-size="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.findrunnable (2 samples, 0.02%)</title><rect x="457.6" y="481" width="0.2" height="15.0" fill="rgb(220,210,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="460.60" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>exit_to_usermode_loop (20 samples, 0.15%)</title><rect x="311.5" y="641" width="1.8" height="15.0" fill="rgb(233,118,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="314.46" y="651.5" font-size="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.gchelper (4 samples, 0.03%)</title><rect x="692.2" y="625" width="0.3" height="15.0" fill="rgb(219,71,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="695.16" y="635.5" font-size="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.notesleep (413 samples, 3.15%)</title><rect x="1016.7" y="737" width="37.2" height="15.0" fill="rgb(213,30,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="1019.67" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >run..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>runtime.stopm (4 samples, 0.03%)</title><rect x="19.3" y="641" width="0.3" height="15.0" fill="rgb(242,52,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="22.27" y="651.5" font-size="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.mcall (50 samples, 0.38%)</title><rect x="691.3" y="705" width="4.5" height="15.0" fill="rgb(226,117,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="694.26" y="715.5" font-size="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.goschedImpl (13 samples, 0.10%)</title><rect x="21.5" y="705" width="1.2" height="15.0" fill="rgb(233,92,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="24.53" y="715.5" font-size="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.mallocgc (232 samples, 1.77%)</title><rect x="566.0" y="577" width="20.9" height="15.0" fill="rgb(230,182,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="569.01" y="587.5" font-size="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.futex (4 samples, 0.03%)</title><rect x="19.3" y="609" width="0.3" height="15.0" fill="rgb(249,226,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="22.27" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (4 samples, 0.03%)</title><rect x="642.2" y="177" width="0.3" height="15.0" fill="rgb(229,42,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="645.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>runtime.schedule (27 samples, 0.21%)</title><rect x="24.7" y="737" width="2.4" height="15.0" fill="rgb(213,8,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="27.68" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (4 samples, 0.03%)</title><rect x="517.3" y="289" width="0.4" height="15.0" fill="rgb(213,36,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="520.30" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (22 samples, 0.17%)</title><rect x="54.3" y="641" width="2.0" height="15.0" fill="rgb(235,85,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="57.30" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (4 samples, 0.03%)</title><rect x="17.1" y="401" width="0.4" height="15.0" fill="rgb(231,168,16)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.11" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (3 samples, 0.02%)</title><rect x="24.7" y="529" width="0.2" height="15.0" fill="rgb(235,112,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="27.68" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (14 samples, 0.11%)</title><rect x="232.4" y="545" width="1.3" height="15.0" fill="rgb(251,150,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="235.40" y="555.5" font-size="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.gopreempt_m (3 samples, 0.02%)</title><rect x="12.9" y="609" width="0.3" height="15.0" fill="rgb(215,22,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="15.88" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (8 samples, 0.06%)</title><rect x="290.5" y="577" width="0.7" height="15.0" fill="rgb(218,67,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="293.48" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="577.2" y="209" width="0.2" height="15.0" fill="rgb(213,86,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="580.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>runtime.newobject (39 samples, 0.30%)</title><rect x="522.1" y="673" width="3.5" height="15.0" fill="rgb(223,84,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="525.07" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="651.9" y="225" width="0.2" height="15.0" fill="rgb(235,82,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="654.91" 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.schedule (2 samples, 0.02%)</title><rect x="503.1" y="593" width="0.1" height="15.0" fill="rgb(234,48,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="506.07" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (7 samples, 0.05%)</title><rect x="145.1" y="641" width="0.6" height="15.0" fill="rgb(213,119,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="148.06" y="651.5" font-size="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.stopm (111 samples, 0.85%)</title><rect x="237.4" y="721" width="10.0" height="15.0" fill="rgb(226,152,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="240.45" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (3 samples, 0.02%)</title><rect x="493.7" y="385" width="0.3" height="15.0" fill="rgb(241,79,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="496.71" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>fmt.(*pp).doPrint (11 samples, 0.08%)</title><rect x="453.5" y="513" width="1.0" height="15.0" fill="rgb(252,159,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="456.55" y="523.5" font-size="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.(*mcache).nextFree (5 samples, 0.04%)</title><rect x="33.5" y="769" width="0.5" height="15.0" fill="rgb(214,123,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="36.50" y="779.5" font-size="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.stopm (2 samples, 0.02%)</title><rect x="436.5" y="433" width="0.2" height="15.0" fill="rgb(250,72,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.53" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="1006.2" y="561" width="0.2" height="15.0" fill="rgb(228,185,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="1009.22" y="571.5" font-size="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.mapiterinit (2 samples, 0.02%)</title><rect x="319.7" y="737" width="0.1" height="15.0" fill="rgb(225,226,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="322.65" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (4 samples, 0.03%)</title><rect x="448.0" y="417" width="0.3" height="15.0" fill="rgb(251,103,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="450.96" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (433 samples, 3.30%)</title><rect x="773.4" y="561" width="39.0" height="15.0" fill="rgb(254,86,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="776.38" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fin..</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>runtime.gcstopm (98 samples, 0.75%)</title><rect x="985.2" y="753" width="8.9" height="15.0" fill="rgb(248,135,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="988.24" y="763.5" font-size="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.findrunnable (3 samples, 0.02%)</title><rect x="347.3" y="513" width="0.3" height="15.0" fill="rgb(238,59,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="350.30" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>audit_filter_rules (2 samples, 0.02%)</title><rect x="496.2" y="513" width="0.2" height="15.0" fill="rgb(237,33,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="499.23" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (18 samples, 0.14%)</title><rect x="238.0" y="593" width="1.6" height="15.0" fill="rgb(224,197,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="240.99" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>internal/poll.(*pollDesc).waitRead (5 samples, 0.04%)</title><rect x="333.3" y="561" width="0.4" height="15.0" fill="rgb(221,226,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="336.25" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (3 samples, 0.02%)</title><rect x="160.7" y="497" width="0.3" height="15.0" fill="rgb(236,29,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="163.73" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="448.9" y="353" width="0.1" height="15.0" fill="rgb(215,12,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="451.86" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (3 samples, 0.02%)</title><rect x="1006.4" y="481" width="0.3" height="15.0" fill="rgb(223,84,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="1009.40" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (2 samples, 0.02%)</title><rect x="436.3" y="289" width="0.1" height="15.0" fill="rgb(254,64,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.26" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (5 samples, 0.04%)</title><rect x="229.4" y="657" width="0.5" height="15.0" fill="rgb(213,169,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="232.43" y="667.5" font-size="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.usleep (4 samples, 0.03%)</title><rect x="232.0" y="689" width="0.4" height="15.0" fill="rgb(219,187,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="235.04" y="699.5" font-size="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.(*mheap).alloc.func1 (2 samples, 0.02%)</title><rect x="450.3" y="449" width="0.2" height="15.0" fill="rgb(238,8,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="453.31" y="459.5" font-size="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.mcall (6 samples, 0.05%)</title><rect x="527.3" y="625" width="0.5" height="15.0" fill="rgb(208,170,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="530.29" y="635.5" font-size="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.stopTheWorldWithSema (4 samples, 0.03%)</title><rect x="652.6" y="593" width="0.4" height="15.0" fill="rgb(212,10,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="655.63" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="18.7" y="593" width="0.2" height="15.0" fill="rgb(241,134,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.73" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>neigh_connected_output (11 samples, 0.08%)</title><rect x="429.0" y="385" width="1.0" height="15.0" fill="rgb(207,160,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="431.97" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>fmt.(*pp).handleMethods (7 samples, 0.05%)</title><rect x="338.4" y="449" width="0.6" height="15.0" fill="rgb(206,221,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="341.38" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (5 samples, 0.04%)</title><rect x="369.8" y="433" width="0.5" height="15.0" fill="rgb(250,205,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="372.81" y="443.5" font-size="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.gopreempt_m (5 samples, 0.04%)</title><rect x="364.1" y="465" width="0.5" height="15.0" fill="rgb(234,68,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="367.14" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>dequeue_entity (2 samples, 0.02%)</title><rect x="773.2" y="529" width="0.2" height="15.0" fill="rgb(245,72,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="776.20" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="247.5" y="641" width="0.2" height="15.0" fill="rgb(250,111,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="250.53" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (75 samples, 0.57%)</title><rect x="240.0" y="641" width="6.7" height="15.0" fill="rgb(210,40,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="242.97" y="651.5" font-size="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.systemstack (2 samples, 0.02%)</title><rect x="298.9" y="721" width="0.1" height="15.0" fill="rgb(224,177,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="301.85" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (4 samples, 0.03%)</title><rect x="573.2" y="401" width="0.4" height="15.0" fill="rgb(226,210,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="576.21" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="653.5" y="481" width="0.2" height="15.0" fill="rgb(245,210,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="656.53" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__audit_syscall_exit (3 samples, 0.02%)</title><rect x="588.2" y="433" width="0.2" height="15.0" fill="rgb(229,167,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="591.16" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (5 samples, 0.04%)</title><rect x="550.2" y="465" width="0.4" height="15.0" fill="rgb(230,177,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="553.16" y="475.5" font-size="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.convT2Islice (4 samples, 0.03%)</title><rect x="467.7" y="673" width="0.3" height="15.0" fill="rgb(251,195,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="470.68" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="645.7" y="273" width="0.2" height="15.0" fill="rgb(213,47,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="648.70" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (2 samples, 0.02%)</title><rect x="18.5" y="449" width="0.1" height="15.0" fill="rgb(252,158,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="21.46" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (3 samples, 0.02%)</title><rect x="575.8" y="289" width="0.3" height="15.0" fill="rgb(213,119,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="578.82" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="597.8" y="289" width="0.2" height="15.0" fill="rgb(247,170,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="600.79" y="299.5" font-size="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.notesleep (10 samples, 0.08%)</title><rect x="26.2" y="689" width="0.9" height="15.0" fill="rgb(241,50,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="29.21" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (2 samples, 0.02%)</title><rect x="24.1" y="625" width="0.2" height="15.0" fill="rgb(220,119,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="27.14" y="635.5" font-size="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.usleep (106 samples, 0.81%)</title><rect x="996.1" y="721" width="9.6" height="15.0" fill="rgb(237,21,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="999.14" y="731.5" font-size="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.(*mcache).nextFree.func1 (3 samples, 0.02%)</title><rect x="291.9" y="689" width="0.3" height="15.0" fill="rgb(223,121,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="294.92" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="13.8" y="465" width="0.2" height="15.0" fill="rgb(230,105,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.78" y="475.5" font-size="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.futex (2 samples, 0.02%)</title><rect x="558.7" y="449" width="0.2" height="15.0" fill="rgb(217,80,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="561.72" y="459.5" font-size="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.mcall (2 samples, 0.02%)</title><rect x="362.5" y="433" width="0.2" height="15.0" fill="rgb(222,129,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="365.51" y="443.5" font-size="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.epollwait (3 samples, 0.02%)</title><rect x="34.9" y="721" width="0.2" height="15.0" fill="rgb(230,200,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="37.85" y="731.5" font-size="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.futex (2 samples, 0.02%)</title><rect x="96.7" y="673" width="0.2" height="15.0" fill="rgb(215,9,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="99.71" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (2 samples, 0.02%)</title><rect x="341.4" y="385" width="0.1" height="15.0" fill="rgb(248,175,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="344.35" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="994.2" y="513" width="0.2" height="15.0" fill="rgb(251,59,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="997.25" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (4 samples, 0.03%)</title><rect x="973.1" y="417" width="0.3" height="15.0" fill="rgb(230,43,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="976.09" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (23 samples, 0.18%)</title><rect x="570.2" y="401" width="2.1" height="15.0" fill="rgb(230,202,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="573.24" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (3 samples, 0.02%)</title><rect x="663.2" y="593" width="0.2" height="15.0" fill="rgb(252,77,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="666.16" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="973.9" y="545" width="0.2" height="15.0" fill="rgb(219,210,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="976.90" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="414.4" y="449" width="0.2" height="15.0" fill="rgb(227,193,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="417.38" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (3 samples, 0.02%)</title><rect x="349.3" y="369" width="0.2" height="15.0" fill="rgb(234,17,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="352.28" y="379.5" font-size="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.futex (8 samples, 0.06%)</title><rect x="496.2" y="593" width="0.7" height="15.0" fill="rgb(252,52,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="499.23" y="603.5" font-size="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.morestack (3 samples, 0.02%)</title><rect x="327.8" y="785" width="0.3" height="15.0" fill="rgb(210,146,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="330.85" y="795.5" font-size="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.wakep (2 samples, 0.02%)</title><rect x="351.1" y="577" width="0.2" height="15.0" fill="rgb(207,29,2)" rx="2" ry="2" /> | |
<text text-anchor="" x="354.08" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (66 samples, 0.50%)</title><rect x="380.3" y="273" width="5.9" height="15.0" fill="rgb(253,135,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="383.25" y="283.5" font-size="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.gcStart (2 samples, 0.02%)</title><rect x="537.0" y="529" width="0.2" height="15.0" fill="rgb(248,107,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="540.02" y="539.5" font-size="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.stopm (5 samples, 0.04%)</title><rect x="498.0" y="481" width="0.5" height="15.0" fill="rgb(234,167,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="501.03" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (11 samples, 0.08%)</title><rect x="585.5" y="369" width="1.0" height="15.0" fill="rgb(236,182,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="588.55" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (3 samples, 0.02%)</title><rect x="664.7" y="529" width="0.3" height="15.0" fill="rgb(251,51,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="667.70" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (6 samples, 0.05%)</title><rect x="1184.8" y="689" width="0.5" height="15.0" fill="rgb(211,2,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="1187.78" y="699.5" font-size="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.systemstack (3 samples, 0.02%)</title><rect x="591.7" y="433" width="0.2" height="15.0" fill="rgb(225,196,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="594.67" y="443.5" font-size="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.futex (2 samples, 0.02%)</title><rect x="994.2" y="737" width="0.2" height="15.0" fill="rgb(247,79,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="997.25" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="592.9" y="321" width="0.2" height="15.0" fill="rgb(247,143,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="595.93" 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>runtime.mallocgc (2 samples, 0.02%)</title><rect x="370.8" y="593" width="0.2" height="15.0" fill="rgb(220,57,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="373.80" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (4 samples, 0.03%)</title><rect x="291.2" y="497" width="0.4" height="15.0" fill="rgb(208,186,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="294.20" y="507.5" font-size="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.notesleep (4 samples, 0.03%)</title><rect x="563.9" y="465" width="0.4" height="15.0" fill="rgb(225,76,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="566.94" y="475.5" font-size="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.markroot (2 samples, 0.02%)</title><rect x="474.9" y="529" width="0.2" height="15.0" fill="rgb(227,21,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="477.89" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (2 samples, 0.02%)</title><rect x="645.7" y="289" width="0.2" height="15.0" fill="rgb(234,136,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="648.70" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>strings.ToLower (5 samples, 0.04%)</title><rect x="506.0" y="689" width="0.5" height="15.0" fill="rgb(212,82,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="509.04" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="253.6" y="689" width="0.1" height="15.0" fill="rgb(221,96,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="256.56" y="699.5" font-size="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.park_m (10 samples, 0.08%)</title><rect x="471.6" y="609" width="0.9" height="15.0" fill="rgb(239,194,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="474.56" y="619.5" font-size="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.(*mcentral).cacheSpan (3 samples, 0.02%)</title><rect x="423.7" y="577" width="0.2" height="15.0" fill="rgb(227,214,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="426.65" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (4 samples, 0.03%)</title><rect x="522.7" y="353" width="0.4" height="15.0" fill="rgb(209,142,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="525.70" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (8 samples, 0.06%)</title><rect x="146.4" y="625" width="0.7" height="15.0" fill="rgb(245,31,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="149.41" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (4 samples, 0.03%)</title><rect x="25.6" y="481" width="0.3" height="15.0" fill="rgb(254,91,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="28.58" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="436.8" y="465" width="0.3" height="15.0" fill="rgb(211,218,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="439.80" y="475.5" font-size="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_curr (2 samples, 0.02%)</title><rect x="64.3" y="513" width="0.2" height="15.0" fill="rgb(226,30,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="67.30" y="523.5" font-size="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.mcall (2 samples, 0.02%)</title><rect x="254.2" y="737" width="0.2" height="15.0" fill="rgb(225,208,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="257.19" y="747.5" font-size="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.stopm (60 samples, 0.46%)</title><rect x="149.8" y="705" width="5.4" height="15.0" fill="rgb(240,9,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="152.84" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/github.com/go-kit/kit/log.(*context).Log (141 samples, 1.08%)</title><rect x="449.9" y="721" width="12.7" height="15.0" fill="rgb(211,190,50)" rx="2" ry="2" /> | |
<text text-anchor="" x="452.95" y="731.5" font-size="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.futex (4 samples, 0.03%)</title><rect x="636.2" y="401" width="0.3" height="15.0" fill="rgb(229,52,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="639.15" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (2 samples, 0.02%)</title><rect x="516.5" y="321" width="0.2" height="15.0" fill="rgb(207,229,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="519.49" 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>perf_pmu_enable (31 samples, 0.24%)</title><rect x="704.6" y="513" width="2.8" height="15.0" fill="rgb(244,84,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="707.58" y="523.5" font-size="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.runqgrab (4 samples, 0.03%)</title><rect x="651.5" y="481" width="0.4" height="15.0" fill="rgb(221,212,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="654.55" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (7 samples, 0.05%)</title><rect x="563.0" y="449" width="0.7" height="15.0" fill="rgb(247,223,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="566.04" y="459.5" font-size="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.findrunnable (3 samples, 0.02%)</title><rect x="506.7" y="433" width="0.2" height="15.0" fill="rgb(229,49,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="509.67" y="443.5" font-size="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_balance (10 samples, 0.08%)</title><rect x="812.5" y="545" width="0.9" height="15.0" fill="rgb(252,142,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="815.45" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (2 samples, 0.02%)</title><rect x="821.8" y="577" width="0.2" height="15.0" fill="rgb(216,71,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="824.82" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (3 samples, 0.02%)</title><rect x="29.8" y="449" width="0.3" height="15.0" fill="rgb(207,50,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="32.81" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (5 samples, 0.04%)</title><rect x="550.2" y="433" width="0.4" height="15.0" fill="rgb(250,47,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="553.16" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_sched_yield (55 samples, 0.42%)</title><rect x="931.5" y="673" width="4.9" height="15.0" fill="rgb(216,70,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="934.49" y="683.5" font-size="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.mcall (23 samples, 0.18%)</title><rect x="166.2" y="801" width="2.1" height="15.0" fill="rgb(241,86,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="169.22" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bytes.makeSlice (36 samples, 0.27%)</title><rect x="352.8" y="577" width="3.2" height="15.0" fill="rgb(235,39,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="355.79" y="587.5" font-size="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.goparkunlock (83 samples, 0.63%)</title><rect x="283.0" y="673" width="7.5" height="15.0" fill="rgb(247,172,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="286.01" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (59 samples, 0.45%)</title><rect x="185.8" y="657" width="5.3" height="15.0" fill="rgb(213,20,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="188.76" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>poll_schedule_timeout (4 samples, 0.03%)</title><rect x="442.7" y="417" width="0.3" height="15.0" fill="rgb(254,220,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="445.65" y="427.5" font-size="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.exitsyscall0 (8 samples, 0.06%)</title><rect x="325.9" y="657" width="0.7" height="15.0" fill="rgb(215,29,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="328.87" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (6 samples, 0.05%)</title><rect x="610.7" y="497" width="0.5" height="15.0" fill="rgb(245,203,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="613.67" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (6 samples, 0.05%)</title><rect x="253.0" y="705" width="0.6" height="15.0" fill="rgb(225,143,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="256.02" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (2 samples, 0.02%)</title><rect x="505.5" y="449" width="0.2" height="15.0" fill="rgb(215,2,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="508.50" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (4 samples, 0.03%)</title><rect x="442.7" y="257" width="0.3" height="15.0" fill="rgb(239,80,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="445.65" 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>runtime.notesleep (2 samples, 0.02%)</title><rect x="974.3" y="641" width="0.2" height="15.0" fill="rgb(239,171,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="977.35" y="651.5" font-size="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.futex (2 samples, 0.02%)</title><rect x="345.3" y="481" width="0.2" height="15.0" fill="rgb(252,108,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="348.32" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (4 samples, 0.03%)</title><rect x="472.1" y="433" width="0.4" height="15.0" fill="rgb(217,175,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="475.10" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/github.com/prometheus/procfs.ProcStat.StartTime (2 samples, 0.02%)</title><rect x="254.5" y="753" width="0.1" height="15.0" fill="rgb(229,82,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="257.46" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (6 samples, 0.05%)</title><rect x="355.4" y="401" width="0.5" height="15.0" fill="rgb(233,172,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="358.40" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="164.9" y="609" width="0.2" height="15.0" fill="rgb(232,86,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="167.87" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (3 samples, 0.02%)</title><rect x="527.6" y="385" width="0.2" height="15.0" fill="rgb(246,41,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="530.56" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>enqueue_entity (6 samples, 0.05%)</title><rect x="940.2" y="513" width="0.6" height="15.0" fill="rgb(216,111,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="943.22" y="523.5" font-size="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.(*mcache).refill (5 samples, 0.04%)</title><rect x="463.9" y="609" width="0.5" height="15.0" fill="rgb(215,173,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="466.90" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule_hrtimeout_range_clock (2 samples, 0.02%)</title><rect x="276.6" y="353" width="0.2" height="15.0" fill="rgb(244,50,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="279.61" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_select (5 samples, 0.04%)</title><rect x="598.6" y="353" width="0.5" height="15.0" fill="rgb(238,134,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="601.60" y="363.5" font-size="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.lock (4 samples, 0.03%)</title><rect x="14.0" y="561" width="0.3" height="15.0" fill="rgb(228,39,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.96" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (28 samples, 0.21%)</title><rect x="178.4" y="673" width="2.5" height="15.0" fill="rgb(231,47,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="181.38" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (3 samples, 0.02%)</title><rect x="645.6" y="353" width="0.3" height="15.0" fill="rgb(207,226,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="648.61" y="363.5" font-size="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.notesleep (2 samples, 0.02%)</title><rect x="98.3" y="625" width="0.2" height="15.0" fill="rgb(254,137,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="101.33" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (2 samples, 0.02%)</title><rect x="480.0" y="257" width="0.2" height="15.0" fill="rgb(205,15,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="483.02" 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>perf_pmu_enable (3 samples, 0.02%)</title><rect x="709.7" y="513" width="0.3" height="15.0" fill="rgb(251,23,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="712.72" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (4 samples, 0.03%)</title><rect x="573.2" y="353" width="0.4" height="15.0" fill="rgb(221,116,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="576.21" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (4 samples, 0.03%)</title><rect x="746.0" y="641" width="0.4" height="15.0" fill="rgb(245,135,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="749.00" y="651.5" font-size="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.newobject (69 samples, 0.53%)</title><rect x="690.6" y="785" width="6.2" height="15.0" fill="rgb(227,148,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="693.63" y="795.5" font-size="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.WriteString (4 samples, 0.03%)</title><rect x="359.1" y="417" width="0.4" height="15.0" fill="rgb(211,47,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="362.09" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__audit_syscall_exit (6 samples, 0.05%)</title><rect x="519.3" y="529" width="0.5" height="15.0" fill="rgb(251,164,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="522.28" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="165.7" y="593" width="0.2" height="15.0" fill="rgb(237,93,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="168.68" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (3 samples, 0.02%)</title><rect x="557.9" y="369" width="0.3" height="15.0" fill="rgb(226,144,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="560.91" y="379.5" font-size="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.markroot (3 samples, 0.02%)</title><rect x="144.8" y="641" width="0.3" height="15.0" fill="rgb(247,193,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="147.79" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (4 samples, 0.03%)</title><rect x="1163.7" y="673" width="0.4" height="15.0" fill="rgb(207,131,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="1166.71" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (2 samples, 0.02%)</title><rect x="766.1" y="433" width="0.2" height="15.0" fill="rgb(238,208,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="769.08" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>internal/poll.(*FD).Read (21 samples, 0.16%)</title><rect x="300.1" y="641" width="1.9" height="15.0" fill="rgb(223,206,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="303.12" y="651.5" font-size="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.(*mcentral).cacheSpan (4 samples, 0.03%)</title><rect x="336.7" y="465" width="0.3" height="15.0" fill="rgb(218,105,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="339.67" y="475.5" font-size="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.schedule (85 samples, 0.65%)</title><rect x="103.0" y="769" width="7.7" height="15.0" fill="rgb(216,187,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="106.01" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/gopkg.in/yaml%2ev2.(*encoder).finish (11 samples, 0.08%)</title><rect x="506.5" y="689" width="1.0" height="15.0" fill="rgb(213,18,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="509.49" y="699.5" font-size="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.mallocgc (39 samples, 0.30%)</title><rect x="522.1" y="657" width="3.5" height="15.0" fill="rgb(214,117,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="525.07" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (44 samples, 0.34%)</title><rect x="734.7" y="593" width="4.0" height="15.0" fill="rgb(217,180,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="737.75" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sync.(*Pool).pinSlow (3 samples, 0.02%)</title><rect x="315.2" y="705" width="0.3" height="15.0" fill="rgb(241,149,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="318.24" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>reflect.(*structType).Field (2 samples, 0.02%)</title><rect x="512.7" y="561" width="0.2" height="15.0" fill="rgb(236,113,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="515.70" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (5 samples, 0.04%)</title><rect x="489.8" y="449" width="0.5" height="15.0" fill="rgb(249,89,39)" rx="2" ry="2" /> | |
<text text-anchor="" x="492.83" y="459.5" font-size="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.gcMark (2 samples, 0.02%)</title><rect x="438.8" y="609" width="0.2" height="15.0" fill="rgb(225,177,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="441.78" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__audit_syscall_exit (3 samples, 0.02%)</title><rect x="361.7" y="337" width="0.3" height="15.0" fill="rgb(213,101,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="364.70" y="347.5" font-size="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.findrunnable (4 samples, 0.03%)</title><rect x="34.4" y="737" width="0.4" height="15.0" fill="rgb(238,4,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="37.40" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__irqentry_text_start (3 samples, 0.02%)</title><rect x="833.2" y="561" width="0.2" height="15.0" fill="rgb(251,37,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="836.16" y="571.5" font-size="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.makemap (12 samples, 0.09%)</title><rect x="656.6" y="689" width="1.1" height="15.0" fill="rgb(218,8,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="659.59" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="376.8" y="577" width="0.3" height="15.0" fill="rgb(228,41,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="379.83" y="587.5" font-size="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.(*mcache).refill (8 samples, 0.06%)</title><rect x="354.4" y="497" width="0.7" height="15.0" fill="rgb(207,199,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="357.41" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (3 samples, 0.02%)</title><rect x="156.3" y="577" width="0.3" height="15.0" fill="rgb(233,56,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="159.32" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (5 samples, 0.04%)</title><rect x="471.6" y="321" width="0.5" height="15.0" fill="rgb(242,17,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="474.65" 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>futex_wait_queue_me (7 samples, 0.05%)</title><rect x="145.1" y="561" width="0.6" height="15.0" fill="rgb(213,69,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="148.06" y="571.5" font-size="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.(*mcache).nextFree.func1 (4 samples, 0.03%)</title><rect x="479.8" y="593" width="0.4" height="15.0" fill="rgb(233,33,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="482.84" y="603.5" font-size="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.goschedImpl (4 samples, 0.03%)</title><rect x="565.0" y="625" width="0.4" height="15.0" fill="rgb(229,192,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="568.02" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (16 samples, 0.12%)</title><rect x="520.4" y="385" width="1.5" height="15.0" fill="rgb(251,66,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="523.45" y="395.5" font-size="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.stopm (2 samples, 0.02%)</title><rect x="29.4" y="673" width="0.1" height="15.0" fill="rgb(240,66,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="32.36" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (2 samples, 0.02%)</title><rect x="249.7" y="561" width="0.2" height="15.0" fill="rgb(230,68,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="252.69" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (4 samples, 0.03%)</title><rect x="28.5" y="433" width="0.4" height="15.0" fill="rgb(247,7,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="31.55" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (2 samples, 0.02%)</title><rect x="567.7" y="273" width="0.2" height="15.0" fill="rgb(226,175,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="570.72" y="283.5" font-size="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/x509.(*Certificate).CheckSignatureFrom (57 samples, 0.43%)</title><rect x="271.2" y="705" width="5.1" height="15.0" fill="rgb(242,125,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="274.21" y="715.5" font-size="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.slicebytetostring (3 samples, 0.02%)</title><rect x="302.6" y="753" width="0.3" height="15.0" fill="rgb(228,87,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="305.64" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (5 samples, 0.04%)</title><rect x="15.8" y="433" width="0.4" height="15.0" fill="rgb(238,163,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="18.76" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (2 samples, 0.02%)</title><rect x="286.1" y="385" width="0.1" height="15.0" fill="rgb(247,135,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="289.07" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net.srcAddrs (2 samples, 0.02%)</title><rect x="264.4" y="705" width="0.1" height="15.0" fill="rgb(222,52,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="267.37" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (6 samples, 0.05%)</title><rect x="28.5" y="593" width="0.5" height="15.0" fill="rgb(241,203,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="31.46" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="566.4" y="177" width="0.1" height="15.0" fill="rgb(215,135,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="569.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>runtime.(*mcache).nextFree.func1 (6 samples, 0.05%)</title><rect x="528.6" y="657" width="0.5" height="15.0" fill="rgb(241,36,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="531.55" y="667.5" font-size="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.lock (2 samples, 0.02%)</title><rect x="157.1" y="689" width="0.2" height="15.0" fill="rgb(249,172,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="160.13" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (3 samples, 0.02%)</title><rect x="542.6" y="465" width="0.3" height="15.0" fill="rgb(244,75,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="545.60" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (25 samples, 0.19%)</title><rect x="182.3" y="641" width="2.3" height="15.0" fill="rgb(221,50,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="185.34" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="277.8" y="401" width="0.2" height="15.0" fill="rgb(215,193,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="280.78" y="411.5" font-size="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.futex (2 samples, 0.02%)</title><rect x="249.7" y="737" width="0.2" height="15.0" fill="rgb(222,3,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="252.69" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (4 samples, 0.03%)</title><rect x="50.5" y="593" width="0.4" height="15.0" fill="rgb(242,43,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="53.52" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="540.7" y="321" width="0.3" height="15.0" fill="rgb(220,193,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="543.71" 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>__intel_pmu_enable_all (5 samples, 0.04%)</title><rect x="697.6" y="497" width="0.4" height="15.0" fill="rgb(229,218,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="700.56" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (3 samples, 0.02%)</title><rect x="652.6" y="385" width="0.3" height="15.0" fill="rgb(234,201,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="655.63" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (10 samples, 0.08%)</title><rect x="599.4" y="385" width="0.9" height="15.0" fill="rgb(212,107,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="602.41" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (3 samples, 0.02%)</title><rect x="259.1" y="305" width="0.2" height="15.0" fill="rgb(236,69,20)" rx="2" ry="2" /> | |
<text text-anchor="" x="262.06" 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>__schedule (16 samples, 0.12%)</title><rect x="439.6" y="401" width="1.4" height="15.0" fill="rgb(211,101,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="442.59" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (6 samples, 0.05%)</title><rect x="716.3" y="577" width="0.5" height="15.0" fill="rgb(208,184,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="719.29" y="587.5" font-size="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.park_m (2 samples, 0.02%)</title><rect x="462.2" y="593" width="0.2" height="15.0" fill="rgb(254,215,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="465.19" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (3 samples, 0.02%)</title><rect x="557.9" y="465" width="0.3" height="15.0" fill="rgb(224,144,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="560.91" y="475.5" font-size="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.mallocgc (6 samples, 0.05%)</title><rect x="546.5" y="657" width="0.5" height="15.0" fill="rgb(246,34,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="549.47" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>finish_task_switch (3 samples, 0.02%)</title><rect x="640.0" y="401" width="0.3" height="15.0" fill="rgb(237,167,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="643.02" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (6 samples, 0.05%)</title><rect x="594.6" y="353" width="0.5" height="15.0" fill="rgb(214,162,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="597.55" y="363.5" font-size="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.semacquire1 (2 samples, 0.02%)</title><rect x="423.4" y="593" width="0.2" height="15.0" fill="rgb(246,17,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="426.38" y="603.5" font-size="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.morestack (3 samples, 0.02%)</title><rect x="12.9" y="641" width="0.3" height="15.0" fill="rgb(208,158,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="15.88" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="466.8" y="545" width="0.2" height="15.0" fill="rgb(249,113,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="469.78" y="555.5" font-size="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.gcAssistAlloc (2 samples, 0.02%)</title><rect x="342.5" y="561" width="0.2" height="15.0" fill="rgb(215,183,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="345.52" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>deactivate_task (2 samples, 0.02%)</title><rect x="667.8" y="481" width="0.2" height="15.0" fill="rgb(232,215,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="670.85" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (3 samples, 0.02%)</title><rect x="293.5" y="545" width="0.3" height="15.0" fill="rgb(232,192,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="296.54" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (13 samples, 0.10%)</title><rect x="286.6" y="465" width="1.2" height="15.0" fill="rgb(235,18,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="289.61" y="475.5" font-size="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.mcall (2 samples, 0.02%)</title><rect x="252.8" y="801" width="0.2" height="15.0" fill="rgb(248,45,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="255.84" y="811.5" font-size="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.preemptall (3 samples, 0.02%)</title><rect x="958.2" y="753" width="0.3" height="15.0" fill="rgb(231,57,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="961.23" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (3 samples, 0.02%)</title><rect x="556.8" y="385" width="0.3" height="15.0" fill="rgb(223,110,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="559.82" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="994.2" y="721" width="0.2" height="15.0" fill="rgb(253,160,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="997.25" y="731.5" font-size="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.(*mcentral).cacheSpan (13 samples, 0.10%)</title><rect x="547.7" y="577" width="1.2" height="15.0" fill="rgb(252,107,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="550.73" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (7 samples, 0.05%)</title><rect x="1187.9" y="513" width="0.7" height="15.0" fill="rgb(238,196,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="1190.93" y="523.5" font-size="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.goparkunlock (3 samples, 0.02%)</title><rect x="328.3" y="705" width="0.3" height="15.0" fill="rgb(236,115,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="331.30" y="715.5" font-size="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.(*mheap).allocSpanLocked (2 samples, 0.02%)</title><rect x="635.8" y="497" width="0.2" height="15.0" fill="rgb(218,125,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="638.79" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (2 samples, 0.02%)</title><rect x="640.7" y="401" width="0.2" height="15.0" fill="rgb(236,64,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="643.74" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule_hrtimeout_range (5 samples, 0.04%)</title><rect x="253.1" y="657" width="0.5" height="15.0" fill="rgb(212,67,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="256.11" y="667.5" font-size="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.findrunnable (13 samples, 0.10%)</title><rect x="419.6" y="465" width="1.2" height="15.0" fill="rgb(248,129,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="422.60" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>internal/poll.(*FD).Read (5 samples, 0.04%)</title><rect x="333.3" y="577" width="0.4" height="15.0" fill="rgb(238,165,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="336.25" y="587.5" font-size="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.(*mheap).alloc_m (6 samples, 0.05%)</title><rect x="577.0" y="449" width="0.5" height="15.0" fill="rgb(239,134,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="579.99" y="459.5" font-size="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.systemstack (14 samples, 0.11%)</title><rect x="421.4" y="561" width="1.3" height="15.0" fill="rgb(231,210,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="424.40" y="571.5" font-size="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.goparkunlock (2 samples, 0.02%)</title><rect x="427.0" y="609" width="0.2" height="15.0" fill="rgb(217,6,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="429.98" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="96.7" y="657" width="0.2" height="15.0" fill="rgb(212,119,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="99.71" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (6 samples, 0.05%)</title><rect x="1189.4" y="529" width="0.5" height="15.0" fill="rgb(252,110,28)" rx="2" ry="2" /> | |
<text text-anchor="" x="1192.37" y="539.5" font-size="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.(*mheap).freeSpan.func1 (3 samples, 0.02%)</title><rect x="354.9" y="353" width="0.2" height="15.0" fill="rgb(228,56,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="357.86" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>poll_schedule_timeout (3 samples, 0.02%)</title><rect x="528.0" y="417" width="0.3" height="15.0" fill="rgb(213,99,33)" rx="2" ry="2" /> | |
<text text-anchor="" x="531.01" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (20 samples, 0.15%)</title><rect x="962.9" y="593" width="1.8" height="15.0" fill="rgb(233,47,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="965.91" y="603.5" font-size="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.notesleep (17 samples, 0.13%)</title><rect x="672.0" y="593" width="1.5" height="15.0" fill="rgb(220,178,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="674.99" y="603.5" font-size="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_sys_select (2 samples, 0.02%)</title><rect x="491.5" y="417" width="0.1" height="15.0" fill="rgb(223,101,37)" rx="2" ry="2" /> | |
<text text-anchor="" x="494.45" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (5 samples, 0.04%)</title><rect x="550.2" y="305" width="0.4" height="15.0" fill="rgb(210,152,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="553.16" 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>net/http.Header.WriteSubset (24 samples, 0.18%)</title><rect x="317.5" y="737" width="2.2" height="15.0" fill="rgb(215,161,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.49" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>reflect.(*structType).Field (5 samples, 0.04%)</title><rect x="513.1" y="577" width="0.4" height="15.0" fill="rgb(240,154,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="516.06" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="12.4" y="385" width="0.2" height="15.0" fill="rgb(213,135,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="15.43" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>compress/flate.(*byFreq).sort (13 samples, 0.10%)</title><rect x="533.7" y="561" width="1.2" height="15.0" fill="rgb(218,47,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="536.68" y="571.5" font-size="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.gcAssistAlloc (17 samples, 0.13%)</title><rect x="259.1" y="641" width="1.5" height="15.0" fill="rgb(254,21,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="262.06" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="566.4" y="369" width="0.1" height="15.0" fill="rgb(240,98,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="569.37" y="379.5" font-size="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.notesleep (6 samples, 0.05%)</title><rect x="177.0" y="721" width="0.6" height="15.0" fill="rgb(208,129,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="180.03" y="731.5" font-size="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.systemstack (6 samples, 0.05%)</title><rect x="443.4" y="673" width="0.5" height="15.0" fill="rgb(231,55,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="446.37" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (8 samples, 0.06%)</title><rect x="321.3" y="369" width="0.7" height="15.0" fill="rgb(231,117,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="324.28" y="379.5" font-size="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.stopm (6 samples, 0.05%)</title><rect x="644.0" y="417" width="0.5" height="15.0" fill="rgb(233,193,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="646.99" y="427.5" font-size="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.schedule (23 samples, 0.18%)</title><rect x="166.2" y="769" width="2.1" height="15.0" fill="rgb(226,93,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="169.22" y="779.5" font-size="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.notesleep (28 samples, 0.21%)</title><rect x="113.2" y="705" width="2.5" height="15.0" fill="rgb(238,77,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="116.19" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_futex (2 samples, 0.02%)</title><rect x="45.3" y="593" width="0.2" height="15.0" fill="rgb(237,218,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="48.30" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/github.com/go-kit/kit/log.(*context).Log (2 samples, 0.02%)</title><rect x="333.9" y="657" width="0.2" height="15.0" fill="rgb(239,176,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="336.88" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (2 samples, 0.02%)</title><rect x="259.4" y="385" width="0.2" height="15.0" fill="rgb(231,172,7)" rx="2" ry="2" /> | |
<text text-anchor="" x="262.42" y="395.5" font-size="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.findrunnable (2 samples, 0.02%)</title><rect x="352.9" y="433" width="0.2" height="15.0" fill="rgb(235,221,53)" rx="2" ry="2" /> | |
<text text-anchor="" x="355.88" y="443.5" font-size="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_curr (2 samples, 0.02%)</title><rect x="947.2" y="529" width="0.2" height="15.0" fill="rgb(221,65,52)" rx="2" ry="2" /> | |
<text text-anchor="" x="950.25" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="325.9" y="401" width="0.1" height="15.0" fill="rgb(230,39,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="328.87" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="277.6" y="577" width="0.2" height="15.0" fill="rgb(209,130,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="280.60" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (12 samples, 0.09%)</title><rect x="439.8" y="305" width="1.1" height="15.0" fill="rgb(214,24,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="442.77" 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>runtime.lock (3 samples, 0.02%)</title><rect x="492.4" y="433" width="0.2" height="15.0" fill="rgb(230,29,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="495.35" y="443.5" font-size="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.flushmcache (2 samples, 0.02%)</title><rect x="116.9" y="673" width="0.2" height="15.0" fill="rgb(252,85,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="119.88" y="683.5" font-size="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.gosweepone.func1 (3 samples, 0.02%)</title><rect x="430.3" y="545" width="0.3" height="15.0" fill="rgb(206,111,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="433.32" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (2 samples, 0.02%)</title><rect x="566.4" y="209" width="0.1" height="15.0" fill="rgb(225,121,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="569.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>runtime.gcStart (3 samples, 0.02%)</title><rect x="540.7" y="513" width="0.3" height="15.0" fill="rgb(248,90,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="543.71" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>github.com/prometheus/blackbox_exporter/vendor/github.com/go-kit/kit/log.timeFormat.MarshalText (9 samples, 0.07%)</title><rect x="452.6" y="545" width="0.8" height="15.0" fill="rgb(244,165,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="455.56" y="555.5" font-size="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.schedule (5 samples, 0.04%)</title><rect x="330.4" y="657" width="0.4" height="15.0" fill="rgb(229,105,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="333.37" y="667.5" font-size="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.(*mcentral).cacheSpan (2 samples, 0.02%)</title><rect x="454.8" y="385" width="0.2" height="15.0" fill="rgb(232,199,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="457.81" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>bond_dev_queue_xmit (3 samples, 0.02%)</title><rect x="429.1" y="241" width="0.3" height="15.0" fill="rgb(213,44,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="432.15" 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>__schedule (2 samples, 0.02%)</title><rect x="290.2" y="497" width="0.2" height="15.0" fill="rgb(206,67,6)" rx="2" ry="2" /> | |
<text text-anchor="" x="293.21" y="507.5" font-size="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.park_m (6 samples, 0.05%)</title><rect x="252.3" y="753" width="0.5" height="15.0" fill="rgb(213,195,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="255.30" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (3 samples, 0.02%)</title><rect x="42.2" y="449" width="0.3" height="15.0" fill="rgb(253,52,34)" rx="2" ry="2" /> | |
<text text-anchor="" x="45.24" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (2 samples, 0.02%)</title><rect x="290.2" y="433" width="0.2" height="15.0" fill="rgb(236,101,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="293.21" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (12 samples, 0.09%)</title><rect x="710.7" y="481" width="1.1" height="15.0" fill="rgb(205,91,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="713.71" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (4 samples, 0.03%)</title><rect x="700.4" y="545" width="0.3" height="15.0" fill="rgb(226,23,22)" rx="2" ry="2" /> | |
<text text-anchor="" x="703.35" y="555.5" font-size="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.chanrecv (2 samples, 0.02%)</title><rect x="546.1" y="657" width="0.2" height="15.0" fill="rgb(208,194,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="549.11" y="667.5" font-size="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.gcParkAssist (4 samples, 0.03%)</title><rect x="84.5" y="785" width="0.3" height="15.0" fill="rgb(249,168,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="87.46" y="795.5" font-size="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.futex (3 samples, 0.02%)</title><rect x="261.5" y="561" width="0.3" height="15.0" fill="rgb(230,201,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="264.49" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sync.runtime_SemacquireMutex (6 samples, 0.05%)</title><rect x="329.6" y="721" width="0.5" height="15.0" fill="rgb(254,152,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="332.56" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="592.9" y="353" width="0.2" height="15.0" fill="rgb(223,179,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="595.93" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule_hrtimeout_range_clock (4 samples, 0.03%)</title><rect x="353.9" y="241" width="0.3" height="15.0" fill="rgb(230,71,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="356.87" 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>do_futex (4 samples, 0.03%)</title><rect x="502.7" y="417" width="0.4" height="15.0" fill="rgb(237,186,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="505.71" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (33 samples, 0.25%)</title><rect x="91.7" y="577" width="2.9" height="15.0" fill="rgb(252,79,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="94.67" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="17.9" y="369" width="0.2" height="15.0" fill="rgb(245,21,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="20.92" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (5 samples, 0.04%)</title><rect x="1060.3" y="593" width="0.5" height="15.0" fill="rgb(217,42,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="1063.34" y="603.5" font-size="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.systemstack (2 samples, 0.02%)</title><rect x="515.9" y="641" width="0.2" height="15.0" fill="rgb(220,98,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="518.95" y="651.5" font-size="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.funcspdelta (2 samples, 0.02%)</title><rect x="293.0" y="705" width="0.2" height="15.0" fill="rgb(238,149,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="296.00" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_sched_yield (3 samples, 0.02%)</title><rect x="546.7" y="465" width="0.2" height="15.0" fill="rgb(234,39,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="549.65" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (6 samples, 0.05%)</title><rect x="28.5" y="545" width="0.5" height="15.0" fill="rgb(234,102,46)" rx="2" ry="2" /> | |
<text text-anchor="" x="31.46" y="555.5" font-size="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.usleep (4 samples, 0.03%)</title><rect x="442.7" y="513" width="0.3" height="15.0" fill="rgb(231,224,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="445.65" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (40 samples, 0.31%)</title><rect x="391.1" y="417" width="3.6" height="15.0" fill="rgb(216,10,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="394.15" y="427.5" font-size="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.morestack (2 samples, 0.02%)</title><rect x="12.7" y="625" width="0.2" height="15.0" fill="rgb(248,146,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="15.70" y="635.5" font-size="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.futex (4 samples, 0.03%)</title><rect x="516.8" y="497" width="0.4" height="15.0" fill="rgb(211,85,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="519.85" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (5 samples, 0.04%)</title><rect x="100.5" y="465" width="0.4" height="15.0" fill="rgb(237,18,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="103.49" y="475.5" font-size="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.gopreempt_m (2 samples, 0.02%)</title><rect x="337.0" y="497" width="0.2" height="15.0" fill="rgb(236,40,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="340.03" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (5 samples, 0.04%)</title><rect x="563.2" y="273" width="0.5" height="15.0" fill="rgb(238,140,43)" rx="2" ry="2" /> | |
<text text-anchor="" x="566.22" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (17 samples, 0.13%)</title><rect x="98.8" y="641" width="1.5" height="15.0" fill="rgb(230,155,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="101.78" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (4 samples, 0.03%)</title><rect x="89.8" y="449" width="0.3" height="15.0" fill="rgb(231,13,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="92.78" y="459.5" font-size="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.markroot (2 samples, 0.02%)</title><rect x="599.2" y="417" width="0.2" height="15.0" fill="rgb(239,196,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="602.23" y="427.5" font-size="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.deductSweepCredit (2 samples, 0.02%)</title><rect x="480.0" y="545" width="0.2" height="15.0" fill="rgb(206,71,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="483.02" y="555.5" font-size="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.(*mcache).nextFree.func1 (2 samples, 0.02%)</title><rect x="969.8" y="561" width="0.1" height="15.0" fill="rgb(250,109,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="972.76" y="571.5" font-size="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.futex (6 samples, 0.05%)</title><rect x="53.4" y="721" width="0.5" height="15.0" fill="rgb(221,98,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="56.40" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (7 samples, 0.05%)</title><rect x="142.2" y="689" width="0.6" height="15.0" fill="rgb(241,146,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="145.18" y="699.5" font-size="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.schedule (2 samples, 0.02%)</title><rect x="651.9" y="513" width="0.2" height="15.0" fill="rgb(228,212,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="654.91" y="523.5" font-size="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.futex (3 samples, 0.02%)</title><rect x="535.5" y="369" width="0.3" height="15.0" fill="rgb(241,215,23)" rx="2" ry="2" /> | |
<text text-anchor="" x="538.48" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>strings.genSplit (2 samples, 0.02%)</title><rect x="557.2" y="657" width="0.2" height="15.0" fill="rgb(254,3,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="560.19" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>strings.IndexFunc (4 samples, 0.03%)</title><rect x="364.9" y="545" width="0.4" height="15.0" fill="rgb(227,118,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="367.95" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (3 samples, 0.02%)</title><rect x="53.7" y="561" width="0.2" height="15.0" fill="rgb(205,229,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="56.67" y="571.5" font-size="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.notesleep (3 samples, 0.02%)</title><rect x="160.7" y="705" width="0.3" height="15.0" fill="rgb(251,127,42)" rx="2" ry="2" /> | |
<text text-anchor="" x="163.73" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (60 samples, 0.46%)</title><rect x="185.7" y="673" width="5.4" height="15.0" fill="rgb(234,207,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="188.67" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (2 samples, 0.02%)</title><rect x="13.4" y="401" width="0.2" height="15.0" fill="rgb(218,163,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="16.42" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__lock_text_start (3 samples, 0.02%)</title><rect x="667.1" y="545" width="0.3" height="15.0" fill="rgb(211,38,45)" rx="2" ry="2" /> | |
<text text-anchor="" x="670.13" y="555.5" font-size="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.(*mspan).sweep (3 samples, 0.02%)</title><rect x="501.6" y="401" width="0.3" height="15.0" fill="rgb(238,162,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="504.63" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_futex (9 samples, 0.07%)</title><rect x="986.4" y="657" width="0.8" height="15.0" fill="rgb(245,24,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="989.42" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (16 samples, 0.12%)</title><rect x="111.1" y="609" width="1.5" height="15.0" fill="rgb(238,30,13)" rx="2" ry="2" /> | |
<text text-anchor="" x="114.12" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>net/http.(*conn).serve (4,317 samples, 32.94%)</title><rect x="276.9" y="817" width="388.7" height="15.0" fill="rgb(236,14,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="279.88" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >net/http.(*conn).serve</text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="373.8" y="321" width="0.1" height="15.0" fill="rgb(242,63,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="376.77" 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>github.com/prometheus/blackbox_exporter/vendor/github.com/go-logfmt/logfmt.writeStringKey (4 samples, 0.03%)</title><rect x="356.6" y="561" width="0.3" height="15.0" fill="rgb(211,55,36)" rx="2" ry="2" /> | |
<text text-anchor="" x="359.57" y="571.5" font-size="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.stopTheWorldWithSema (5 samples, 0.04%)</title><rect x="500.5" y="577" width="0.4" height="15.0" fill="rgb(227,63,19)" rx="2" ry="2" /> | |
<text text-anchor="" x="503.46" y="587.5" font-size="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.notesleep (3 samples, 0.02%)</title><rect x="271.8" y="481" width="0.3" height="15.0" fill="rgb(230,58,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="274.84" y="491.5" font-size="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.park_m (2 samples, 0.02%)</title><rect x="317.6" y="609" width="0.2" height="15.0" fill="rgb(228,81,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="320.58" y="619.5" font-size="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.systemstack (8 samples, 0.06%)</title><rect x="260.7" y="641" width="0.7" height="15.0" fill="rgb(210,85,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="263.68" y="651.5" font-size="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.park_m (2 samples, 0.02%)</title><rect x="435.2" y="513" width="0.2" height="15.0" fill="rgb(211,30,8)" rx="2" ry="2" /> | |
<text text-anchor="" x="438.18" y="523.5" font-size="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.systemstack (4 samples, 0.03%)</title><rect x="528.6" y="593" width="0.4" height="15.0" fill="rgb(235,158,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="531.64" y="603.5" font-size="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.futex (5 samples, 0.04%)</title><rect x="175.1" y="753" width="0.5" height="15.0" fill="rgb(235,87,29)" rx="2" ry="2" /> | |
<text text-anchor="" x="178.14" y="763.5" font-size="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.epollwait (2 samples, 0.02%)</title><rect x="250.3" y="641" width="0.2" height="15.0" fill="rgb(233,1,41)" rx="2" ry="2" /> | |
<text text-anchor="" x="253.32" y="651.5" font-size="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.runqsteal (11 samples, 0.08%)</title><rect x="115.9" y="737" width="1.0" height="15.0" fill="rgb(210,115,0)" rx="2" ry="2" /> | |
<text text-anchor="" x="118.89" y="747.5" font-size="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.goschedImpl (6 samples, 0.05%)</title><rect x="537.8" y="513" width="0.6" height="15.0" fill="rgb(236,105,25)" rx="2" ry="2" /> | |
<text text-anchor="" x="540.83" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ktime_get_ts64 (2 samples, 0.02%)</title><rect x="82.1" y="657" width="0.2" height="15.0" fill="rgb(223,124,30)" rx="2" ry="2" /> | |
<text text-anchor="" x="85.12" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (4 samples, 0.03%)</title><rect x="1163.7" y="577" width="0.4" height="15.0" fill="rgb(251,88,18)" rx="2" ry="2" /> | |
<text text-anchor="" x="1166.71" y="587.5" font-size="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.osyield (2 samples, 0.02%)</title><rect x="493.3" y="513" width="0.1" height="15.0" fill="rgb(219,28,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="496.26" y="523.5" font-size="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.schedule (3 samples, 0.02%)</title><rect x="162.8" y="721" width="0.3" height="15.0" fill="rgb(219,135,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="165.80" y="731.5" font-size="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.gcAssistAlloc (2 samples, 0.02%)</title><rect x="250.3" y="753" width="0.2" height="15.0" fill="rgb(209,53,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="253.32" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>schedule (2 samples, 0.02%)</title><rect x="16.6" y="513" width="0.2" height="15.0" fill="rgb(245,165,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="19.57" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="279.5" y="321" width="0.2" height="15.0" fill="rgb(250,131,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="282.50" 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>finish_task_switch (4 samples, 0.03%)</title><rect x="743.8" y="609" width="0.4" height="15.0" fill="rgb(237,68,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="746.84" y="619.5" font-size="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.deductSweepCredit (2 samples, 0.02%)</title><rect x="459.5" y="529" width="0.2" height="15.0" fill="rgb(243,158,44)" rx="2" ry="2" /> | |
<text text-anchor="" x="462.49" y="539.5" font-size="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.schedule (46 samples, 0.35%)</title><rect x="155.3" y="737" width="4.2" height="15.0" fill="rgb(218,199,14)" rx="2" ry="2" /> | |
<text text-anchor="" x="158.33" y="747.5" font-size="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.gcDrainN (2 samples, 0.02%)</title><rect x="537.4" y="481" width="0.2" height="15.0" fill="rgb(226,5,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="540.38" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="505.2" y="481" width="0.2" height="15.0" fill="rgb(244,58,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="508.23" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (3 samples, 0.02%)</title><rect x="575.8" y="273" width="0.3" height="15.0" fill="rgb(239,57,9)" rx="2" ry="2" /> | |
<text text-anchor="" x="578.82" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (9 samples, 0.07%)</title><rect x="262.7" y="401" width="0.8" height="15.0" fill="rgb(212,204,26)" rx="2" ry="2" /> | |
<text text-anchor="" x="265.66" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (2 samples, 0.02%)</title><rect x="505.7" y="561" width="0.2" height="15.0" fill="rgb(207,199,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="508.68" y="571.5" font-size="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.deferreturn (3 samples, 0.02%)</title><rect x="30.2" y="753" width="0.2" height="15.0" fill="rgb(254,57,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="33.17" y="763.5" font-size="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.morestack (3 samples, 0.02%)</title><rect x="508.7" y="529" width="0.3" height="15.0" fill="rgb(236,174,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="511.74" y="539.5" font-size="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.(*mcache).refill (2 samples, 0.02%)</title><rect x="310.6" y="721" width="0.1" height="15.0" fill="rgb(252,35,15)" rx="2" ry="2" /> | |
<text text-anchor="" x="313.56" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (6 samples, 0.05%)</title><rect x="432.7" y="545" width="0.5" height="15.0" fill="rgb(205,78,51)" rx="2" ry="2" /> | |
<text text-anchor="" x="435.66" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>ip_queue_xmit (29 samples, 0.22%)</title><rect x="322.7" y="465" width="2.6" height="15.0" fill="rgb(238,35,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="325.72" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__schedule (7 samples, 0.05%)</title><rect x="701.4" y="529" width="0.7" height="15.0" fill="rgb(234,65,49)" rx="2" ry="2" /> | |
<text text-anchor="" x="704.43" y="539.5" font-size="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.goparkunlock (20 samples, 0.15%)</title><rect x="262.3" y="641" width="1.8" height="15.0" fill="rgb(221,5,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="265.30" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>return_from_SYSCALL_64 (4 samples, 0.03%)</title><rect x="473.3" y="545" width="0.3" height="15.0" fill="rgb(246,84,12)" rx="2" ry="2" /> | |
<text text-anchor="" x="476.27" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait_queue_me (2 samples, 0.02%)</title><rect x="470.7" y="401" width="0.2" height="15.0" fill="rgb(230,202,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="473.74" y="411.5" font-size="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.park_m (2 samples, 0.02%)</title><rect x="247.7" y="785" width="0.2" height="15.0" fill="rgb(239,11,31)" rx="2" ry="2" /> | |
<text text-anchor="" x="250.71" y="795.5" font-size="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.schedule (52 samples, 0.40%)</title><rect x="965.1" y="497" width="4.7" height="15.0" fill="rgb(209,9,32)" rx="2" ry="2" /> | |
<text text-anchor="" x="968.08" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (4 samples, 0.03%)</title><rect x="50.5" y="577" width="0.4" height="15.0" fill="rgb(245,110,11)" rx="2" ry="2" /> | |
<text text-anchor="" x="53.52" y="587.5" font-size="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.(*mcache).nextFree.func1 (2 samples, 0.02%)</title><rect x="337.8" y="449" width="0.2" height="15.0" fill="rgb(233,201,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="340.84" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_pselect6 (5 samples, 0.04%)</title><rect x="329.6" y="529" width="0.4" height="15.0" fill="rgb(223,184,1)" rx="2" ry="2" /> | |
<text text-anchor="" x="332.56" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>sys_epoll_ctl (6 samples, 0.05%)</title><rect x="970.1" y="561" width="0.6" height="15.0" fill="rgb(240,166,10)" rx="2" ry="2" /> | |
<text text-anchor="" x="973.12" y="571.5" font-size="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.(*mcache).nextFree.func1 (2 samples, 0.02%)</title><rect x="649.6" y="593" width="0.1" height="15.0" fill="rgb(221,115,35)" rx="2" ry="2" /> | |
<text text-anchor="" x="652.57" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>futex_wait (2 samples, 0.02%)</title><rect x="973.9" y="593" width="0.2" height="15.0" fill="rgb(220,155,54)" rx="2" ry="2" /> | |
<text text-anchor="" x="976.90" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>perf_pmu_enable (98 samples, 0.75%)</title><rect x="753.8" y="497" width="8.9" height="15.0" fill="rgb(209,83,4)" rx="2" ry="2" /> | |
<text text-anchor="" x="756.84" y="507.5" font-size="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.futex (4 samples, 0.03%)</title><rect x="291.2" y="625" width="0.4" height="15.0" fill="rgb(231,19,47)" rx="2" ry="2" /> | |
<text text-anchor="" x="294.20" y="635.5" font-size="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.schedule (4 samples, 0.03%)</title><rect x="375.3" y="561" width="0.4" height="15.0" fill="rgb(218,111,38)" rx="2" ry="2" /> | |
<text text-anchor="" x="378.30" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>do_syscall_64 (2 samples, 0.02%)</title><rect x="650.5" y="353" width="0.1" height="15.0" fill="rgb(253,21,5)" rx="2" ry="2" /> | |
<text text-anchor="" x="653.47" y="363.5" font-size="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.gcAssistAlloc (10 samples, 0.08%)</title><rect x="647.1" y="593" width="0.9" height="15.0" fill="rgb(229,98,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="650.14" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (2 samples, 0.02%)</title><rect x="347.4" y="257" width="0.2" height="15.0" fill="rgb(240,184,27)" rx="2" ry="2" /> | |
<text text-anchor="" x="350.39" 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>runtime.mcall (2 samples, 0.02%)</title><rect x="270.0" y="657" width="0.2" height="15.0" fill="rgb(247,64,3)" rx="2" ry="2" /> | |
<text text-anchor="" x="273.04" y="667.5" font-size="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.gcAssistAlloc1 (11 samples, 0.08%)</title><rect x="609.5" y="545" width="1.0" height="15.0" fill="rgb(248,177,48)" rx="2" ry="2" /> | |
<text text-anchor="" x="612.50" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>intel_pmu_enable_all (3 samples, 0.02%)</title><rect x="1187.3" y="513" width="0.3" height="15.0" fill="rgb(205,150,40)" rx="2" ry="2" /> | |
<text text-anchor="" x="1190.30" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (2 samples, 0.02%)</title><rect x="635.5" y="401" width="0.2" height="15.0" fill="rgb(244,16,24)" rx="2" ry="2" /> | |
<text text-anchor="" x="638.52" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>x86_pmu_enable (2 samples, 0.02%)</title><rect x="460.7" y="337" width="0.1" height="15.0" fill="rgb(213,120,21)" rx="2" ry="2" /> | |
<text text-anchor="" x="463.66" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
<title>__perf_event_task_sched_in (2 samples, 0.02%)</title><rect x="493.1" y="337" width="0.2" height="15.0" fill="rgb(244,83,17)" rx="2" ry="2" /> | |
<text text-anchor="" x="496.08" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
</g> | |
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment