|
<?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="562" onload="init(evt)" viewBox="0 0 1200 562" 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="562.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="545" 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="545" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="matched" > </text> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.send (1 samples, 1.52%)</title><rect x="725.2" y="417" width="17.8" height="15.0" fill="rgb(238,102,37)" rx="2" ry="2" /> |
|
<text text-anchor="" x="728.15" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os.(*File).read (1 samples, 1.52%)</title><rect x="796.7" y="401" width="17.8" height="15.0" fill="rgb(213,6,2)" rx="2" ry="2" /> |
|
<text text-anchor="" x="799.67" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/images.(*Image).Config (3 samples, 4.55%)</title><rect x="45.8" y="337" width="53.6" height="15.0" fill="rgb(241,53,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="48.76" y="347.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>runtime.systemstack (1 samples, 1.52%)</title><rect x="117.3" y="145" width="17.9" height="15.0" fill="rgb(225,81,30)" rx="2" ry="2" /> |
|
<text text-anchor="" x="120.27" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.(*container).get (1 samples, 1.52%)</title><rect x="260.3" y="385" width="17.9" height="15.0" fill="rgb(242,118,42)" rx="2" ry="2" /> |
|
<text text-anchor="" x="263.30" 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>bufio.(*Reader).Read (10 samples, 15.15%)</title><rect x="510.6" y="417" width="178.8" height="15.0" fill="rgb(231,106,45)" rx="2" ry="2" /> |
|
<text text-anchor="" x="513.61" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bufio.(*Reader).Read</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/images.RootFS (1 samples, 1.52%)</title><rect x="331.8" y="337" width="17.9" height="15.0" fill="rgb(226,15,50)" rx="2" ry="2" /> |
|
<text text-anchor="" x="334.82" 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-containerd/vendor/google.golang.org/grpc/transport.loopyWriter (3 samples, 4.55%)</title><rect x="743.0" y="481" width="53.7" height="15.0" fill="rgb(248,179,40)" rx="2" ry="2" /> |
|
<text text-anchor="" x="746.03" y="491.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>runtime.convT2Estring (1 samples, 1.52%)</title><rect x="349.7" y="273" width="17.9" height="15.0" fill="rgb(250,210,6)" rx="2" ry="2" /> |
|
<text text-anchor="" x="352.70" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.usleep (6 samples, 9.09%)</title><rect x="1064.8" y="449" width="107.3" height="15.0" fill="rgb(236,117,25)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1067.85" y="459.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-containerd/vendor/google.golang.org/grpc.(*Server).processUnaryRPC (25 samples, 37.88%)</title><rect x="27.9" y="465" width="446.9" height="15.0" fill="rgb(232,143,14)" rx="2" ry="2" /> |
|
<text text-anchor="" x="30.88" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/kubernetes-incubator/cri-containerd/vendor/google...</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/golang/protobuf/proto.(*Buffer).Marshal (1 samples, 1.52%)</title><rect x="117.3" y="209" width="17.9" height="15.0" fill="rgb(210,136,35)" rx="2" ry="2" /> |
|
<text text-anchor="" x="120.27" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>net.(*netFD).Write (1 samples, 1.52%)</title><rect x="760.9" y="401" width="17.9" height="15.0" fill="rgb(220,228,47)" rx="2" ry="2" /> |
|
<text text-anchor="" x="763.91" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.read (6 samples, 9.09%)</title><rect x="582.1" y="337" width="107.3" height="15.0" fill="rgb(215,169,23)" rx="2" ry="2" /> |
|
<text text-anchor="" x="585.12" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >syscall.read</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/api/services/containers/v1.(*containersClient).Get (1 samples, 1.52%)</title><rect x="260.3" y="353" width="17.9" height="15.0" fill="rgb(248,156,21)" rx="2" ry="2" /> |
|
<text text-anchor="" x="263.30" 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-containerd/vendor/github.com/docker/docker/pkg/mount.GetMounts (1 samples, 1.52%)</title><rect x="206.7" y="369" width="17.8" height="15.0" fill="rgb(213,121,20)" rx="2" ry="2" /> |
|
<text text-anchor="" x="209.67" 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-containerd/vendor/google.golang.org/grpc.protoCodec.Unmarshal (1 samples, 1.52%)</title><rect x="81.5" y="129" width="17.9" height="15.0" fill="rgb(238,9,7)" rx="2" ry="2" /> |
|
<text text-anchor="" x="84.52" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.(namespaceInterceptor).(github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.stream)-fm (1 samples, 1.52%)</title><rect x="331.8" y="257" width="17.9" height="15.0" fill="rgb(254,119,7)" rx="2" ry="2" /> |
|
<text text-anchor="" x="334.82" 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.Sscanf (1 samples, 1.52%)</title><rect x="206.7" y="321" width="17.8" height="15.0" fill="rgb(213,12,22)" rx="2" ry="2" /> |
|
<text text-anchor="" x="209.67" 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-containerd/vendor/google.golang.org/grpc/transport.(*http2Client).NewStream (1 samples, 1.52%)</title><rect x="331.8" y="209" width="17.9" height="15.0" fill="rgb(236,80,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="334.82" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.entersyscall (1 samples, 1.52%)</title><rect x="671.5" y="305" width="17.9" height="15.0" fill="rgb(237,227,5)" rx="2" ry="2" /> |
|
<text text-anchor="" x="674.52" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/docker/docker/pkg/ioutils.NewAtomicFileWriter (1 samples, 1.52%)</title><rect x="27.9" y="337" width="17.9" height="15.0" fill="rgb(209,182,23)" rx="2" ry="2" /> |
|
<text text-anchor="" x="30.88" 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-containerd/vendor/google.golang.org/grpc.invoke (1 samples, 1.52%)</title><rect x="117.3" y="305" width="17.9" height="15.0" fill="rgb(205,48,51)" rx="2" ry="2" /> |
|
<text text-anchor="" x="120.27" 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-containerd/vendor/github.com/containerd/containerd/api/services/tasks/v1.(*tasksClient).Get (1 samples, 1.52%)</title><rect x="170.9" y="369" width="17.9" height="15.0" fill="rgb(217,144,29)" rx="2" ry="2" /> |
|
<text text-anchor="" x="173.91" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.growslice (1 samples, 1.52%)</title><rect x="117.3" y="193" width="17.9" height="15.0" fill="rgb(229,108,30)" rx="2" ry="2" /> |
|
<text text-anchor="" x="120.27" 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-containerd/vendor/github.com/containerd/containerd/images.(*Image).RootFS (1 samples, 1.52%)</title><rect x="331.8" y="353" width="17.9" height="15.0" fill="rgb(253,35,21)" rx="2" ry="2" /> |
|
<text text-anchor="" x="334.82" 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-containerd/vendor/google.golang.org/grpc.newClientStream (1 samples, 1.52%)</title><rect x="331.8" y="225" width="17.9" height="15.0" fill="rgb(209,33,27)" rx="2" ry="2" /> |
|
<text text-anchor="" x="334.82" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc/transport.wait (1 samples, 1.52%)</title><rect x="170.9" y="257" width="17.9" height="15.0" fill="rgb(213,195,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="173.91" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.runqsteal (1 samples, 1.52%)</title><rect x="1011.2" y="433" width="17.9" height="15.0" fill="rgb(225,39,49)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1014.21" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/docker/docker/pkg/truncindex.(*TruncIndex).Delete (1 samples, 1.52%)</title><rect x="242.4" y="385" width="17.9" height="15.0" fill="rgb(245,54,45)" rx="2" ry="2" /> |
|
<text text-anchor="" x="245.42" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>internal/poll.(*FD).Write (1 samples, 1.52%)</title><rect x="313.9" y="289" width="17.9" height="15.0" fill="rgb(229,54,32)" rx="2" ry="2" /> |
|
<text text-anchor="" x="316.94" 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, 1.52%)</title><rect x="367.6" y="289" width="17.9" height="15.0" fill="rgb(245,8,31)" rx="2" ry="2" /> |
|
<text text-anchor="" x="370.58" 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-containerd/pkg/store/container.StoreStatus (1 samples, 1.52%)</title><rect x="27.9" y="369" width="17.9" height="15.0" fill="rgb(218,101,5)" rx="2" ry="2" /> |
|
<text text-anchor="" x="30.88" 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.read (1 samples, 1.52%)</title><rect x="796.7" y="353" width="17.8" height="15.0" fill="rgb(227,77,50)" rx="2" ry="2" /> |
|
<text text-anchor="" x="799.67" 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.Syscall (1 samples, 1.52%)</title><rect x="760.9" y="337" width="17.9" height="15.0" fill="rgb(228,100,8)" rx="2" ry="2" /> |
|
<text text-anchor="" x="763.91" 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.runqgrab (1 samples, 1.52%)</title><rect x="1011.2" y="417" width="17.9" height="15.0" fill="rgb(216,48,5)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1014.21" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.(*image).Config (1 samples, 1.52%)</title><rect x="296.1" y="337" width="17.8" height="15.0" fill="rgb(225,9,40)" rx="2" ry="2" /> |
|
<text text-anchor="" x="299.06" 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/exec.(*Cmd).Wait (1 samples, 1.52%)</title><rect x="457.0" y="289" width="17.8" height="15.0" fill="rgb(230,89,35)" rx="2" ry="2" /> |
|
<text text-anchor="" x="459.97" 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.(*Process).Wait (1 samples, 1.52%)</title><rect x="457.0" y="273" width="17.8" height="15.0" fill="rgb(217,56,40)" rx="2" ry="2" /> |
|
<text text-anchor="" x="459.97" 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>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/images.(*Image).Config (1 samples, 1.52%)</title><rect x="296.1" y="321" width="17.8" height="15.0" fill="rgb(207,54,35)" rx="2" ry="2" /> |
|
<text text-anchor="" x="299.06" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/docker/docker/pkg/ioutils.AtomicWriteFile (1 samples, 1.52%)</title><rect x="27.9" y="353" width="17.9" height="15.0" fill="rgb(224,177,39)" rx="2" ry="2" /> |
|
<text text-anchor="" x="30.88" 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-containerd/vendor/github.com/containerd/containerd.(*remoteContent).ReaderAt (2 samples, 3.03%)</title><rect x="45.8" y="209" width="35.7" height="15.0" fill="rgb(208,100,18)" rx="2" ry="2" /> |
|
<text text-anchor="" x="48.76" y="219.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-containerd/vendor/google.golang.org/grpc.(*Server).serveStreams.func1.1 (25 samples, 37.88%)</title><rect x="27.9" y="497" width="446.9" height="15.0" fill="rgb(205,36,25)" rx="2" ry="2" /> |
|
<text text-anchor="" x="30.88" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/kubernetes-incubator/cri-containerd/vendor/google...</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.(*remoteContent).Info (2 samples, 3.03%)</title><rect x="45.8" y="193" width="35.7" height="15.0" fill="rgb(231,6,34)" rx="2" ry="2" /> |
|
<text text-anchor="" x="48.76" y="203.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>regexp.(*Regexp).FindStringSubmatch (1 samples, 1.52%)</title><rect x="278.2" y="289" width="17.9" height="15.0" fill="rgb(248,118,10)" rx="2" ry="2" /> |
|
<text text-anchor="" x="281.18" 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.mapaccess2_faststr (1 samples, 1.52%)</title><rect x="242.4" y="369" width="17.9" height="15.0" fill="rgb(220,23,9)" rx="2" ry="2" /> |
|
<text text-anchor="" x="245.42" 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-containerd/vendor/google.golang.org/grpc.NewClientStream (1 samples, 1.52%)</title><rect x="331.8" y="273" width="17.9" height="15.0" fill="rgb(241,0,33)" rx="2" ry="2" /> |
|
<text text-anchor="" x="334.82" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.mcall (1 samples, 1.52%)</title><rect x="832.4" y="481" width="17.9" height="15.0" fill="rgb(212,150,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="835.42" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Syscall6 (1 samples, 1.52%)</title><rect x="27.9" y="257" width="17.9" height="15.0" fill="rgb(220,117,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="30.88" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.(*mcache).refill (1 samples, 1.52%)</title><rect x="117.3" y="113" width="17.9" height="15.0" fill="rgb(249,95,39)" rx="2" ry="2" /> |
|
<text text-anchor="" x="120.27" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.(*clientStream).RecvMsg (1 samples, 1.52%)</title><rect x="10.0" y="465" width="17.9" height="15.0" fill="rgb(223,157,8)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.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-containerd/vendor/google.golang.org/grpc.recv (1 samples, 1.52%)</title><rect x="10.0" y="449" width="17.9" height="15.0" fill="rgb(221,10,7)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.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-containerd/vendor/github.com/containerd/containerd.namespaceInterceptor.unary (1 samples, 1.52%)</title><rect x="117.3" y="321" width="17.9" height="15.0" fill="rgb(224,179,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="120.27" 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-containerd/pkg/server.(*instrumentedService).RunPodSandbox (9 samples, 13.64%)</title><rect x="278.2" y="433" width="160.9" height="15.0" fill="rgb(252,19,30)" rx="2" ry="2" /> |
|
<text text-anchor="" x="281.18" y="443.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>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc/transport.(*controlBuffer).put (1 samples, 1.52%)</title><rect x="725.2" y="465" width="17.8" height="15.0" fill="rgb(235,130,6)" rx="2" ry="2" /> |
|
<text text-anchor="" x="728.15" 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-containerd/vendor/github.com/containernetworking/cni/pkg/invoke.(*PluginExec).WithoutResult (1 samples, 1.52%)</title><rect x="457.0" y="337" width="17.8" height="15.0" fill="rgb(243,210,25)" rx="2" ry="2" /> |
|
<text text-anchor="" x="459.97" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Syscall (1 samples, 1.52%)</title><rect x="313.9" y="241" width="17.9" height="15.0" fill="rgb(223,210,20)" rx="2" ry="2" /> |
|
<text text-anchor="" x="316.94" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.(*container).Delete (2 samples, 3.03%)</title><rect x="170.9" y="401" width="35.8" height="15.0" fill="rgb(233,59,13)" rx="2" ry="2" /> |
|
<text text-anchor="" x="173.91" y="411.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-containerd/vendor/k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime._RuntimeService_RemoveContainer_Handler (6 samples, 9.09%)</title><rect x="135.2" y="449" width="107.2" height="15.0" fill="rgb(206,7,51)" rx="2" ry="2" /> |
|
<text text-anchor="" x="138.15" y="459.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>os/exec.(*Cmd).Wait (2 samples, 3.03%)</title><rect x="385.5" y="289" width="35.7" height="15.0" fill="rgb(214,75,47)" rx="2" ry="2" /> |
|
<text text-anchor="" x="388.45" y="299.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>runtime.releasep (1 samples, 1.52%)</title><rect x="993.3" y="433" width="17.9" height="15.0" fill="rgb(212,225,13)" rx="2" ry="2" /> |
|
<text text-anchor="" x="996.33" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.Invoke (1 samples, 1.52%)</title><rect x="260.3" y="337" width="17.9" height="15.0" fill="rgb(238,113,18)" rx="2" ry="2" /> |
|
<text text-anchor="" x="263.30" 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.futexwakeup (1 samples, 1.52%)</title><rect x="671.5" y="225" width="17.9" height="15.0" fill="rgb(242,145,38)" rx="2" ry="2" /> |
|
<text text-anchor="" x="674.52" 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.Read (1 samples, 1.52%)</title><rect x="796.7" y="369" width="17.8" height="15.0" fill="rgb(213,218,11)" rx="2" ry="2" /> |
|
<text text-anchor="" x="799.67" 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-containerd/vendor/google.golang.org/grpc.(*protoCodec).Unmarshal (1 samples, 1.52%)</title><rect x="10.0" y="433" width="17.9" height="15.0" fill="rgb(216,37,32)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.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.forkExec (1 samples, 1.52%)</title><rect x="367.6" y="225" width="17.9" height="15.0" fill="rgb(213,100,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="370.58" 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-containerd/pkg/server.(*criContainerdService).RemovePodSandbox (2 samples, 3.03%)</title><rect x="242.4" y="417" width="35.8" height="15.0" fill="rgb(234,203,26)" rx="2" ry="2" /> |
|
<text text-anchor="" x="245.42" y="427.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-containerd/vendor/google.golang.org/grpc.(*protoCodec).Marshal (1 samples, 1.52%)</title><rect x="117.3" y="257" width="17.9" height="15.0" fill="rgb(210,152,43)" rx="2" ry="2" /> |
|
<text text-anchor="" x="120.27" 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>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/images.Manifest.func1 (3 samples, 4.55%)</title><rect x="45.8" y="241" width="53.6" height="15.0" fill="rgb(242,149,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="48.76" y="251.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/exec.(*Cmd).Run (3 samples, 4.55%)</title><rect x="367.6" y="305" width="53.6" height="15.0" fill="rgb(217,13,38)" rx="2" ry="2" /> |
|
<text text-anchor="" x="370.58" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >os/ex..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/api/services/content/v1.(*contentReadClient).Recv (1 samples, 1.52%)</title><rect x="81.5" y="193" width="17.9" height="15.0" fill="rgb(207,198,5)" rx="2" ry="2" /> |
|
<text text-anchor="" x="84.52" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os.startProcess (1 samples, 1.52%)</title><rect x="367.6" y="257" width="17.9" height="15.0" fill="rgb(205,114,40)" rx="2" ry="2" /> |
|
<text text-anchor="" x="370.58" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.WithNewSnapshot.func1 (1 samples, 1.52%)</title><rect x="331.8" y="369" width="17.9" height="15.0" fill="rgb(211,72,40)" rx="2" ry="2" /> |
|
<text text-anchor="" x="334.82" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.heapBitsSetType (1 samples, 1.52%)</title><rect x="349.7" y="241" width="17.9" height="15.0" fill="rgb(225,7,34)" rx="2" ry="2" /> |
|
<text text-anchor="" x="352.70" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.Invoke (1 samples, 1.52%)</title><rect x="117.3" y="353" width="17.9" height="15.0" fill="rgb(235,171,22)" rx="2" ry="2" /> |
|
<text text-anchor="" x="120.27" 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-containerd/vendor/github.com/containerd/containerd.(*Client).NewContainer (5 samples, 7.58%)</title><rect x="45.8" y="401" width="89.4" height="15.0" fill="rgb(234,173,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="48.76" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.(*remoteContainers).Create (2 samples, 3.03%)</title><rect x="99.4" y="385" width="35.8" height="15.0" fill="rgb(254,156,38)" rx="2" ry="2" /> |
|
<text text-anchor="" x="102.39" y="395.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-containerd/vendor/github.com/containernetworking/cni/libcni.(*CNIConfig).AddNetworkList (4 samples, 6.06%)</title><rect x="367.6" y="369" width="71.5" height="15.0" fill="rgb(240,52,22)" rx="2" ry="2" /> |
|
<text text-anchor="" x="370.58" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.c..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os.rename (2 samples, 3.03%)</title><rect x="135.2" y="353" width="35.7" height="15.0" fill="rgb(253,199,49)" rx="2" ry="2" /> |
|
<text text-anchor="" x="138.15" y="363.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>runtime.(*mcache).nextFree (1 samples, 1.52%)</title><rect x="421.2" y="273" width="17.9" height="15.0" fill="rgb(253,56,50)" rx="2" ry="2" /> |
|
<text text-anchor="" x="424.21" 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>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/images.Walk (3 samples, 4.55%)</title><rect x="45.8" y="273" width="53.6" height="15.0" fill="rgb(236,37,28)" rx="2" ry="2" /> |
|
<text text-anchor="" x="48.76" y="283.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>runtime.getitab (1 samples, 1.52%)</title><rect x="10.0" y="385" width="17.9" height="15.0" fill="rgb(247,70,4)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.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.OpenFile (1 samples, 1.52%)</title><rect x="27.9" y="305" width="17.9" height="15.0" fill="rgb(233,209,21)" rx="2" ry="2" /> |
|
<text text-anchor="" x="30.88" 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.ByteSliceFromString (1 samples, 1.52%)</title><rect x="367.6" y="177" width="17.9" height="15.0" fill="rgb(254,194,24)" rx="2" ry="2" /> |
|
<text text-anchor="" x="370.58" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containernetworking/plugins/pkg/ns.(*netNS).Close (1 samples, 1.52%)</title><rect x="439.1" y="385" width="17.9" height="15.0" fill="rgb(236,110,20)" rx="2" ry="2" /> |
|
<text text-anchor="" x="442.09" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>sync.(*Mutex).Unlock (1 samples, 1.52%)</title><rect x="707.3" y="449" width="17.9" height="15.0" fill="rgb(235,102,4)" rx="2" ry="2" /> |
|
<text text-anchor="" x="710.27" 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.findfunc (1 samples, 1.52%)</title><rect x="1047.0" y="433" width="17.8" height="15.0" fill="rgb(243,94,47)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1049.97" 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-containerd/vendor/github.com/containerd/containerd.(*Client).WithLease (1 samples, 1.52%)</title><rect x="349.7" y="385" width="17.9" height="15.0" fill="rgb(224,12,42)" rx="2" ry="2" /> |
|
<text text-anchor="" x="352.70" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.(*mcentral).cacheSpan (1 samples, 1.52%)</title><rect x="421.2" y="209" width="17.9" height="15.0" fill="rgb(220,31,10)" rx="2" ry="2" /> |
|
<text text-anchor="" x="424.21" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.(namespaceInterceptor).(github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.unary)-fm (1 samples, 1.52%)</title><rect x="170.9" y="337" width="17.9" height="15.0" fill="rgb(246,103,34)" rx="2" ry="2" /> |
|
<text text-anchor="" x="173.91" 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.heapBitsSetType (1 samples, 1.52%)</title><rect x="224.5" y="305" width="17.9" height="15.0" fill="rgb(218,212,6)" rx="2" ry="2" /> |
|
<text text-anchor="" x="227.55" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.mallocgc (1 samples, 1.52%)</title><rect x="349.7" y="257" width="17.9" height="15.0" fill="rgb(247,197,11)" rx="2" ry="2" /> |
|
<text text-anchor="" x="352.70" 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.Write (1 samples, 1.52%)</title><rect x="313.9" y="273" width="17.9" height="15.0" fill="rgb(237,71,44)" rx="2" ry="2" /> |
|
<text text-anchor="" x="316.94" 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.notewakeup (1 samples, 1.52%)</title><rect x="1029.1" y="401" width="17.9" height="15.0" fill="rgb(225,8,15)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1032.09" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.usleep (1 samples, 1.52%)</title><rect x="1011.2" y="401" width="17.9" height="15.0" fill="rgb(217,64,54)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1014.21" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.wait4 (1 samples, 1.52%)</title><rect x="457.0" y="225" width="17.8" height="15.0" fill="rgb(206,72,35)" rx="2" ry="2" /> |
|
<text text-anchor="" x="459.97" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc/transport.(*http2Client).Write (1 samples, 1.52%)</title><rect x="170.9" y="273" width="17.9" height="15.0" fill="rgb(207,35,18)" rx="2" ry="2" /> |
|
<text text-anchor="" x="173.91" 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.startm (1 samples, 1.52%)</title><rect x="725.2" y="321" width="17.8" height="15.0" fill="rgb(239,194,47)" rx="2" ry="2" /> |
|
<text text-anchor="" x="728.15" 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>syscall.Syscall6 (1 samples, 1.52%)</title><rect x="457.0" y="209" width="17.8" height="15.0" fill="rgb(213,83,52)" rx="2" ry="2" /> |
|
<text text-anchor="" x="459.97" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.Invoke (1 samples, 1.52%)</title><rect x="349.7" y="337" width="17.9" height="15.0" fill="rgb(246,224,52)" rx="2" ry="2" /> |
|
<text text-anchor="" x="352.70" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.ready (1 samples, 1.52%)</title><rect x="725.2" y="353" width="17.8" height="15.0" fill="rgb(235,229,43)" rx="2" ry="2" /> |
|
<text text-anchor="" x="728.15" 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.assertE2I (1 samples, 1.52%)</title><rect x="10.0" y="401" width="17.9" height="15.0" fill="rgb(217,36,38)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.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-containerd/pkg/store/sandbox.(*NetNS).Remove (1 samples, 1.52%)</title><rect x="439.1" y="401" width="17.9" height="15.0" fill="rgb(232,52,20)" rx="2" ry="2" /> |
|
<text text-anchor="" x="442.09" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.mcall (11 samples, 16.67%)</title><rect x="850.3" y="497" width="196.7" height="15.0" fill="rgb(233,28,19)" rx="2" ry="2" /> |
|
<text text-anchor="" x="853.30" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >runtime.mcall</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.protoCodec.Unmarshal (1 samples, 1.52%)</title><rect x="10.0" y="417" width="17.9" height="15.0" fill="rgb(232,10,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.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.selunlock (1 samples, 1.52%)</title><rect x="260.3" y="225" width="17.9" height="15.0" fill="rgb(246,2,18)" rx="2" ry="2" /> |
|
<text text-anchor="" x="263.30" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os.(*File).write (1 samples, 1.52%)</title><rect x="313.9" y="305" width="17.9" height="15.0" fill="rgb(236,115,35)" rx="2" ry="2" /> |
|
<text text-anchor="" x="316.94" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/golang.org/x/net/http2.(*Framer).readMetaFrame (1 samples, 1.52%)</title><rect x="474.8" y="465" width="17.9" height="15.0" fill="rgb(251,163,3)" rx="2" ry="2" /> |
|
<text text-anchor="" x="477.85" 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-containerd/vendor/google.golang.org/grpc.(*clientStream).RecvMsg (1 samples, 1.52%)</title><rect x="81.5" y="177" width="17.9" height="15.0" fill="rgb(234,28,3)" rx="2" ry="2" /> |
|
<text text-anchor="" x="84.52" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.mstart (6 samples, 9.09%)</title><rect x="1064.8" y="497" width="107.3" height="15.0" fill="rgb(230,137,0)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1067.85" y="507.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>runtime._System (2 samples, 3.03%)</title><rect x="814.5" y="497" width="35.8" height="15.0" fill="rgb(241,38,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="817.55" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >run..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc/transport.wait (1 samples, 1.52%)</title><rect x="260.3" y="257" width="17.9" height="15.0" fill="rgb(226,76,45)" rx="2" ry="2" /> |
|
<text text-anchor="" x="263.30" 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>github.com/kubernetes-incubator/cri-containerd/pkg/server.(*criContainerdService).RemoveContainer (6 samples, 9.09%)</title><rect x="135.2" y="417" width="107.2" height="15.0" fill="rgb(245,115,7)" rx="2" ry="2" /> |
|
<text text-anchor="" x="138.15" y="427.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>io.ReadFull (10 samples, 15.15%)</title><rect x="510.6" y="449" width="178.8" height="15.0" fill="rgb(208,91,17)" rx="2" ry="2" /> |
|
<text text-anchor="" x="513.61" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.ReadFull</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>net.(*conn).Write (1 samples, 1.52%)</title><rect x="760.9" y="417" width="17.9" height="15.0" fill="rgb(205,159,24)" rx="2" ry="2" /> |
|
<text text-anchor="" x="763.91" 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.Wait4 (1 samples, 1.52%)</title><rect x="403.3" y="241" width="17.9" height="15.0" fill="rgb(213,209,25)" rx="2" ry="2" /> |
|
<text text-anchor="" x="406.33" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime._RuntimeService_RemovePodSandbox_Handler (2 samples, 3.03%)</title><rect x="242.4" y="449" width="35.8" height="15.0" fill="rgb(207,71,25)" rx="2" ry="2" /> |
|
<text text-anchor="" x="245.42" y="459.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-containerd/vendor/github.com/containerd/containerd/api/services/content/v1.(*contentClient).Read (1 samples, 1.52%)</title><rect x="331.8" y="289" width="17.9" height="15.0" fill="rgb(253,139,28)" rx="2" ry="2" /> |
|
<text text-anchor="" x="334.82" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.selectnbsend (1 samples, 1.52%)</title><rect x="725.2" y="449" width="17.8" height="15.0" fill="rgb(237,127,24)" rx="2" ry="2" /> |
|
<text text-anchor="" x="728.15" 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>context.(*valueCtx).Value (1 samples, 1.52%)</title><rect x="45.8" y="65" width="17.8" height="15.0" fill="rgb(250,228,42)" rx="2" ry="2" /> |
|
<text text-anchor="" x="48.76" 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>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containernetworking/cni/pkg/invoke.(*PluginExec).WithResult (4 samples, 6.06%)</title><rect x="367.6" y="337" width="71.5" height="15.0" fill="rgb(214,145,21)" rx="2" ry="2" /> |
|
<text text-anchor="" x="370.58" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.c..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/api/services/events/v1.(*eventsSubscribeClient).Recv (1 samples, 1.52%)</title><rect x="10.0" y="481" width="17.9" height="15.0" fill="rgb(249,40,15)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.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.mallocgc (1 samples, 1.52%)</title><rect x="117.3" y="177" width="17.9" height="15.0" fill="rgb(219,208,32)" rx="2" ry="2" /> |
|
<text text-anchor="" x="120.27" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.(*mcache).refill (1 samples, 1.52%)</title><rect x="421.2" y="225" width="17.9" height="15.0" fill="rgb(236,44,1)" rx="2" ry="2" /> |
|
<text text-anchor="" x="424.21" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.findrunnable (8 samples, 12.12%)</title><rect x="886.1" y="449" width="143.0" height="15.0" fill="rgb(248,142,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="889.06" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >runtime.findrunnable</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>fmt.Fscanf (1 samples, 1.52%)</title><rect x="206.7" y="305" width="17.8" height="15.0" fill="rgb(251,54,7)" rx="2" ry="2" /> |
|
<text text-anchor="" x="209.67" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.(*mcache).nextFree.func1 (1 samples, 1.52%)</title><rect x="421.2" y="241" width="17.9" height="15.0" fill="rgb(246,192,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="424.21" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os.Rename (2 samples, 3.03%)</title><rect x="135.2" y="369" width="35.7" height="15.0" fill="rgb(236,136,23)" rx="2" ry="2" /> |
|
<text text-anchor="" x="138.15" y="379.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>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.(*protoCodec).Unmarshal (1 samples, 1.52%)</title><rect x="81.5" y="145" width="17.9" height="15.0" fill="rgb(231,214,36)" rx="2" ry="2" /> |
|
<text text-anchor="" x="84.52" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.invoke (1 samples, 1.52%)</title><rect x="63.6" y="113" width="17.9" height="15.0" fill="rgb(214,66,35)" rx="2" ry="2" /> |
|
<text text-anchor="" x="66.64" 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>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.namespaceInterceptor.unary (1 samples, 1.52%)</title><rect x="260.3" y="305" width="17.9" height="15.0" fill="rgb(221,222,38)" rx="2" ry="2" /> |
|
<text text-anchor="" x="263.30" 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-containerd/vendor/google.golang.org/grpc.protoCodec.marshal (1 samples, 1.52%)</title><rect x="117.3" y="225" width="17.9" height="15.0" fill="rgb(254,45,49)" rx="2" ry="2" /> |
|
<text text-anchor="" x="120.27" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.encode (1 samples, 1.52%)</title><rect x="117.3" y="273" width="17.9" height="15.0" fill="rgb(215,24,3)" rx="2" ry="2" /> |
|
<text text-anchor="" x="120.27" 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.mallocgc (1 samples, 1.52%)</title><rect x="224.5" y="321" width="17.9" height="15.0" fill="rgb(220,99,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="227.55" 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.checkValid (1 samples, 1.52%)</title><rect x="296.1" y="209" width="17.8" height="15.0" fill="rgb(210,103,42)" rx="2" ry="2" /> |
|
<text text-anchor="" x="299.06" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.recv (1 samples, 1.52%)</title><rect x="81.5" y="161" width="17.9" height="15.0" fill="rgb(248,149,37)" rx="2" ry="2" /> |
|
<text text-anchor="" x="84.52" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/docker/distribution/reference.Parse (1 samples, 1.52%)</title><rect x="278.2" y="305" width="17.9" height="15.0" fill="rgb(250,19,10)" rx="2" ry="2" /> |
|
<text text-anchor="" x="281.18" 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>io.Copy (1 samples, 1.52%)</title><rect x="313.9" y="353" width="17.9" height="15.0" fill="rgb(226,58,41)" rx="2" ry="2" /> |
|
<text text-anchor="" x="316.94" 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-containerd/vendor/github.com/containerd/containerd.(namespaceInterceptor).(github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.unary)-fm (1 samples, 1.52%)</title><rect x="117.3" y="337" width="17.9" height="15.0" fill="rgb(210,187,48)" rx="2" ry="2" /> |
|
<text text-anchor="" x="120.27" 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-containerd/pkg/store/container.WithStatus.func1 (1 samples, 1.52%)</title><rect x="27.9" y="385" width="17.9" height="15.0" fill="rgb(210,182,54)" rx="2" ry="2" /> |
|
<text text-anchor="" x="30.88" 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-containerd/vendor/golang.org/x/net/http2.(*Framer).ReadFrame (12 samples, 18.18%)</title><rect x="474.8" y="481" width="214.6" height="15.0" fill="rgb(229,57,1)" rx="2" ry="2" /> |
|
<text text-anchor="" x="477.85" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/kubernetes-incuba..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/api/services/leases/v1.(*leasesClient).Create (1 samples, 1.52%)</title><rect x="349.7" y="353" width="17.9" height="15.0" fill="rgb(236,115,18)" rx="2" ry="2" /> |
|
<text text-anchor="" x="352.70" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>net.(*conn).Read (9 samples, 13.64%)</title><rect x="528.5" y="401" width="160.9" height="15.0" fill="rgb(208,130,3)" rx="2" ry="2" /> |
|
<text text-anchor="" x="531.48" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >net.(*conn).Read</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.sysmon (6 samples, 9.09%)</title><rect x="1064.8" y="465" width="107.3" height="15.0" fill="rgb(210,217,30)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1067.85" y="475.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>io.copyBuffer (1 samples, 1.52%)</title><rect x="313.9" y="337" width="17.9" height="15.0" fill="rgb(216,35,3)" rx="2" ry="2" /> |
|
<text text-anchor="" x="316.94" 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.newobject (1 samples, 1.52%)</title><rect x="474.8" y="449" width="17.9" height="15.0" fill="rgb(233,109,4)" rx="2" ry="2" /> |
|
<text text-anchor="" x="477.85" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>net.(*netFD).Read (9 samples, 13.64%)</title><rect x="528.5" y="385" width="160.9" height="15.0" fill="rgb(218,212,33)" rx="2" ry="2" /> |
|
<text text-anchor="" x="531.48" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >net.(*netFD).Read</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Lstat (2 samples, 3.03%)</title><rect x="135.2" y="321" width="35.7" height="15.0" fill="rgb(224,23,31)" rx="2" ry="2" /> |
|
<text text-anchor="" x="138.15" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.(*mcentral).grow (1 samples, 1.52%)</title><rect x="117.3" y="81" width="17.9" height="15.0" fill="rgb(205,131,48)" rx="2" ry="2" /> |
|
<text text-anchor="" x="120.27" 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.callers.func1 (1 samples, 1.52%)</title><rect x="188.8" y="273" width="17.9" height="15.0" fill="rgb(249,122,15)" rx="2" ry="2" /> |
|
<text text-anchor="" x="191.79" 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>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containernetworking/cni/pkg/invoke.ExecPluginWithoutResult (1 samples, 1.52%)</title><rect x="457.0" y="353" width="17.8" height="15.0" fill="rgb(219,138,54)" rx="2" ry="2" /> |
|
<text text-anchor="" x="459.97" 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-containerd/pkg/containerd/opts.WithNewSnapshot.func1 (1 samples, 1.52%)</title><rect x="331.8" y="385" width="17.9" height="15.0" fill="rgb(207,87,52)" rx="2" ry="2" /> |
|
<text text-anchor="" x="334.82" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.namespaceInterceptor.unary (2 samples, 3.03%)</title><rect x="45.8" y="129" width="35.7" height="15.0" fill="rgb(251,192,45)" rx="2" ry="2" /> |
|
<text text-anchor="" x="48.76" y="139.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-containerd/vendor/github.com/containerd/containerd/api/services/content/v1.(*contentClient).Info (2 samples, 3.03%)</title><rect x="45.8" y="177" width="35.7" height="15.0" fill="rgb(238,80,36)" rx="2" ry="2" /> |
|
<text text-anchor="" x="48.76" y="187.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.startm (1 samples, 1.52%)</title><rect x="1029.1" y="417" width="17.9" height="15.0" fill="rgb(225,186,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1032.09" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/pkg/server.(*instrumentedService).RemovePodSandbox (2 samples, 3.03%)</title><rect x="242.4" y="433" width="35.8" height="15.0" fill="rgb(238,107,10)" rx="2" ry="2" /> |
|
<text text-anchor="" x="245.42" y="443.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>syscall.SlicePtrFromStrings (1 samples, 1.52%)</title><rect x="367.6" y="209" width="17.9" height="15.0" fill="rgb(242,192,20)" rx="2" ry="2" /> |
|
<text text-anchor="" x="370.58" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.entersyscall_sysmon (1 samples, 1.52%)</title><rect x="671.5" y="257" width="17.9" height="15.0" fill="rgb(234,3,34)" rx="2" ry="2" /> |
|
<text text-anchor="" x="674.52" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.newstack (1 samples, 1.52%)</title><rect x="1047.0" y="481" width="17.8" height="15.0" fill="rgb(245,228,37)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1049.97" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.futexwakeup (1 samples, 1.52%)</title><rect x="725.2" y="289" width="17.8" height="15.0" fill="rgb(238,201,39)" rx="2" ry="2" /> |
|
<text text-anchor="" x="728.15" 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-containerd/pkg/server.(*criContainerdService).localResolve (2 samples, 3.03%)</title><rect x="278.2" y="385" width="35.7" height="15.0" fill="rgb(246,196,26)" rx="2" ry="2" /> |
|
<text text-anchor="" x="281.18" y="395.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-containerd/vendor/github.com/containernetworking/cni/pkg/invoke.ExecPluginWithResult (4 samples, 6.06%)</title><rect x="367.6" y="353" width="71.5" height="15.0" fill="rgb(247,164,44)" rx="2" ry="2" /> |
|
<text text-anchor="" x="370.58" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.c..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/pkg/server.(*criContainerdService).ensureImageExists (2 samples, 3.03%)</title><rect x="278.2" y="401" width="35.7" height="15.0" fill="rgb(207,91,50)" rx="2" ry="2" /> |
|
<text text-anchor="" x="281.18" y="411.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>syscall.openat (1 samples, 1.52%)</title><rect x="27.9" y="273" width="17.9" height="15.0" fill="rgb(220,0,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="30.88" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.(*mcache).nextFree (1 samples, 1.52%)</title><rect x="117.3" y="161" width="17.9" height="15.0" fill="rgb(214,55,25)" rx="2" ry="2" /> |
|
<text text-anchor="" x="120.27" 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.wakep (1 samples, 1.52%)</title><rect x="725.2" y="337" width="17.8" height="15.0" fill="rgb(219,202,48)" rx="2" ry="2" /> |
|
<text text-anchor="" x="728.15" 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.mallocgc (1 samples, 1.52%)</title><rect x="474.8" y="433" width="17.9" height="15.0" fill="rgb(243,114,4)" rx="2" ry="2" /> |
|
<text text-anchor="" x="477.85" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os.(*File).Read (1 samples, 1.52%)</title><rect x="796.7" y="417" width="17.8" height="15.0" fill="rgb(236,50,15)" rx="2" ry="2" /> |
|
<text text-anchor="" x="799.67" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>sync.(*Pool).Put (1 samples, 1.52%)</title><rect x="81.5" y="113" width="17.9" height="15.0" fill="rgb(241,79,17)" rx="2" ry="2" /> |
|
<text text-anchor="" x="84.52" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime._RuntimeService_RunPodSandbox_Handler (9 samples, 13.64%)</title><rect x="278.2" y="449" width="160.9" height="15.0" fill="rgb(217,7,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="281.18" y="459.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>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/images.Config (3 samples, 4.55%)</title><rect x="45.8" y="321" width="53.6" height="15.0" fill="rgb(216,133,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="48.76" y="331.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-containerd/pkg/server.(*criContainerdService).StopPodSandbox (2 samples, 3.03%)</title><rect x="439.1" y="417" width="35.7" height="15.0" fill="rgb(230,72,44)" rx="2" ry="2" /> |
|
<text text-anchor="" x="442.09" y="427.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.(*mcache).nextFree.func1 (1 samples, 1.52%)</title><rect x="117.3" y="129" width="17.9" height="15.0" fill="rgb(213,118,52)" rx="2" ry="2" /> |
|
<text text-anchor="" x="120.27" 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-containerd/vendor/github.com/docker/docker/pkg/system.EnsureRemoveAll (2 samples, 3.03%)</title><rect x="206.7" y="401" width="35.7" height="15.0" fill="rgb(219,52,27)" rx="2" ry="2" /> |
|
<text text-anchor="" x="209.67" y="411.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>syscall.StartProcess (1 samples, 1.52%)</title><rect x="367.6" y="241" width="17.9" height="15.0" fill="rgb(211,177,21)" rx="2" ry="2" /> |
|
<text text-anchor="" x="370.58" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/pkg/server.(*instrumentedService).StopPodSandbox (2 samples, 3.03%)</title><rect x="439.1" y="433" width="35.7" height="15.0" fill="rgb(233,158,49)" rx="2" ry="2" /> |
|
<text text-anchor="" x="442.09" y="443.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-containerd/vendor/github.com/containernetworking/cni/pkg/invoke.(*RawExec).ExecPlugin (4 samples, 6.06%)</title><rect x="367.6" y="321" width="71.5" height="15.0" fill="rgb(226,181,23)" rx="2" ry="2" /> |
|
<text text-anchor="" x="370.58" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.c..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os.RemoveAll (1 samples, 1.52%)</title><rect x="224.5" y="385" width="17.9" height="15.0" fill="rgb(251,36,52)" rx="2" ry="2" /> |
|
<text text-anchor="" x="227.55" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.newobject (1 samples, 1.52%)</title><rect x="385.5" y="241" width="17.8" height="15.0" fill="rgb(228,57,33)" rx="2" ry="2" /> |
|
<text text-anchor="" x="388.45" 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-containerd/vendor/github.com/containerd/containerd.namespaceInterceptor.unary (1 samples, 1.52%)</title><rect x="170.9" y="321" width="17.9" height="15.0" fill="rgb(214,21,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="173.91" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.notewakeup (1 samples, 1.52%)</title><rect x="725.2" y="305" width="17.8" height="15.0" fill="rgb(249,74,9)" rx="2" ry="2" /> |
|
<text text-anchor="" x="728.15" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.(*mcentral).cacheSpan (1 samples, 1.52%)</title><rect x="117.3" y="97" width="17.9" height="15.0" fill="rgb(213,226,54)" rx="2" ry="2" /> |
|
<text text-anchor="" x="120.27" 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>github.com/kubernetes-incubator/cri-containerd/pkg/server.(*criContainerdService).RunPodSandbox (9 samples, 13.64%)</title><rect x="278.2" y="417" width="160.9" height="15.0" fill="rgb(248,141,25)" rx="2" ry="2" /> |
|
<text text-anchor="" x="281.18" y="427.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>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/docker/docker/pkg/mount.RecursiveUnmount (1 samples, 1.52%)</title><rect x="206.7" y="385" width="17.8" height="15.0" fill="rgb(231,165,41)" rx="2" ry="2" /> |
|
<text text-anchor="" x="209.67" 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.wait4 (1 samples, 1.52%)</title><rect x="403.3" y="225" width="17.9" height="15.0" fill="rgb(216,58,50)" rx="2" ry="2" /> |
|
<text text-anchor="" x="406.33" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.nanotime (1 samples, 1.52%)</title><rect x="886.1" y="433" width="17.8" height="15.0" fill="rgb(237,117,48)" rx="2" ry="2" /> |
|
<text text-anchor="" x="889.06" 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-containerd/vendor/github.com/containerd/containerd.(*container).loadTask (2 samples, 3.03%)</title><rect x="170.9" y="385" width="35.8" height="15.0" fill="rgb(229,103,1)" rx="2" ry="2" /> |
|
<text text-anchor="" x="173.91" y="395.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.selunlock (1 samples, 1.52%)</title><rect x="170.9" y="225" width="17.9" height="15.0" fill="rgb(210,16,32)" rx="2" ry="2" /> |
|
<text text-anchor="" x="173.91" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.write (1 samples, 1.52%)</title><rect x="313.9" y="257" width="17.9" height="15.0" fill="rgb(241,80,25)" rx="2" ry="2" /> |
|
<text text-anchor="" x="316.94" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.(*remoteContainers).Get (1 samples, 1.52%)</title><rect x="260.3" y="369" width="17.9" height="15.0" fill="rgb(208,20,25)" rx="2" ry="2" /> |
|
<text text-anchor="" x="263.30" 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-containerd/vendor/github.com/containerd/containerd.(namespaceInterceptor).(github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.unary)-fm (2 samples, 3.03%)</title><rect x="45.8" y="145" width="35.7" height="15.0" fill="rgb(214,162,47)" rx="2" ry="2" /> |
|
<text text-anchor="" x="48.76" y="155.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-containerd/vendor/github.com/pkg/errors.callers (1 samples, 1.52%)</title><rect x="188.8" y="337" width="17.9" height="15.0" fill="rgb(244,60,9)" rx="2" ry="2" /> |
|
<text text-anchor="" x="191.79" 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-containerd/pkg/store/container.(*Container).Delete (2 samples, 3.03%)</title><rect x="135.2" y="401" width="35.7" height="15.0" fill="rgb(209,212,19)" rx="2" ry="2" /> |
|
<text text-anchor="" x="138.15" y="411.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>internal/poll.(*FD).Read (8 samples, 12.12%)</title><rect x="546.4" y="369" width="143.0" height="15.0" fill="rgb(220,39,17)" rx="2" ry="2" /> |
|
<text text-anchor="" x="549.36" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >internal/poll.(*FD..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>fmt.(*ss).advance (1 samples, 1.52%)</title><rect x="206.7" y="273" width="17.8" height="15.0" fill="rgb(236,62,34)" rx="2" ry="2" /> |
|
<text text-anchor="" x="209.67" 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>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containernetworking/cni/pkg/invoke.(*RawExec).ExecPlugin (1 samples, 1.52%)</title><rect x="457.0" y="321" width="17.8" height="15.0" fill="rgb(254,109,30)" rx="2" ry="2" /> |
|
<text text-anchor="" x="459.97" 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-containerd/vendor/google.golang.org/grpc.Invoke (1 samples, 1.52%)</title><rect x="170.9" y="353" width="17.9" height="15.0" fill="rgb(212,49,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="173.91" 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-containerd/vendor/github.com/pkg/errors.Wrapf (1 samples, 1.52%)</title><rect x="188.8" y="353" width="17.9" height="15.0" fill="rgb(246,1,17)" rx="2" ry="2" /> |
|
<text text-anchor="" x="191.79" 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.selectgo (1 samples, 1.52%)</title><rect x="260.3" y="241" width="17.9" height="15.0" fill="rgb(232,71,27)" rx="2" ry="2" /> |
|
<text text-anchor="" x="263.30" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.(*remoteReaderAt).ReadAt (1 samples, 1.52%)</title><rect x="331.8" y="305" width="17.9" height="15.0" fill="rgb(233,159,2)" rx="2" ry="2" /> |
|
<text text-anchor="" x="334.82" 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-containerd/vendor/google.golang.org/grpc/transport.(*http2Client).(github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc/transport.itemHandler)-fm (3 samples, 4.55%)</title><rect x="743.0" y="465" width="53.7" height="15.0" fill="rgb(235,116,6)" rx="2" ry="2" /> |
|
<text text-anchor="" x="746.03" y="475.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-containerd/pkg/server.(*criContainerdService).localResolve.func1 (2 samples, 3.03%)</title><rect x="278.2" y="369" width="35.7" height="15.0" fill="rgb(209,111,13)" rx="2" ry="2" /> |
|
<text text-anchor="" x="281.18" y="379.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.schedule (11 samples, 16.67%)</title><rect x="850.3" y="465" width="196.7" height="15.0" fill="rgb(208,80,33)" rx="2" ry="2" /> |
|
<text text-anchor="" x="853.30" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >runtime.schedule</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/golang.org/x/net/http2/hpack.(*Encoder).WriteField (1 samples, 1.52%)</title><rect x="778.8" y="433" width="17.9" height="15.0" fill="rgb(223,158,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="781.79" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.wakep (1 samples, 1.52%)</title><rect x="1029.1" y="433" width="17.9" height="15.0" fill="rgb(214,0,51)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1032.09" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.systemstack (1 samples, 1.52%)</title><rect x="421.2" y="257" width="17.9" height="15.0" fill="rgb(237,159,39)" rx="2" ry="2" /> |
|
<text text-anchor="" x="424.21" 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>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.sendRequest (1 samples, 1.52%)</title><rect x="117.3" y="289" width="17.9" height="15.0" fill="rgb(215,156,11)" rx="2" ry="2" /> |
|
<text text-anchor="" x="120.27" 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.Read (6 samples, 9.09%)</title><rect x="582.1" y="353" width="107.3" height="15.0" fill="rgb(244,61,26)" rx="2" ry="2" /> |
|
<text text-anchor="" x="585.12" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >syscall.Read</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.mstart1 (6 samples, 9.09%)</title><rect x="1064.8" y="481" width="107.3" height="15.0" fill="rgb(227,167,33)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1067.85" y="491.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>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.invoke (1 samples, 1.52%)</title><rect x="260.3" y="289" width="17.9" height="15.0" fill="rgb(243,178,14)" rx="2" ry="2" /> |
|
<text text-anchor="" x="263.30" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/pkg/server.(*instrumentedService).CreateContainer (6 samples, 9.09%)</title><rect x="27.9" y="433" width="107.3" height="15.0" fill="rgb(250,185,48)" rx="2" ry="2" /> |
|
<text text-anchor="" x="30.88" y="443.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>os/exec.(*Cmd).writerDescriptor.func1 (1 samples, 1.52%)</title><rect x="796.7" y="481" width="17.8" height="15.0" fill="rgb(211,25,13)" rx="2" ry="2" /> |
|
<text text-anchor="" x="799.67" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/pkg/store/container.(*statusStorage).Delete (2 samples, 3.03%)</title><rect x="135.2" y="385" width="35.7" height="15.0" fill="rgb(245,46,23)" rx="2" ry="2" /> |
|
<text text-anchor="" x="138.15" y="395.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>os/exec.(*Cmd).Run (1 samples, 1.52%)</title><rect x="457.0" y="305" width="17.8" height="15.0" fill="rgb(220,191,45)" rx="2" ry="2" /> |
|
<text text-anchor="" x="459.97" 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>os.(*file).close (1 samples, 1.52%)</title><rect x="439.1" y="353" width="17.9" height="15.0" fill="rgb(235,118,36)" rx="2" ry="2" /> |
|
<text text-anchor="" x="442.09" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.makemap (1 samples, 1.52%)</title><rect x="331.8" y="193" width="17.9" height="15.0" fill="rgb(219,204,27)" rx="2" ry="2" /> |
|
<text text-anchor="" x="334.82" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.(*remoteReaderAt).ReadAt (1 samples, 1.52%)</title><rect x="81.5" y="209" width="17.9" height="15.0" fill="rgb(240,50,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="84.52" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.(*Client).CreateLease (1 samples, 1.52%)</title><rect x="349.7" y="369" width="17.9" height="15.0" fill="rgb(252,224,7)" rx="2" ry="2" /> |
|
<text text-anchor="" x="352.70" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os.(*Process).wait (2 samples, 3.03%)</title><rect x="385.5" y="257" width="35.7" height="15.0" fill="rgb(241,133,44)" rx="2" ry="2" /> |
|
<text text-anchor="" x="388.45" y="267.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>os.(*Process).Wait (2 samples, 3.03%)</title><rect x="385.5" y="273" width="35.7" height="15.0" fill="rgb(225,119,20)" rx="2" ry="2" /> |
|
<text text-anchor="" x="388.45" y="283.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>runtime.(*mheap).alloc (1 samples, 1.52%)</title><rect x="117.3" y="65" width="17.9" height="15.0" fill="rgb(250,9,40)" rx="2" ry="2" /> |
|
<text text-anchor="" x="120.27" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/images.Manifest (1 samples, 1.52%)</title><rect x="296.1" y="289" width="17.8" height="15.0" fill="rgb(220,91,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="299.06" 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.newobject (1 samples, 1.52%)</title><rect x="421.2" y="305" width="17.9" height="15.0" fill="rgb(229,30,7)" rx="2" ry="2" /> |
|
<text text-anchor="" x="424.21" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>internal/poll.(*FD).Read (1 samples, 1.52%)</title><rect x="796.7" y="385" width="17.8" height="15.0" fill="rgb(239,203,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="799.67" 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-containerd/vendor/github.com/cri-o/ocicni/pkg/ocicni.(*cniNetwork).deleteFromNetwork (1 samples, 1.52%)</title><rect x="457.0" y="385" width="17.8" height="15.0" fill="rgb(236,32,50)" rx="2" ry="2" /> |
|
<text text-anchor="" x="459.97" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.(namespaceInterceptor).(github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.unary)-fm (1 samples, 1.52%)</title><rect x="260.3" y="321" width="17.9" height="15.0" fill="rgb(248,15,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="263.30" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.resetspinning (1 samples, 1.52%)</title><rect x="1029.1" y="449" width="17.9" height="15.0" fill="rgb(226,11,37)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1032.09" 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.morestack (1 samples, 1.52%)</title><rect x="1047.0" y="497" width="17.8" height="15.0" fill="rgb(227,39,2)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1049.97" 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-containerd/vendor/golang.org/x/net/http2/hpack.(*Encoder).searchTable (1 samples, 1.52%)</title><rect x="778.8" y="417" width="17.9" height="15.0" fill="rgb(232,141,40)" rx="2" ry="2" /> |
|
<text text-anchor="" x="781.79" 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.unlock (1 samples, 1.52%)</title><rect x="170.9" y="209" width="17.9" height="15.0" fill="rgb(232,147,34)" rx="2" ry="2" /> |
|
<text text-anchor="" x="173.91" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Syscall (1 samples, 1.52%)</title><rect x="796.7" y="337" width="17.8" height="15.0" fill="rgb(207,96,5)" rx="2" ry="2" /> |
|
<text text-anchor="" x="799.67" 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.copyBuffer (1 samples, 1.52%)</title><rect x="796.7" y="449" width="17.8" height="15.0" fill="rgb(234,196,50)" rx="2" ry="2" /> |
|
<text text-anchor="" x="799.67" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc/transport.(*http2Client).itemHandler (3 samples, 4.55%)</title><rect x="743.0" y="449" width="53.7" height="15.0" fill="rgb(231,92,30)" rx="2" ry="2" /> |
|
<text text-anchor="" x="746.03" y="459.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>runtime.futex (1 samples, 1.52%)</title><rect x="725.2" y="273" width="17.8" height="15.0" fill="rgb(221,185,18)" rx="2" ry="2" /> |
|
<text text-anchor="" x="728.15" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime._RuntimeService_StopPodSandbox_Handler (2 samples, 3.03%)</title><rect x="439.1" y="449" width="35.7" height="15.0" fill="rgb(230,215,31)" rx="2" ry="2" /> |
|
<text text-anchor="" x="442.09" y="459.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-containerd/vendor/github.com/containerd/containerd/images.HandlerFunc.Handle (1 samples, 1.52%)</title><rect x="296.1" y="257" width="17.8" height="15.0" fill="rgb(252,194,20)" rx="2" ry="2" /> |
|
<text text-anchor="" x="299.06" 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>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/images.Config (1 samples, 1.52%)</title><rect x="296.1" y="305" width="17.8" height="15.0" fill="rgb(235,184,19)" rx="2" ry="2" /> |
|
<text text-anchor="" x="299.06" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Wait4 (1 samples, 1.52%)</title><rect x="457.0" y="241" width="17.8" height="15.0" fill="rgb(219,8,17)" rx="2" ry="2" /> |
|
<text text-anchor="" x="459.97" 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-containerd/vendor/github.com/containerd/containerd/errdefs.FromGRPC (1 samples, 1.52%)</title><rect x="188.8" y="369" width="17.9" height="15.0" fill="rgb(221,209,43)" rx="2" ry="2" /> |
|
<text text-anchor="" x="191.79" 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 (2 samples, 3.03%)</title><rect x="135.2" y="305" width="35.7" height="15.0" fill="rgb(252,87,52)" rx="2" ry="2" /> |
|
<text text-anchor="" x="138.15" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.netpoll (5 samples, 7.58%)</title><rect x="903.9" y="433" width="89.4" height="15.0" fill="rgb(225,195,9)" rx="2" ry="2" /> |
|
<text text-anchor="" x="906.94" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >runtime.ne..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/pkg/server.(*criContainerdService).setupSandboxFiles (1 samples, 1.52%)</title><rect x="313.9" y="401" width="17.9" height="15.0" fill="rgb(207,92,54)" rx="2" ry="2" /> |
|
<text text-anchor="" x="316.94" 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-containerd/vendor/google.golang.org/grpc.sendRequest (1 samples, 1.52%)</title><rect x="63.6" y="97" width="17.9" height="15.0" fill="rgb(236,50,49)" rx="2" ry="2" /> |
|
<text text-anchor="" x="66.64" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.(*Client).NewContainer (2 samples, 3.03%)</title><rect x="331.8" y="401" width="35.8" height="15.0" fill="rgb(246,173,31)" rx="2" ry="2" /> |
|
<text text-anchor="" x="334.82" y="411.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-containerd/vendor/github.com/docker/docker/pkg/mount.parseMountTable (1 samples, 1.52%)</title><rect x="206.7" y="353" width="17.8" height="15.0" fill="rgb(230,208,32)" rx="2" ry="2" /> |
|
<text text-anchor="" x="209.67" 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, 1.52%)</title><rect x="760.9" y="353" width="17.9" height="15.0" fill="rgb(231,174,17)" rx="2" ry="2" /> |
|
<text text-anchor="" x="763.91" 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.systemstack (1 samples, 1.52%)</title><rect x="188.8" y="289" width="17.9" height="15.0" fill="rgb(216,180,34)" rx="2" ry="2" /> |
|
<text text-anchor="" x="191.79" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.reentersyscall (1 samples, 1.52%)</title><rect x="671.5" y="289" width="17.9" height="15.0" fill="rgb(252,80,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="674.52" 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-containerd/vendor/github.com/cri-o/ocicni/pkg/ocicni.(*cniNetworkPlugin).SetUpPod (4 samples, 6.06%)</title><rect x="367.6" y="401" width="71.5" height="15.0" fill="rgb(245,174,29)" rx="2" ry="2" /> |
|
<text text-anchor="" x="370.58" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.c..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os.(*Process).wait (1 samples, 1.52%)</title><rect x="457.0" y="257" width="17.8" height="15.0" fill="rgb(229,114,4)" rx="2" ry="2" /> |
|
<text text-anchor="" x="459.97" 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>bytes.(*Buffer).ReadFrom (1 samples, 1.52%)</title><rect x="796.7" y="433" width="17.8" height="15.0" fill="rgb(222,10,52)" rx="2" ry="2" /> |
|
<text text-anchor="" x="799.67" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/images.HandlerFunc.Handle (3 samples, 4.55%)</title><rect x="45.8" y="257" width="53.6" height="15.0" fill="rgb(229,182,41)" rx="2" ry="2" /> |
|
<text text-anchor="" x="48.76" y="267.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-containerd/pkg/server.(*criContainerdService).localResolve.func1.1 (2 samples, 3.03%)</title><rect x="278.2" y="353" width="35.7" height="15.0" fill="rgb(238,202,6)" rx="2" ry="2" /> |
|
<text text-anchor="" x="281.18" y="363.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.park_m (11 samples, 16.67%)</title><rect x="850.3" y="481" width="196.7" height="15.0" fill="rgb(208,41,24)" rx="2" ry="2" /> |
|
<text text-anchor="" x="853.30" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >runtime.park_m</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.notewakeup (1 samples, 1.52%)</title><rect x="671.5" y="241" width="17.9" height="15.0" fill="rgb(246,154,47)" rx="2" ry="2" /> |
|
<text text-anchor="" x="674.52" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Syscall6 (1 samples, 1.52%)</title><rect x="403.3" y="209" width="17.9" height="15.0" fill="rgb(243,17,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="406.33" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>context.(*valueCtx).Value (1 samples, 1.52%)</title><rect x="45.8" y="49" width="17.8" height="15.0" fill="rgb(230,185,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="48.76" 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>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc/transport.(*inFlow).onData (2 samples, 3.03%)</title><rect x="689.4" y="465" width="35.8" height="15.0" fill="rgb(208,75,29)" rx="2" ry="2" /> |
|
<text text-anchor="" x="692.39" y="475.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-containerd/pkg/store/container.NewContainer (1 samples, 1.52%)</title><rect x="27.9" y="401" width="17.9" height="15.0" fill="rgb(252,15,45)" rx="2" ry="2" /> |
|
<text text-anchor="" x="30.88" 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.callers (1 samples, 1.52%)</title><rect x="188.8" y="305" width="17.9" height="15.0" fill="rgb(219,13,20)" rx="2" ry="2" /> |
|
<text text-anchor="" x="191.79" 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, 1.52%)</title><rect x="814.5" y="481" width="17.9" height="15.0" fill="rgb(219,99,14)" rx="2" ry="2" /> |
|
<text text-anchor="" x="817.55" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.namespaceInterceptor.unary (1 samples, 1.52%)</title><rect x="349.7" y="305" width="17.9" height="15.0" fill="rgb(212,194,51)" rx="2" ry="2" /> |
|
<text text-anchor="" x="352.70" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.systemstack (1 samples, 1.52%)</title><rect x="671.5" y="273" width="17.9" height="15.0" fill="rgb(219,130,24)" rx="2" ry="2" /> |
|
<text text-anchor="" x="674.52" 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.StartProcess (1 samples, 1.52%)</title><rect x="367.6" y="273" width="17.9" height="15.0" fill="rgb(209,20,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="370.58" 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>regexp.(*bitState).shouldVisit (1 samples, 1.52%)</title><rect x="278.2" y="241" width="17.9" height="15.0" fill="rgb(231,55,19)" rx="2" ry="2" /> |
|
<text text-anchor="" x="281.18" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc/transport.(*http2Client).reader (15 samples, 22.73%)</title><rect x="474.8" y="497" width="268.2" height="15.0" fill="rgb(233,174,37)" rx="2" ry="2" /> |
|
<text text-anchor="" x="477.85" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/kubernetes-incubator/cri..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>internal/poll.(*FD).Write (1 samples, 1.52%)</title><rect x="760.9" y="385" width="17.9" height="15.0" fill="rgb(229,229,51)" rx="2" ry="2" /> |
|
<text text-anchor="" x="763.91" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/pkg/util.NormalizeImageRef (1 samples, 1.52%)</title><rect x="278.2" y="337" width="17.9" height="15.0" fill="rgb(249,197,22)" rx="2" ry="2" /> |
|
<text text-anchor="" x="281.18" 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-containerd/pkg/os.(*RealOS).CopyFile (1 samples, 1.52%)</title><rect x="313.9" y="385" width="17.9" height="15.0" fill="rgb(206,156,8)" rx="2" ry="2" /> |
|
<text text-anchor="" x="316.94" 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>bufio.(*Writer).Flush (2 samples, 3.03%)</title><rect x="743.0" y="433" width="35.8" height="15.0" fill="rgb(214,137,47)" rx="2" ry="2" /> |
|
<text text-anchor="" x="746.03" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >buf..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.gentraceback (1 samples, 1.52%)</title><rect x="188.8" y="257" width="17.9" height="15.0" fill="rgb(240,59,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="191.79" 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>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.WithNewSnapshot.func1 (3 samples, 4.55%)</title><rect x="45.8" y="369" width="53.6" height="15.0" fill="rgb(238,129,30)" rx="2" ry="2" /> |
|
<text text-anchor="" x="48.76" y="379.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-containerd/vendor/github.com/containerd/containerd/images.Manifest (3 samples, 4.55%)</title><rect x="45.8" y="305" width="53.6" height="15.0" fill="rgb(223,47,24)" rx="2" ry="2" /> |
|
<text text-anchor="" x="48.76" y="315.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-containerd/vendor/github.com/cri-o/ocicni/pkg/ocicni.(*cniNetworkPlugin).TearDownPod (1 samples, 1.52%)</title><rect x="457.0" y="401" width="17.8" height="15.0" fill="rgb(218,110,13)" rx="2" ry="2" /> |
|
<text text-anchor="" x="459.97" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>io.Copy (1 samples, 1.52%)</title><rect x="796.7" y="465" width="17.8" height="15.0" fill="rgb(213,110,11)" rx="2" ry="2" /> |
|
<text text-anchor="" x="799.67" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.goready.func1 (1 samples, 1.52%)</title><rect x="725.2" y="369" width="17.8" height="15.0" fill="rgb(249,95,17)" rx="2" ry="2" /> |
|
<text text-anchor="" x="728.15" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.futex (1 samples, 1.52%)</title><rect x="671.5" y="209" width="17.9" height="15.0" fill="rgb(231,204,52)" rx="2" ry="2" /> |
|
<text text-anchor="" x="674.52" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/golang.org/x/net/http2.readFrameHeader (11 samples, 16.67%)</title><rect x="492.7" y="465" width="196.7" height="15.0" fill="rgb(226,167,8)" rx="2" ry="2" /> |
|
<text text-anchor="" x="495.73" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/kubernetes-inc..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/images.(*Image).RootFS (3 samples, 4.55%)</title><rect x="45.8" y="353" width="53.6" height="15.0" fill="rgb(249,212,43)" rx="2" ry="2" /> |
|
<text text-anchor="" x="48.76" y="363.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>runtime.copystack (1 samples, 1.52%)</title><rect x="1047.0" y="465" width="17.8" height="15.0" fill="rgb(222,162,20)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1049.97" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os.(*File).Write (1 samples, 1.52%)</title><rect x="313.9" y="321" width="17.9" height="15.0" fill="rgb(219,11,41)" rx="2" ry="2" /> |
|
<text text-anchor="" x="316.94" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.Invoke (2 samples, 3.03%)</title><rect x="45.8" y="161" width="35.7" height="15.0" fill="rgb(222,210,29)" rx="2" ry="2" /> |
|
<text text-anchor="" x="48.76" y="171.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-containerd/vendor/github.com/containerd/containerd.(namespaceInterceptor).(github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.unary)-fm (1 samples, 1.52%)</title><rect x="349.7" y="321" width="17.9" height="15.0" fill="rgb(226,147,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="352.70" 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-containerd/pkg/server.(*criContainerdService).CreateContainer (6 samples, 9.09%)</title><rect x="27.9" y="417" width="107.3" height="15.0" fill="rgb(248,141,43)" rx="2" ry="2" /> |
|
<text text-anchor="" x="30.88" y="427.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>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/cri-o/ocicni/pkg/ocicni.(*cniNetwork).addToNetwork (4 samples, 6.06%)</title><rect x="367.6" y="385" width="71.5" height="15.0" fill="rgb(251,131,27)" rx="2" ry="2" /> |
|
<text text-anchor="" x="370.58" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.c..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.chansend (1 samples, 1.52%)</title><rect x="725.2" y="433" width="17.8" height="15.0" fill="rgb(227,70,26)" rx="2" ry="2" /> |
|
<text text-anchor="" x="728.15" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>io/ioutil.TempFile (1 samples, 1.52%)</title><rect x="27.9" y="321" width="17.9" height="15.0" fill="rgb(242,153,17)" rx="2" ry="2" /> |
|
<text text-anchor="" x="30.88" 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>os.(*File).readdirnames (1 samples, 1.52%)</title><rect x="224.5" y="353" width="17.9" height="15.0" fill="rgb(221,54,21)" rx="2" ry="2" /> |
|
<text text-anchor="" x="227.55" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.(*randomEnum).next (1 samples, 1.52%)</title><rect x="868.2" y="449" width="17.9" height="15.0" fill="rgb(243,71,8)" rx="2" ry="2" /> |
|
<text text-anchor="" x="871.18" 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-containerd/vendor/github.com/containerd/containerd/images.Walk (1 samples, 1.52%)</title><rect x="296.1" y="273" width="17.8" height="15.0" fill="rgb(248,209,6)" rx="2" ry="2" /> |
|
<text text-anchor="" x="299.06" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.SetFinalizer (1 samples, 1.52%)</title><rect x="439.1" y="337" width="17.9" height="15.0" fill="rgb(220,19,8)" rx="2" ry="2" /> |
|
<text text-anchor="" x="442.09" 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-containerd/vendor/github.com/containerd/containerd.namespaceInterceptor.stream (1 samples, 1.52%)</title><rect x="331.8" y="241" width="17.9" height="15.0" fill="rgb(228,185,35)" rx="2" ry="2" /> |
|
<text text-anchor="" x="334.82" 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-containerd/vendor/google.golang.org/grpc.sendRequest (1 samples, 1.52%)</title><rect x="170.9" y="289" width="17.9" height="15.0" fill="rgb(224,154,24)" rx="2" ry="2" /> |
|
<text text-anchor="" x="173.91" 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-containerd/vendor/google.golang.org/grpc/transport.(*http2Client).handleData (2 samples, 3.03%)</title><rect x="689.4" y="481" width="35.8" height="15.0" fill="rgb(210,81,54)" rx="2" ry="2" /> |
|
<text text-anchor="" x="692.39" y="491.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-containerd/vendor/k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime._RuntimeService_CreateContainer_Handler (6 samples, 9.09%)</title><rect x="27.9" y="449" width="107.3" height="15.0" fill="rgb(206,203,42)" rx="2" ry="2" /> |
|
<text text-anchor="" x="30.88" y="459.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.goready (1 samples, 1.52%)</title><rect x="725.2" y="401" width="17.8" height="15.0" fill="rgb(205,36,19)" rx="2" ry="2" /> |
|
<text text-anchor="" x="728.15" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.deferreturn (1 samples, 1.52%)</title><rect x="564.2" y="353" width="17.9" height="15.0" fill="rgb(234,48,15)" rx="2" ry="2" /> |
|
<text text-anchor="" x="567.24" 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.Open (1 samples, 1.52%)</title><rect x="27.9" y="289" width="17.9" height="15.0" fill="rgb(221,196,38)" rx="2" ry="2" /> |
|
<text text-anchor="" x="30.88" 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.(*File).Readdirnames (1 samples, 1.52%)</title><rect x="224.5" y="369" width="17.9" height="15.0" fill="rgb(217,15,45)" rx="2" ry="2" /> |
|
<text text-anchor="" x="227.55" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/golang.org/x/net/http2/hpack.(*headerFieldTable).search (1 samples, 1.52%)</title><rect x="778.8" y="401" width="17.9" height="15.0" fill="rgb(235,66,27)" rx="2" ry="2" /> |
|
<text text-anchor="" x="781.79" 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-containerd/vendor/github.com/containerd/containerd.(*Client).Subscribe.func1 (1 samples, 1.52%)</title><rect x="10.0" y="497" width="17.9" height="15.0" fill="rgb(241,133,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.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.gentraceback (1 samples, 1.52%)</title><rect x="1047.0" y="449" width="17.8" height="15.0" fill="rgb(227,212,44)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1049.97" 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-containerd/vendor/google.golang.org/grpc.(*Server).handleStream (25 samples, 37.88%)</title><rect x="27.9" y="481" width="446.9" height="15.0" fill="rgb(235,119,3)" rx="2" ry="2" /> |
|
<text text-anchor="" x="30.88" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/kubernetes-incubator/cri-containerd/vendor/google...</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/pkg/os.RealOS.CopyFile (1 samples, 1.52%)</title><rect x="313.9" y="369" width="17.9" height="15.0" fill="rgb(219,100,11)" rx="2" ry="2" /> |
|
<text text-anchor="" x="316.94" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>fmt.(*ss).doScanf (1 samples, 1.52%)</title><rect x="206.7" y="289" width="17.8" height="15.0" fill="rgb(225,198,50)" rx="2" ry="2" /> |
|
<text text-anchor="" x="209.67" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Syscall (6 samples, 9.09%)</title><rect x="582.1" y="321" width="107.3" height="15.0" fill="rgb(213,141,42)" rx="2" ry="2" /> |
|
<text text-anchor="" x="585.12" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >syscall.Syscall</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/namespaces.WithNamespace (1 samples, 1.52%)</title><rect x="349.7" y="289" width="17.9" height="15.0" fill="rgb(219,26,40)" rx="2" ry="2" /> |
|
<text text-anchor="" x="352.70" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.memclrNoHeapPointers (1 samples, 1.52%)</title><rect x="117.3" y="49" width="17.9" height="15.0" fill="rgb(207,181,18)" rx="2" ry="2" /> |
|
<text text-anchor="" x="120.27" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.invoke (1 samples, 1.52%)</title><rect x="170.9" y="305" width="17.9" height="15.0" fill="rgb(224,159,11)" rx="2" ry="2" /> |
|
<text text-anchor="" x="173.91" 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-containerd/vendor/google.golang.org/grpc/transport.(*http2Client).NewStream (1 samples, 1.52%)</title><rect x="260.3" y="273" width="17.9" height="15.0" fill="rgb(252,180,27)" rx="2" ry="2" /> |
|
<text text-anchor="" x="263.30" 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.makeslice (1 samples, 1.52%)</title><rect x="224.5" y="337" width="17.9" height="15.0" fill="rgb(243,40,35)" rx="2" ry="2" /> |
|
<text text-anchor="" x="227.55" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.mallocgc (1 samples, 1.52%)</title><rect x="421.2" y="289" width="17.9" height="15.0" fill="rgb(229,7,37)" rx="2" ry="2" /> |
|
<text text-anchor="" x="424.21" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.selectgo (1 samples, 1.52%)</title><rect x="170.9" y="241" width="17.9" height="15.0" fill="rgb(230,5,6)" rx="2" ry="2" /> |
|
<text text-anchor="" x="173.91" 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-containerd/vendor/github.com/containerd/containerd/namespaces.WithNamespace (1 samples, 1.52%)</title><rect x="45.8" y="113" width="17.8" height="15.0" fill="rgb(215,79,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="48.76" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>regexp.(*Regexp).doExecute (1 samples, 1.52%)</title><rect x="278.2" y="273" width="17.9" height="15.0" fill="rgb(232,46,24)" rx="2" ry="2" /> |
|
<text text-anchor="" x="281.18" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.protoCodec.Marshal (1 samples, 1.52%)</title><rect x="117.3" y="241" width="17.9" height="15.0" fill="rgb(232,61,44)" rx="2" ry="2" /> |
|
<text text-anchor="" x="120.27" 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-containerd/vendor/google.golang.org/grpc/metadata.FromOutgoingContext (1 samples, 1.52%)</title><rect x="45.8" y="81" width="17.8" height="15.0" fill="rgb(206,167,54)" rx="2" ry="2" /> |
|
<text text-anchor="" x="48.76" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.mapaccess1_faststr (1 samples, 1.52%)</title><rect x="778.8" y="385" width="17.9" height="15.0" fill="rgb(215,54,54)" rx="2" ry="2" /> |
|
<text text-anchor="" x="781.79" 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-containerd/vendor/google.golang.org/grpc/transport.newHTTP2Client.func3 (3 samples, 4.55%)</title><rect x="743.0" y="497" width="53.7" height="15.0" fill="rgb(252,54,9)" rx="2" ry="2" /> |
|
<text text-anchor="" x="746.03" y="507.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-containerd/pkg/containerd/opts.WithNewSnapshot.func1 (3 samples, 4.55%)</title><rect x="45.8" y="385" width="53.6" height="15.0" fill="rgb(223,191,1)" rx="2" ry="2" /> |
|
<text text-anchor="" x="48.76" y="395.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-containerd/vendor/github.com/containerd/containerd/content.ReadBlob (3 samples, 4.55%)</title><rect x="45.8" y="225" width="53.6" height="15.0" fill="rgb(210,215,13)" rx="2" ry="2" /> |
|
<text text-anchor="" x="48.76" y="235.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>runtime.efaceeq (1 samples, 1.52%)</title><rect x="45.8" y="33" width="17.8" height="15.0" fill="rgb(224,47,34)" rx="2" ry="2" /> |
|
<text text-anchor="" x="48.76" 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>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containernetworking/cni/libcni.(*CNIConfig).DelNetworkList (1 samples, 1.52%)</title><rect x="457.0" y="369" width="17.8" height="15.0" fill="rgb(212,225,31)" rx="2" ry="2" /> |
|
<text text-anchor="" x="459.97" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.(*mSpanList).insertBack (1 samples, 1.52%)</title><rect x="421.2" y="193" width="17.9" height="15.0" fill="rgb(241,207,35)" rx="2" ry="2" /> |
|
<text text-anchor="" x="424.21" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.futexwakeup (1 samples, 1.52%)</title><rect x="1029.1" y="385" width="17.9" height="15.0" fill="rgb(234,72,25)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1032.09" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.(*container).Delete (1 samples, 1.52%)</title><rect x="260.3" y="401" width="17.9" height="15.0" fill="rgb(216,23,3)" rx="2" ry="2" /> |
|
<text text-anchor="" x="263.30" 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.Unmarshal (1 samples, 1.52%)</title><rect x="296.1" y="225" width="17.8" height="15.0" fill="rgb(210,10,26)" rx="2" ry="2" /> |
|
<text text-anchor="" x="299.06" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.Callers (1 samples, 1.52%)</title><rect x="188.8" y="321" width="17.9" height="15.0" fill="rgb(206,103,30)" rx="2" ry="2" /> |
|
<text text-anchor="" x="191.79" 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-containerd/vendor/github.com/containerd/containerd/images.Manifest.func1 (1 samples, 1.52%)</title><rect x="296.1" y="241" width="17.8" height="15.0" fill="rgb(220,211,33)" rx="2" ry="2" /> |
|
<text text-anchor="" x="299.06" 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/exec.(*Cmd).Start.func1 (1 samples, 1.52%)</title><rect x="796.7" y="497" width="17.8" height="15.0" fill="rgb(228,201,40)" rx="2" ry="2" /> |
|
<text text-anchor="" x="799.67" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Write (1 samples, 1.52%)</title><rect x="760.9" y="369" width="17.9" height="15.0" fill="rgb(218,122,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="763.91" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/docker/distribution/reference.ParseNormalizedNamed (1 samples, 1.52%)</title><rect x="278.2" y="321" width="17.9" height="15.0" fill="rgb(252,181,37)" rx="2" ry="2" /> |
|
<text text-anchor="" x="281.18" 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>regexp.(*machine).backtrack (1 samples, 1.52%)</title><rect x="278.2" y="257" width="17.9" height="15.0" fill="rgb(221,84,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="281.18" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.epollwait (5 samples, 7.58%)</title><rect x="903.9" y="417" width="89.4" height="15.0" fill="rgb(218,26,21)" rx="2" ry="2" /> |
|
<text text-anchor="" x="906.94" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >runtime.ep..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/api/services/containers/v1.(*containersClient).Create (1 samples, 1.52%)</title><rect x="117.3" y="369" width="17.9" height="15.0" fill="rgb(212,49,10)" rx="2" ry="2" /> |
|
<text text-anchor="" x="120.27" 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.isSpace (1 samples, 1.52%)</title><rect x="206.7" y="257" width="17.8" height="15.0" fill="rgb(242,189,50)" rx="2" ry="2" /> |
|
<text text-anchor="" x="209.67" 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>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/namespaces.withGRPCNamespaceHeader (1 samples, 1.52%)</title><rect x="45.8" y="97" width="17.8" height="15.0" fill="rgb(211,118,9)" rx="2" ry="2" /> |
|
<text text-anchor="" x="48.76" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.systemstack (1 samples, 1.52%)</title><rect x="725.2" y="385" width="17.8" height="15.0" fill="rgb(236,222,0)" rx="2" ry="2" /> |
|
<text text-anchor="" x="728.15" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/pkg/store/sandbox.(*Store).Delete (1 samples, 1.52%)</title><rect x="242.4" y="401" width="17.9" height="15.0" fill="rgb(212,55,40)" rx="2" ry="2" /> |
|
<text text-anchor="" x="245.42" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/images.Walk (3 samples, 4.55%)</title><rect x="45.8" y="289" width="53.6" height="15.0" fill="rgb(208,2,1)" rx="2" ry="2" /> |
|
<text text-anchor="" x="48.76" y="299.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.Lstat (2 samples, 3.03%)</title><rect x="135.2" y="337" width="35.7" height="15.0" fill="rgb(215,113,41)" rx="2" ry="2" /> |
|
<text text-anchor="" x="138.15" y="347.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>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/docker/docker/pkg/mount.parseInfoFile (1 samples, 1.52%)</title><rect x="206.7" y="337" width="17.8" height="15.0" fill="rgb(207,157,14)" rx="2" ry="2" /> |
|
<text text-anchor="" x="209.67" 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.futex (1 samples, 1.52%)</title><rect x="1029.1" y="369" width="17.9" height="15.0" fill="rgb(213,5,9)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1032.09" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>io.ReadAtLeast (10 samples, 15.15%)</title><rect x="510.6" y="433" width="178.8" height="15.0" fill="rgb(225,110,37)" rx="2" ry="2" /> |
|
<text text-anchor="" x="513.61" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >io.ReadAtLeast</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>all (66 samples, 100%)</title><rect x="10.0" y="513" width="1180.0" height="15.0" fill="rgb(209,129,51)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.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-containerd/vendor/github.com/containerd/containerd/content.ReadBlob (1 samples, 1.52%)</title><rect x="331.8" y="321" width="17.9" height="15.0" fill="rgb(208,74,51)" rx="2" ry="2" /> |
|
<text text-anchor="" x="334.82" 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.timerproc (1 samples, 1.52%)</title><rect x="1172.1" y="497" width="17.9" height="15.0" fill="rgb(233,81,11)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1175.12" 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.findObject (1 samples, 1.52%)</title><rect x="439.1" y="321" width="17.9" height="15.0" fill="rgb(249,72,37)" rx="2" ry="2" /> |
|
<text text-anchor="" x="442.09" 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-containerd/vendor/google.golang.org/grpc/transport.(*http2Client).Write (1 samples, 1.52%)</title><rect x="63.6" y="81" width="17.9" height="15.0" fill="rgb(211,31,36)" rx="2" ry="2" /> |
|
<text text-anchor="" x="66.64" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc/transport.(*http2Client).handlePing (1 samples, 1.52%)</title><rect x="725.2" y="481" width="17.8" height="15.0" fill="rgb(207,52,2)" rx="2" ry="2" /> |
|
<text text-anchor="" x="728.15" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.BytePtrFromString (1 samples, 1.52%)</title><rect x="367.6" y="193" width="17.9" height="15.0" fill="rgb(207,180,24)" rx="2" ry="2" /> |
|
<text text-anchor="" x="370.58" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os.(*File).Close (1 samples, 1.52%)</title><rect x="439.1" y="369" width="17.9" height="15.0" fill="rgb(252,12,35)" rx="2" ry="2" /> |
|
<text text-anchor="" x="442.09" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/pkg/server.(*instrumentedService).RemoveContainer (6 samples, 9.09%)</title><rect x="135.2" y="433" width="107.2" height="15.0" fill="rgb(208,29,6)" rx="2" ry="2" /> |
|
<text text-anchor="" x="138.15" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/ku..</text> |
|
</g> |
|
</svg> |
|
|