|
<?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="706" onload="init(evt)" viewBox="0 0 1200 706" 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; |
|
if (a < b || a > b) |
|
return a - b; |
|
return matches[b] - matches[a]; |
|
}); |
|
// Step through frames saving only the biggest bottom-up frames |
|
// thanks to the sort order. This relies on the tree property |
|
// where children are always smaller than their parents. |
|
for (var k in keys) { |
|
var x = parseFloat(keys[k]); |
|
var w = matches[keys[k]]; |
|
if (x >= lastx + lastw) { |
|
count += w; |
|
lastx = x; |
|
lastw = w; |
|
} |
|
} |
|
// display matched percent |
|
matchedtxt.style["opacity"] = "1.0"; |
|
pct = 100 * count / maxwidth; |
|
if (pct == 100) |
|
pct = "100" |
|
else |
|
pct = pct.toFixed(1) |
|
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%"; |
|
} |
|
function searchover(e) { |
|
searchbtn.style["opacity"] = "1.0"; |
|
} |
|
function searchout(e) { |
|
if (searching) { |
|
searchbtn.style["opacity"] = "1.0"; |
|
} else { |
|
searchbtn.style["opacity"] = "0.1"; |
|
} |
|
} |
|
]]> |
|
</script> |
|
<rect x="0.0" y="0" width="1200.0" height="706.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="689" 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="689" 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>os.RemoveAll (1 samples, 0.85%)</title><rect x="550.0" y="465" width="10.0" height="15.0" fill="rgb(239,26,20)" rx="2" ry="2" /> |
|
<text text-anchor="" x="553.00" 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>os/exec.(*Cmd).writerDescriptor.func1 (2 samples, 1.69%)</title><rect x="880.0" y="625" width="20.0" height="15.0" fill="rgb(247,110,54)" rx="2" ry="2" /> |
|
<text text-anchor="" x="883.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>io.copyBuffer (2 samples, 1.69%)</title><rect x="860.0" y="593" width="20.0" height="15.0" fill="rgb(237,87,23)" rx="2" ry="2" /> |
|
<text text-anchor="" x="863.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containerd/cgroups.NewHugetlb (1 samples, 0.85%)</title><rect x="690.0" y="481" width="10.0" height="15.0" fill="rgb(236,49,11)" rx="2" ry="2" /> |
|
<text text-anchor="" x="693.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>github.com/kubernetes-incubator/cri-o/libkpod.(*ContainerServer).ContainerStop (1 samples, 0.85%)</title><rect x="750.0" y="561" width="10.0" height="15.0" fill="rgb(240,20,24)" rx="2" ry="2" /> |
|
<text text-anchor="" x="753.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.(*mcache).nextFree.func1 (1 samples, 0.85%)</title><rect x="690.0" y="305" width="10.0" height="15.0" fill="rgb(253,66,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="693.00" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*ptrEncoder).encode (1 samples, 0.85%)</title><rect x="450.0" y="305" width="10.0" height="15.0" fill="rgb(247,156,41)" rx="2" ry="2" /> |
|
<text text-anchor="" x="453.00" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime._ExternalCode (1 samples, 0.85%)</title><rect x="900.0" y="625" width="10.0" height="15.0" fill="rgb(242,127,48)" rx="2" ry="2" /> |
|
<text text-anchor="" x="903.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>os.Remove (1 samples, 0.85%)</title><rect x="560.0" y="513" width="10.0" height="15.0" fill="rgb(205,211,45)" rx="2" ry="2" /> |
|
<text text-anchor="" x="563.00" 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>os.rename (1 samples, 0.85%)</title><rect x="760.0" y="449" width="10.0" height="15.0" fill="rgb(248,146,34)" rx="2" ry="2" /> |
|
<text text-anchor="" x="763.00" 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>os.(*File).Read (2 samples, 1.69%)</title><rect x="420.0" y="497" width="20.0" height="15.0" fill="rgb(216,187,43)" rx="2" ry="2" /> |
|
<text text-anchor="" x="423.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>os.(*File).Sync (1 samples, 0.85%)</title><rect x="480.0" y="433" width="10.0" height="15.0" fill="rgb(236,108,13)" rx="2" ry="2" /> |
|
<text text-anchor="" x="483.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/mount.parseMountTable (3 samples, 2.54%)</title><rect x="500.0" y="433" width="30.0" height="15.0" fill="rgb(208,104,11)" rx="2" ry="2" /> |
|
<text text-anchor="" x="503.00" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gi..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.forkAndExecInChild (1 samples, 0.85%)</title><rect x="340.0" y="465" width="10.0" height="15.0" fill="rgb(250,86,20)" rx="2" ry="2" /> |
|
<text text-anchor="" x="343.00" 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.removespecial (1 samples, 0.85%)</title><rect x="730.0" y="433" width="10.0" height="15.0" fill="rgb(241,173,42)" rx="2" ry="2" /> |
|
<text text-anchor="" x="733.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.getitab (1 samples, 0.85%)</title><rect x="820.0" y="449" width="10.0" height="15.0" fill="rgb(226,78,4)" rx="2" ry="2" /> |
|
<text text-anchor="" x="823.00" 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>fmt.(*ss).advance (1 samples, 0.85%)</title><rect x="500.0" y="353" width="10.0" height="15.0" fill="rgb(225,57,13)" rx="2" ry="2" /> |
|
<text text-anchor="" x="503.00" 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>syscall.Syscall6 (1 samples, 0.85%)</title><rect x="600.0" y="337" width="10.0" height="15.0" fill="rgb(250,220,9)" rx="2" ry="2" /> |
|
<text text-anchor="" x="603.00" 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>math/big.(*Int).Exp (1 samples, 0.85%)</title><rect x="840.0" y="417" width="10.0" height="15.0" fill="rgb(227,89,36)" rx="2" ry="2" /> |
|
<text text-anchor="" x="843.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>io.(*teeReader).Read (5 samples, 4.24%)</title><rect x="140.0" y="385" width="50.0" height="15.0" fill="rgb(226,153,54)" rx="2" ry="2" /> |
|
<text text-anchor="" x="143.00" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.(*..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.assertI2I2 (1 samples, 0.85%)</title><rect x="820.0" y="465" width="10.0" height="15.0" fill="rgb(231,13,34)" rx="2" ry="2" /> |
|
<text text-anchor="" x="823.00" 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>syscall.Syscall (1 samples, 0.85%)</title><rect x="710.0" y="305" width="10.0" height="15.0" fill="rgb(210,22,45)" rx="2" ry="2" /> |
|
<text text-anchor="" x="713.00" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/ioutils.(*atomicFileWriter).Close (1 samples, 0.85%)</title><rect x="480.0" y="449" width="10.0" height="15.0" fill="rgb(217,150,43)" rx="2" ry="2" /> |
|
<text text-anchor="" x="483.00" 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>crypto/rsa.encrypt (1 samples, 0.85%)</title><rect x="840.0" y="433" width="10.0" height="15.0" fill="rgb(219,13,40)" rx="2" ry="2" /> |
|
<text text-anchor="" x="843.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>encoding/json.(*ptrEncoder).(encoding/json.encode)-fm (1 samples, 0.85%)</title><rect x="570.0" y="449" width="10.0" height="15.0" fill="rgb(207,220,28)" rx="2" ry="2" /> |
|
<text text-anchor="" x="573.00" 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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*layerStore).Delete (6 samples, 5.08%)</title><rect x="470.0" y="513" width="60.0" height="15.0" fill="rgb(206,209,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="473.00" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*ptrEncoder).(encoding/json.encode)-fm (1 samples, 0.85%)</title><rect x="450.0" y="321" width="10.0" height="15.0" fill="rgb(243,199,1)" rx="2" ry="2" /> |
|
<text text-anchor="" x="453.00" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.(*mcache).nextFree (1 samples, 0.85%)</title><rect x="690.0" y="337" width="10.0" height="15.0" fill="rgb(254,102,41)" rx="2" ry="2" /> |
|
<text text-anchor="" x="693.00" 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>os.(*File).Sync (1 samples, 0.85%)</title><rect x="390.0" y="433" width="10.0" height="15.0" fill="rgb(214,170,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="393.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.notewakeup (1 samples, 0.85%)</title><rect x="480.0" y="289" width="10.0" height="15.0" fill="rgb(254,49,54)" rx="2" ry="2" /> |
|
<text text-anchor="" x="483.00" 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>github.com/kubernetes-incubator/cri-o/vendor/k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime._RuntimeService_RemoveContainer_Handler (7 samples, 5.93%)</title><rect x="460.0" y="593" width="70.0" height="15.0" fill="rgb(252,124,2)" rx="2" ry="2" /> |
|
<text text-anchor="" x="463.00" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github...</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/server.(*Server).createSandboxContainer (11 samples, 9.32%)</title><rect x="350.0" y="561" width="110.0" height="15.0" fill="rgb(229,189,27)" rx="2" ry="2" /> |
|
<text text-anchor="" x="353.00" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/ku..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.memclrNoHeapPointers (1 samples, 0.85%)</title><rect x="620.0" y="337" width="10.0" height="15.0" fill="rgb(241,148,6)" rx="2" ry="2" /> |
|
<text text-anchor="" x="623.00" 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 (2 samples, 1.69%)</title><rect x="1000.0" y="593" width="20.0" height="15.0" fill="rgb(225,136,0)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1003.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>io.(*teeReader).Read (23 samples, 19.49%)</title><rect x="80.0" y="545" width="230.0" height="15.0" fill="rgb(248,68,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="83.00" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.(*teeReader).Read</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Renameat (1 samples, 0.85%)</title><rect x="360.0" y="353" width="10.0" height="15.0" fill="rgb(226,35,36)" rx="2" ry="2" /> |
|
<text text-anchor="" x="363.00" 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.markBits.isMarked (1 samples, 0.85%)</title><rect x="920.0" y="561" width="10.0" height="15.0" fill="rgb(237,40,44)" rx="2" ry="2" /> |
|
<text text-anchor="" x="923.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>unicode/utf8.DecodeRuneInString (1 samples, 0.85%)</title><rect x="500.0" y="337" width="10.0" height="15.0" fill="rgb(233,6,48)" rx="2" ry="2" /> |
|
<text text-anchor="" x="503.00" 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/kubernetes-incubator/cri-o/vendor/k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime._RuntimeService_RunPodSandbox_Handler (16 samples, 13.56%)</title><rect x="590.0" y="593" width="160.0" height="15.0" fill="rgb(253,221,3)" rx="2" ry="2" /> |
|
<text text-anchor="" x="593.00" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/kubernete..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>crypto/tls.(*Conn).Read (2 samples, 1.69%)</title><rect x="170.0" y="177" width="20.0" height="15.0" fill="rgb(248,4,32)" rx="2" ry="2" /> |
|
<text text-anchor="" x="173.00" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/github.com/opencontainers/runc/libcontainer/cgroups.FindCgroupMountpoint (2 samples, 1.69%)</title><rect x="420.0" y="545" width="20.0" height="15.0" fill="rgb(217,150,32)" rx="2" ry="2" /> |
|
<text text-anchor="" x="423.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>crypto/tls.(*Conn).write (1 samples, 0.85%)</title><rect x="850.0" y="561" width="10.0" height="15.0" fill="rgb(232,219,4)" rx="2" ry="2" /> |
|
<text text-anchor="" x="853.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/drivers/overlay.(*Driver).create (2 samples, 1.69%)</title><rect x="370.0" y="433" width="20.0" height="15.0" fill="rgb(219,185,8)" rx="2" ry="2" /> |
|
<text text-anchor="" x="373.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/mount.RecursiveUnmount (3 samples, 2.54%)</title><rect x="500.0" y="465" width="30.0" height="15.0" fill="rgb(211,77,26)" rx="2" ry="2" /> |
|
<text text-anchor="" x="503.00" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gi..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/github.com/containerd/cgroups.(*cpusetController).copyIfNeeded (1 samples, 0.85%)</title><rect x="330.0" y="481" width="10.0" height="15.0" fill="rgb(218,19,40)" rx="2" ry="2" /> |
|
<text text-anchor="" x="333.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>os.Rename (1 samples, 0.85%)</title><rect x="760.0" y="465" width="10.0" height="15.0" fill="rgb(244,206,26)" rx="2" ry="2" /> |
|
<text text-anchor="" x="763.00" 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>crypto/cipher.(*gcm).updateBlocks (1 samples, 0.85%)</title><rect x="290.0" y="49" width="10.0" height="15.0" fill="rgb(236,206,10)" rx="2" ry="2" /> |
|
<text text-anchor="" x="293.00" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.marshalerEncoder (1 samples, 0.85%)</title><rect x="570.0" y="353" width="10.0" height="15.0" fill="rgb(248,166,0)" rx="2" ry="2" /> |
|
<text text-anchor="" x="573.00" 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>syscall.Chmod (1 samples, 0.85%)</title><rect x="540.0" y="433" width="10.0" height="15.0" fill="rgb(218,218,32)" rx="2" ry="2" /> |
|
<text text-anchor="" x="543.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>crypto/sha256.block (1 samples, 0.85%)</title><rect x="240.0" y="321" width="10.0" height="15.0" fill="rgb(232,177,40)" rx="2" ry="2" /> |
|
<text text-anchor="" x="243.00" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.growWork (1 samples, 0.85%)</title><rect x="670.0" y="369" width="10.0" height="15.0" fill="rgb(247,94,43)" rx="2" ry="2" /> |
|
<text text-anchor="" x="673.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>crypto/cipher.(*gcm).mul (1 samples, 0.85%)</title><rect x="290.0" y="33" width="10.0" height="15.0" fill="rgb(240,121,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="293.00" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.exitsyscallfast.func1 (1 samples, 0.85%)</title><rect x="480.0" y="321" width="10.0" height="15.0" fill="rgb(210,214,31)" rx="2" ry="2" /> |
|
<text text-anchor="" x="483.00" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*store).SetNames (1 samples, 0.85%)</title><rect x="390.0" y="513" width="10.0" height="15.0" fill="rgb(247,126,8)" rx="2" ry="2" /> |
|
<text text-anchor="" x="393.00" 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>io.copyBuffer (1 samples, 0.85%)</title><rect x="880.0" y="593" width="10.0" height="15.0" fill="rgb(241,161,51)" rx="2" ry="2" /> |
|
<text text-anchor="" x="883.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>syscall.Syscall6 (1 samples, 0.85%)</title><rect x="760.0" y="401" width="10.0" height="15.0" fill="rgb(237,53,15)" rx="2" ry="2" /> |
|
<text text-anchor="" x="763.00" 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/kubernetes-incubator/cri-o/vendor/github.com/containers/image/image.fixManifestLayers (1 samples, 0.85%)</title><rect x="610.0" y="417" width="10.0" height="15.0" fill="rgb(254,135,19)" rx="2" ry="2" /> |
|
<text text-anchor="" x="613.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>github.com/kubernetes-incubator/cri-o/vendor/gopkg.in/cheggaaa/pb%2ev1.(*Reader).Read (4 samples, 3.39%)</title><rect x="150.0" y="321" width="40.0" height="15.0" fill="rgb(225,35,31)" rx="2" ry="2" /> |
|
<text text-anchor="" x="153.00" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >git..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>io.(*multiReader).Read (2 samples, 1.69%)</title><rect x="280.0" y="321" width="20.0" height="15.0" fill="rgb(243,1,44)" rx="2" ry="2" /> |
|
<text text-anchor="" x="283.00" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/drivers/overlay.(*Driver).create (1 samples, 0.85%)</title><rect x="630.0" y="449" width="10.0" height="15.0" fill="rgb(234,198,38)" rx="2" ry="2" /> |
|
<text text-anchor="" x="633.00" 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.add (1 samples, 0.85%)</title><rect x="670.0" y="321" width="10.0" height="15.0" fill="rgb(223,173,6)" rx="2" ry="2" /> |
|
<text text-anchor="" x="673.00" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>math/big.nat.expNN (1 samples, 0.85%)</title><rect x="840.0" y="401" width="10.0" height="15.0" fill="rgb(224,193,8)" rx="2" ry="2" /> |
|
<text text-anchor="" x="843.00" 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/kubernetes-incubator/cri-o/vendor/github.com/containers/image/copy.(*digestingReader).Read (2 samples, 1.69%)</title><rect x="280.0" y="273" width="20.0" height="15.0" fill="rgb(226,148,11)" rx="2" ry="2" /> |
|
<text text-anchor="" x="283.00" 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.unlock (1 samples, 0.85%)</title><rect x="890.0" y="529" width="10.0" height="15.0" fill="rgb(223,162,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="893.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>internal/poll.(*FD).Read (1 samples, 0.85%)</title><rect x="800.0" y="465" width="10.0" height="15.0" fill="rgb(221,44,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="803.00" 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/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*layerStore).Save (1 samples, 0.85%)</title><rect x="470.0" y="497" width="10.0" height="15.0" fill="rgb(213,84,15)" rx="2" ry="2" /> |
|
<text text-anchor="" x="473.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>runtime.memclrNoHeapPointers (1 samples, 0.85%)</title><rect x="640.0" y="33" width="10.0" height="15.0" fill="rgb(222,61,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="643.00" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os.rename (1 samples, 0.85%)</title><rect x="20.0" y="577" width="10.0" height="15.0" fill="rgb(217,18,50)" rx="2" ry="2" /> |
|
<text text-anchor="" x="23.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>github.com/kubernetes-incubator/cri-o/libkpod.(*ContainerServer).ContainerStateToDisk (2 samples, 1.69%)</title><rect x="10.0" y="625" width="20.0" height="15.0" fill="rgb(250,218,4)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.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>syscall.Rmdir (1 samples, 0.85%)</title><rect x="560.0" y="497" width="10.0" height="15.0" fill="rgb(250,92,1)" rx="2" ry="2" /> |
|
<text text-anchor="" x="563.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>net/http.(*body).Read (2 samples, 1.69%)</title><rect x="170.0" y="257" width="20.0" height="15.0" fill="rgb(213,151,4)" rx="2" ry="2" /> |
|
<text text-anchor="" x="173.00" 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>io.(*teeReader).Read (23 samples, 19.49%)</title><rect x="80.0" y="529" width="230.0" height="15.0" fill="rgb(252,98,33)" rx="2" ry="2" /> |
|
<text text-anchor="" x="83.00" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.(*teeReader).Read</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os.startProcess (1 samples, 0.85%)</title><rect x="340.0" y="513" width="10.0" height="15.0" fill="rgb(231,204,32)" rx="2" ry="2" /> |
|
<text text-anchor="" x="343.00" 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/kubernetes-incubator/cri-o/vendor/github.com/containerd/cgroups.(*cpuController).Create (1 samples, 0.85%)</title><rect x="320.0" y="513" width="10.0" height="15.0" fill="rgb(227,121,44)" rx="2" ry="2" /> |
|
<text text-anchor="" x="323.00" 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/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*store).Mount (2 samples, 1.69%)</title><rect x="400.0" y="529" width="20.0" height="15.0" fill="rgb(243,181,28)" rx="2" ry="2" /> |
|
<text text-anchor="" x="403.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>encoding/json.(*decodeState).object (1 samples, 0.85%)</title><rect x="620.0" y="385" width="10.0" height="15.0" fill="rgb(234,150,9)" rx="2" ry="2" /> |
|
<text text-anchor="" x="623.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>hash/crc64.(*digest).Write (1 samples, 0.85%)</title><rect x="310.0" y="577" width="10.0" height="15.0" fill="rgb(240,198,29)" rx="2" ry="2" /> |
|
<text text-anchor="" x="313.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>compress/flate.(*decompressor).moreBits (6 samples, 5.08%)</title><rect x="130.0" y="433" width="60.0" height="15.0" fill="rgb(206,98,4)" rx="2" ry="2" /> |
|
<text text-anchor="" x="133.00" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >compre..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.SetFinalizer.func1 (1 samples, 0.85%)</title><rect x="730.0" y="465" width="10.0" height="15.0" fill="rgb(234,226,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="733.00" 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>encoding/json.(*encodeState).reflectValue (1 samples, 0.85%)</title><rect x="640.0" y="449" width="10.0" height="15.0" fill="rgb(224,224,31)" rx="2" ry="2" /> |
|
<text text-anchor="" x="643.00" 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.memmove (1 samples, 0.85%)</title><rect x="590.0" y="385" width="10.0" height="15.0" fill="rgb(218,90,34)" rx="2" ry="2" /> |
|
<text text-anchor="" x="593.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>syscall.Rmdir (1 samples, 0.85%)</title><rect x="460.0" y="465" width="10.0" height="15.0" fill="rgb(241,228,5)" rx="2" ry="2" /> |
|
<text text-anchor="" x="463.00" 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>fmt.(*ss).token (1 samples, 0.85%)</title><rect x="810.0" y="433" width="10.0" height="15.0" fill="rgb(245,92,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="813.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>io/ioutil.ReadFile (1 samples, 0.85%)</title><rect x="330.0" y="449" width="10.0" height="15.0" fill="rgb(251,122,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="333.00" 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>bufio.(*Reader).fill (5 samples, 4.24%)</title><rect x="140.0" y="401" width="50.0" height="15.0" fill="rgb(244,183,29)" rx="2" ry="2" /> |
|
<text text-anchor="" x="143.00" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bufio..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*encodeState).reflectValue (1 samples, 0.85%)</title><rect x="590.0" y="497" width="10.0" height="15.0" fill="rgb(242,225,29)" rx="2" ry="2" /> |
|
<text text-anchor="" x="593.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>crypto/tls.(*Conn).Write (1 samples, 0.85%)</title><rect x="850.0" y="593" width="10.0" height="15.0" fill="rgb(221,78,0)" rx="2" ry="2" /> |
|
<text text-anchor="" x="853.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>syscall.Fsync (1 samples, 0.85%)</title><rect x="390.0" y="401" width="10.0" height="15.0" fill="rgb(250,167,28)" rx="2" ry="2" /> |
|
<text text-anchor="" x="393.00" 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/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*Layer).MarshalJSONBuf (1 samples, 0.85%)</title><rect x="570.0" y="321" width="10.0" height="15.0" fill="rgb(252,99,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="573.00" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*store).Unmount (2 samples, 1.69%)</title><rect x="760.0" y="545" width="20.0" height="15.0" fill="rgb(207,57,23)" rx="2" ry="2" /> |
|
<text text-anchor="" x="763.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/idtools.mkdirAs (1 samples, 0.85%)</title><rect x="630.0" y="417" width="10.0" height="15.0" fill="rgb(234,44,28)" rx="2" ry="2" /> |
|
<text text-anchor="" x="633.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>syscall.runtime_AfterFork (1 samples, 0.85%)</title><rect x="340.0" y="449" width="10.0" height="15.0" fill="rgb(207,164,36)" rx="2" ry="2" /> |
|
<text text-anchor="" x="343.00" 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>encoding/json.(*decodeState).object (1 samples, 0.85%)</title><rect x="350.0" y="417" width="10.0" height="15.0" fill="rgb(243,116,8)" rx="2" ry="2" /> |
|
<text text-anchor="" x="353.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containernetworking/cni/libcni.ConfFromBytes (1 samples, 0.85%)</title><rect x="780.0" y="465" width="10.0" height="15.0" fill="rgb(254,7,20)" rx="2" ry="2" /> |
|
<text text-anchor="" x="783.00" 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/kubernetes-incubator/cri-o/vendor/google.golang.org/grpc.(*Server).serveStreams.func1.1 (51 samples, 43.22%)</title><rect x="320.0" y="641" width="510.0" height="15.0" fill="rgb(243,217,26)" rx="2" ry="2" /> |
|
<text text-anchor="" x="323.00" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/kubernetes-incubator/cri-o/vendor/google.golang.org/grpc.(*..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.systemstack (2 samples, 1.69%)</title><rect x="910.0" y="625" width="20.0" height="15.0" fill="rgb(248,167,1)" rx="2" ry="2" /> |
|
<text text-anchor="" x="913.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containernetworking/cni/libcni.(*CNIConfig).AddNetworkList (2 samples, 1.69%)</title><rect x="670.0" y="513" width="20.0" height="15.0" fill="rgb(208,69,40)" rx="2" ry="2" /> |
|
<text text-anchor="" x="673.00" 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>syscall.Syscall (1 samples, 0.85%)</title><rect x="550.0" y="401" width="10.0" height="15.0" fill="rgb(236,100,37)" rx="2" ry="2" /> |
|
<text text-anchor="" x="553.00" 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>syscall.Syscall (1 samples, 0.85%)</title><rect x="860.0" y="481" width="10.0" height="15.0" fill="rgb(229,10,22)" rx="2" ry="2" /> |
|
<text text-anchor="" x="863.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/idtools.MkdirAs (1 samples, 0.85%)</title><rect x="630.0" y="433" width="10.0" height="15.0" fill="rgb(225,101,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="633.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>encoding/json.(*encodeState).marshal (1 samples, 0.85%)</title><rect x="590.0" y="513" width="10.0" height="15.0" fill="rgb(236,53,4)" rx="2" ry="2" /> |
|
<text text-anchor="" x="593.00" 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/kubernetes-incubator/cri-o/oci.(*Runtime).UpdateStatus (1 samples, 0.85%)</title><rect x="30.0" y="625" width="10.0" height="15.0" fill="rgb(239,207,52)" rx="2" ry="2" /> |
|
<text text-anchor="" x="33.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>crypto/sha256.(*digest).Write (2 samples, 1.69%)</title><rect x="150.0" y="273" width="20.0" height="15.0" fill="rgb(245,208,34)" rx="2" ry="2" /> |
|
<text text-anchor="" x="153.00" 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>os.(*File).Readdirnames (1 samples, 0.85%)</title><rect x="690.0" y="401" width="10.0" height="15.0" fill="rgb(219,146,27)" rx="2" ry="2" /> |
|
<text text-anchor="" x="693.00" 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 (1 samples, 0.85%)</title><rect x="640.0" y="97" width="10.0" height="15.0" fill="rgb(241,73,17)" rx="2" ry="2" /> |
|
<text text-anchor="" x="643.00" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os/exec.dedupEnv (1 samples, 0.85%)</title><rect x="670.0" y="417" width="10.0" height="15.0" fill="rgb(224,216,24)" rx="2" ry="2" /> |
|
<text text-anchor="" x="673.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>net/http.(*body).Read (1 samples, 0.85%)</title><rect x="290.0" y="241" width="10.0" height="15.0" fill="rgb(251,95,5)" rx="2" ry="2" /> |
|
<text text-anchor="" x="293.00" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>net/http.(*persistConn).writeLoop (1 samples, 0.85%)</title><rect x="850.0" y="641" width="10.0" height="15.0" fill="rgb(229,41,13)" rx="2" ry="2" /> |
|
<text text-anchor="" x="853.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>github.com/kubernetes-incubator/cri-o/vendor/k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime._RuntimeService_CreateContainer_Handler (14 samples, 11.86%)</title><rect x="320.0" y="593" width="140.0" height="15.0" fill="rgb(239,124,34)" rx="2" ry="2" /> |
|
<text text-anchor="" x="323.00" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/kubern..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>crypto/sha256.(*digest).Write (1 samples, 0.85%)</title><rect x="140.0" y="353" width="10.0" height="15.0" fill="rgb(209,178,14)" rx="2" ry="2" /> |
|
<text text-anchor="" x="143.00" 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).refill (1 samples, 0.85%)</title><rect x="690.0" y="289" width="10.0" height="15.0" fill="rgb(247,15,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="693.00" 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.(*mheap).alloc (1 samples, 0.85%)</title><rect x="690.0" y="241" width="10.0" height="15.0" fill="rgb(220,190,7)" rx="2" ry="2" /> |
|
<text text-anchor="" x="693.00" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/ioutils.(*atomicFileWriter).Close (1 samples, 0.85%)</title><rect x="760.0" y="481" width="10.0" height="15.0" fill="rgb(245,229,6)" rx="2" ry="2" /> |
|
<text text-anchor="" x="763.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>os.(*File).Close (1 samples, 0.85%)</title><rect x="730.0" y="529" width="10.0" height="15.0" fill="rgb(213,228,49)" rx="2" ry="2" /> |
|
<text text-anchor="" x="733.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.mallocgc (1 samples, 0.85%)</title><rect x="620.0" y="353" width="10.0" height="15.0" fill="rgb(240,224,18)" rx="2" ry="2" /> |
|
<text text-anchor="" x="623.00" 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/http.(*bodyEOFSignal).Read (1 samples, 0.85%)</title><rect x="290.0" y="257" width="10.0" height="15.0" fill="rgb(215,181,41)" rx="2" ry="2" /> |
|
<text text-anchor="" x="293.00" 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>os.(*File).Sync (1 samples, 0.85%)</title><rect x="470.0" y="449" width="10.0" height="15.0" fill="rgb(220,103,26)" rx="2" ry="2" /> |
|
<text text-anchor="" x="473.00" 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>syscall.Fsync (1 samples, 0.85%)</title><rect x="470.0" y="417" width="10.0" height="15.0" fill="rgb(241,107,18)" rx="2" ry="2" /> |
|
<text text-anchor="" x="473.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>syscall.Syscall (1 samples, 0.85%)</title><rect x="580.0" y="385" width="10.0" height="15.0" fill="rgb(219,82,45)" rx="2" ry="2" /> |
|
<text text-anchor="" x="583.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>runtime.SetFinalizer (1 samples, 0.85%)</title><rect x="790.0" y="369" width="10.0" height="15.0" fill="rgb(248,17,33)" rx="2" ry="2" /> |
|
<text text-anchor="" x="793.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>os.rename (1 samples, 0.85%)</title><rect x="600.0" y="385" width="10.0" height="15.0" fill="rgb(226,21,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="603.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/image/copy.Image (1 samples, 0.85%)</title><rect x="600.0" y="513" width="10.0" height="15.0" fill="rgb(252,128,37)" rx="2" ry="2" /> |
|
<text text-anchor="" x="603.00" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*imageStore).Create (1 samples, 0.85%)</title><rect x="600.0" y="465" width="10.0" height="15.0" fill="rgb(235,165,50)" rx="2" ry="2" /> |
|
<text text-anchor="" x="603.00" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os.(*Process).wait (1 samples, 0.85%)</title><rect x="680.0" y="401" width="10.0" height="15.0" fill="rgb(241,78,28)" rx="2" ry="2" /> |
|
<text text-anchor="" x="683.00" 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>os.RemoveAll (1 samples, 0.85%)</title><rect x="460.0" y="497" width="10.0" height="15.0" fill="rgb(225,224,37)" rx="2" ry="2" /> |
|
<text text-anchor="" x="463.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*store).SetNames (2 samples, 1.69%)</title><rect x="640.0" y="529" width="20.0" height="15.0" fill="rgb(244,1,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="643.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/ioutils.(*atomicFileWriter).Close (1 samples, 0.85%)</title><rect x="600.0" y="417" width="10.0" height="15.0" fill="rgb(222,94,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="603.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>encoding/json.(*sliceEncoder).(encoding/json.encode)-fm (1 samples, 0.85%)</title><rect x="570.0" y="417" width="10.0" height="15.0" fill="rgb(219,73,39)" rx="2" ry="2" /> |
|
<text text-anchor="" x="573.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/pquerna/ffjson/fflib/v1.(*Buffer).grow (1 samples, 0.85%)</title><rect x="640.0" y="241" width="10.0" height="15.0" fill="rgb(212,69,49)" rx="2" ry="2" /> |
|
<text text-anchor="" x="643.00" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*decodeState).literal (1 samples, 0.85%)</title><rect x="780.0" y="369" width="10.0" height="15.0" fill="rgb(243,163,13)" rx="2" ry="2" /> |
|
<text text-anchor="" x="783.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>runtime.futexsleep (1 samples, 0.85%)</title><rect x="940.0" y="545" width="10.0" height="15.0" fill="rgb(224,6,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="943.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>crypto/sha256.(*digest).Write (2 samples, 1.69%)</title><rect x="190.0" y="369" width="20.0" height="15.0" fill="rgb(211,0,11)" rx="2" ry="2" /> |
|
<text text-anchor="" x="193.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>syscall.unlinkat (1 samples, 0.85%)</title><rect x="460.0" y="449" width="10.0" height="15.0" fill="rgb(241,6,39)" rx="2" ry="2" /> |
|
<text text-anchor="" x="463.00" 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>fmt.Sscanf (3 samples, 2.54%)</title><rect x="500.0" y="401" width="30.0" height="15.0" fill="rgb(228,36,8)" rx="2" ry="2" /> |
|
<text text-anchor="" x="503.00" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fm..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/github.com/vbatts/tar-split/tar/storage.(*bitBucketFilePutter).Put (24 samples, 20.34%)</title><rect x="80.0" y="625" width="240.0" height="15.0" fill="rgb(240,218,24)" rx="2" ry="2" /> |
|
<text text-anchor="" x="83.00" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/kubernetes-incubator..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Renameat (1 samples, 0.85%)</title><rect x="600.0" y="353" width="10.0" height="15.0" fill="rgb(234,12,50)" rx="2" ry="2" /> |
|
<text text-anchor="" x="603.00" 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>syscall.write (1 samples, 0.85%)</title><rect x="870.0" y="513" width="10.0" height="15.0" fill="rgb(249,22,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="873.00" 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>os.(*File).write (1 samples, 0.85%)</title><rect x="580.0" y="449" width="10.0" height="15.0" fill="rgb(235,7,40)" rx="2" ry="2" /> |
|
<text text-anchor="" x="583.00" 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>io.ReadAtLeast (1 samples, 0.85%)</title><rect x="520.0" y="225" width="10.0" height="15.0" fill="rgb(233,218,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="523.00" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Syscall (1 samples, 0.85%)</title><rect x="470.0" y="401" width="10.0" height="15.0" fill="rgb(217,42,32)" rx="2" ry="2" /> |
|
<text text-anchor="" x="473.00" 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>io.(*multiReader).Read (5 samples, 4.24%)</title><rect x="250.0" y="353" width="50.0" height="15.0" fill="rgb(243,106,40)" rx="2" ry="2" /> |
|
<text text-anchor="" x="253.00" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.(*..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.futexwakeup (1 samples, 0.85%)</title><rect x="480.0" y="273" width="10.0" height="15.0" fill="rgb(245,142,18)" rx="2" ry="2" /> |
|
<text text-anchor="" x="483.00" 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.(*conn).Write (1 samples, 0.85%)</title><rect x="850.0" y="545" width="10.0" height="15.0" fill="rgb(223,63,41)" rx="2" ry="2" /> |
|
<text text-anchor="" x="853.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>syscall.Mkdirat (1 samples, 0.85%)</title><rect x="320.0" y="449" width="10.0" height="15.0" fill="rgb(244,129,17)" rx="2" ry="2" /> |
|
<text text-anchor="" x="323.00" 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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containerd/cgroups.New (2 samples, 1.69%)</title><rect x="320.0" y="545" width="20.0" height="15.0" fill="rgb(249,26,50)" rx="2" ry="2" /> |
|
<text text-anchor="" x="323.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>fmt.(*ss).scanOne (2 samples, 1.69%)</title><rect x="510.0" y="353" width="20.0" height="15.0" fill="rgb(253,174,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="513.00" 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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/ioutils.AtomicWriteFile (1 samples, 0.85%)</title><rect x="480.0" y="465" width="10.0" height="15.0" fill="rgb(209,217,43)" rx="2" ry="2" /> |
|
<text text-anchor="" x="483.00" 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>crypto/x509.(*Certificate).buildChains (1 samples, 0.85%)</title><rect x="840.0" y="545" width="10.0" height="15.0" fill="rgb(240,154,15)" rx="2" ry="2" /> |
|
<text text-anchor="" x="843.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/docker/docker/pkg/mount.Mounted (3 samples, 2.54%)</title><rect x="800.0" y="561" width="30.0" height="15.0" fill="rgb(220,133,20)" rx="2" ry="2" /> |
|
<text text-anchor="" x="803.00" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gi..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>compress/flate.(*decompressor).Read (19 samples, 16.10%)</title><rect x="120.0" y="481" width="190.0" height="15.0" fill="rgb(215,89,37)" rx="2" ry="2" /> |
|
<text text-anchor="" x="123.00" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >compress/flate.(*decompr..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.(*mheap).alloc (1 samples, 0.85%)</title><rect x="640.0" y="49" width="10.0" height="15.0" fill="rgb(230,153,1)" rx="2" ry="2" /> |
|
<text text-anchor="" x="643.00" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>crypto/sha256.block (2 samples, 1.69%)</title><rect x="190.0" y="353" width="20.0" height="15.0" fill="rgb(222,14,10)" rx="2" ry="2" /> |
|
<text text-anchor="" x="193.00" 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.afterfork (1 samples, 0.85%)</title><rect x="340.0" y="417" width="10.0" height="15.0" fill="rgb(217,213,15)" rx="2" ry="2" /> |
|
<text text-anchor="" x="343.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>fmt.(*ss).doScanf (1 samples, 0.85%)</title><rect x="810.0" y="481" width="10.0" height="15.0" fill="rgb(227,223,34)" rx="2" ry="2" /> |
|
<text text-anchor="" x="813.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>compress/flate.(*decompressor).moreBits (1 samples, 0.85%)</title><rect x="300.0" y="433" width="10.0" height="15.0" fill="rgb(245,216,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="303.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>encoding/json.(*decodeState).indirect (1 samples, 0.85%)</title><rect x="780.0" y="337" width="10.0" height="15.0" fill="rgb(237,5,9)" rx="2" ry="2" /> |
|
<text text-anchor="" x="783.00" 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>fmt.(*ss).ReadRune (1 samples, 0.85%)</title><rect x="810.0" y="401" width="10.0" height="15.0" fill="rgb(234,101,43)" rx="2" ry="2" /> |
|
<text text-anchor="" x="813.00" 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>os.chmod (1 samples, 0.85%)</title><rect x="540.0" y="449" width="10.0" height="15.0" fill="rgb(247,142,17)" rx="2" ry="2" /> |
|
<text text-anchor="" x="543.00" 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>crypto/x509.(*Certificate).buildChains (1 samples, 0.85%)</title><rect x="840.0" y="529" width="10.0" height="15.0" fill="rgb(244,80,3)" rx="2" ry="2" /> |
|
<text text-anchor="" x="843.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>encoding/json.(*decodeState).value (1 samples, 0.85%)</title><rect x="620.0" y="401" width="10.0" height="15.0" fill="rgb(223,26,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="623.00" 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.mallocgc (1 samples, 0.85%)</title><rect x="880.0" y="529" width="10.0" height="15.0" fill="rgb(229,41,6)" rx="2" ry="2" /> |
|
<text text-anchor="" x="883.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>github.com/kubernetes-incubator/cri-o/vendor/google.golang.org/grpc.(*Server).processUnaryRPC (51 samples, 43.22%)</title><rect x="320.0" y="609" width="510.0" height="15.0" fill="rgb(210,86,51)" rx="2" ry="2" /> |
|
<text text-anchor="" x="323.00" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/kubernetes-incubator/cri-o/vendor/google.golang.org/grpc.(*..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>crypto/x509.checkSignature (1 samples, 0.85%)</title><rect x="840.0" y="465" width="10.0" height="15.0" fill="rgb(251,117,7)" rx="2" ry="2" /> |
|
<text text-anchor="" x="843.00" 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/kubernetes-incubator/cri-o/vendor/github.com/containers/image/image.manifestSchema1FromManifest (1 samples, 0.85%)</title><rect x="610.0" y="433" width="10.0" height="15.0" fill="rgb(243,170,31)" rx="2" ry="2" /> |
|
<text text-anchor="" x="613.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>syscall.Syscall6 (1 samples, 0.85%)</title><rect x="360.0" y="337" width="10.0" height="15.0" fill="rgb(244,90,0)" rx="2" ry="2" /> |
|
<text text-anchor="" x="363.00" 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>encoding/json.(*structEncoder).encode (1 samples, 0.85%)</title><rect x="450.0" y="401" width="10.0" height="15.0" fill="rgb(229,23,30)" rx="2" ry="2" /> |
|
<text text-anchor="" x="453.00" 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>syscall.read (1 samples, 0.85%)</title><rect x="710.0" y="321" width="10.0" height="15.0" fill="rgb(215,49,50)" rx="2" ry="2" /> |
|
<text text-anchor="" x="713.00" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*ptrEncoder).encode (1 samples, 0.85%)</title><rect x="450.0" y="369" width="10.0" height="15.0" fill="rgb(213,55,14)" rx="2" ry="2" /> |
|
<text text-anchor="" x="453.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>fmt.(*readRune).readByte (1 samples, 0.85%)</title><rect x="520.0" y="257" width="10.0" height="15.0" fill="rgb(229,218,38)" rx="2" ry="2" /> |
|
<text text-anchor="" x="523.00" 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>io/ioutil.ReadFile (1 samples, 0.85%)</title><rect x="710.0" y="433" width="10.0" height="15.0" fill="rgb(250,18,0)" rx="2" ry="2" /> |
|
<text text-anchor="" x="713.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.newobject (1 samples, 0.85%)</title><rect x="380.0" y="369" width="10.0" height="15.0" fill="rgb(224,107,35)" rx="2" ry="2" /> |
|
<text text-anchor="" x="383.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>syscall.StartProcess (1 samples, 0.85%)</title><rect x="340.0" y="497" width="10.0" height="15.0" fill="rgb(214,209,7)" rx="2" ry="2" /> |
|
<text text-anchor="" x="343.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containernetworking/plugins/pkg/ns.NewNS.func1 (2 samples, 1.69%)</title><rect x="40.0" y="641" width="20.0" height="15.0" fill="rgb(227,191,41)" rx="2" ry="2" /> |
|
<text text-anchor="" x="43.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>hash/crc64.update (1 samples, 0.85%)</title><rect x="310.0" y="561" width="10.0" height="15.0" fill="rgb(248,160,13)" rx="2" ry="2" /> |
|
<text text-anchor="" x="313.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>encoding/json.Marshal (1 samples, 0.85%)</title><rect x="640.0" y="481" width="10.0" height="15.0" fill="rgb(207,23,14)" rx="2" ry="2" /> |
|
<text text-anchor="" x="643.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>os.(*File).readdirnames (1 samples, 0.85%)</title><rect x="690.0" y="385" width="10.0" height="15.0" fill="rgb(254,140,15)" rx="2" ry="2" /> |
|
<text text-anchor="" x="693.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>compress/flate.(*decompressor).nextBlock (10 samples, 8.47%)</title><rect x="210.0" y="465" width="100.0" height="15.0" fill="rgb(250,216,38)" rx="2" ry="2" /> |
|
<text text-anchor="" x="213.00" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >compress/fla..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os.(*File).Sync (1 samples, 0.85%)</title><rect x="530.0" y="465" width="10.0" height="15.0" fill="rgb(218,42,47)" rx="2" ry="2" /> |
|
<text text-anchor="" x="533.00" 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/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*Layer).MarshalJSON (1 samples, 0.85%)</title><rect x="570.0" y="337" width="10.0" height="15.0" fill="rgb(247,53,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="573.00" 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.mcall (6 samples, 5.08%)</title><rect x="930.0" y="641" width="60.0" height="15.0" fill="rgb(239,214,20)" rx="2" ry="2" /> |
|
<text text-anchor="" x="933.00" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >runtim..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*decodeState).literalStore (1 samples, 0.85%)</title><rect x="780.0" y="353" width="10.0" height="15.0" fill="rgb(241,103,35)" rx="2" ry="2" /> |
|
<text text-anchor="" x="783.00" 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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/ioutils.AtomicWriteFile (2 samples, 1.69%)</title><rect x="760.0" y="497" width="20.0" height="15.0" fill="rgb(209,222,38)" rx="2" ry="2" /> |
|
<text text-anchor="" x="763.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>io.(*teeReader).Read (4 samples, 3.39%)</title><rect x="150.0" y="353" width="40.0" height="15.0" fill="rgb(246,213,10)" rx="2" ry="2" /> |
|
<text text-anchor="" x="153.00" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io...</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/github.com/pquerna/ffjson/fflib/v1.(*Buffer).Write (1 samples, 0.85%)</title><rect x="570.0" y="305" width="10.0" height="15.0" fill="rgb(214,210,11)" rx="2" ry="2" /> |
|
<text text-anchor="" x="573.00" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Mkdirat (1 samples, 0.85%)</title><rect x="630.0" y="369" width="10.0" height="15.0" fill="rgb(221,44,3)" rx="2" ry="2" /> |
|
<text text-anchor="" x="633.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>os.(*Process).blockUntilWaitable (1 samples, 0.85%)</title><rect x="30.0" y="529" width="10.0" height="15.0" fill="rgb(208,16,2)" rx="2" ry="2" /> |
|
<text text-anchor="" x="33.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>os.rename (1 samples, 0.85%)</title><rect x="360.0" y="385" width="10.0" height="15.0" fill="rgb(229,118,26)" rx="2" ry="2" /> |
|
<text text-anchor="" x="363.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>os.(*Process).wait (1 samples, 0.85%)</title><rect x="30.0" y="545" width="10.0" height="15.0" fill="rgb(249,201,44)" rx="2" ry="2" /> |
|
<text text-anchor="" x="33.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>syscall.Syscall (1 samples, 0.85%)</title><rect x="530.0" y="417" width="10.0" height="15.0" fill="rgb(229,98,27)" rx="2" ry="2" /> |
|
<text text-anchor="" x="533.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>syscall.forkExec (1 samples, 0.85%)</title><rect x="340.0" y="481" width="10.0" height="15.0" fill="rgb(210,132,3)" rx="2" ry="2" /> |
|
<text text-anchor="" x="343.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>github.com/kubernetes-incubator/cri-o/server.(*Server).RunPodSandbox (16 samples, 13.56%)</title><rect x="590.0" y="577" width="160.0" height="15.0" fill="rgb(216,152,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="593.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/kubernete..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>crypto/tls.(*Conn).writeRecordLocked (1 samples, 0.85%)</title><rect x="850.0" y="577" width="10.0" height="15.0" fill="rgb(254,70,14)" rx="2" ry="2" /> |
|
<text text-anchor="" x="853.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/image/image.FromUnparsedImage (1 samples, 0.85%)</title><rect x="610.0" y="465" width="10.0" height="15.0" fill="rgb(219,88,17)" rx="2" ry="2" /> |
|
<text text-anchor="" x="613.00" 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>os.RemoveAll (1 samples, 0.85%)</title><rect x="550.0" y="481" width="10.0" height="15.0" fill="rgb(214,181,18)" rx="2" ry="2" /> |
|
<text text-anchor="" x="553.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>syscall.read (2 samples, 1.69%)</title><rect x="420.0" y="433" width="20.0" height="15.0" fill="rgb(209,4,7)" rx="2" ry="2" /> |
|
<text text-anchor="" x="423.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*layerStore).Unmount (2 samples, 1.69%)</title><rect x="570.0" y="529" width="20.0" height="15.0" fill="rgb(218,138,18)" rx="2" ry="2" /> |
|
<text text-anchor="" x="573.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>crypto/sha256.block (1 samples, 0.85%)</title><rect x="280.0" y="241" width="10.0" height="15.0" fill="rgb(237,171,20)" rx="2" ry="2" /> |
|
<text text-anchor="" x="283.00" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.memmove (1 samples, 0.85%)</title><rect x="520.0" y="193" width="10.0" height="15.0" fill="rgb(217,56,25)" rx="2" ry="2" /> |
|
<text text-anchor="" x="523.00" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os.MkdirAll (1 samples, 0.85%)</title><rect x="720.0" y="481" width="10.0" height="15.0" fill="rgb(225,94,48)" rx="2" ry="2" /> |
|
<text text-anchor="" x="723.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/mount.GetMounts (3 samples, 2.54%)</title><rect x="500.0" y="449" width="30.0" height="15.0" fill="rgb(226,13,30)" rx="2" ry="2" /> |
|
<text text-anchor="" x="503.00" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gi..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/github.com/containernetworking/cni/pkg/invoke.(*PluginExec).WithResult (2 samples, 1.69%)</title><rect x="670.0" y="481" width="20.0" height="15.0" fill="rgb(235,49,7)" rx="2" ry="2" /> |
|
<text text-anchor="" x="673.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>crypto/tls.(*fixedNonceAEAD).Open (1 samples, 0.85%)</title><rect x="290.0" y="113" width="10.0" height="15.0" fill="rgb(220,66,33)" rx="2" ry="2" /> |
|
<text text-anchor="" x="293.00" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>bufio.(*Writer).Flush (1 samples, 0.85%)</title><rect x="850.0" y="625" width="10.0" height="15.0" fill="rgb(250,2,2)" rx="2" ry="2" /> |
|
<text text-anchor="" x="853.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>runtime.systemstack (1 samples, 0.85%)</title><rect x="480.0" y="337" width="10.0" height="15.0" fill="rgb(230,63,8)" rx="2" ry="2" /> |
|
<text text-anchor="" x="483.00" 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>io.(*teeReader).Read (1 samples, 0.85%)</title><rect x="300.0" y="353" width="10.0" height="15.0" fill="rgb(237,65,47)" rx="2" ry="2" /> |
|
<text text-anchor="" x="303.00" 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.notetsleep_internal (2 samples, 1.69%)</title><rect x="1000.0" y="577" width="20.0" height="15.0" fill="rgb(229,105,44)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1003.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/ioutils.AtomicWriteFile (2 samples, 1.69%)</title><rect x="530.0" y="497" width="20.0" height="15.0" fill="rgb(241,120,6)" rx="2" ry="2" /> |
|
<text text-anchor="" x="533.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>os.Mkdir (1 samples, 0.85%)</title><rect x="320.0" y="481" width="10.0" height="15.0" fill="rgb(235,9,21)" rx="2" ry="2" /> |
|
<text text-anchor="" x="323.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*store).Unmount (2 samples, 1.69%)</title><rect x="570.0" y="545" width="20.0" height="15.0" fill="rgb(212,33,50)" rx="2" ry="2" /> |
|
<text text-anchor="" x="573.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>bytes.(*Buffer).ReadFrom (1 samples, 0.85%)</title><rect x="710.0" y="401" width="10.0" height="15.0" fill="rgb(249,217,8)" rx="2" ry="2" /> |
|
<text text-anchor="" x="713.00" 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/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*layerStore).Unmount (2 samples, 1.69%)</title><rect x="760.0" y="529" width="20.0" height="15.0" fill="rgb(248,122,25)" rx="2" ry="2" /> |
|
<text text-anchor="" x="763.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>os.(*File).Write (1 samples, 0.85%)</title><rect x="580.0" y="465" width="10.0" height="15.0" fill="rgb(227,99,36)" rx="2" ry="2" /> |
|
<text text-anchor="" x="583.00" 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>syscall.Syscall (2 samples, 1.69%)</title><rect x="40.0" y="609" width="20.0" height="15.0" fill="rgb(239,160,49)" rx="2" ry="2" /> |
|
<text text-anchor="" x="43.00" 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, 2.54%)</title><rect x="960.0" y="545" width="30.0" height="15.0" fill="rgb(234,141,47)" rx="2" ry="2" /> |
|
<text text-anchor="" x="963.00" y="555.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>encoding/json.uintEncoder (1 samples, 0.85%)</title><rect x="590.0" y="417" width="10.0" height="15.0" fill="rgb(254,226,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="593.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>runtime.(*mheap).alloc.func1 (1 samples, 0.85%)</title><rect x="880.0" y="481" width="10.0" height="15.0" fill="rgb(232,176,42)" rx="2" ry="2" /> |
|
<text text-anchor="" x="883.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>net/http.(*body).readLocked (1 samples, 0.85%)</title><rect x="290.0" y="225" width="10.0" height="15.0" fill="rgb(244,175,5)" rx="2" ry="2" /> |
|
<text text-anchor="" x="293.00" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>io.(*LimitedReader).Read (1 samples, 0.85%)</title><rect x="290.0" y="209" width="10.0" height="15.0" fill="rgb(229,63,33)" rx="2" ry="2" /> |
|
<text text-anchor="" x="293.00" 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>strconv.AppendUint (1 samples, 0.85%)</title><rect x="590.0" y="401" width="10.0" height="15.0" fill="rgb(211,76,6)" rx="2" ry="2" /> |
|
<text text-anchor="" x="593.00" 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/kubernetes-incubator/cri-o/server.(*Server).StartExitMonitor.func1 (3 samples, 2.54%)</title><rect x="10.0" y="641" width="30.0" height="15.0" fill="rgb(253,160,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.00" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gi..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>bytes.(*Buffer).WriteTo (1 samples, 0.85%)</title><rect x="860.0" y="577" width="10.0" height="15.0" fill="rgb(213,182,23)" rx="2" ry="2" /> |
|
<text text-anchor="" x="863.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>crypto/rsa.VerifyPKCS1v15 (1 samples, 0.85%)</title><rect x="840.0" y="449" width="10.0" height="15.0" fill="rgb(223,197,32)" rx="2" ry="2" /> |
|
<text text-anchor="" x="843.00" 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>github.com/kubernetes-incubator/cri-o/vendor/google.golang.org/grpc.(*Server).handleStream (51 samples, 43.22%)</title><rect x="320.0" y="625" width="510.0" height="15.0" fill="rgb(211,173,4)" rx="2" ry="2" /> |
|
<text text-anchor="" x="323.00" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/kubernetes-incubator/cri-o/vendor/google.golang.org/grpc.(*..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Mkdir (1 samples, 0.85%)</title><rect x="720.0" y="449" width="10.0" height="15.0" fill="rgb(205,159,21)" rx="2" ry="2" /> |
|
<text text-anchor="" x="723.00" 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>github.com/kubernetes-incubator/cri-o/vendor/github.com/vbatts/tar-split/archive/tar.(*Reader).Next (2 samples, 1.69%)</title><rect x="60.0" y="625" width="20.0" height="15.0" fill="rgb(214,39,51)" rx="2" ry="2" /> |
|
<text text-anchor="" x="63.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>io.Copy (24 samples, 20.34%)</title><rect x="80.0" y="609" width="240.0" height="15.0" fill="rgb(244,168,29)" rx="2" ry="2" /> |
|
<text text-anchor="" x="83.00" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.Copy</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>net.(*netFD).Write (1 samples, 0.85%)</title><rect x="850.0" y="529" width="10.0" height="15.0" fill="rgb(238,57,30)" rx="2" ry="2" /> |
|
<text text-anchor="" x="853.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containerd/cgroups.(*memoryController).Create (1 samples, 0.85%)</title><rect x="720.0" y="497" width="10.0" height="15.0" fill="rgb(248,125,32)" rx="2" ry="2" /> |
|
<text text-anchor="" x="723.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>encoding/json.nextValue (1 samples, 0.85%)</title><rect x="350.0" y="385" width="10.0" height="15.0" fill="rgb(225,19,51)" rx="2" ry="2" /> |
|
<text text-anchor="" x="353.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/idtools.mkdirAs (2 samples, 1.69%)</title><rect x="370.0" y="401" width="20.0" height="15.0" fill="rgb(248,110,6)" rx="2" ry="2" /> |
|
<text text-anchor="" x="373.00" 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>syscall.Renameat (1 samples, 0.85%)</title><rect x="760.0" y="417" width="10.0" height="15.0" fill="rgb(244,31,7)" rx="2" ry="2" /> |
|
<text text-anchor="" x="763.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>fmt.(*ss).convertString (2 samples, 1.69%)</title><rect x="510.0" y="337" width="20.0" height="15.0" fill="rgb(205,191,9)" rx="2" ry="2" /> |
|
<text text-anchor="" x="513.00" 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.convT2Eslice (1 samples, 0.85%)</title><rect x="620.0" y="369" width="10.0" height="15.0" fill="rgb(248,41,27)" rx="2" ry="2" /> |
|
<text text-anchor="" x="623.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/docker/docker/pkg/ioutils.(*atomicFileWriter).Close (2 samples, 1.69%)</title><rect x="10.0" y="609" width="20.0" height="15.0" fill="rgb(210,229,9)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.00" 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 (1 samples, 0.85%)</title><rect x="690.0" y="321" width="10.0" height="15.0" fill="rgb(213,44,45)" rx="2" ry="2" /> |
|
<text text-anchor="" x="693.00" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>internal/poll.(*FD).Fsync (1 samples, 0.85%)</title><rect x="480.0" y="417" width="10.0" height="15.0" fill="rgb(233,60,18)" rx="2" ry="2" /> |
|
<text text-anchor="" x="483.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>os.(*File).Sync (1 samples, 0.85%)</title><rect x="750.0" y="513" width="10.0" height="15.0" fill="rgb(210,65,4)" rx="2" ry="2" /> |
|
<text text-anchor="" x="753.00" 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>internal/poll.(*pollDesc).evict (1 samples, 0.85%)</title><rect x="890.0" y="561" width="10.0" height="15.0" fill="rgb(247,138,42)" rx="2" ry="2" /> |
|
<text text-anchor="" x="893.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>encoding/json.(*decodeState).value (1 samples, 0.85%)</title><rect x="350.0" y="433" width="10.0" height="15.0" fill="rgb(244,133,4)" rx="2" ry="2" /> |
|
<text text-anchor="" x="353.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>encoding/json.(*encodeState).marshal (1 samples, 0.85%)</title><rect x="570.0" y="481" width="10.0" height="15.0" fill="rgb(233,116,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="573.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*Layer).MarshalJSON (1 samples, 0.85%)</title><rect x="640.0" y="321" width="10.0" height="15.0" fill="rgb(214,177,44)" rx="2" ry="2" /> |
|
<text text-anchor="" x="643.00" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>crypto/sha256.block (1 samples, 0.85%)</title><rect x="300.0" y="305" width="10.0" height="15.0" fill="rgb(232,116,52)" rx="2" ry="2" /> |
|
<text text-anchor="" x="303.00" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.(*fixalloc).alloc (1 samples, 0.85%)</title><rect x="880.0" y="433" width="10.0" height="15.0" fill="rgb(232,83,20)" rx="2" ry="2" /> |
|
<text text-anchor="" x="883.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*store).CreateContainer (3 samples, 2.54%)</title><rect x="360.0" y="513" width="30.0" height="15.0" fill="rgb(226,222,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="363.00" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gi..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.systemstack (1 samples, 0.85%)</title><rect x="880.0" y="497" width="10.0" height="15.0" fill="rgb(212,195,6)" rx="2" ry="2" /> |
|
<text text-anchor="" x="883.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>syscall.Rename (1 samples, 0.85%)</title><rect x="760.0" y="433" width="10.0" height="15.0" fill="rgb(211,137,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="763.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/vbatts/tar-split/archive/tar.(*regFileReader).Read (23 samples, 19.49%)</title><rect x="80.0" y="561" width="230.0" height="15.0" fill="rgb(254,128,39)" rx="2" ry="2" /> |
|
<text text-anchor="" x="83.00" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/kubernetes-incubato..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*layerStore).Mount (1 samples, 0.85%)</title><rect x="660.0" y="529" width="10.0" height="15.0" fill="rgb(219,212,35)" rx="2" ry="2" /> |
|
<text text-anchor="" x="663.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>os.MkdirAll (1 samples, 0.85%)</title><rect x="320.0" y="497" width="10.0" height="15.0" fill="rgb(252,5,42)" rx="2" ry="2" /> |
|
<text text-anchor="" x="323.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/locker.(*Locker).Unlock (1 samples, 0.85%)</title><rect x="400.0" y="481" width="10.0" height="15.0" fill="rgb(242,115,14)" rx="2" ry="2" /> |
|
<text text-anchor="" x="403.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>github.com/kubernetes-incubator/cri-o/server.(*Server).RemovePodSandbox (6 samples, 5.08%)</title><rect x="530.0" y="577" width="60.0" height="15.0" fill="rgb(208,162,49)" rx="2" ry="2" /> |
|
<text text-anchor="" x="533.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>crypto/cipher.(*gcm).update (1 samples, 0.85%)</title><rect x="290.0" y="65" width="10.0" height="15.0" fill="rgb(249,67,32)" rx="2" ry="2" /> |
|
<text text-anchor="" x="293.00" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>bytes.TrimFunc (1 samples, 0.85%)</title><rect x="60.0" y="545" width="10.0" height="15.0" fill="rgb(223,65,22)" rx="2" ry="2" /> |
|
<text text-anchor="" x="63.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>io.Copy (1 samples, 0.85%)</title><rect x="880.0" y="609" width="10.0" height="15.0" fill="rgb(242,187,38)" rx="2" ry="2" /> |
|
<text text-anchor="" x="883.00" 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>crypto/cipher.(*gcm).Open (1 samples, 0.85%)</title><rect x="290.0" y="97" width="10.0" height="15.0" fill="rgb(225,134,35)" rx="2" ry="2" /> |
|
<text text-anchor="" x="293.00" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os.OpenFile (1 samples, 0.85%)</title><rect x="660.0" y="449" width="10.0" height="15.0" fill="rgb(211,190,23)" rx="2" ry="2" /> |
|
<text text-anchor="" x="663.00" 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.rtsigprocmask (1 samples, 0.85%)</title><rect x="340.0" y="369" width="10.0" height="15.0" fill="rgb(253,205,6)" rx="2" ry="2" /> |
|
<text text-anchor="" x="343.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/cri-o/ocicni/pkg/ocicni.(*cniNetworkPlugin).TearDownPod (2 samples, 1.69%)</title><rect x="780.0" y="545" width="20.0" height="15.0" fill="rgb(224,128,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="783.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>runtime.copystack (1 samples, 0.85%)</title><rect x="990.0" y="609" width="10.0" height="15.0" fill="rgb(230,15,5)" rx="2" ry="2" /> |
|
<text text-anchor="" x="993.00" 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/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*store).CreateImage (1 samples, 0.85%)</title><rect x="600.0" y="481" width="10.0" height="15.0" fill="rgb(254,123,19)" rx="2" ry="2" /> |
|
<text text-anchor="" x="603.00" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/golang.org/x/sys/unix.Mount (1 samples, 0.85%)</title><rect x="740.0" y="545" width="10.0" height="15.0" fill="rgb(246,147,15)" rx="2" ry="2" /> |
|
<text text-anchor="" x="743.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>crypto/sha256.block (1 samples, 0.85%)</title><rect x="140.0" y="337" width="10.0" height="15.0" fill="rgb(208,229,37)" rx="2" ry="2" /> |
|
<text text-anchor="" x="143.00" 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>encoding/json.(*encodeState).reflectValue (1 samples, 0.85%)</title><rect x="570.0" y="465" width="10.0" height="15.0" fill="rgb(209,122,54)" rx="2" ry="2" /> |
|
<text text-anchor="" x="573.00" 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/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/ioutils.AtomicWriteFile (1 samples, 0.85%)</title><rect x="600.0" y="433" width="10.0" height="15.0" fill="rgb(209,16,52)" rx="2" ry="2" /> |
|
<text text-anchor="" x="603.00" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/image/storage.(*storageImage).OCIConfig (1 samples, 0.85%)</title><rect x="350.0" y="513" width="10.0" height="15.0" fill="rgb(220,74,4)" rx="2" ry="2" /> |
|
<text text-anchor="" x="353.00" 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 (1 samples, 0.85%)</title><rect x="730.0" y="481" width="10.0" height="15.0" fill="rgb(218,36,48)" rx="2" ry="2" /> |
|
<text text-anchor="" x="733.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>os.Mkdir (1 samples, 0.85%)</title><rect x="630.0" y="401" width="10.0" height="15.0" fill="rgb(208,182,8)" rx="2" ry="2" /> |
|
<text text-anchor="" x="633.00" 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>syscall.Fsync (1 samples, 0.85%)</title><rect x="530.0" y="433" width="10.0" height="15.0" fill="rgb(210,131,10)" rx="2" ry="2" /> |
|
<text text-anchor="" x="533.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/cri-o/ocicni/pkg/ocicni.(*cniNetwork).deleteFromNetwork (2 samples, 1.69%)</title><rect x="780.0" y="529" width="20.0" height="15.0" fill="rgb(224,180,29)" rx="2" ry="2" /> |
|
<text text-anchor="" x="783.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>syscall.Syscall (1 samples, 0.85%)</title><rect x="720.0" y="417" width="10.0" height="15.0" fill="rgb(211,29,51)" rx="2" ry="2" /> |
|
<text text-anchor="" x="723.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>github.com/kubernetes-incubator/cri-o/vendor/k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime._RuntimeService_RemovePodSandbox_Handler (6 samples, 5.08%)</title><rect x="530.0" y="593" width="60.0" height="15.0" fill="rgb(234,179,22)" rx="2" ry="2" /> |
|
<text text-anchor="" x="533.00" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime._RuntimeService_StopContainer_Handler (1 samples, 0.85%)</title><rect x="750.0" y="593" width="10.0" height="15.0" fill="rgb(220,12,33)" rx="2" ry="2" /> |
|
<text text-anchor="" x="753.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>os/exec.(*Cmd).Start (1 samples, 0.85%)</title><rect x="790.0" y="433" width="10.0" height="15.0" fill="rgb(253,192,49)" rx="2" ry="2" /> |
|
<text text-anchor="" x="793.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>syscall.Syscall (1 samples, 0.85%)</title><rect x="870.0" y="497" width="10.0" height="15.0" fill="rgb(205,178,54)" rx="2" ry="2" /> |
|
<text text-anchor="" x="873.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>encoding/json.(*sliceEncoder).encode (1 samples, 0.85%)</title><rect x="570.0" y="401" width="10.0" height="15.0" fill="rgb(238,207,0)" rx="2" ry="2" /> |
|
<text text-anchor="" x="573.00" 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>io/ioutil.readAll (1 samples, 0.85%)</title><rect x="710.0" y="417" width="10.0" height="15.0" fill="rgb(210,160,33)" rx="2" ry="2" /> |
|
<text text-anchor="" x="713.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/system.EnsureRemoveAll (1 samples, 0.85%)</title><rect x="550.0" y="497" width="10.0" height="15.0" fill="rgb(214,228,9)" rx="2" ry="2" /> |
|
<text text-anchor="" x="553.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>crypto/tls.(*halfConn).decrypt (2 samples, 1.69%)</title><rect x="170.0" y="145" width="20.0" height="15.0" fill="rgb(212,126,14)" rx="2" ry="2" /> |
|
<text text-anchor="" x="173.00" 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>os.Rename (1 samples, 0.85%)</title><rect x="360.0" y="401" width="10.0" height="15.0" fill="rgb(213,159,5)" rx="2" ry="2" /> |
|
<text text-anchor="" x="363.00" 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>compress/flate.(*decompressor).huffmanBlock (10 samples, 8.47%)</title><rect x="210.0" y="449" width="100.0" height="15.0" fill="rgb(235,88,42)" rx="2" ry="2" /> |
|
<text text-anchor="" x="213.00" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >compress/fla..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>io.(*multiReader).Read (4 samples, 3.39%)</title><rect x="150.0" y="305" width="40.0" height="15.0" fill="rgb(240,77,33)" rx="2" ry="2" /> |
|
<text text-anchor="" x="153.00" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io...</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.SetFinalizer (1 samples, 0.85%)</title><rect x="730.0" y="497" width="10.0" height="15.0" fill="rgb(235,189,51)" rx="2" ry="2" /> |
|
<text text-anchor="" x="733.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*store).CreateContainer (1 samples, 0.85%)</title><rect x="630.0" y="529" width="10.0" height="15.0" fill="rgb(219,46,4)" rx="2" ry="2" /> |
|
<text text-anchor="" x="633.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>encoding/json.(*structEncoder).(encoding/json.encode)-fm (1 samples, 0.85%)</title><rect x="450.0" y="289" width="10.0" height="15.0" fill="rgb(220,185,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="453.00" 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>os/exec.(*Cmd).Start (1 samples, 0.85%)</title><rect x="340.0" y="545" width="10.0" height="15.0" fill="rgb(235,42,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="343.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containernetworking/cni/pkg/invoke.(*RawExec).ExecPlugin (2 samples, 1.69%)</title><rect x="670.0" y="465" width="20.0" height="15.0" fill="rgb(220,112,52)" rx="2" ry="2" /> |
|
<text text-anchor="" x="673.00" 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>os.(*Process).Wait (1 samples, 0.85%)</title><rect x="30.0" y="561" width="10.0" height="15.0" fill="rgb(211,84,18)" rx="2" ry="2" /> |
|
<text text-anchor="" x="33.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.stopm (1 samples, 0.85%)</title><rect x="940.0" y="577" width="10.0" height="15.0" fill="rgb(254,208,41)" rx="2" ry="2" /> |
|
<text text-anchor="" x="943.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>bufio.(*Reader).fill (6 samples, 5.08%)</title><rect x="240.0" y="385" width="60.0" height="15.0" fill="rgb(236,191,48)" rx="2" ry="2" /> |
|
<text text-anchor="" x="243.00" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bufio...</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*decodeState).value (1 samples, 0.85%)</title><rect x="780.0" y="417" width="10.0" height="15.0" fill="rgb(236,164,20)" rx="2" ry="2" /> |
|
<text text-anchor="" x="783.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>runtime.evacuate (1 samples, 0.85%)</title><rect x="670.0" y="353" width="10.0" height="15.0" fill="rgb(248,20,50)" rx="2" ry="2" /> |
|
<text text-anchor="" x="673.00" 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/http.persistConnWriter.Write (1 samples, 0.85%)</title><rect x="850.0" y="609" width="10.0" height="15.0" fill="rgb(229,179,15)" rx="2" ry="2" /> |
|
<text text-anchor="" x="853.00" 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.pcdatavalue (1 samples, 0.85%)</title><rect x="990.0" y="561" width="10.0" height="15.0" fill="rgb(212,103,51)" rx="2" ry="2" /> |
|
<text text-anchor="" x="993.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containerd/cgroups.(*cpusetController).getValues (1 samples, 0.85%)</title><rect x="330.0" y="465" width="10.0" height="15.0" fill="rgb(250,163,40)" rx="2" ry="2" /> |
|
<text text-anchor="" x="333.00" 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>os.Rename (1 samples, 0.85%)</title><rect x="650.0" y="449" width="10.0" height="15.0" fill="rgb(236,98,30)" rx="2" ry="2" /> |
|
<text text-anchor="" x="653.00" 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>os.(*File).write (1 samples, 0.85%)</title><rect x="870.0" y="561" width="10.0" height="15.0" fill="rgb(229,48,8)" rx="2" ry="2" /> |
|
<text text-anchor="" x="873.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>crypto/sha256.block (4 samples, 3.39%)</title><rect x="80.0" y="481" width="40.0" height="15.0" fill="rgb(217,208,43)" rx="2" ry="2" /> |
|
<text text-anchor="" x="83.00" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >cry..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os.(*File).read (1 samples, 0.85%)</title><rect x="800.0" y="481" width="10.0" height="15.0" fill="rgb(221,125,33)" rx="2" ry="2" /> |
|
<text text-anchor="" x="803.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/ioutils.(*atomicFileWriter).Close (1 samples, 0.85%)</title><rect x="470.0" y="465" width="10.0" height="15.0" fill="rgb(242,177,9)" rx="2" ry="2" /> |
|
<text text-anchor="" x="473.00" 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/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/ioutils.AtomicWriteFile (1 samples, 0.85%)</title><rect x="650.0" y="481" width="10.0" height="15.0" fill="rgb(241,218,9)" rx="2" ry="2" /> |
|
<text text-anchor="" x="653.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>syscall.Read (1 samples, 0.85%)</title><rect x="710.0" y="337" width="10.0" height="15.0" fill="rgb(208,163,0)" rx="2" ry="2" /> |
|
<text text-anchor="" x="713.00" 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>syscall.Syscall6 (1 samples, 0.85%)</title><rect x="650.0" y="385" width="10.0" height="15.0" fill="rgb(211,63,44)" rx="2" ry="2" /> |
|
<text text-anchor="" x="653.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>encoding/json.(*structEncoder).encode (1 samples, 0.85%)</title><rect x="590.0" y="433" width="10.0" height="15.0" fill="rgb(225,217,22)" rx="2" ry="2" /> |
|
<text text-anchor="" x="593.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.runqsteal (1 samples, 0.85%)</title><rect x="930.0" y="577" width="10.0" height="15.0" fill="rgb(205,82,47)" rx="2" ry="2" /> |
|
<text text-anchor="" x="933.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>syscall.Syscall6 (1 samples, 0.85%)</title><rect x="540.0" y="401" width="10.0" height="15.0" fill="rgb(238,45,26)" rx="2" ry="2" /> |
|
<text text-anchor="" x="543.00" 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.(*mheap).alloc_m (1 samples, 0.85%)</title><rect x="880.0" y="465" width="10.0" height="15.0" fill="rgb(251,203,27)" rx="2" ry="2" /> |
|
<text text-anchor="" x="883.00" 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>encoding/json.(*encodeState).marshal (1 samples, 0.85%)</title><rect x="450.0" y="481" width="10.0" height="15.0" fill="rgb(206,42,45)" rx="2" ry="2" /> |
|
<text text-anchor="" x="453.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>runtime.gcBgMarkWorker.func2 (2 samples, 1.69%)</title><rect x="910.0" y="609" width="20.0" height="15.0" fill="rgb(214,149,22)" rx="2" ry="2" /> |
|
<text text-anchor="" x="913.00" 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>crypto/sha256.(*digest).Write (1 samples, 0.85%)</title><rect x="830.0" y="561" width="10.0" height="15.0" fill="rgb(216,27,50)" rx="2" ry="2" /> |
|
<text text-anchor="" x="833.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>encoding/json.stateInString (1 samples, 0.85%)</title><rect x="610.0" y="369" width="10.0" height="15.0" fill="rgb(254,52,3)" rx="2" ry="2" /> |
|
<text text-anchor="" x="613.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/ioutils.(*WriteCounter).Write (3 samples, 2.54%)</title><rect x="250.0" y="321" width="30.0" height="15.0" fill="rgb(234,111,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="253.00" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gi..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os/exec.(*Cmd).Run (1 samples, 0.85%)</title><rect x="790.0" y="449" width="10.0" height="15.0" fill="rgb(249,42,29)" rx="2" ry="2" /> |
|
<text text-anchor="" x="793.00" 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>crypto/tls.(*fixedNonceAEAD).Open (2 samples, 1.69%)</title><rect x="170.0" y="129" width="20.0" height="15.0" fill="rgb(249,142,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="173.00" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*layerStore).Save (2 samples, 1.69%)</title><rect x="570.0" y="513" width="20.0" height="15.0" fill="rgb(206,147,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="573.00" 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>bytes.(*Buffer).ReadFrom (1 samples, 0.85%)</title><rect x="880.0" y="577" width="10.0" height="15.0" fill="rgb(210,170,2)" rx="2" ry="2" /> |
|
<text text-anchor="" x="883.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>internal/poll.(*FD).Read (2 samples, 1.69%)</title><rect x="420.0" y="465" width="20.0" height="15.0" fill="rgb(226,109,3)" rx="2" ry="2" /> |
|
<text text-anchor="" x="423.00" 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.(*mheap).allocSpanLocked (1 samples, 0.85%)</title><rect x="880.0" y="449" width="10.0" height="15.0" fill="rgb(214,118,47)" rx="2" ry="2" /> |
|
<text text-anchor="" x="883.00" 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.(*FD).Write (1 samples, 0.85%)</title><rect x="870.0" y="545" width="10.0" height="15.0" fill="rgb(221,134,52)" rx="2" ry="2" /> |
|
<text text-anchor="" x="873.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>bufio.(*Reader).fill (1 samples, 0.85%)</title><rect x="300.0" y="401" width="10.0" height="15.0" fill="rgb(225,96,29)" rx="2" ry="2" /> |
|
<text text-anchor="" x="303.00" 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>syscall.write (1 samples, 0.85%)</title><rect x="580.0" y="401" width="10.0" height="15.0" fill="rgb(206,168,15)" rx="2" ry="2" /> |
|
<text text-anchor="" x="583.00" 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/kubernetes-incubator/cri-o/pkg/storage.(*runtimeService).StartContainer (1 samples, 0.85%)</title><rect x="660.0" y="561" width="10.0" height="15.0" fill="rgb(212,219,10)" rx="2" ry="2" /> |
|
<text text-anchor="" x="663.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*layerStore).Save (1 samples, 0.85%)</title><rect x="480.0" y="481" width="10.0" height="15.0" fill="rgb(241,34,38)" rx="2" ry="2" /> |
|
<text text-anchor="" x="483.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>syscall.Rename (1 samples, 0.85%)</title><rect x="650.0" y="417" width="10.0" height="15.0" fill="rgb(217,82,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="653.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>runtime.(*mspan).ensureSwept (1 samples, 0.85%)</title><rect x="730.0" y="417" width="10.0" height="15.0" fill="rgb(211,202,3)" rx="2" ry="2" /> |
|
<text text-anchor="" x="733.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/opencontainers/runtime-tools/generate.(*Generator).Save (2 samples, 1.69%)</title><rect x="440.0" y="529" width="20.0" height="15.0" fill="rgb(237,83,28)" rx="2" ry="2" /> |
|
<text text-anchor="" x="443.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>bufio.(*Reader).ReadByte (1 samples, 0.85%)</title><rect x="300.0" y="417" width="10.0" height="15.0" fill="rgb(223,187,11)" rx="2" ry="2" /> |
|
<text text-anchor="" x="303.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*Layer).MarshalJSONBuf (1 samples, 0.85%)</title><rect x="640.0" y="305" width="10.0" height="15.0" fill="rgb(233,118,5)" rx="2" ry="2" /> |
|
<text text-anchor="" x="643.00" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>compress/flate.(*decompressor).moreBits (2 samples, 1.69%)</title><rect x="190.0" y="449" width="20.0" height="15.0" fill="rgb(246,201,31)" rx="2" ry="2" /> |
|
<text text-anchor="" x="193.00" 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>syscall.write (1 samples, 0.85%)</title><rect x="860.0" y="497" width="10.0" height="15.0" fill="rgb(248,100,32)" rx="2" ry="2" /> |
|
<text text-anchor="" x="863.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*layerStore).Save (1 samples, 0.85%)</title><rect x="360.0" y="449" width="10.0" height="15.0" fill="rgb(237,60,3)" rx="2" ry="2" /> |
|
<text text-anchor="" x="363.00" 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>github.com/kubernetes-incubator/cri-o/vendor/github.com/docker/docker/pkg/mount.parseInfoFile (3 samples, 2.54%)</title><rect x="800.0" y="529" width="30.0" height="15.0" fill="rgb(218,59,32)" rx="2" ry="2" /> |
|
<text text-anchor="" x="803.00" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gi..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/server.(*Server).StopContainer (1 samples, 0.85%)</title><rect x="750.0" y="577" width="10.0" height="15.0" fill="rgb(230,182,8)" rx="2" ry="2" /> |
|
<text text-anchor="" x="753.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containerd/cgroups.New (4 samples, 3.39%)</title><rect x="690.0" y="529" width="40.0" height="15.0" fill="rgb(221,172,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="693.00" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >git..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>io.Copy (2 samples, 1.69%)</title><rect x="860.0" y="609" width="20.0" height="15.0" fill="rgb(222,211,27)" rx="2" ry="2" /> |
|
<text text-anchor="" x="863.00" 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>syscall.Syscall (1 samples, 0.85%)</title><rect x="370.0" y="337" width="10.0" height="15.0" fill="rgb(211,217,25)" rx="2" ry="2" /> |
|
<text text-anchor="" x="373.00" 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>encoding/json.Unmarshal (1 samples, 0.85%)</title><rect x="610.0" y="401" width="10.0" height="15.0" fill="rgb(234,202,1)" rx="2" ry="2" /> |
|
<text text-anchor="" x="613.00" 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/kubernetes-incubator/cri-o/pkg/storage.(*runtimeService).StartContainer (2 samples, 1.69%)</title><rect x="400.0" y="545" width="20.0" height="15.0" fill="rgb(223,33,24)" rx="2" ry="2" /> |
|
<text text-anchor="" x="403.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>io/ioutil.TempFile (1 samples, 0.85%)</title><rect x="660.0" y="465" width="10.0" height="15.0" fill="rgb(233,132,9)" rx="2" ry="2" /> |
|
<text text-anchor="" x="663.00" 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 (1 samples, 0.85%)</title><rect x="640.0" y="129" width="10.0" height="15.0" fill="rgb(233,34,37)" rx="2" ry="2" /> |
|
<text text-anchor="" x="643.00" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Write (1 samples, 0.85%)</title><rect x="870.0" y="529" width="10.0" height="15.0" fill="rgb(226,193,4)" rx="2" ry="2" /> |
|
<text text-anchor="" x="873.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containerd/cgroups.(*cpusetController).ensureParent (1 samples, 0.85%)</title><rect x="710.0" y="481" width="10.0" height="15.0" fill="rgb(232,154,27)" rx="2" ry="2" /> |
|
<text text-anchor="" x="713.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>crypto/sha256.(*digest).Write (1 samples, 0.85%)</title><rect x="300.0" y="321" width="10.0" height="15.0" fill="rgb(229,40,37)" rx="2" ry="2" /> |
|
<text text-anchor="" x="303.00" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*structEncoder).encode (1 samples, 0.85%)</title><rect x="450.0" y="273" width="10.0" height="15.0" fill="rgb(220,137,14)" rx="2" ry="2" /> |
|
<text text-anchor="" x="453.00" 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/tls.(*Conn).readRecord (2 samples, 1.69%)</title><rect x="170.0" y="161" width="20.0" height="15.0" fill="rgb(236,226,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="173.00" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.makeslice (1 samples, 0.85%)</title><rect x="880.0" y="545" width="10.0" height="15.0" fill="rgb(251,126,37)" rx="2" ry="2" /> |
|
<text text-anchor="" x="883.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/ioutils.(*atomicFileWriter).Close (1 samples, 0.85%)</title><rect x="360.0" y="417" width="10.0" height="15.0" fill="rgb(246,194,44)" rx="2" ry="2" /> |
|
<text text-anchor="" x="363.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*layerStore).Delete (3 samples, 2.54%)</title><rect x="530.0" y="529" width="30.0" height="15.0" fill="rgb(250,80,0)" rx="2" ry="2" /> |
|
<text text-anchor="" x="533.00" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gi..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.gentraceback (1 samples, 0.85%)</title><rect x="990.0" y="593" width="10.0" height="15.0" fill="rgb(249,91,44)" rx="2" ry="2" /> |
|
<text text-anchor="" x="993.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/ioutils.(*WriteCounter).Write (1 samples, 0.85%)</title><rect x="140.0" y="369" width="10.0" height="15.0" fill="rgb(231,64,10)" rx="2" ry="2" /> |
|
<text text-anchor="" x="143.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>github.com/kubernetes-incubator/cri-o/libkpod.(*ContainerServer).ContainerStateToDisk (1 samples, 0.85%)</title><rect x="750.0" y="545" width="10.0" height="15.0" fill="rgb(232,149,28)" rx="2" ry="2" /> |
|
<text text-anchor="" x="753.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>runtime.runqget (1 samples, 0.85%)</title><rect x="950.0" y="593" width="10.0" height="15.0" fill="rgb(207,145,48)" rx="2" ry="2" /> |
|
<text text-anchor="" x="953.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>crypto/sha256.(*digest).Write (4 samples, 3.39%)</title><rect x="80.0" y="497" width="40.0" height="15.0" fill="rgb(241,95,7)" rx="2" ry="2" /> |
|
<text text-anchor="" x="83.00" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >cry..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.sigprocmask (1 samples, 0.85%)</title><rect x="340.0" y="385" width="10.0" height="15.0" fill="rgb(238,48,7)" rx="2" ry="2" /> |
|
<text text-anchor="" x="343.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>crypto/cipher.(*gcm).update (1 samples, 0.85%)</title><rect x="170.0" y="81" width="10.0" height="15.0" fill="rgb(250,19,10)" rx="2" ry="2" /> |
|
<text text-anchor="" x="173.00" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>crypto/sha256.block (3 samples, 2.54%)</title><rect x="250.0" y="289" width="30.0" height="15.0" fill="rgb(238,135,51)" rx="2" ry="2" /> |
|
<text text-anchor="" x="253.00" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >cr..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.Marshal (1 samples, 0.85%)</title><rect x="570.0" y="497" width="10.0" height="15.0" fill="rgb(219,70,26)" rx="2" ry="2" /> |
|
<text text-anchor="" x="573.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>runtime.pcvalue (1 samples, 0.85%)</title><rect x="990.0" y="545" width="10.0" height="15.0" fill="rgb(213,220,30)" rx="2" ry="2" /> |
|
<text text-anchor="" x="993.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>encoding/json.Unmarshal (1 samples, 0.85%)</title><rect x="620.0" y="465" width="10.0" height="15.0" fill="rgb(223,192,51)" rx="2" ry="2" /> |
|
<text text-anchor="" x="623.00" 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/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*layerStore).Create (1 samples, 0.85%)</title><rect x="630.0" y="513" width="10.0" height="15.0" fill="rgb(253,11,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="633.00" 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>bufio.(*Reader).ReadByte (2 samples, 1.69%)</title><rect x="190.0" y="433" width="20.0" height="15.0" fill="rgb(226,52,41)" rx="2" ry="2" /> |
|
<text text-anchor="" x="193.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>encoding/json.(*ptrEncoder).encode (1 samples, 0.85%)</title><rect x="450.0" y="433" width="10.0" height="15.0" fill="rgb(249,111,30)" rx="2" ry="2" /> |
|
<text text-anchor="" x="453.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/ioutils.AtomicWriteFile (1 samples, 0.85%)</title><rect x="580.0" y="497" width="10.0" height="15.0" fill="rgb(209,220,41)" rx="2" ry="2" /> |
|
<text text-anchor="" x="583.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>github.com/kubernetes-incubator/cri-o/pkg/storage.(*imageService).PullImage (1 samples, 0.85%)</title><rect x="600.0" y="529" width="10.0" height="15.0" fill="rgb(225,0,52)" rx="2" ry="2" /> |
|
<text text-anchor="" x="603.00" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/pkg/storage.(*runtimeService).DeleteContainer (7 samples, 5.93%)</title><rect x="460.0" y="545" width="70.0" height="15.0" fill="rgb(233,99,24)" rx="2" ry="2" /> |
|
<text text-anchor="" x="463.00" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github...</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/ioutils.(*atomicFileWriter).Close (1 samples, 0.85%)</title><rect x="650.0" y="465" width="10.0" height="15.0" fill="rgb(248,211,48)" rx="2" ry="2" /> |
|
<text text-anchor="" x="653.00" 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>crypto/tls.(*clientHandshakeState).doFullHandshake (2 samples, 1.69%)</title><rect x="830.0" y="593" width="20.0" height="15.0" fill="rgb(254,212,5)" rx="2" ry="2" /> |
|
<text text-anchor="" x="833.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containerd/cgroups.V1 (2 samples, 1.69%)</title><rect x="690.0" y="513" width="20.0" height="15.0" fill="rgb(235,187,52)" rx="2" ry="2" /> |
|
<text text-anchor="" x="693.00" 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/kubernetes-incubator/cri-o/pkg/storage.(*runtimeService).CreateContainer (5 samples, 4.24%)</title><rect x="350.0" y="545" width="50.0" height="15.0" fill="rgb(231,98,30)" rx="2" ry="2" /> |
|
<text text-anchor="" x="353.00" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >githu..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/github.com/containerd/cgroups.(*cpusetController).getValues (1 samples, 0.85%)</title><rect x="710.0" y="449" width="10.0" height="15.0" fill="rgb(225,52,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="713.00" 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>os/exec.dedupEnvCase (1 samples, 0.85%)</title><rect x="670.0" y="401" width="10.0" height="15.0" fill="rgb(212,173,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="673.00" 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>bufio.(*Reader).Read (1 samples, 0.85%)</title><rect x="290.0" y="193" width="10.0" height="15.0" fill="rgb(222,218,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="293.00" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Mkdir (1 samples, 0.85%)</title><rect x="630.0" y="385" width="10.0" height="15.0" fill="rgb(246,115,20)" rx="2" ry="2" /> |
|
<text text-anchor="" x="633.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>runtime.exitsyscallfast (1 samples, 0.85%)</title><rect x="480.0" y="353" width="10.0" height="15.0" fill="rgb(206,166,14)" rx="2" ry="2" /> |
|
<text text-anchor="" x="483.00" 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>os.(*File).Name (1 samples, 0.85%)</title><rect x="770.0" y="481" width="10.0" height="15.0" fill="rgb(251,143,50)" rx="2" ry="2" /> |
|
<text text-anchor="" x="773.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>runtime.makeslice (1 samples, 0.85%)</title><rect x="690.0" y="369" width="10.0" height="15.0" fill="rgb(248,1,21)" rx="2" ry="2" /> |
|
<text text-anchor="" x="693.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>syscall.Syscall (1 samples, 0.85%)</title><rect x="390.0" y="385" width="10.0" height="15.0" fill="rgb(241,112,0)" rx="2" ry="2" /> |
|
<text text-anchor="" x="393.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>runtime._System (1 samples, 0.85%)</title><rect x="900.0" y="641" width="10.0" height="15.0" fill="rgb(225,203,43)" rx="2" ry="2" /> |
|
<text text-anchor="" x="903.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>encoding/json.(*structEncoder).(encoding/json.encode)-fm (1 samples, 0.85%)</title><rect x="450.0" y="417" width="10.0" height="15.0" fill="rgb(229,115,45)" rx="2" ry="2" /> |
|
<text text-anchor="" x="453.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>github.com/kubernetes-incubator/cri-o/server.(*Server).StopPodSandbox (7 samples, 5.93%)</title><rect x="760.0" y="577" width="70.0" height="15.0" fill="rgb(245,36,23)" rx="2" ry="2" /> |
|
<text text-anchor="" x="763.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github...</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/github.com/vbatts/tar-split/tar/asm.NewInputTarStream.func1 (26 samples, 22.03%)</title><rect x="60.0" y="641" width="260.0" height="15.0" fill="rgb(223,170,0)" rx="2" ry="2" /> |
|
<text text-anchor="" x="63.00" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/kubernetes-incubator/cr..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*arrayEncoder).encode (1 samples, 0.85%)</title><rect x="570.0" y="369" width="10.0" height="15.0" fill="rgb(214,57,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="573.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>os/exec.(*Cmd).stdin.func1 (2 samples, 1.69%)</title><rect x="860.0" y="625" width="20.0" height="15.0" fill="rgb(213,221,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="863.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>runtime.(*mcentral).grow (1 samples, 0.85%)</title><rect x="640.0" y="65" width="10.0" height="15.0" fill="rgb(217,29,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="643.00" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Open (1 samples, 0.85%)</title><rect x="330.0" y="401" width="10.0" height="15.0" fill="rgb(237,39,52)" rx="2" ry="2" /> |
|
<text text-anchor="" x="333.00" 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>os.(*File).read (2 samples, 1.69%)</title><rect x="420.0" y="481" width="20.0" height="15.0" fill="rgb(220,181,49)" rx="2" ry="2" /> |
|
<text text-anchor="" x="423.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>runtime.(*mcentral).cacheSpan (1 samples, 0.85%)</title><rect x="640.0" y="81" width="10.0" height="15.0" fill="rgb(209,154,21)" rx="2" ry="2" /> |
|
<text text-anchor="" x="643.00" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*ptrEncoder).(encoding/json.encode)-fm (1 samples, 0.85%)</title><rect x="590.0" y="481" width="10.0" height="15.0" fill="rgb(213,118,0)" rx="2" ry="2" /> |
|
<text text-anchor="" x="593.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>crypto/cipher.(*gcm).counterCrypt (1 samples, 0.85%)</title><rect x="180.0" y="97" width="10.0" height="15.0" fill="rgb(247,166,3)" rx="2" ry="2" /> |
|
<text text-anchor="" x="183.00" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>crypto/cipher.(*gcm).auth (1 samples, 0.85%)</title><rect x="170.0" y="97" width="10.0" height="15.0" fill="rgb(236,208,45)" rx="2" ry="2" /> |
|
<text text-anchor="" x="173.00" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>compress/gzip.(*Reader).Read (19 samples, 16.10%)</title><rect x="120.0" y="497" width="190.0" height="15.0" fill="rgb(252,188,26)" rx="2" ry="2" /> |
|
<text text-anchor="" x="123.00" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >compress/gzip.(*Reader)...</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Write (1 samples, 0.85%)</title><rect x="580.0" y="417" width="10.0" height="15.0" fill="rgb(239,130,43)" rx="2" ry="2" /> |
|
<text text-anchor="" x="583.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>io/ioutil.ReadDir (1 samples, 0.85%)</title><rect x="690.0" y="449" width="10.0" height="15.0" fill="rgb(230,179,18)" rx="2" ry="2" /> |
|
<text text-anchor="" x="693.00" 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>syscall.Fsync (1 samples, 0.85%)</title><rect x="480.0" y="401" width="10.0" height="15.0" fill="rgb(254,83,48)" rx="2" ry="2" /> |
|
<text text-anchor="" x="483.00" 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>syscall.Rename (1 samples, 0.85%)</title><rect x="600.0" y="369" width="10.0" height="15.0" fill="rgb(209,71,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="603.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*layerStore).SetNames (2 samples, 1.69%)</title><rect x="640.0" y="513" width="20.0" height="15.0" fill="rgb(252,174,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="643.00" 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>os.rename (1 samples, 0.85%)</title><rect x="650.0" y="433" width="10.0" height="15.0" fill="rgb(208,149,23)" rx="2" ry="2" /> |
|
<text text-anchor="" x="653.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*layerStore).Mount (2 samples, 1.69%)</title><rect x="400.0" y="513" width="20.0" height="15.0" fill="rgb(210,105,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="403.00" 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.stoplockedm (3 samples, 2.54%)</title><rect x="960.0" y="593" width="30.0" height="15.0" fill="rgb(215,208,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="963.00" y="603.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.notesleep (3 samples, 2.54%)</title><rect x="960.0" y="577" width="30.0" height="15.0" fill="rgb(243,175,49)" rx="2" ry="2" /> |
|
<text text-anchor="" x="963.00" y="587.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>internal/poll.(*FD).Read (1 samples, 0.85%)</title><rect x="710.0" y="353" width="10.0" height="15.0" fill="rgb(229,138,33)" rx="2" ry="2" /> |
|
<text text-anchor="" x="713.00" 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>syscall.Read (2 samples, 1.69%)</title><rect x="420.0" y="449" width="20.0" height="15.0" fill="rgb(234,194,25)" rx="2" ry="2" /> |
|
<text text-anchor="" x="423.00" 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>syscall.Syscall6 (1 samples, 0.85%)</title><rect x="330.0" y="369" width="10.0" height="15.0" fill="rgb(217,142,28)" rx="2" ry="2" /> |
|
<text text-anchor="" x="333.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>io.(*LimitedReader).Read (2 samples, 1.69%)</title><rect x="170.0" y="225" width="20.0" height="15.0" fill="rgb(243,42,23)" rx="2" ry="2" /> |
|
<text text-anchor="" x="173.00" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>bytes.Trim (2 samples, 1.69%)</title><rect x="60.0" y="561" width="20.0" height="15.0" fill="rgb(232,202,45)" rx="2" ry="2" /> |
|
<text text-anchor="" x="63.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>os.(*File).Write (1 samples, 0.85%)</title><rect x="870.0" y="577" width="10.0" height="15.0" fill="rgb(208,84,48)" rx="2" ry="2" /> |
|
<text text-anchor="" x="873.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>fmt.(*stringReader).Read (1 samples, 0.85%)</title><rect x="520.0" y="209" width="10.0" height="15.0" fill="rgb(236,62,34)" rx="2" ry="2" /> |
|
<text text-anchor="" x="523.00" 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.runqgrab (1 samples, 0.85%)</title><rect x="930.0" y="561" width="10.0" height="15.0" fill="rgb(236,126,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="933.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.futexsleep (2 samples, 1.69%)</title><rect x="1000.0" y="561" width="20.0" height="15.0" fill="rgb(242,24,34)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1003.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>fmt.(*ss).convertString (1 samples, 0.85%)</title><rect x="810.0" y="449" width="10.0" height="15.0" fill="rgb(209,90,17)" rx="2" ry="2" /> |
|
<text text-anchor="" x="813.00" 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>all (118 samples, 100%)</title><rect x="10.0" y="657" width="1180.0" height="15.0" fill="rgb(213,117,54)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.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>syscall.Syscall (1 samples, 0.85%)</title><rect x="560.0" y="465" width="10.0" height="15.0" fill="rgb(229,23,14)" rx="2" ry="2" /> |
|
<text text-anchor="" x="563.00" 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 (1 samples, 0.85%)</title><rect x="640.0" y="161" width="10.0" height="15.0" fill="rgb(216,219,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="643.00" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>crypto/cipher.(*gcm).updateBlocks (1 samples, 0.85%)</title><rect x="170.0" y="65" width="10.0" height="15.0" fill="rgb(228,182,5)" rx="2" ry="2" /> |
|
<text text-anchor="" x="173.00" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>internal/poll.runtime_pollUnblock (1 samples, 0.85%)</title><rect x="890.0" y="545" width="10.0" height="15.0" fill="rgb(242,135,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="893.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>runtime.newstack (1 samples, 0.85%)</title><rect x="990.0" y="625" width="10.0" height="15.0" fill="rgb(207,118,5)" rx="2" ry="2" /> |
|
<text text-anchor="" x="993.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>runtime.gcBgMarkWorker (2 samples, 1.69%)</title><rect x="910.0" y="641" width="20.0" height="15.0" fill="rgb(244,188,2)" rx="2" ry="2" /> |
|
<text text-anchor="" x="913.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/ioutils.(*WriteCounter).Write (4 samples, 3.39%)</title><rect x="80.0" y="513" width="40.0" height="15.0" fill="rgb(217,199,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="83.00" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >git..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/github.com/containerd/cgroups.(*cpusetController).Create (1 samples, 0.85%)</title><rect x="330.0" y="513" width="10.0" height="15.0" fill="rgb(220,7,20)" rx="2" ry="2" /> |
|
<text text-anchor="" x="333.00" 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>encoding/json.(*structEncoder).(encoding/json.encode)-fm (1 samples, 0.85%)</title><rect x="450.0" y="353" width="10.0" height="15.0" fill="rgb(240,181,7)" rx="2" ry="2" /> |
|
<text text-anchor="" x="453.00" 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>github.com/kubernetes-incubator/cri-o/vendor/github.com/vbatts/tar-split/archive/tar.(*Reader).readHeader (2 samples, 1.69%)</title><rect x="60.0" y="609" width="20.0" height="15.0" fill="rgb(233,152,21)" rx="2" ry="2" /> |
|
<text text-anchor="" x="63.00" 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.mstart (19 samples, 16.10%)</title><rect x="1000.0" y="641" width="190.0" height="15.0" fill="rgb(233,57,35)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1003.00" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >runtime.mstart</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>crypto/cipher.xorWords (1 samples, 0.85%)</title><rect x="180.0" y="81" width="10.0" height="15.0" fill="rgb(234,9,38)" rx="2" ry="2" /> |
|
<text text-anchor="" x="183.00" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.(*mcentral).grow (1 samples, 0.85%)</title><rect x="690.0" y="257" width="10.0" height="15.0" fill="rgb(254,24,10)" rx="2" ry="2" /> |
|
<text text-anchor="" x="693.00" 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>os/exec.(*Cmd).Wait (1 samples, 0.85%)</title><rect x="680.0" y="433" width="10.0" height="15.0" fill="rgb(247,71,17)" rx="2" ry="2" /> |
|
<text text-anchor="" x="683.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*layerStore).CreateWithFlags (1 samples, 0.85%)</title><rect x="630.0" y="497" width="10.0" height="15.0" fill="rgb(214,41,38)" rx="2" ry="2" /> |
|
<text text-anchor="" x="633.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>runtime.(*mcache).nextFree.func1 (1 samples, 0.85%)</title><rect x="640.0" y="113" width="10.0" height="15.0" fill="rgb(212,64,36)" rx="2" ry="2" /> |
|
<text text-anchor="" x="643.00" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Mkdirat (1 samples, 0.85%)</title><rect x="720.0" y="433" width="10.0" height="15.0" fill="rgb(252,39,36)" rx="2" ry="2" /> |
|
<text text-anchor="" x="723.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 (6 samples, 5.08%)</title><rect x="930.0" y="625" width="60.0" height="15.0" fill="rgb(205,216,35)" rx="2" ry="2" /> |
|
<text text-anchor="" x="933.00" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >runtim..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Read (1 samples, 0.85%)</title><rect x="800.0" y="449" width="10.0" height="15.0" fill="rgb(246,114,36)" rx="2" ry="2" /> |
|
<text text-anchor="" x="803.00" 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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/idtools.MkdirAs (2 samples, 1.69%)</title><rect x="370.0" y="417" width="20.0" height="15.0" fill="rgb(212,224,29)" rx="2" ry="2" /> |
|
<text text-anchor="" x="373.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/drivers/overlay.(*Driver).CreateReadWrite (2 samples, 1.69%)</title><rect x="370.0" y="449" width="20.0" height="15.0" fill="rgb(214,137,18)" rx="2" ry="2" /> |
|
<text text-anchor="" x="373.00" 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.(*FD).Close (1 samples, 0.85%)</title><rect x="890.0" y="577" width="10.0" height="15.0" fill="rgb(243,163,8)" rx="2" ry="2" /> |
|
<text text-anchor="" x="893.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>os.(*file).close (1 samples, 0.85%)</title><rect x="890.0" y="593" width="10.0" height="15.0" fill="rgb(215,7,33)" rx="2" ry="2" /> |
|
<text text-anchor="" x="893.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>os.(*File).Sync (1 samples, 0.85%)</title><rect x="10.0" y="593" width="10.0" height="15.0" fill="rgb(237,226,19)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.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>encoding/json.(*encodeState).marshal (1 samples, 0.85%)</title><rect x="640.0" y="465" width="10.0" height="15.0" fill="rgb(246,88,8)" rx="2" ry="2" /> |
|
<text text-anchor="" x="643.00" 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>encoding/json.(*sliceEncoder).encode (1 samples, 0.85%)</title><rect x="640.0" y="385" width="10.0" height="15.0" fill="rgb(206,35,2)" rx="2" ry="2" /> |
|
<text text-anchor="" x="643.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>github.com/kubernetes-incubator/cri-o/pkg/storage.(*runtimeService).CreatePodSandbox (7 samples, 5.93%)</title><rect x="590.0" y="561" width="70.0" height="15.0" fill="rgb(242,177,3)" rx="2" ry="2" /> |
|
<text text-anchor="" x="593.00" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github...</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*decodeState).object (1 samples, 0.85%)</title><rect x="780.0" y="401" width="10.0" height="15.0" fill="rgb(239,75,54)" rx="2" ry="2" /> |
|
<text text-anchor="" x="783.00" 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/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/ioutils.(*atomicFileWriter).Close (1 samples, 0.85%)</title><rect x="390.0" y="449" width="10.0" height="15.0" fill="rgb(221,168,38)" rx="2" ry="2" /> |
|
<text text-anchor="" x="393.00" 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>github.com/kubernetes-incubator/cri-o/vendor/github.com/vbatts/tar-split/archive/tar.(*parser).parseOctal (2 samples, 1.69%)</title><rect x="60.0" y="577" width="20.0" height="15.0" fill="rgb(237,99,1)" rx="2" ry="2" /> |
|
<text text-anchor="" x="63.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>math/big.nat.div (1 samples, 0.85%)</title><rect x="840.0" y="385" width="10.0" height="15.0" fill="rgb(242,203,22)" rx="2" ry="2" /> |
|
<text text-anchor="" x="843.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>os.RemoveAll (1 samples, 0.85%)</title><rect x="560.0" y="529" width="10.0" height="15.0" fill="rgb(245,186,42)" rx="2" ry="2" /> |
|
<text text-anchor="" x="563.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>internal/poll.(*FD).Fsync (1 samples, 0.85%)</title><rect x="390.0" y="417" width="10.0" height="15.0" fill="rgb(238,181,49)" rx="2" ry="2" /> |
|
<text text-anchor="" x="393.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>fmt.(*ss).doScanf (3 samples, 2.54%)</title><rect x="500.0" y="369" width="30.0" height="15.0" fill="rgb(252,95,29)" rx="2" ry="2" /> |
|
<text text-anchor="" x="503.00" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fm..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*layerStore).Create (3 samples, 2.54%)</title><rect x="360.0" y="497" width="30.0" height="15.0" fill="rgb(235,72,38)" rx="2" ry="2" /> |
|
<text text-anchor="" x="363.00" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gi..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>io.ReadAtLeast (1 samples, 0.85%)</title><rect x="810.0" y="337" width="10.0" height="15.0" fill="rgb(251,30,8)" rx="2" ry="2" /> |
|
<text text-anchor="" x="813.00" 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>syscall.unlinkat (1 samples, 0.85%)</title><rect x="560.0" y="481" width="10.0" height="15.0" fill="rgb(252,71,48)" rx="2" ry="2" /> |
|
<text text-anchor="" x="563.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>github.com/kubernetes-incubator/cri-o/server.(*Server).runContainer (5 samples, 4.24%)</title><rect x="690.0" y="561" width="50.0" height="15.0" fill="rgb(245,100,6)" rx="2" ry="2" /> |
|
<text text-anchor="" x="693.00" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >githu..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>io.copyBuffer (24 samples, 20.34%)</title><rect x="80.0" y="593" width="240.0" height="15.0" fill="rgb(239,83,51)" rx="2" ry="2" /> |
|
<text text-anchor="" x="83.00" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.copyBuffer</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/github.com/containerd/cgroups.initializeSubsystem (2 samples, 1.69%)</title><rect x="710.0" y="513" width="20.0" height="15.0" fill="rgb(227,42,42)" rx="2" ry="2" /> |
|
<text text-anchor="" x="713.00" 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/kubernetes-incubator/cri-o/vendor/github.com/containers/image/storage.(*storageReference).NewImage (2 samples, 1.69%)</title><rect x="610.0" y="529" width="20.0" height="15.0" fill="rgb(233,225,11)" rx="2" ry="2" /> |
|
<text text-anchor="" x="613.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>os.newProcess (1 samples, 0.85%)</title><rect x="790.0" y="385" width="10.0" height="15.0" fill="rgb(223,12,4)" rx="2" ry="2" /> |
|
<text text-anchor="" x="793.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containerd/cgroups.hugePageSizes (1 samples, 0.85%)</title><rect x="690.0" y="465" width="10.0" height="15.0" fill="rgb(226,23,28)" rx="2" ry="2" /> |
|
<text text-anchor="" x="693.00" 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>io.ReadFull (1 samples, 0.85%)</title><rect x="810.0" y="353" width="10.0" height="15.0" fill="rgb(252,179,28)" rx="2" ry="2" /> |
|
<text text-anchor="" x="813.00" 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>github.com/kubernetes-incubator/cri-o/vendor/github.com/cri-o/ocicni/pkg/ocicni.(*cniNetworkPlugin).SetUpPod (2 samples, 1.69%)</title><rect x="670.0" y="545" width="20.0" height="15.0" fill="rgb(253,109,33)" rx="2" ry="2" /> |
|
<text text-anchor="" x="673.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>runtime.exitsyscallfast_pidle (1 samples, 0.85%)</title><rect x="480.0" y="305" width="10.0" height="15.0" fill="rgb(249,60,31)" rx="2" ry="2" /> |
|
<text text-anchor="" x="483.00" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Rename (1 samples, 0.85%)</title><rect x="360.0" y="369" width="10.0" height="15.0" fill="rgb(208,171,45)" rx="2" ry="2" /> |
|
<text text-anchor="" x="363.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>io.ReadFull (1 samples, 0.85%)</title><rect x="520.0" y="241" width="10.0" height="15.0" fill="rgb(247,140,9)" rx="2" ry="2" /> |
|
<text text-anchor="" x="523.00" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os.(*File).Write (1 samples, 0.85%)</title><rect x="860.0" y="561" width="10.0" height="15.0" fill="rgb(224,130,42)" rx="2" ry="2" /> |
|
<text text-anchor="" x="863.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>internal/poll.(*FD).Fsync (1 samples, 0.85%)</title><rect x="10.0" y="577" width="10.0" height="15.0" fill="rgb(227,223,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.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>github.com/kubernetes-incubator/cri-o/vendor/golang.org/x/sys/unix.mount (1 samples, 0.85%)</title><rect x="740.0" y="529" width="10.0" height="15.0" fill="rgb(253,12,39)" rx="2" ry="2" /> |
|
<text text-anchor="" x="743.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/ioutils.(*WriteCounter).Write (1 samples, 0.85%)</title><rect x="240.0" y="353" width="10.0" height="15.0" fill="rgb(233,206,14)" rx="2" ry="2" /> |
|
<text text-anchor="" x="243.00" 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>syscall.Mkdir (1 samples, 0.85%)</title><rect x="320.0" y="465" width="10.0" height="15.0" fill="rgb(238,3,23)" rx="2" ry="2" /> |
|
<text text-anchor="" x="323.00" 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>encoding/json.MarshalIndent (2 samples, 1.69%)</title><rect x="440.0" y="513" width="20.0" height="15.0" fill="rgb(235,119,6)" rx="2" ry="2" /> |
|
<text text-anchor="" x="443.00" 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/kubernetes-incubator/cri-o/vendor/github.com/containernetworking/cni/libcni.(*CNIConfig).DelNetworkList (2 samples, 1.69%)</title><rect x="780.0" y="513" width="20.0" height="15.0" fill="rgb(235,4,30)" rx="2" ry="2" /> |
|
<text text-anchor="" x="783.00" 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>io.(*multiReader).Read (4 samples, 3.39%)</title><rect x="150.0" y="337" width="40.0" height="15.0" fill="rgb(218,42,36)" rx="2" ry="2" /> |
|
<text text-anchor="" x="153.00" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io...</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os/exec.(*Cmd).Wait (1 samples, 0.85%)</title><rect x="30.0" y="577" width="10.0" height="15.0" fill="rgb(234,88,20)" rx="2" ry="2" /> |
|
<text text-anchor="" x="33.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.scanobject (2 samples, 1.69%)</title><rect x="910.0" y="577" width="20.0" height="15.0" fill="rgb(252,215,54)" rx="2" ry="2" /> |
|
<text text-anchor="" x="913.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>internal/poll.(*FD).Write (1 samples, 0.85%)</title><rect x="580.0" y="433" width="10.0" height="15.0" fill="rgb(210,94,31)" rx="2" ry="2" /> |
|
<text text-anchor="" x="583.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>github.com/kubernetes-incubator/cri-o/server.setupShm (1 samples, 0.85%)</title><rect x="740.0" y="561" width="10.0" height="15.0" fill="rgb(238,93,40)" rx="2" ry="2" /> |
|
<text text-anchor="" x="743.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>os.(*File).write (1 samples, 0.85%)</title><rect x="860.0" y="545" width="10.0" height="15.0" fill="rgb(232,70,54)" rx="2" ry="2" /> |
|
<text text-anchor="" x="863.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>crypto/tls.(*Conn).readRecord (1 samples, 0.85%)</title><rect x="290.0" y="145" width="10.0" height="15.0" fill="rgb(225,226,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="293.00" 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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/ioutils.AtomicWriteFile (1 samples, 0.85%)</title><rect x="360.0" y="433" width="10.0" height="15.0" fill="rgb(230,200,8)" rx="2" ry="2" /> |
|
<text text-anchor="" x="363.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>os.StartProcess (1 samples, 0.85%)</title><rect x="790.0" y="417" width="10.0" height="15.0" fill="rgb(228,123,5)" rx="2" ry="2" /> |
|
<text text-anchor="" x="793.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/ioutils.(*WriteCounter).Write (1 samples, 0.85%)</title><rect x="300.0" y="337" width="10.0" height="15.0" fill="rgb(251,33,14)" rx="2" ry="2" /> |
|
<text text-anchor="" x="303.00" 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.(*FD).Write (1 samples, 0.85%)</title><rect x="850.0" y="513" width="10.0" height="15.0" fill="rgb(228,22,45)" rx="2" ry="2" /> |
|
<text text-anchor="" x="853.00" 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>encoding/json.(*decodeState).value (1 samples, 0.85%)</title><rect x="780.0" y="385" width="10.0" height="15.0" fill="rgb(226,151,2)" rx="2" ry="2" /> |
|
<text text-anchor="" x="783.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containernetworking/cni/pkg/invoke.(*PluginExec).WithoutResult (1 samples, 0.85%)</title><rect x="790.0" y="481" width="10.0" height="15.0" fill="rgb(208,160,40)" rx="2" ry="2" /> |
|
<text text-anchor="" x="793.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>encoding/json.(*decodeState).unmarshal (1 samples, 0.85%)</title><rect x="350.0" y="449" width="10.0" height="15.0" fill="rgb(217,4,2)" rx="2" ry="2" /> |
|
<text text-anchor="" x="353.00" 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 (1 samples, 0.85%)</title><rect x="680.0" y="369" width="10.0" height="15.0" fill="rgb(224,147,47)" rx="2" ry="2" /> |
|
<text text-anchor="" x="683.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>github.com/kubernetes-incubator/cri-o/server.(*Server).CreateContainer (14 samples, 11.86%)</title><rect x="320.0" y="577" width="140.0" height="15.0" fill="rgb(254,36,38)" rx="2" ry="2" /> |
|
<text text-anchor="" x="323.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/kubern..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*arrayEncoder).encode (1 samples, 0.85%)</title><rect x="640.0" y="353" width="10.0" height="15.0" fill="rgb(240,75,9)" rx="2" ry="2" /> |
|
<text text-anchor="" x="643.00" 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>syscall.Syscall6 (1 samples, 0.85%)</title><rect x="660.0" y="401" width="10.0" height="15.0" fill="rgb(247,40,35)" rx="2" ry="2" /> |
|
<text text-anchor="" x="663.00" 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>os/exec.(*Cmd).Start (1 samples, 0.85%)</title><rect x="670.0" y="433" width="10.0" height="15.0" fill="rgb(216,18,24)" rx="2" ry="2" /> |
|
<text text-anchor="" x="673.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>os.(*File).Readdir (1 samples, 0.85%)</title><rect x="690.0" y="433" width="10.0" height="15.0" fill="rgb(212,63,35)" rx="2" ry="2" /> |
|
<text text-anchor="" x="693.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>fmt.Fscanf (3 samples, 2.54%)</title><rect x="500.0" y="385" width="30.0" height="15.0" fill="rgb(233,160,29)" rx="2" ry="2" /> |
|
<text text-anchor="" x="503.00" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fm..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/github.com/containerd/cgroups.initializeSubsystem (2 samples, 1.69%)</title><rect x="320.0" y="529" width="20.0" height="15.0" fill="rgb(249,4,50)" rx="2" ry="2" /> |
|
<text text-anchor="" x="323.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>syscall.Syscall (1 samples, 0.85%)</title><rect x="480.0" y="385" width="10.0" height="15.0" fill="rgb(223,48,18)" rx="2" ry="2" /> |
|
<text text-anchor="" x="483.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>net/http.(*bodyEOFSignal).Read (2 samples, 1.69%)</title><rect x="170.0" y="273" width="20.0" height="15.0" fill="rgb(253,194,11)" rx="2" ry="2" /> |
|
<text text-anchor="" x="173.00" 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>os/exec.(*Cmd).Start.func1 (4 samples, 3.39%)</title><rect x="860.0" y="641" width="40.0" height="15.0" fill="rgb(254,13,3)" rx="2" ry="2" /> |
|
<text text-anchor="" x="863.00" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >os/..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*ptrEncoder).(encoding/json.encode)-fm (1 samples, 0.85%)</title><rect x="640.0" y="433" width="10.0" height="15.0" fill="rgb(254,50,40)" rx="2" ry="2" /> |
|
<text text-anchor="" x="643.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.mstart1 (19 samples, 16.10%)</title><rect x="1000.0" y="625" width="190.0" height="15.0" fill="rgb(233,177,33)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1003.00" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >runtime.mstart1</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>sync.(*Pool).Get (1 samples, 0.85%)</title><rect x="640.0" y="209" width="10.0" height="15.0" fill="rgb(250,187,51)" rx="2" ry="2" /> |
|
<text text-anchor="" x="643.00" 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).nextFree (1 samples, 0.85%)</title><rect x="640.0" y="145" width="10.0" height="15.0" fill="rgb(205,40,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="643.00" 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>github.com/kubernetes-incubator/cri-o/vendor/gopkg.in/cheggaaa/pb%2ev1.(*Reader).Read (2 samples, 1.69%)</title><rect x="280.0" y="305" width="20.0" height="15.0" fill="rgb(208,73,23)" rx="2" ry="2" /> |
|
<text text-anchor="" x="283.00" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Syscall6 (1 samples, 0.85%)</title><rect x="20.0" y="529" width="10.0" height="15.0" fill="rgb(215,109,15)" rx="2" ry="2" /> |
|
<text text-anchor="" x="23.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.step (1 samples, 0.85%)</title><rect x="990.0" y="529" width="10.0" height="15.0" fill="rgb(246,6,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="993.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>syscall.Syscall (1 samples, 0.85%)</title><rect x="750.0" y="465" width="10.0" height="15.0" fill="rgb(238,26,42)" rx="2" ry="2" /> |
|
<text text-anchor="" x="753.00" 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>fmt.(*readRune).ReadRune (1 samples, 0.85%)</title><rect x="520.0" y="273" width="10.0" height="15.0" fill="rgb(236,228,15)" rx="2" ry="2" /> |
|
<text text-anchor="" x="523.00" 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.newobject (1 samples, 0.85%)</title><rect x="680.0" y="385" width="10.0" height="15.0" fill="rgb(223,202,2)" rx="2" ry="2" /> |
|
<text text-anchor="" x="683.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>syscall.Syscall6 (1 samples, 0.85%)</title><rect x="30.0" y="513" width="10.0" height="15.0" fill="rgb(243,223,36)" rx="2" ry="2" /> |
|
<text text-anchor="" x="33.00" 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/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*layerStore).Save (1 samples, 0.85%)</title><rect x="390.0" y="481" width="10.0" height="15.0" fill="rgb(214,166,48)" rx="2" ry="2" /> |
|
<text text-anchor="" x="393.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>github.com/kubernetes-incubator/cri-o/server.(*Server).RemoveContainer (7 samples, 5.93%)</title><rect x="460.0" y="577" width="70.0" height="15.0" fill="rgb(227,24,2)" rx="2" ry="2" /> |
|
<text text-anchor="" x="463.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github...</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os/exec.(*Cmd).Run (2 samples, 1.69%)</title><rect x="670.0" y="449" width="20.0" height="15.0" fill="rgb(212,170,8)" rx="2" ry="2" /> |
|
<text text-anchor="" x="673.00" 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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*layerStore).Save (1 samples, 0.85%)</title><rect x="660.0" y="513" width="10.0" height="15.0" fill="rgb(253,77,50)" rx="2" ry="2" /> |
|
<text text-anchor="" x="663.00" 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>crypto/tls.(*finishedHash).Write (1 samples, 0.85%)</title><rect x="830.0" y="577" width="10.0" height="15.0" fill="rgb(243,169,15)" rx="2" ry="2" /> |
|
<text text-anchor="" x="833.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>os.Remove (1 samples, 0.85%)</title><rect x="550.0" y="449" width="10.0" height="15.0" fill="rgb(219,46,14)" rx="2" ry="2" /> |
|
<text text-anchor="" x="553.00" 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>os.Stat (1 samples, 0.85%)</title><rect x="380.0" y="385" width="10.0" height="15.0" fill="rgb(224,153,50)" rx="2" ry="2" /> |
|
<text text-anchor="" x="383.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containernetworking/cni/pkg/invoke.ExecPluginWithoutResult (1 samples, 0.85%)</title><rect x="790.0" y="497" width="10.0" height="15.0" fill="rgb(245,28,28)" rx="2" ry="2" /> |
|
<text text-anchor="" x="793.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/ioutils.(*atomicFileWriter).Close (2 samples, 1.69%)</title><rect x="530.0" y="481" width="20.0" height="15.0" fill="rgb(235,117,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="533.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>bufio.(*Scanner).Scan (2 samples, 1.69%)</title><rect x="420.0" y="513" width="20.0" height="15.0" fill="rgb(226,76,3)" rx="2" ry="2" /> |
|
<text text-anchor="" x="423.00" 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.mapassign_faststr (1 samples, 0.85%)</title><rect x="670.0" y="385" width="10.0" height="15.0" fill="rgb(238,20,1)" rx="2" ry="2" /> |
|
<text text-anchor="" x="673.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/docker/docker/pkg/mount.parseMountTable (3 samples, 2.54%)</title><rect x="800.0" y="545" width="30.0" height="15.0" fill="rgb(234,71,14)" rx="2" ry="2" /> |
|
<text text-anchor="" x="803.00" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gi..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.makeslice (1 samples, 0.85%)</title><rect x="640.0" y="177" width="10.0" height="15.0" fill="rgb(228,3,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="643.00" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>fmt.Fscanf (2 samples, 1.69%)</title><rect x="810.0" y="497" width="20.0" height="15.0" fill="rgb(235,140,1)" rx="2" ry="2" /> |
|
<text text-anchor="" x="813.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>os.Chown (1 samples, 0.85%)</title><rect x="410.0" y="481" width="10.0" height="15.0" fill="rgb(208,204,34)" rx="2" ry="2" /> |
|
<text text-anchor="" x="413.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>bufio.(*Reader).Read (2 samples, 1.69%)</title><rect x="170.0" y="209" width="20.0" height="15.0" fill="rgb(217,82,51)" rx="2" ry="2" /> |
|
<text text-anchor="" x="173.00" 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.systemstack (1 samples, 0.85%)</title><rect x="340.0" y="433" width="10.0" height="15.0" fill="rgb(207,54,41)" rx="2" ry="2" /> |
|
<text text-anchor="" x="343.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>bytes.makeCutsetFunc (1 samples, 0.85%)</title><rect x="70.0" y="545" width="10.0" height="15.0" fill="rgb(212,96,51)" rx="2" ry="2" /> |
|
<text text-anchor="" x="73.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>io.(*teeReader).Read (6 samples, 5.08%)</title><rect x="240.0" y="369" width="60.0" height="15.0" fill="rgb(212,195,49)" rx="2" ry="2" /> |
|
<text text-anchor="" x="243.00" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.(*t..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/image/image.manifestInstanceFromBlob (1 samples, 0.85%)</title><rect x="610.0" y="449" width="10.0" height="15.0" fill="rgb(208,89,19)" rx="2" ry="2" /> |
|
<text text-anchor="" x="613.00" 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>crypto/tls.(*Conn).Read (1 samples, 0.85%)</title><rect x="290.0" y="161" width="10.0" height="15.0" fill="rgb(226,209,33)" rx="2" ry="2" /> |
|
<text text-anchor="" x="293.00" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*decodeState).unmarshal (1 samples, 0.85%)</title><rect x="780.0" y="433" width="10.0" height="15.0" fill="rgb(224,141,47)" rx="2" ry="2" /> |
|
<text text-anchor="" x="783.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containerd/cgroups.defaults (1 samples, 0.85%)</title><rect x="690.0" y="497" width="10.0" height="15.0" fill="rgb(215,32,11)" rx="2" ry="2" /> |
|
<text text-anchor="" x="693.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>crypto/sha256.(*digest).Write (1 samples, 0.85%)</title><rect x="240.0" y="337" width="10.0" height="15.0" fill="rgb(209,50,27)" rx="2" ry="2" /> |
|
<text text-anchor="" x="243.00" 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/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/drivers/overlay.(*Driver).Remove (4 samples, 3.39%)</title><rect x="490.0" y="497" width="40.0" height="15.0" fill="rgb(232,144,31)" rx="2" ry="2" /> |
|
<text text-anchor="" x="493.00" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >git..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.heapBitsForObject (1 samples, 0.85%)</title><rect x="910.0" y="561" width="10.0" height="15.0" fill="rgb(218,0,13)" rx="2" ry="2" /> |
|
<text text-anchor="" x="913.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/image/image.(*sourcedImage).OCIConfig (1 samples, 0.85%)</title><rect x="350.0" y="497" width="10.0" height="15.0" fill="rgb(238,185,24)" rx="2" ry="2" /> |
|
<text text-anchor="" x="353.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>fmt.(*ss).getRune (1 samples, 0.85%)</title><rect x="520.0" y="305" width="10.0" height="15.0" fill="rgb(240,178,36)" rx="2" ry="2" /> |
|
<text text-anchor="" x="523.00" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>crypto/cipher.(*gcm).Open (2 samples, 1.69%)</title><rect x="170.0" y="113" width="20.0" height="15.0" fill="rgb(232,209,28)" rx="2" ry="2" /> |
|
<text text-anchor="" x="173.00" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os.StartProcess (1 samples, 0.85%)</title><rect x="340.0" y="529" width="10.0" height="15.0" fill="rgb(240,117,39)" rx="2" ry="2" /> |
|
<text text-anchor="" x="343.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>os.Lstat (1 samples, 0.85%)</title><rect x="700.0" y="497" width="10.0" height="15.0" fill="rgb(238,205,5)" rx="2" ry="2" /> |
|
<text text-anchor="" x="703.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>encoding/json.(*ptrEncoder).encode (1 samples, 0.85%)</title><rect x="640.0" y="417" width="10.0" height="15.0" fill="rgb(238,97,52)" rx="2" ry="2" /> |
|
<text text-anchor="" x="643.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>syscall.Fsync (1 samples, 0.85%)</title><rect x="750.0" y="481" width="10.0" height="15.0" fill="rgb(232,27,24)" rx="2" ry="2" /> |
|
<text text-anchor="" x="753.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>syscall.Syscall (1 samples, 0.85%)</title><rect x="10.0" y="545" width="10.0" height="15.0" fill="rgb(215,154,40)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.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>os.(*File).readdir (1 samples, 0.85%)</title><rect x="690.0" y="417" width="10.0" height="15.0" fill="rgb(208,222,37)" rx="2" ry="2" /> |
|
<text text-anchor="" x="693.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containernetworking/cni/pkg/invoke.(*RawExec).ExecPlugin (1 samples, 0.85%)</title><rect x="790.0" y="465" width="10.0" height="15.0" fill="rgb(240,25,22)" rx="2" ry="2" /> |
|
<text text-anchor="" x="793.00" 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>os.Mkdir (1 samples, 0.85%)</title><rect x="370.0" y="385" width="10.0" height="15.0" fill="rgb(230,9,2)" rx="2" ry="2" /> |
|
<text text-anchor="" x="373.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>runtime.usleep (17 samples, 14.41%)</title><rect x="1020.0" y="593" width="170.0" height="15.0" fill="rgb(252,141,27)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1023.00" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >runtime.usleep</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/oci.(*Runtime).CreateContainer (3 samples, 2.54%)</title><rect x="320.0" y="561" width="30.0" height="15.0" fill="rgb(211,131,23)" rx="2" ry="2" /> |
|
<text text-anchor="" x="323.00" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gi..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*ptrEncoder).(encoding/json.encode)-fm (1 samples, 0.85%)</title><rect x="450.0" y="385" width="10.0" height="15.0" fill="rgb(232,116,5)" rx="2" ry="2" /> |
|
<text text-anchor="" x="453.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/opencontainers/runc/libcontainer/cgroups.FindCgroupMountpointAndRoot (2 samples, 1.69%)</title><rect x="420.0" y="529" width="20.0" height="15.0" fill="rgb(222,173,27)" rx="2" ry="2" /> |
|
<text text-anchor="" x="423.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/image/image.(*manifestSchema2).OCIConfig (1 samples, 0.85%)</title><rect x="350.0" y="481" width="10.0" height="15.0" fill="rgb(220,225,51)" rx="2" ry="2" /> |
|
<text text-anchor="" x="353.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>io.(*multiReader).Read (2 samples, 1.69%)</title><rect x="280.0" y="289" width="20.0" height="15.0" fill="rgb(246,129,24)" rx="2" ry="2" /> |
|
<text text-anchor="" x="283.00" 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>syscall.Syscall (1 samples, 0.85%)</title><rect x="800.0" y="417" width="10.0" height="15.0" fill="rgb(218,178,43)" rx="2" ry="2" /> |
|
<text text-anchor="" x="803.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>fmt.(*ss).getRune (1 samples, 0.85%)</title><rect x="810.0" y="417" width="10.0" height="15.0" fill="rgb(246,163,5)" rx="2" ry="2" /> |
|
<text text-anchor="" x="813.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>os.(*File).read (1 samples, 0.85%)</title><rect x="710.0" y="369" width="10.0" height="15.0" fill="rgb(213,215,2)" rx="2" ry="2" /> |
|
<text text-anchor="" x="713.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>runtime.mallocgc (1 samples, 0.85%)</title><rect x="690.0" y="353" width="10.0" height="15.0" fill="rgb(206,157,34)" rx="2" ry="2" /> |
|
<text text-anchor="" x="693.00" 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.(*ss).scanOne (1 samples, 0.85%)</title><rect x="810.0" y="465" width="10.0" height="15.0" fill="rgb(222,152,48)" rx="2" ry="2" /> |
|
<text text-anchor="" x="813.00" 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>os.(*Process).Wait (1 samples, 0.85%)</title><rect x="680.0" y="417" width="10.0" height="15.0" fill="rgb(219,146,7)" rx="2" ry="2" /> |
|
<text text-anchor="" x="683.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>os.Open (1 samples, 0.85%)</title><rect x="330.0" y="433" width="10.0" height="15.0" fill="rgb(216,227,44)" rx="2" ry="2" /> |
|
<text text-anchor="" x="333.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>crypto/x509.(*Certificate).CheckSignatureFrom (1 samples, 0.85%)</title><rect x="840.0" y="497" width="10.0" height="15.0" fill="rgb(247,4,10)" rx="2" ry="2" /> |
|
<text text-anchor="" x="843.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>io.(*teeReader).Read (5 samples, 4.24%)</title><rect x="250.0" y="337" width="50.0" height="15.0" fill="rgb(216,203,28)" rx="2" ry="2" /> |
|
<text text-anchor="" x="253.00" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.(*..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*layerStore).SetNames (1 samples, 0.85%)</title><rect x="390.0" y="497" width="10.0" height="15.0" fill="rgb(216,55,32)" rx="2" ry="2" /> |
|
<text text-anchor="" x="393.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>bufio.(*Reader).ReadByte (5 samples, 4.24%)</title><rect x="140.0" y="417" width="50.0" height="15.0" fill="rgb(222,23,25)" rx="2" ry="2" /> |
|
<text text-anchor="" x="143.00" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bufio..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Syscall6 (1 samples, 0.85%)</title><rect x="740.0" y="513" width="10.0" height="15.0" fill="rgb(210,181,26)" rx="2" ry="2" /> |
|
<text text-anchor="" x="743.00" 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>io.(*multiReader).Read (1 samples, 0.85%)</title><rect x="300.0" y="369" width="10.0" height="15.0" fill="rgb(245,76,0)" rx="2" ry="2" /> |
|
<text text-anchor="" x="303.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>encoding/json.(*ptrEncoder).encode (1 samples, 0.85%)</title><rect x="590.0" y="465" width="10.0" height="15.0" fill="rgb(220,198,18)" rx="2" ry="2" /> |
|
<text text-anchor="" x="593.00" 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>encoding/json.(*ptrEncoder).encode (1 samples, 0.85%)</title><rect x="570.0" y="433" width="10.0" height="15.0" fill="rgb(226,168,52)" rx="2" ry="2" /> |
|
<text text-anchor="" x="573.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>bytes.makeSlice (1 samples, 0.85%)</title><rect x="880.0" y="561" width="10.0" height="15.0" fill="rgb(243,10,10)" rx="2" ry="2" /> |
|
<text text-anchor="" x="883.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>encoding/json.(*decodeState).object (1 samples, 0.85%)</title><rect x="620.0" y="417" width="10.0" height="15.0" fill="rgb(210,56,47)" rx="2" ry="2" /> |
|
<text text-anchor="" x="623.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>syscall.Syscall (1 samples, 0.85%)</title><rect x="850.0" y="465" width="10.0" height="15.0" fill="rgb(242,177,0)" rx="2" ry="2" /> |
|
<text text-anchor="" x="853.00" 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>compress/flate.(*decompressor).moreBits (8 samples, 6.78%)</title><rect x="220.0" y="417" width="80.0" height="15.0" fill="rgb(229,136,50)" rx="2" ry="2" /> |
|
<text text-anchor="" x="223.00" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >compress/..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/github.com/vbatts/tar-split/archive/tar.(*parser).parseNumeric (2 samples, 1.69%)</title><rect x="60.0" y="593" width="20.0" height="15.0" fill="rgb(238,96,17)" rx="2" ry="2" /> |
|
<text text-anchor="" x="63.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/drivers/overlay.(*Driver).CreateReadWrite (1 samples, 0.85%)</title><rect x="630.0" y="465" width="10.0" height="15.0" fill="rgb(251,183,41)" rx="2" ry="2" /> |
|
<text text-anchor="" x="633.00" 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/kubernetes-incubator/cri-o/pkg/storage.(*runtimeService).StopContainer (2 samples, 1.69%)</title><rect x="570.0" y="561" width="20.0" height="15.0" fill="rgb(222,90,33)" rx="2" ry="2" /> |
|
<text text-anchor="" x="573.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>syscall.read (1 samples, 0.85%)</title><rect x="800.0" y="433" width="10.0" height="15.0" fill="rgb(252,29,30)" rx="2" ry="2" /> |
|
<text text-anchor="" x="803.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.memmove (1 samples, 0.85%)</title><rect x="570.0" y="289" width="10.0" height="15.0" fill="rgb(206,188,32)" rx="2" ry="2" /> |
|
<text text-anchor="" x="573.00" 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>crypto/sha256.(*digest).Write (3 samples, 2.54%)</title><rect x="250.0" y="305" width="30.0" height="15.0" fill="rgb(247,83,9)" rx="2" ry="2" /> |
|
<text text-anchor="" x="253.00" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >cr..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>bufio.(*Reader).ReadByte (6 samples, 5.08%)</title><rect x="240.0" y="401" width="60.0" height="15.0" fill="rgb(225,203,42)" rx="2" ry="2" /> |
|
<text text-anchor="" x="243.00" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bufio...</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*layerStore).Put (1 samples, 0.85%)</title><rect x="630.0" y="481" width="10.0" height="15.0" fill="rgb(244,93,22)" rx="2" ry="2" /> |
|
<text text-anchor="" x="633.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>encoding/json.Marshal (1 samples, 0.85%)</title><rect x="450.0" y="497" width="10.0" height="15.0" fill="rgb(243,138,48)" rx="2" ry="2" /> |
|
<text text-anchor="" x="453.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/pquerna/ffjson/fflib/v1.(*Buffer).WriteByte (1 samples, 0.85%)</title><rect x="640.0" y="257" width="10.0" height="15.0" fill="rgb(245,163,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="643.00" 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>syscall.Syscall (2 samples, 1.69%)</title><rect x="420.0" y="417" width="20.0" height="15.0" fill="rgb(236,23,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="423.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>encoding/json.(*encodeState).reflectValue (1 samples, 0.85%)</title><rect x="450.0" y="465" width="10.0" height="15.0" fill="rgb(225,172,47)" rx="2" ry="2" /> |
|
<text text-anchor="" x="453.00" 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>fmt.Sscanf (2 samples, 1.69%)</title><rect x="810.0" y="513" width="20.0" height="15.0" fill="rgb(229,67,30)" rx="2" ry="2" /> |
|
<text text-anchor="" x="813.00" 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>crypto/x509.(*Certificate).CheckSignature (1 samples, 0.85%)</title><rect x="840.0" y="481" width="10.0" height="15.0" fill="rgb(205,21,24)" rx="2" ry="2" /> |
|
<text text-anchor="" x="843.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>github.com/kubernetes-incubator/cri-o/server.(*Server).networkStart (2 samples, 1.69%)</title><rect x="670.0" y="561" width="20.0" height="15.0" fill="rgb(230,53,42)" rx="2" ry="2" /> |
|
<text text-anchor="" x="673.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>os.Mkdir (1 samples, 0.85%)</title><rect x="720.0" y="465" width="10.0" height="15.0" fill="rgb(249,123,25)" rx="2" ry="2" /> |
|
<text text-anchor="" x="723.00" 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>syscall.Syscall (1 samples, 0.85%)</title><rect x="630.0" y="353" width="10.0" height="15.0" fill="rgb(252,142,40)" rx="2" ry="2" /> |
|
<text text-anchor="" x="633.00" 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>encoding/json.Indent (1 samples, 0.85%)</title><rect x="440.0" y="497" width="10.0" height="15.0" fill="rgb(220,151,47)" rx="2" ry="2" /> |
|
<text text-anchor="" x="443.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>net/http.(*Transport).dialConn.func3 (2 samples, 1.69%)</title><rect x="830.0" y="641" width="20.0" height="15.0" fill="rgb(251,219,15)" rx="2" ry="2" /> |
|
<text text-anchor="" x="833.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>encoding/json.(*structEncoder).(encoding/json.encode)-fm (1 samples, 0.85%)</title><rect x="590.0" y="449" width="10.0" height="15.0" fill="rgb(218,6,15)" rx="2" ry="2" /> |
|
<text text-anchor="" x="593.00" 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>syscall.Lstat (1 samples, 0.85%)</title><rect x="700.0" y="481" width="10.0" height="15.0" fill="rgb(231,59,36)" rx="2" ry="2" /> |
|
<text text-anchor="" x="703.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>os/exec.(*Cmd).Run (1 samples, 0.85%)</title><rect x="30.0" y="593" width="10.0" height="15.0" fill="rgb(251,191,48)" rx="2" ry="2" /> |
|
<text text-anchor="" x="33.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>syscall.openat (1 samples, 0.85%)</title><rect x="660.0" y="417" width="10.0" height="15.0" fill="rgb(213,95,29)" rx="2" ry="2" /> |
|
<text text-anchor="" x="663.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>runtime.futex (2 samples, 1.69%)</title><rect x="1000.0" y="545" width="20.0" height="15.0" fill="rgb(226,125,48)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1003.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>runtime.notesleep (1 samples, 0.85%)</title><rect x="940.0" y="561" width="10.0" height="15.0" fill="rgb(241,161,11)" rx="2" ry="2" /> |
|
<text text-anchor="" x="943.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containerd/cgroups.(*cpusetController).ensureParent (1 samples, 0.85%)</title><rect x="330.0" y="497" width="10.0" height="15.0" fill="rgb(230,11,5)" rx="2" ry="2" /> |
|
<text text-anchor="" x="333.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>runtime.adjustframe (1 samples, 0.85%)</title><rect x="990.0" y="577" width="10.0" height="15.0" fill="rgb(218,46,15)" rx="2" ry="2" /> |
|
<text text-anchor="" x="993.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>syscall.Fsync (1 samples, 0.85%)</title><rect x="10.0" y="561" width="10.0" height="15.0" fill="rgb(213,58,44)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.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>net/http.(*persistConn).Read (2 samples, 1.69%)</title><rect x="170.0" y="193" width="20.0" height="15.0" fill="rgb(222,103,52)" rx="2" ry="2" /> |
|
<text text-anchor="" x="173.00" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/oci.(*Runtime).CreateContainer (5 samples, 4.24%)</title><rect x="690.0" y="545" width="50.0" height="15.0" fill="rgb(229,48,45)" rx="2" ry="2" /> |
|
<text text-anchor="" x="693.00" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >githu..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>crypto/tls.(*halfConn).decrypt (1 samples, 0.85%)</title><rect x="290.0" y="129" width="10.0" height="15.0" fill="rgb(221,85,11)" rx="2" ry="2" /> |
|
<text text-anchor="" x="293.00" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/pkg/storage.(*runtimeService).createContainerOrPodSandbox (7 samples, 5.93%)</title><rect x="590.0" y="545" width="70.0" height="15.0" fill="rgb(228,206,54)" rx="2" ry="2" /> |
|
<text text-anchor="" x="593.00" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github...</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>fmt.newScanState (1 samples, 0.85%)</title><rect x="820.0" y="481" width="10.0" height="15.0" fill="rgb(238,80,6)" rx="2" ry="2" /> |
|
<text text-anchor="" x="823.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/image/image.FromSource (1 samples, 0.85%)</title><rect x="610.0" y="481" width="10.0" height="15.0" fill="rgb(217,23,36)" rx="2" ry="2" /> |
|
<text text-anchor="" x="613.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>bufio.(*Scanner).Scan (1 samples, 0.85%)</title><rect x="800.0" y="513" width="10.0" height="15.0" fill="rgb(205,102,50)" rx="2" ry="2" /> |
|
<text text-anchor="" x="803.00" 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/http.(*persistConn).Read (1 samples, 0.85%)</title><rect x="290.0" y="177" width="10.0" height="15.0" fill="rgb(218,194,4)" rx="2" ry="2" /> |
|
<text text-anchor="" x="293.00" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Rename (1 samples, 0.85%)</title><rect x="20.0" y="561" width="10.0" height="15.0" fill="rgb(248,52,21)" rx="2" ry="2" /> |
|
<text text-anchor="" x="23.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>fmt.(*readRune).ReadRune (1 samples, 0.85%)</title><rect x="810.0" y="385" width="10.0" height="15.0" fill="rgb(246,168,51)" rx="2" ry="2" /> |
|
<text text-anchor="" x="813.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>syscall.Chown (1 samples, 0.85%)</title><rect x="410.0" y="465" width="10.0" height="15.0" fill="rgb(213,155,47)" rx="2" ry="2" /> |
|
<text text-anchor="" x="413.00" 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>crypto/sha256.(*digest).Write (1 samples, 0.85%)</title><rect x="280.0" y="257" width="10.0" height="15.0" fill="rgb(210,91,32)" rx="2" ry="2" /> |
|
<text text-anchor="" x="283.00" 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>os.Remove (1 samples, 0.85%)</title><rect x="460.0" y="481" width="10.0" height="15.0" fill="rgb(208,99,14)" rx="2" ry="2" /> |
|
<text text-anchor="" x="463.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*layerStore).Unmount (1 samples, 0.85%)</title><rect x="480.0" y="497" width="10.0" height="15.0" fill="rgb(219,87,34)" rx="2" ry="2" /> |
|
<text text-anchor="" x="483.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>runtime.strhash (1 samples, 0.85%)</title><rect x="670.0" y="337" width="10.0" height="15.0" fill="rgb(218,96,0)" rx="2" ry="2" /> |
|
<text text-anchor="" x="673.00" 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.(*FD).Fsync (1 samples, 0.85%)</title><rect x="750.0" y="497" width="10.0" height="15.0" fill="rgb(252,22,54)" rx="2" ry="2" /> |
|
<text text-anchor="" x="753.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>runtime.removefinalizer (1 samples, 0.85%)</title><rect x="730.0" y="449" width="10.0" height="15.0" fill="rgb(230,203,44)" rx="2" ry="2" /> |
|
<text text-anchor="" x="733.00" 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>encoding/json.(*arrayEncoder).(encoding/json.encode)-fm (1 samples, 0.85%)</title><rect x="640.0" y="369" width="10.0" height="15.0" fill="rgb(225,127,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="643.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/ioutils.NewAtomicFileWriter (1 samples, 0.85%)</title><rect x="660.0" y="481" width="10.0" height="15.0" fill="rgb(227,125,29)" rx="2" ry="2" /> |
|
<text text-anchor="" x="663.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>os.Rename (1 samples, 0.85%)</title><rect x="600.0" y="401" width="10.0" height="15.0" fill="rgb(218,99,31)" rx="2" ry="2" /> |
|
<text text-anchor="" x="603.00" 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.(*mcentral).cacheSpan (1 samples, 0.85%)</title><rect x="690.0" y="273" width="10.0" height="15.0" fill="rgb(210,10,47)" rx="2" ry="2" /> |
|
<text text-anchor="" x="693.00" 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>encoding/json.Unmarshal (1 samples, 0.85%)</title><rect x="350.0" y="465" width="10.0" height="15.0" fill="rgb(227,70,17)" rx="2" ry="2" /> |
|
<text text-anchor="" x="353.00" 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>crypto/x509.(*Certificate).buildChains (1 samples, 0.85%)</title><rect x="840.0" y="561" width="10.0" height="15.0" fill="rgb(219,161,54)" rx="2" ry="2" /> |
|
<text text-anchor="" x="843.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/pquerna/ffjson/fflib/v1.WriteJson (1 samples, 0.85%)</title><rect x="640.0" y="273" width="10.0" height="15.0" fill="rgb(232,150,45)" rx="2" ry="2" /> |
|
<text text-anchor="" x="643.00" 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.futexsleep (3 samples, 2.54%)</title><rect x="960.0" y="561" width="30.0" height="15.0" fill="rgb(216,97,2)" rx="2" ry="2" /> |
|
<text text-anchor="" x="963.00" y="571.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>syscall.Syscall (1 samples, 0.85%)</title><rect x="460.0" y="433" width="10.0" height="15.0" fill="rgb(253,98,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="463.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/image/storage.(*storageImageDestination).Commit (1 samples, 0.85%)</title><rect x="600.0" y="497" width="10.0" height="15.0" fill="rgb(239,84,22)" rx="2" ry="2" /> |
|
<text text-anchor="" x="603.00" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.schedule (6 samples, 5.08%)</title><rect x="930.0" y="609" width="60.0" height="15.0" fill="rgb(239,100,17)" rx="2" ry="2" /> |
|
<text text-anchor="" x="933.00" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >runtim..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Syscall (1 samples, 0.85%)</title><rect x="320.0" y="433" width="10.0" height="15.0" fill="rgb(246,49,41)" rx="2" ry="2" /> |
|
<text text-anchor="" x="323.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>github.com/kubernetes-incubator/cri-o/libkpod.(*ContainerServer).Remove (7 samples, 5.93%)</title><rect x="460.0" y="561" width="70.0" height="15.0" fill="rgb(221,17,23)" rx="2" ry="2" /> |
|
<text text-anchor="" x="463.00" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github...</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>crypto/tls.(*Conn).Handshake (2 samples, 1.69%)</title><rect x="830.0" y="625" width="20.0" height="15.0" fill="rgb(205,130,11)" rx="2" ry="2" /> |
|
<text text-anchor="" x="833.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/ioutils.AtomicWriteFile (1 samples, 0.85%)</title><rect x="470.0" y="481" width="10.0" height="15.0" fill="rgb(219,149,19)" rx="2" ry="2" /> |
|
<text text-anchor="" x="473.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>github.com/kubernetes-incubator/cri-o/pkg/storage.(*runtimeService).createContainerOrPodSandbox (5 samples, 4.24%)</title><rect x="350.0" y="529" width="50.0" height="15.0" fill="rgb(245,196,43)" rx="2" ry="2" /> |
|
<text text-anchor="" x="353.00" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >githu..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os.startProcess (1 samples, 0.85%)</title><rect x="790.0" y="401" width="10.0" height="15.0" fill="rgb(239,213,36)" rx="2" ry="2" /> |
|
<text text-anchor="" x="793.00" 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>bufio.(*Reader).fill (2 samples, 1.69%)</title><rect x="190.0" y="417" width="20.0" height="15.0" fill="rgb(216,96,19)" rx="2" ry="2" /> |
|
<text text-anchor="" x="193.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/image/copy.(*digestingReader).Read (4 samples, 3.39%)</title><rect x="150.0" y="289" width="40.0" height="15.0" fill="rgb(248,28,30)" rx="2" ry="2" /> |
|
<text text-anchor="" x="153.00" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >git..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>io.(*teeReader).Read (2 samples, 1.69%)</title><rect x="190.0" y="401" width="20.0" height="15.0" fill="rgb(229,4,41)" rx="2" ry="2" /> |
|
<text text-anchor="" x="193.00" 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>crypto/sha256.block (2 samples, 1.69%)</title><rect x="150.0" y="257" width="20.0" height="15.0" fill="rgb(254,213,39)" rx="2" ry="2" /> |
|
<text text-anchor="" x="153.00" 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>fmt.(*ss).ReadRune (1 samples, 0.85%)</title><rect x="520.0" y="289" width="10.0" height="15.0" fill="rgb(222,168,1)" rx="2" ry="2" /> |
|
<text text-anchor="" x="523.00" 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>crypto/cipher.(*gcm).auth (1 samples, 0.85%)</title><rect x="290.0" y="81" width="10.0" height="15.0" fill="rgb(213,84,52)" rx="2" ry="2" /> |
|
<text text-anchor="" x="293.00" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*ptrEncoder).(encoding/json.encode)-fm (1 samples, 0.85%)</title><rect x="450.0" y="449" width="10.0" height="15.0" fill="rgb(221,135,20)" rx="2" ry="2" /> |
|
<text text-anchor="" x="453.00" 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>crypto/x509.(*Certificate).Verify (1 samples, 0.85%)</title><rect x="840.0" y="577" width="10.0" height="15.0" fill="rgb(212,117,9)" rx="2" ry="2" /> |
|
<text text-anchor="" x="843.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>fmt.(*ss).token (2 samples, 1.69%)</title><rect x="510.0" y="321" width="20.0" height="15.0" fill="rgb(226,122,18)" rx="2" ry="2" /> |
|
<text text-anchor="" x="513.00" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*sliceEncoder).(encoding/json.encode)-fm (1 samples, 0.85%)</title><rect x="640.0" y="401" width="10.0" height="15.0" fill="rgb(211,189,31)" rx="2" ry="2" /> |
|
<text text-anchor="" x="643.00" 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>compress/flate.(*decompressor).huffmanBlock (9 samples, 7.63%)</title><rect x="120.0" y="465" width="90.0" height="15.0" fill="rgb(206,140,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="123.00" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >compress/f..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Mkdir (1 samples, 0.85%)</title><rect x="370.0" y="369" width="10.0" height="15.0" fill="rgb(246,23,49)" rx="2" ry="2" /> |
|
<text text-anchor="" x="373.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>fmt.(*readRune).readByte (1 samples, 0.85%)</title><rect x="810.0" y="369" width="10.0" height="15.0" fill="rgb(223,37,47)" rx="2" ry="2" /> |
|
<text text-anchor="" x="813.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>os.(*File).Read (1 samples, 0.85%)</title><rect x="800.0" y="497" width="10.0" height="15.0" fill="rgb(249,222,6)" rx="2" ry="2" /> |
|
<text text-anchor="" x="803.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containerd/cgroups.(*cpusetController).Create (1 samples, 0.85%)</title><rect x="710.0" y="497" width="10.0" height="15.0" fill="rgb(230,99,34)" rx="2" ry="2" /> |
|
<text text-anchor="" x="713.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>syscall.Renameat (1 samples, 0.85%)</title><rect x="20.0" y="545" width="10.0" height="15.0" fill="rgb(232,93,8)" rx="2" ry="2" /> |
|
<text text-anchor="" x="23.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>runtime.findrunnable (2 samples, 1.69%)</title><rect x="930.0" y="593" width="20.0" height="15.0" fill="rgb(244,104,21)" rx="2" ry="2" /> |
|
<text text-anchor="" x="933.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>runtime.exitsyscall (1 samples, 0.85%)</title><rect x="480.0" y="369" width="10.0" height="15.0" fill="rgb(224,64,22)" rx="2" ry="2" /> |
|
<text text-anchor="" x="483.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*layerStore).Save (2 samples, 1.69%)</title><rect x="530.0" y="513" width="20.0" height="15.0" fill="rgb(214,149,9)" rx="2" ry="2" /> |
|
<text text-anchor="" x="533.00" 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/kubernetes-incubator/cri-o/vendor/github.com/containers/image/storage.newImageSource (1 samples, 0.85%)</title><rect x="620.0" y="481" width="10.0" height="15.0" fill="rgb(241,183,21)" rx="2" ry="2" /> |
|
<text text-anchor="" x="623.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>encoding/json.(*decodeState).value (1 samples, 0.85%)</title><rect x="620.0" y="433" width="10.0" height="15.0" fill="rgb(205,123,54)" rx="2" ry="2" /> |
|
<text text-anchor="" x="623.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/pquerna/ffjson/fflib/v1.WriteJsonString (1 samples, 0.85%)</title><rect x="640.0" y="289" width="10.0" height="15.0" fill="rgb(244,158,37)" rx="2" ry="2" /> |
|
<text text-anchor="" x="643.00" 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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/ioutils.AtomicWriteFile (1 samples, 0.85%)</title><rect x="660.0" y="497" width="10.0" height="15.0" fill="rgb(229,181,22)" rx="2" ry="2" /> |
|
<text text-anchor="" x="663.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>runtime.sysmon (19 samples, 16.10%)</title><rect x="1000.0" y="609" width="190.0" height="15.0" fill="rgb(208,39,13)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1003.00" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >runtime.sysmon</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>bytes.(*Buffer).tryGrowByReslice (1 samples, 0.85%)</title><rect x="440.0" y="481" width="10.0" height="15.0" fill="rgb(219,24,40)" rx="2" ry="2" /> |
|
<text text-anchor="" x="443.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>crypto/tls.(*Conn).clientHandshake (2 samples, 1.69%)</title><rect x="830.0" y="609" width="20.0" height="15.0" fill="rgb(246,216,2)" rx="2" ry="2" /> |
|
<text text-anchor="" x="833.00" 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.gcDrain (2 samples, 1.69%)</title><rect x="910.0" y="593" width="20.0" height="15.0" fill="rgb(224,71,43)" rx="2" ry="2" /> |
|
<text text-anchor="" x="913.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>math/big.nat.divLarge (1 samples, 0.85%)</title><rect x="840.0" y="369" width="10.0" height="15.0" fill="rgb(253,49,15)" rx="2" ry="2" /> |
|
<text text-anchor="" x="843.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>os/exec.(*Cmd).CombinedOutput (1 samples, 0.85%)</title><rect x="30.0" y="609" width="10.0" height="15.0" fill="rgb(245,177,1)" rx="2" ry="2" /> |
|
<text text-anchor="" x="33.00" 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>syscall.Mkdirat (1 samples, 0.85%)</title><rect x="370.0" y="353" width="10.0" height="15.0" fill="rgb(218,118,47)" rx="2" ry="2" /> |
|
<text text-anchor="" x="373.00" 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>io.(*multiReader).Read (4 samples, 3.39%)</title><rect x="150.0" y="369" width="40.0" height="15.0" fill="rgb(214,92,13)" rx="2" ry="2" /> |
|
<text text-anchor="" x="153.00" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io...</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.openat (1 samples, 0.85%)</title><rect x="330.0" y="385" width="10.0" height="15.0" fill="rgb(208,151,18)" rx="2" ry="2" /> |
|
<text text-anchor="" x="333.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*layerStore).Save (2 samples, 1.69%)</title><rect x="640.0" y="497" width="20.0" height="15.0" fill="rgb(247,203,6)" rx="2" ry="2" /> |
|
<text text-anchor="" x="643.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/opencontainers/runtime-tools/generate.(*Generator).SaveToFile (2 samples, 1.69%)</title><rect x="440.0" y="545" width="20.0" height="15.0" fill="rgb(243,195,11)" rx="2" ry="2" /> |
|
<text text-anchor="" x="443.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>encoding/json.(*structEncoder).encode (1 samples, 0.85%)</title><rect x="450.0" y="337" width="10.0" height="15.0" fill="rgb(231,181,52)" rx="2" ry="2" /> |
|
<text text-anchor="" x="453.00" 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/kubernetes-incubator/cri-o/vendor/golang.org/x/sys/unix.Unshare (2 samples, 1.69%)</title><rect x="40.0" y="625" width="20.0" height="15.0" fill="rgb(207,59,48)" rx="2" ry="2" /> |
|
<text text-anchor="" x="43.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>runtime.morestack (1 samples, 0.85%)</title><rect x="990.0" y="641" width="10.0" height="15.0" fill="rgb(254,134,11)" rx="2" ry="2" /> |
|
<text text-anchor="" x="993.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>compress/flate.(*decompressor).huffSym (7 samples, 5.93%)</title><rect x="120.0" y="449" width="70.0" height="15.0" fill="rgb(248,18,31)" rx="2" ry="2" /> |
|
<text text-anchor="" x="123.00" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >compres..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*imageStore).Save (1 samples, 0.85%)</title><rect x="600.0" y="449" width="10.0" height="15.0" fill="rgb(243,164,9)" rx="2" ry="2" /> |
|
<text text-anchor="" x="603.00" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*store).Mount (1 samples, 0.85%)</title><rect x="660.0" y="545" width="10.0" height="15.0" fill="rgb(233,117,38)" rx="2" ry="2" /> |
|
<text text-anchor="" x="663.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/ioutils.(*atomicFileWriter).Write (1 samples, 0.85%)</title><rect x="580.0" y="481" width="10.0" height="15.0" fill="rgb(211,222,33)" rx="2" ry="2" /> |
|
<text text-anchor="" x="583.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>encoding/json.(*arrayEncoder).(encoding/json.encode)-fm (1 samples, 0.85%)</title><rect x="570.0" y="385" width="10.0" height="15.0" fill="rgb(242,167,41)" rx="2" ry="2" /> |
|
<text text-anchor="" x="573.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>encoding/json.(*decodeState).value (1 samples, 0.85%)</title><rect x="350.0" y="401" width="10.0" height="15.0" fill="rgb(238,124,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="353.00" 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.msigrestore (1 samples, 0.85%)</title><rect x="340.0" y="401" width="10.0" height="15.0" fill="rgb(238,155,34)" rx="2" ry="2" /> |
|
<text text-anchor="" x="343.00" 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/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*containerStore).Delete (1 samples, 0.85%)</title><rect x="460.0" y="513" width="10.0" height="15.0" fill="rgb(207,229,26)" rx="2" ry="2" /> |
|
<text text-anchor="" x="463.00" 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>encoding/json.Marshal (1 samples, 0.85%)</title><rect x="590.0" y="529" width="10.0" height="15.0" fill="rgb(254,45,24)" rx="2" ry="2" /> |
|
<text text-anchor="" x="593.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*layerStore).Put (3 samples, 2.54%)</title><rect x="360.0" y="465" width="30.0" height="15.0" fill="rgb(248,64,11)" rx="2" ry="2" /> |
|
<text text-anchor="" x="363.00" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gi..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/system.EnsureRemoveAll (3 samples, 2.54%)</title><rect x="500.0" y="481" width="30.0" height="15.0" fill="rgb(219,111,25)" rx="2" ry="2" /> |
|
<text text-anchor="" x="503.00" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gi..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>crypto/x509.(*CertPool).findVerifiedParents (1 samples, 0.85%)</title><rect x="840.0" y="513" width="10.0" height="15.0" fill="rgb(235,159,36)" rx="2" ry="2" /> |
|
<text text-anchor="" x="843.00" 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/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/ioutils.(*readCloserWrapper).Read (19 samples, 16.10%)</title><rect x="120.0" y="513" width="190.0" height="15.0" fill="rgb(242,214,34)" rx="2" ry="2" /> |
|
<text text-anchor="" x="123.00" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/kubernetes-in..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/pkg/storage.(*runtimeService).RemovePodSandbox (4 samples, 3.39%)</title><rect x="530.0" y="561" width="40.0" height="15.0" fill="rgb(236,202,42)" rx="2" ry="2" /> |
|
<text text-anchor="" x="533.00" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >git..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/server.(*Server).networkStop (2 samples, 1.69%)</title><rect x="780.0" y="561" width="20.0" height="15.0" fill="rgb(252,61,23)" rx="2" ry="2" /> |
|
<text text-anchor="" x="783.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containernetworking/cni/libcni.buildOneConfig (1 samples, 0.85%)</title><rect x="780.0" y="497" width="10.0" height="15.0" fill="rgb(232,117,20)" rx="2" ry="2" /> |
|
<text text-anchor="" x="783.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containernetworking/cni/libcni.InjectConf (1 samples, 0.85%)</title><rect x="780.0" y="481" width="10.0" height="15.0" fill="rgb(212,8,42)" rx="2" ry="2" /> |
|
<text text-anchor="" x="783.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>runtime.memclrNoHeapPointers (1 samples, 0.85%)</title><rect x="690.0" y="225" width="10.0" height="15.0" fill="rgb(242,53,2)" rx="2" ry="2" /> |
|
<text text-anchor="" x="693.00" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/image/storage.storageReference.NewImage (2 samples, 1.69%)</title><rect x="610.0" y="513" width="20.0" height="15.0" fill="rgb(226,183,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="613.00" 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>syscall.Syscall (1 samples, 0.85%)</title><rect x="700.0" y="465" width="10.0" height="15.0" fill="rgb(220,229,2)" rx="2" ry="2" /> |
|
<text text-anchor="" x="703.00" 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/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*store).DeleteContainer (4 samples, 3.39%)</title><rect x="530.0" y="545" width="40.0" height="15.0" fill="rgb(225,94,19)" rx="2" ry="2" /> |
|
<text text-anchor="" x="533.00" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >git..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.futex (1 samples, 0.85%)</title><rect x="940.0" y="529" width="10.0" height="15.0" fill="rgb(233,150,35)" rx="2" ry="2" /> |
|
<text text-anchor="" x="943.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>syscall.write (1 samples, 0.85%)</title><rect x="850.0" y="481" width="10.0" height="15.0" fill="rgb(252,103,35)" rx="2" ry="2" /> |
|
<text text-anchor="" x="853.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>io.(*teeReader).Read (1 samples, 0.85%)</title><rect x="300.0" y="385" width="10.0" height="15.0" fill="rgb(227,184,44)" rx="2" ry="2" /> |
|
<text text-anchor="" x="303.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/cri-o/ocicni/pkg/ocicni.(*cniNetwork).addToNetwork (2 samples, 1.69%)</title><rect x="670.0" y="529" width="20.0" height="15.0" fill="rgb(217,122,52)" rx="2" ry="2" /> |
|
<text text-anchor="" x="673.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containerd/cgroups.(*cpusetController).copyIfNeeded (1 samples, 0.85%)</title><rect x="710.0" y="465" width="10.0" height="15.0" fill="rgb(216,167,3)" rx="2" ry="2" /> |
|
<text text-anchor="" x="713.00" 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/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/mount.parseInfoFile (3 samples, 2.54%)</title><rect x="500.0" y="417" width="30.0" height="15.0" fill="rgb(243,83,48)" rx="2" ry="2" /> |
|
<text text-anchor="" x="503.00" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gi..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/ioutils.AtomicWriteFile (1 samples, 0.85%)</title><rect x="390.0" y="465" width="10.0" height="15.0" fill="rgb(216,64,33)" rx="2" ry="2" /> |
|
<text text-anchor="" x="393.00" 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/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*layerStore).CreateWithFlags (3 samples, 2.54%)</title><rect x="360.0" y="481" width="30.0" height="15.0" fill="rgb(217,158,1)" rx="2" ry="2" /> |
|
<text text-anchor="" x="363.00" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gi..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.mallocgc (1 samples, 0.85%)</title><rect x="380.0" y="353" width="10.0" height="15.0" fill="rgb(249,173,20)" rx="2" ry="2" /> |
|
<text text-anchor="" x="383.00" 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.nextFreeFast (1 samples, 0.85%)</title><rect x="680.0" y="353" width="10.0" height="15.0" fill="rgb(226,207,54)" rx="2" ry="2" /> |
|
<text text-anchor="" x="683.00" 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>syscall.Unlink (1 samples, 0.85%)</title><rect x="550.0" y="433" width="10.0" height="15.0" fill="rgb(252,177,38)" rx="2" ry="2" /> |
|
<text text-anchor="" x="553.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>os.(*File).Read (1 samples, 0.85%)</title><rect x="710.0" y="385" width="10.0" height="15.0" fill="rgb(239,47,18)" rx="2" ry="2" /> |
|
<text text-anchor="" x="713.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>syscall.unlinkat (1 samples, 0.85%)</title><rect x="550.0" y="417" width="10.0" height="15.0" fill="rgb(228,133,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="553.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>encoding/json.checkValid (1 samples, 0.85%)</title><rect x="610.0" y="385" width="10.0" height="15.0" fill="rgb(208,228,25)" rx="2" ry="2" /> |
|
<text text-anchor="" x="613.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/pkg/ioutils.(*WriteCounter).Write (2 samples, 1.69%)</title><rect x="190.0" y="385" width="20.0" height="15.0" fill="rgb(246,26,17)" rx="2" ry="2" /> |
|
<text text-anchor="" x="193.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>net/http.(*body).readLocked (2 samples, 1.69%)</title><rect x="170.0" y="241" width="20.0" height="15.0" fill="rgb(251,106,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="173.00" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/drivers/overlay.(*Driver).Get (2 samples, 1.69%)</title><rect x="400.0" y="497" width="20.0" height="15.0" fill="rgb(222,215,15)" rx="2" ry="2" /> |
|
<text text-anchor="" x="403.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>github.com/kubernetes-incubator/cri-o/pkg/storage.(*runtimeService).StopContainer (2 samples, 1.69%)</title><rect x="760.0" y="561" width="20.0" height="15.0" fill="rgb(220,204,26)" rx="2" ry="2" /> |
|
<text text-anchor="" x="763.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>os.(*File).Close (1 samples, 0.85%)</title><rect x="890.0" y="609" width="10.0" height="15.0" fill="rgb(245,12,0)" rx="2" ry="2" /> |
|
<text text-anchor="" x="893.00" 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>os.(*file).close (1 samples, 0.85%)</title><rect x="730.0" y="513" width="10.0" height="15.0" fill="rgb(234,29,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="733.00" 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>os.Rename (1 samples, 0.85%)</title><rect x="20.0" y="593" width="10.0" height="15.0" fill="rgb(218,220,48)" rx="2" ry="2" /> |
|
<text text-anchor="" x="23.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/pquerna/ffjson/fflib/v1.init.0.func1 (1 samples, 0.85%)</title><rect x="640.0" y="193" width="10.0" height="15.0" fill="rgb(227,199,54)" rx="2" ry="2" /> |
|
<text text-anchor="" x="643.00" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-o/vendor/github.com/pquerna/ffjson/fflib/v1.makeSlice (1 samples, 0.85%)</title><rect x="640.0" y="225" width="10.0" height="15.0" fill="rgb(248,193,26)" rx="2" ry="2" /> |
|
<text text-anchor="" x="643.00" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>compress/flate.(*decompressor).huffSym (8 samples, 6.78%)</title><rect x="220.0" y="433" width="80.0" height="15.0" fill="rgb(231,23,9)" rx="2" ry="2" /> |
|
<text text-anchor="" x="223.00" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >compress/..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>crypto/cipher.(*gcm).mul (1 samples, 0.85%)</title><rect x="170.0" y="49" width="10.0" height="15.0" fill="rgb(254,60,36)" rx="2" ry="2" /> |
|
<text text-anchor="" x="173.00" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>crypto/sha256.block (1 samples, 0.85%)</title><rect x="830.0" y="545" width="10.0" height="15.0" fill="rgb(237,201,50)" rx="2" ry="2" /> |
|
<text text-anchor="" x="833.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/vbatts/tar-split/archive/tar.(*Reader).Read (23 samples, 19.49%)</title><rect x="80.0" y="577" width="230.0" height="15.0" fill="rgb(222,86,18)" rx="2" ry="2" /> |
|
<text text-anchor="" x="83.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/kubernetes-incubato..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Fchmodat (1 samples, 0.85%)</title><rect x="540.0" y="417" width="10.0" height="15.0" fill="rgb(211,25,25)" rx="2" ry="2" /> |
|
<text text-anchor="" x="543.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>github.com/kubernetes-incubator/cri-o/vendor/k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime._RuntimeService_StopPodSandbox_Handler (7 samples, 5.93%)</title><rect x="760.0" y="593" width="70.0" height="15.0" fill="rgb(246,215,37)" rx="2" ry="2" /> |
|
<text text-anchor="" x="763.00" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github...</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.marshalerEncoder (1 samples, 0.85%)</title><rect x="640.0" y="337" width="10.0" height="15.0" fill="rgb(209,27,39)" rx="2" ry="2" /> |
|
<text text-anchor="" x="643.00" 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.(*FD).Fsync (1 samples, 0.85%)</title><rect x="530.0" y="449" width="10.0" height="15.0" fill="rgb(210,65,51)" rx="2" ry="2" /> |
|
<text text-anchor="" x="533.00" 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>syscall.Renameat (1 samples, 0.85%)</title><rect x="650.0" y="401" width="10.0" height="15.0" fill="rgb(225,198,51)" rx="2" ry="2" /> |
|
<text text-anchor="" x="653.00" 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>encoding/json.(*decodeState).unmarshal (1 samples, 0.85%)</title><rect x="620.0" y="449" width="10.0" height="15.0" fill="rgb(248,194,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="623.00" 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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*layerStore).Save (2 samples, 1.69%)</title><rect x="760.0" y="513" width="20.0" height="15.0" fill="rgb(214,81,52)" rx="2" ry="2" /> |
|
<text text-anchor="" x="763.00" 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>encoding/json.Unmarshal (1 samples, 0.85%)</title><rect x="780.0" y="449" width="10.0" height="15.0" fill="rgb(232,111,0)" rx="2" ry="2" /> |
|
<text text-anchor="" x="783.00" 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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage.(*store).DeleteContainer (7 samples, 5.93%)</title><rect x="460.0" y="529" width="70.0" height="15.0" fill="rgb(208,213,32)" rx="2" ry="2" /> |
|
<text text-anchor="" x="463.00" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github...</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.(*mcache).nextFree (1 samples, 0.85%)</title><rect x="880.0" y="513" width="10.0" height="15.0" fill="rgb(205,229,3)" rx="2" ry="2" /> |
|
<text text-anchor="" x="883.00" 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>os.OpenFile (1 samples, 0.85%)</title><rect x="330.0" y="417" width="10.0" height="15.0" fill="rgb(227,36,0)" rx="2" ry="2" /> |
|
<text text-anchor="" x="333.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>syscall.Open (1 samples, 0.85%)</title><rect x="660.0" y="433" width="10.0" height="15.0" fill="rgb(222,146,9)" rx="2" ry="2" /> |
|
<text text-anchor="" x="663.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containernetworking/cni/pkg/invoke.ExecPluginWithResult (2 samples, 1.69%)</title><rect x="670.0" y="497" width="20.0" height="15.0" fill="rgb(245,75,40)" rx="2" ry="2" /> |
|
<text text-anchor="" x="673.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>syscall.Write (1 samples, 0.85%)</title><rect x="850.0" y="497" width="10.0" height="15.0" fill="rgb(223,4,0)" rx="2" ry="2" /> |
|
<text text-anchor="" x="853.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>github.com/kubernetes-incubator/cri-o/vendor/github.com/containers/storage/drivers/overlay.(*Driver).Remove (1 samples, 0.85%)</title><rect x="550.0" y="513" width="10.0" height="15.0" fill="rgb(222,34,54)" rx="2" ry="2" /> |
|
<text text-anchor="" x="553.00" 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/kubernetes-incubator/cri-o/vendor/github.com/docker/docker/pkg/ioutils.(*atomicFileWriter).Close (1 samples, 0.85%)</title><rect x="750.0" y="529" width="10.0" height="15.0" fill="rgb(254,212,35)" rx="2" ry="2" /> |
|
<text text-anchor="" x="753.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>internal/poll.(*FD).Fsync (1 samples, 0.85%)</title><rect x="470.0" y="433" width="10.0" height="15.0" fill="rgb(253,119,29)" rx="2" ry="2" /> |
|
<text text-anchor="" x="473.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>syscall.Write (1 samples, 0.85%)</title><rect x="860.0" y="513" width="10.0" height="15.0" fill="rgb(246,80,9)" rx="2" ry="2" /> |
|
<text text-anchor="" x="863.00" 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.Value.IsNil (1 samples, 0.85%)</title><rect x="780.0" y="321" width="10.0" height="15.0" fill="rgb(219,55,15)" rx="2" ry="2" /> |
|
<text text-anchor="" x="783.00" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.futex (1 samples, 0.85%)</title><rect x="480.0" y="257" width="10.0" height="15.0" fill="rgb(229,216,34)" rx="2" ry="2" /> |
|
<text text-anchor="" x="483.00" 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.(*FD).Write (1 samples, 0.85%)</title><rect x="860.0" y="529" width="10.0" height="15.0" fill="rgb(228,1,24)" rx="2" ry="2" /> |
|
<text text-anchor="" x="863.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>os.Chmod (1 samples, 0.85%)</title><rect x="540.0" y="465" width="10.0" height="15.0" fill="rgb(221,56,32)" rx="2" ry="2" /> |
|
<text text-anchor="" x="543.00" 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/kubernetes-incubator/cri-o/vendor/github.com/containers/image/storage.newImage (2 samples, 1.69%)</title><rect x="610.0" y="497" width="20.0" height="15.0" fill="rgb(246,87,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="613.00" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
</svg> |
|
|