|
<?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="530" onload="init(evt)" viewBox="0 0 1200 530" 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="530.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="513" 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="513" 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>io.copyBuffer (1 samples, 1.43%)</title><rect x="751.7" y="417" width="16.9" height="15.0" fill="rgb(254,137,31)" rx="2" ry="2" /> |
|
<text text-anchor="" x="754.71" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/pkg/server/io.(*ContainerIO).Pipe.func2 (1 samples, 1.43%)</title><rect x="60.6" y="465" width="16.8" height="15.0" fill="rgb(235,58,45)" rx="2" ry="2" /> |
|
<text text-anchor="" x="63.57" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.(*mcache).nextFree.func1 (1 samples, 1.43%)</title><rect x="414.6" y="129" width="16.8" height="15.0" fill="rgb(236,23,22)" rx="2" ry="2" /> |
|
<text text-anchor="" x="417.57" 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.stream (1 samples, 1.43%)</title><rect x="279.7" y="129" width="16.9" height="15.0" fill="rgb(235,100,41)" rx="2" ry="2" /> |
|
<text text-anchor="" x="282.71" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>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.43%)</title><rect x="212.3" y="289" width="16.8" height="15.0" fill="rgb(209,99,49)" rx="2" ry="2" /> |
|
<text text-anchor="" x="215.29" 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/k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime._RuntimeService_CreateContainer_Handler (4 samples, 5.71%)</title><rect x="77.4" y="417" width="67.5" height="15.0" fill="rgb(238,184,22)" rx="2" ry="2" /> |
|
<text text-anchor="" x="80.43" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github...</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.(namespaceInterceptor).(github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.unary)-fm (1 samples, 1.43%)</title><rect x="397.7" y="289" width="16.9" height="15.0" fill="rgb(234,76,0)" rx="2" ry="2" /> |
|
<text text-anchor="" x="400.71" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.topofstack (1 samples, 1.43%)</title><rect x="364.0" y="33" width="16.9" height="15.0" fill="rgb(207,164,44)" rx="2" ry="2" /> |
|
<text text-anchor="" x="367.00" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/pkg/store/container.(*Container).Delete (1 samples, 1.43%)</title><rect x="144.9" y="369" width="16.8" height="15.0" fill="rgb(220,68,25)" rx="2" ry="2" /> |
|
<text text-anchor="" x="147.86" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.notesleep (4 samples, 5.71%)</title><rect x="954.0" y="385" width="67.4" height="15.0" fill="rgb(232,161,8)" rx="2" ry="2" /> |
|
<text text-anchor="" x="957.00" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >runtime..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*sliceEncoder).encode (1 samples, 1.43%)</title><rect x="128.0" y="193" width="16.9" height="15.0" fill="rgb(240,44,41)" rx="2" ry="2" /> |
|
<text text-anchor="" x="131.00" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.newproc (1 samples, 1.43%)</title><rect x="330.3" y="241" width="16.8" height="15.0" fill="rgb(240,203,29)" rx="2" ry="2" /> |
|
<text text-anchor="" x="333.29" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*ptrEncoder).encode (1 samples, 1.43%)</title><rect x="128.0" y="257" width="16.9" height="15.0" fill="rgb(233,81,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="131.00" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/api/services/content/v1.(*contentReadClient).Recv (1 samples, 1.43%)</title><rect x="94.3" y="161" width="16.8" height="15.0" fill="rgb(206,174,9)" rx="2" ry="2" /> |
|
<text text-anchor="" x="97.29" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*mapEncoder).encode (1 samples, 1.43%)</title><rect x="313.4" y="225" width="16.9" height="15.0" fill="rgb(235,104,2)" rx="2" ry="2" /> |
|
<text text-anchor="" x="316.43" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.WithSpec.func1 (1 samples, 1.43%)</title><rect x="128.0" y="353" width="16.9" height="15.0" fill="rgb(253,7,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="131.00" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.(namespaceInterceptor).(github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.unary)-fm (1 samples, 1.43%)</title><rect x="246.0" y="113" width="16.9" height="15.0" fill="rgb(219,223,34)" rx="2" ry="2" /> |
|
<text text-anchor="" x="249.00" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.gosweepone.func1 (1 samples, 1.43%)</title><rect x="802.3" y="417" width="16.8" height="15.0" fill="rgb(241,33,1)" rx="2" ry="2" /> |
|
<text text-anchor="" x="805.29" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/golang.org/x/net/context.WithValue (1 samples, 1.43%)</title><rect x="195.4" y="225" width="16.9" height="15.0" fill="rgb(253,21,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="198.43" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc/transport.(*http2Client).newStream (1 samples, 1.43%)</title><rect x="111.1" y="241" width="16.9" height="15.0" fill="rgb(249,224,54)" rx="2" ry="2" /> |
|
<text text-anchor="" x="114.14" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/docker/docker/pkg/mount.parseInfoFile (2 samples, 2.86%)</title><rect x="161.7" y="305" width="33.7" height="15.0" fill="rgb(253,106,30)" rx="2" ry="2" /> |
|
<text text-anchor="" x="164.71" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gi..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.WithNewSnapshot.func1 (1 samples, 1.43%)</title><rect x="279.7" y="337" width="16.9" height="15.0" fill="rgb(247,178,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="282.71" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>fmt.(*ss).convertString (1 samples, 1.43%)</title><rect x="161.7" y="225" width="16.9" height="15.0" fill="rgb(229,97,24)" rx="2" ry="2" /> |
|
<text text-anchor="" x="164.71" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os.rename (1 samples, 1.43%)</title><rect x="144.9" y="321" width="16.8" height="15.0" fill="rgb(227,184,15)" rx="2" ry="2" /> |
|
<text text-anchor="" x="147.86" 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.(*arrayEncoder).(encoding/json.encode)-fm (1 samples, 1.43%)</title><rect x="128.0" y="177" width="16.9" height="15.0" fill="rgb(222,103,9)" rx="2" ry="2" /> |
|
<text text-anchor="" x="131.00" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.invoke (1 samples, 1.43%)</title><rect x="246.0" y="81" width="16.9" height="15.0" fill="rgb(250,41,40)" rx="2" ry="2" /> |
|
<text text-anchor="" x="249.00" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/pkg/server.(*instrumentedService).RemovePodSandbox (2 samples, 2.86%)</title><rect x="195.4" y="401" width="33.7" height="15.0" fill="rgb(213,6,25)" rx="2" ry="2" /> |
|
<text text-anchor="" x="198.43" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gi..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.mapaccess1 (1 samples, 1.43%)</title><rect x="734.9" y="353" width="16.8" height="15.0" fill="rgb(205,106,6)" rx="2" ry="2" /> |
|
<text text-anchor="" x="737.86" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/images.Manifest.func1 (1 samples, 1.43%)</title><rect x="246.0" y="209" width="16.9" height="15.0" fill="rgb(222,190,24)" rx="2" ry="2" /> |
|
<text text-anchor="" x="249.00" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/images.HandlerFunc.Handle (1 samples, 1.43%)</title><rect x="246.0" y="225" width="16.9" height="15.0" fill="rgb(236,113,36)" rx="2" ry="2" /> |
|
<text text-anchor="" x="249.00" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.reentersyscall (2 samples, 2.86%)</title><rect x="633.7" y="257" width="33.7" height="15.0" fill="rgb(245,79,25)" rx="2" ry="2" /> |
|
<text text-anchor="" x="636.71" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ru..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.futex (2 samples, 2.86%)</title><rect x="633.7" y="177" width="33.7" height="15.0" fill="rgb(215,57,23)" rx="2" ry="2" /> |
|
<text text-anchor="" x="636.71" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ru..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.Marshal (1 samples, 1.43%)</title><rect x="128.0" y="321" width="16.9" height="15.0" fill="rgb(205,98,29)" rx="2" ry="2" /> |
|
<text text-anchor="" x="131.00" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.Invoke (1 samples, 1.43%)</title><rect x="212.3" y="305" width="16.8" height="15.0" fill="rgb(223,17,8)" rx="2" ry="2" /> |
|
<text text-anchor="" x="215.29" 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>reflect.MakeSlice (1 samples, 1.43%)</title><rect x="364.0" y="161" width="16.9" height="15.0" fill="rgb(209,66,42)" rx="2" ry="2" /> |
|
<text text-anchor="" x="367.00" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*encodeState).marshal (1 samples, 1.43%)</title><rect x="313.4" y="273" width="16.9" height="15.0" fill="rgb(220,23,44)" rx="2" ry="2" /> |
|
<text text-anchor="" x="316.43" 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.mapassign_fast32 (1 samples, 1.43%)</title><rect x="397.7" y="225" width="16.9" height="15.0" fill="rgb(246,104,42)" rx="2" ry="2" /> |
|
<text text-anchor="" x="400.71" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.gentraceback (1 samples, 1.43%)</title><rect x="1055.1" y="417" width="16.9" height="15.0" fill="rgb(235,136,43)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1058.14" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.(*image).Config (1 samples, 1.43%)</title><rect x="246.0" y="305" width="16.9" height="15.0" fill="rgb(254,144,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="249.00" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.(namespaceInterceptor).(github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.stream)-fm (1 samples, 1.43%)</title><rect x="279.7" y="145" width="16.9" height="15.0" fill="rgb(213,207,32)" rx="2" ry="2" /> |
|
<text text-anchor="" x="282.71" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.mcall (14 samples, 20.00%)</title><rect x="819.1" y="465" width="236.0" height="15.0" fill="rgb(243,105,24)" rx="2" ry="2" /> |
|
<text text-anchor="" x="822.14" y="475.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/k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime._RuntimeService_RunPodSandbox_Handler (10 samples, 14.29%)</title><rect x="229.1" y="417" width="168.6" height="15.0" fill="rgb(222,49,25)" rx="2" ry="2" /> |
|
<text text-anchor="" x="232.14" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/kubernetes..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.systemstack (1 samples, 1.43%)</title><rect x="684.3" y="353" width="16.8" height="15.0" fill="rgb(207,193,27)" rx="2" ry="2" /> |
|
<text text-anchor="" x="687.29" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/content.ReadBlob (1 samples, 1.43%)</title><rect x="279.7" y="209" width="16.9" height="15.0" fill="rgb(229,96,50)" rx="2" ry="2" /> |
|
<text text-anchor="" x="282.71" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc/transport.newHTTP2Server.func1 (1 samples, 1.43%)</title><rect x="734.9" y="465" width="16.8" height="15.0" fill="rgb(217,139,8)" rx="2" ry="2" /> |
|
<text text-anchor="" x="737.86" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.morestack (1 samples, 1.43%)</title><rect x="1055.1" y="465" width="16.9" height="15.0" fill="rgb(213,40,13)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1058.14" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/pkg/server.(*criContainerdService).stopSandboxContainer (4 samples, 5.71%)</title><rect x="397.7" y="369" width="67.4" height="15.0" fill="rgb(243,226,4)" rx="2" ry="2" /> |
|
<text text-anchor="" x="400.71" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github...</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.recv (1 samples, 1.43%)</title><rect x="26.9" y="305" width="16.8" height="15.0" fill="rgb(252,216,30)" rx="2" ry="2" /> |
|
<text text-anchor="" x="29.86" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.systemstack (1 samples, 1.43%)</title><rect x="414.6" y="145" width="16.8" height="15.0" fill="rgb(241,27,41)" rx="2" ry="2" /> |
|
<text text-anchor="" x="417.57" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.checkdead (1 samples, 1.43%)</title><rect x="937.1" y="369" width="16.9" height="15.0" fill="rgb(216,132,31)" rx="2" ry="2" /> |
|
<text text-anchor="" x="940.14" 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.Invoke (1 samples, 1.43%)</title><rect x="195.4" y="305" width="16.9" height="15.0" fill="rgb(219,57,54)" rx="2" ry="2" /> |
|
<text text-anchor="" x="198.43" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.(*mcentral).grow (1 samples, 1.43%)</title><rect x="414.6" y="81" width="16.8" height="15.0" fill="rgb(248,21,2)" rx="2" ry="2" /> |
|
<text text-anchor="" x="417.57" 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>syscall.Stat (1 samples, 1.43%)</title><rect x="229.1" y="305" width="16.9" height="15.0" fill="rgb(208,217,28)" rx="2" ry="2" /> |
|
<text text-anchor="" x="232.14" 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.gosweepone (1 samples, 1.43%)</title><rect x="802.3" y="449" width="16.8" height="15.0" fill="rgb(226,44,10)" rx="2" ry="2" /> |
|
<text text-anchor="" x="805.29" 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/k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime._RuntimeService_StopPodSandbox_Handler (4 samples, 5.71%)</title><rect x="397.7" y="417" width="67.4" height="15.0" fill="rgb(231,134,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="400.71" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github...</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/pkg/server.(*criContainerdService).generateContainerSpec (1 samples, 1.43%)</title><rect x="77.4" y="369" width="16.9" height="15.0" fill="rgb(205,208,2)" rx="2" ry="2" /> |
|
<text text-anchor="" x="80.43" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*structEncoder).encode (1 samples, 1.43%)</title><rect x="128.0" y="129" width="16.9" height="15.0" fill="rgb(208,4,3)" rx="2" ry="2" /> |
|
<text text-anchor="" x="131.00" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>fmt.(*ss).getRune (1 samples, 1.43%)</title><rect x="161.7" y="193" width="16.9" height="15.0" fill="rgb(234,225,48)" rx="2" ry="2" /> |
|
<text text-anchor="" x="164.71" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os/signal.signal_recv (2 samples, 2.86%)</title><rect x="768.6" y="449" width="33.7" height="15.0" fill="rgb(224,226,43)" rx="2" ry="2" /> |
|
<text text-anchor="" x="771.57" y="459.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/golang.org/x/net/http2.NewFramer.func1 (1 samples, 1.43%)</title><rect x="515.7" y="433" width="16.9" height="15.0" fill="rgb(233,76,5)" rx="2" ry="2" /> |
|
<text text-anchor="" x="518.71" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.newobject (1 samples, 1.43%)</title><rect x="111.1" y="225" width="16.9" height="15.0" fill="rgb(248,222,45)" rx="2" ry="2" /> |
|
<text text-anchor="" x="114.14" 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.startm (1 samples, 1.43%)</title><rect x="684.3" y="289" width="16.8" height="15.0" fill="rgb(205,130,48)" rx="2" ry="2" /> |
|
<text text-anchor="" x="687.29" 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/containernetworking/cni/pkg/version.NewResult (3 samples, 4.29%)</title><rect x="347.1" y="289" width="50.6" height="15.0" fill="rgb(245,11,17)" rx="2" ry="2" /> |
|
<text text-anchor="" x="350.14" 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>runtime.systemstack (1 samples, 1.43%)</title><rect x="802.3" y="433" width="16.8" height="15.0" fill="rgb(247,177,15)" rx="2" ry="2" /> |
|
<text text-anchor="" x="805.29" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Syscall6 (1 samples, 1.43%)</title><rect x="144.9" y="273" width="16.8" height="15.0" fill="rgb(240,2,6)" rx="2" ry="2" /> |
|
<text text-anchor="" x="147.86" 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.getitab (1 samples, 1.43%)</title><rect x="94.3" y="65" width="16.8" height="15.0" fill="rgb(237,205,14)" rx="2" ry="2" /> |
|
<text text-anchor="" x="97.29" 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/pkg/server.(*criContainerdService).localResolve (1 samples, 1.43%)</title><rect x="246.0" y="353" width="16.9" height="15.0" fill="rgb(228,209,7)" rx="2" ry="2" /> |
|
<text text-anchor="" x="249.00" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*decodeState).indirect (1 samples, 1.43%)</title><rect x="380.9" y="145" width="16.8" height="15.0" fill="rgb(221,224,2)" rx="2" ry="2" /> |
|
<text text-anchor="" x="383.86" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/golang.org/x/net/http2/hpack.(*Decoder).Write (1 samples, 1.43%)</title><rect x="498.9" y="417" width="16.8" height="15.0" fill="rgb(216,163,45)" rx="2" ry="2" /> |
|
<text text-anchor="" x="501.86" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>net.(*conn).Read (8 samples, 11.43%)</title><rect x="532.6" y="369" width="134.8" height="15.0" fill="rgb(214,105,18)" rx="2" ry="2" /> |
|
<text text-anchor="" x="535.57" y="379.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>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/images.HandlerFunc.Handle (1 samples, 1.43%)</title><rect x="94.3" y="225" width="16.8" height="15.0" fill="rgb(235,210,31)" rx="2" ry="2" /> |
|
<text text-anchor="" x="97.29" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.systemstack (1 samples, 1.43%)</title><rect x="330.3" y="225" width="16.8" height="15.0" fill="rgb(218,204,23)" rx="2" ry="2" /> |
|
<text text-anchor="" x="333.29" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/api/services/tasks/v1.(*tasksClient).Get (1 samples, 1.43%)</title><rect x="397.7" y="321" width="16.9" height="15.0" fill="rgb(209,42,42)" rx="2" ry="2" /> |
|
<text text-anchor="" x="400.71" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.wakep (2 samples, 2.86%)</title><rect x="1021.4" y="401" width="33.7" height="15.0" fill="rgb(214,89,24)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1024.43" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ru..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/api/services/tasks/v1.(*tasksClient).Get (1 samples, 1.43%)</title><rect x="26.9" y="401" width="16.8" height="15.0" fill="rgb(240,61,3)" rx="2" ry="2" /> |
|
<text text-anchor="" x="29.86" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.(*remoteSnapshotter).Remove (1 samples, 1.43%)</title><rect x="212.3" y="337" width="16.8" height="15.0" fill="rgb(208,206,48)" rx="2" ry="2" /> |
|
<text text-anchor="" x="215.29" 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>bytes.(*Buffer).ReadFrom (1 samples, 1.43%)</title><rect x="751.7" y="401" width="16.9" height="15.0" fill="rgb(239,111,29)" rx="2" ry="2" /> |
|
<text text-anchor="" x="754.71" 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.(*structEncoder).encode (1 samples, 1.43%)</title><rect x="128.0" y="225" width="16.9" height="15.0" fill="rgb(223,215,17)" rx="2" ry="2" /> |
|
<text text-anchor="" x="131.00" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.epollwait (1 samples, 1.43%)</title><rect x="819.1" y="385" width="16.9" height="15.0" fill="rgb(228,62,7)" rx="2" ry="2" /> |
|
<text text-anchor="" x="822.14" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>internal/poll.(*FD).Close (1 samples, 1.43%)</title><rect x="10.0" y="353" width="16.9" height="15.0" fill="rgb(219,19,0)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.00" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*decodeState).literalStore (1 samples, 1.43%)</title><rect x="380.9" y="161" width="16.8" height="15.0" fill="rgb(212,46,49)" rx="2" ry="2" /> |
|
<text text-anchor="" x="383.86" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containernetworking/cni/libcni.InjectConf (1 samples, 1.43%)</title><rect x="313.4" y="305" width="16.9" height="15.0" fill="rgb(227,1,27)" rx="2" ry="2" /> |
|
<text text-anchor="" x="316.43" 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.MkdirAll (1 samples, 1.43%)</title><rect x="262.9" y="321" width="16.8" height="15.0" fill="rgb(213,16,8)" rx="2" ry="2" /> |
|
<text text-anchor="" x="265.86" 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.(*decodeState).value (1 samples, 1.43%)</title><rect x="347.1" y="81" width="16.9" height="15.0" fill="rgb(252,71,24)" rx="2" ry="2" /> |
|
<text text-anchor="" x="350.14" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/docker/docker/pkg/mount.parseMountTable (2 samples, 2.86%)</title><rect x="161.7" y="321" width="33.7" height="15.0" fill="rgb(236,70,18)" rx="2" ry="2" /> |
|
<text text-anchor="" x="164.71" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gi..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.futex (1 samples, 1.43%)</title><rect x="330.3" y="113" width="16.8" height="15.0" fill="rgb(229,83,13)" rx="2" ry="2" /> |
|
<text text-anchor="" x="333.29" 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/pkg/os.RealOS.MkdirAll (1 samples, 1.43%)</title><rect x="229.1" y="353" width="16.9" height="15.0" fill="rgb(214,15,44)" rx="2" ry="2" /> |
|
<text text-anchor="" x="232.14" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os.Stat (1 samples, 1.43%)</title><rect x="229.1" y="321" width="16.9" height="15.0" fill="rgb(209,80,39)" rx="2" ry="2" /> |
|
<text text-anchor="" x="232.14" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.slicebytetostring (1 samples, 1.43%)</title><rect x="26.9" y="209" width="16.8" height="15.0" fill="rgb(235,61,35)" rx="2" ry="2" /> |
|
<text text-anchor="" x="29.86" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*decodeState).value (1 samples, 1.43%)</title><rect x="347.1" y="161" width="16.9" height="15.0" fill="rgb(246,89,8)" rx="2" ry="2" /> |
|
<text text-anchor="" x="350.14" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.notewakeup (1 samples, 1.43%)</title><rect x="684.3" y="273" width="16.8" height="15.0" fill="rgb(248,107,24)" rx="2" ry="2" /> |
|
<text text-anchor="" x="687.29" 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/pkg/server.(*criContainerdService).StopPodSandbox (4 samples, 5.71%)</title><rect x="397.7" y="385" width="67.4" height="15.0" fill="rgb(206,33,45)" rx="2" ry="2" /> |
|
<text text-anchor="" x="400.71" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github...</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc/transport.(*http2Server).(github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc/transport.itemHandler)-fm (1 samples, 1.43%)</title><rect x="734.9" y="433" width="16.8" height="15.0" fill="rgb(244,223,37)" rx="2" ry="2" /> |
|
<text text-anchor="" x="737.86" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>reflect.Value.MapKeys (1 samples, 1.43%)</title><rect x="313.4" y="209" width="16.9" height="15.0" fill="rgb(215,194,7)" rx="2" ry="2" /> |
|
<text text-anchor="" x="316.43" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.notewakeup (2 samples, 2.86%)</title><rect x="1021.4" y="369" width="33.7" height="15.0" fill="rgb(209,153,26)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1024.43" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ru..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.namespaceInterceptor.unary (1 samples, 1.43%)</title><rect x="26.9" y="353" width="16.8" height="15.0" fill="rgb(212,28,31)" rx="2" ry="2" /> |
|
<text text-anchor="" x="29.86" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.invoke (1 samples, 1.43%)</title><rect x="212.3" y="257" width="16.8" height="15.0" fill="rgb(225,101,27)" rx="2" ry="2" /> |
|
<text text-anchor="" x="215.29" 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.WithNamespace (1 samples, 1.43%)</title><rect x="279.7" y="113" width="16.9" height="15.0" fill="rgb(241,183,3)" rx="2" ry="2" /> |
|
<text text-anchor="" x="282.71" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.(*Server).serveStreams.func1.1 (23 samples, 32.86%)</title><rect x="77.4" y="465" width="387.7" height="15.0" fill="rgb(252,197,42)" rx="2" ry="2" /> |
|
<text text-anchor="" x="80.43" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/kubernetes-incubator/cri-containerd/vendo..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>fmt.(*readRune).ReadRune (1 samples, 1.43%)</title><rect x="161.7" y="161" width="16.9" height="15.0" fill="rgb(212,71,23)" rx="2" ry="2" /> |
|
<text text-anchor="" x="164.71" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.read (6 samples, 8.57%)</title><rect x="566.3" y="305" width="101.1" height="15.0" fill="rgb(228,18,35)" rx="2" ry="2" /> |
|
<text text-anchor="" x="569.29" y="315.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/pkg/os.(*RealOS).MkdirAll (1 samples, 1.43%)</title><rect x="229.1" y="369" width="16.9" height="15.0" fill="rgb(242,61,19)" rx="2" ry="2" /> |
|
<text text-anchor="" x="232.14" 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/store/container.(*statusStorage).UpdateSync (1 samples, 1.43%)</title><rect x="10.0" y="433" width="16.9" height="15.0" fill="rgb(226,210,16)" 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>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.43%)</title><rect x="296.6" y="305" width="16.8" height="15.0" fill="rgb(207,215,21)" rx="2" ry="2" /> |
|
<text text-anchor="" x="299.57" 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.(*remoteContent).ReaderAt (1 samples, 1.43%)</title><rect x="246.0" y="177" width="16.9" height="15.0" fill="rgb(247,27,51)" rx="2" ry="2" /> |
|
<text text-anchor="" x="249.00" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>fmt.(*ss).ReadRune (1 samples, 1.43%)</title><rect x="161.7" y="177" width="16.9" height="15.0" fill="rgb(225,222,20)" rx="2" ry="2" /> |
|
<text text-anchor="" x="164.71" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.(*task).Status (1 samples, 1.43%)</title><rect x="397.7" y="337" width="16.9" height="15.0" fill="rgb(235,119,27)" rx="2" ry="2" /> |
|
<text text-anchor="" x="400.71" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.namespaceInterceptor.unary (1 samples, 1.43%)</title><rect x="296.6" y="289" width="16.8" height="15.0" fill="rgb(220,219,44)" rx="2" ry="2" /> |
|
<text text-anchor="" x="299.57" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.newobject (1 samples, 1.43%)</title><rect x="364.0" y="145" width="16.9" height="15.0" fill="rgb(206,218,5)" rx="2" ry="2" /> |
|
<text text-anchor="" x="367.00" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.futex (1 samples, 1.43%)</title><rect x="1088.9" y="369" width="16.8" height="15.0" fill="rgb(219,153,29)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1091.86" 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.(*task).Delete (3 samples, 4.29%)</title><rect x="397.7" y="353" width="50.6" height="15.0" fill="rgb(217,218,15)" rx="2" ry="2" /> |
|
<text text-anchor="" x="400.71" 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>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.invoke (1 samples, 1.43%)</title><rect x="26.9" y="337" width="16.8" height="15.0" fill="rgb(233,99,18)" rx="2" ry="2" /> |
|
<text text-anchor="" x="29.86" 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/images.Config (1 samples, 1.43%)</title><rect x="279.7" y="289" width="16.9" height="15.0" fill="rgb(219,108,47)" rx="2" ry="2" /> |
|
<text text-anchor="" x="282.71" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.protoCodec.Unmarshal (1 samples, 1.43%)</title><rect x="26.9" y="273" width="16.8" height="15.0" fill="rgb(251,36,14)" rx="2" ry="2" /> |
|
<text text-anchor="" x="29.86" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.Unmarshal (3 samples, 4.29%)</title><rect x="347.1" y="257" width="50.6" height="15.0" fill="rgb(211,75,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="350.14" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >encod..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os/exec.(*Cmd).writerDescriptor.func1 (1 samples, 1.43%)</title><rect x="751.7" y="449" width="16.9" height="15.0" fill="rgb(221,47,44)" rx="2" ry="2" /> |
|
<text text-anchor="" x="754.71" 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/api/services/content/v1.(*contentClient).Info (1 samples, 1.43%)</title><rect x="246.0" y="145" width="16.9" height="15.0" fill="rgb(228,40,51)" rx="2" ry="2" /> |
|
<text text-anchor="" x="249.00" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.recvResponse (1 samples, 1.43%)</title><rect x="212.3" y="241" width="16.8" height="15.0" fill="rgb(218,32,39)" rx="2" ry="2" /> |
|
<text text-anchor="" x="215.29" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.futexsleep (1 samples, 1.43%)</title><rect x="1088.9" y="385" width="16.8" height="15.0" fill="rgb(208,177,28)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1091.86" 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/os.RealOS.Stat (1 samples, 1.43%)</title><rect x="77.4" y="321" width="16.9" height="15.0" fill="rgb(219,52,0)" rx="2" ry="2" /> |
|
<text text-anchor="" x="80.43" 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.(namespaceInterceptor).(github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.unary)-fm (1 samples, 1.43%)</title><rect x="195.4" y="289" width="16.9" height="15.0" fill="rgb(240,8,32)" rx="2" ry="2" /> |
|
<text text-anchor="" x="198.43" 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/containerd/containerd.namespaceInterceptor.unary (1 samples, 1.43%)</title><rect x="111.1" y="289" width="16.9" height="15.0" fill="rgb(219,191,42)" rx="2" ry="2" /> |
|
<text text-anchor="" x="114.14" 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.func1.1 (1 samples, 1.43%)</title><rect x="246.0" y="321" width="16.9" height="15.0" fill="rgb(252,45,22)" rx="2" ry="2" /> |
|
<text text-anchor="" x="249.00" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.notetsleep_internal (2 samples, 2.86%)</title><rect x="768.6" y="417" width="33.7" height="15.0" fill="rgb(208,182,6)" rx="2" ry="2" /> |
|
<text text-anchor="" x="771.57" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ru..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.mallocgc (1 samples, 1.43%)</title><rect x="364.0" y="129" width="16.9" height="15.0" fill="rgb(254,188,32)" rx="2" ry="2" /> |
|
<text text-anchor="" x="367.00" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.futexwakeup (2 samples, 2.86%)</title><rect x="633.7" y="193" width="33.7" height="15.0" fill="rgb(212,180,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="636.71" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ru..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/golang.org/x/net/http2/hpack.(*Decoder).callEmit (1 samples, 1.43%)</title><rect x="498.9" y="369" width="16.8" height="15.0" fill="rgb(209,69,6)" rx="2" ry="2" /> |
|
<text text-anchor="" x="501.86" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.Marshal (1 samples, 1.43%)</title><rect x="313.4" y="289" width="16.9" height="15.0" fill="rgb(212,29,3)" rx="2" ry="2" /> |
|
<text text-anchor="" x="316.43" 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.futex (4 samples, 5.71%)</title><rect x="954.0" y="353" width="67.4" height="15.0" fill="rgb(212,39,54)" rx="2" ry="2" /> |
|
<text text-anchor="" x="957.00" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >runtime..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.(*mcentral).cacheSpan (1 samples, 1.43%)</title><rect x="414.6" y="97" width="16.8" height="15.0" fill="rgb(232,222,7)" rx="2" ry="2" /> |
|
<text text-anchor="" x="417.57" 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.entersyscall (2 samples, 2.86%)</title><rect x="633.7" y="273" width="33.7" height="15.0" fill="rgb(211,167,11)" rx="2" ry="2" /> |
|
<text text-anchor="" x="636.71" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ru..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.mapaccess1 (1 samples, 1.43%)</title><rect x="667.4" y="433" width="16.9" height="15.0" fill="rgb(254,227,13)" rx="2" ry="2" /> |
|
<text text-anchor="" x="670.43" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc/transport.(*http2Client).reader (14 samples, 20.00%)</title><rect x="465.1" y="465" width="236.0" height="15.0" fill="rgb(235,45,13)" rx="2" ry="2" /> |
|
<text text-anchor="" x="468.14" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/kubernetes-incubator..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/images.(*Image).Config (1 samples, 1.43%)</title><rect x="94.3" y="305" width="16.8" height="15.0" fill="rgb(247,189,29)" rx="2" ry="2" /> |
|
<text text-anchor="" x="97.29" 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).itemHandler (1 samples, 1.43%)</title><rect x="701.1" y="417" width="16.9" height="15.0" fill="rgb(224,115,21)" rx="2" ry="2" /> |
|
<text text-anchor="" x="704.14" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*structEncoder).(encoding/json.encode)-fm (1 samples, 1.43%)</title><rect x="128.0" y="145" width="16.9" height="15.0" fill="rgb(223,39,36)" rx="2" ry="2" /> |
|
<text text-anchor="" x="131.00" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.(*protoCodec).Unmarshal (1 samples, 1.43%)</title><rect x="94.3" y="113" width="16.8" height="15.0" fill="rgb(250,211,40)" rx="2" ry="2" /> |
|
<text text-anchor="" x="97.29" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>io.ReadAtLeast (8 samples, 11.43%)</title><rect x="532.6" y="401" width="134.8" height="15.0" fill="rgb(209,174,10)" rx="2" ry="2" /> |
|
<text text-anchor="" x="535.57" y="411.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>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containernetworking/cni/libcni.buildOneConfig (1 samples, 1.43%)</title><rect x="313.4" y="321" width="16.9" height="15.0" fill="rgb(249,76,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="316.43" 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.assertE2I (1 samples, 1.43%)</title><rect x="94.3" y="81" width="16.8" height="15.0" fill="rgb(249,12,4)" rx="2" ry="2" /> |
|
<text text-anchor="" x="97.29" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.invoke (1 samples, 1.43%)</title><rect x="397.7" y="257" width="16.9" height="15.0" fill="rgb(240,22,3)" rx="2" ry="2" /> |
|
<text text-anchor="" x="400.71" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.mallocgc (1 samples, 1.43%)</title><rect x="414.6" y="177" width="16.8" height="15.0" fill="rgb(222,157,44)" rx="2" ry="2" /> |
|
<text text-anchor="" x="417.57" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.newContextWithRPCInfo (1 samples, 1.43%)</title><rect x="195.4" y="241" width="16.9" height="15.0" fill="rgb(247,189,52)" rx="2" ry="2" /> |
|
<text text-anchor="" x="198.43" 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.(*remoteContent).Info (1 samples, 1.43%)</title><rect x="246.0" y="161" width="16.9" height="15.0" fill="rgb(210,184,52)" rx="2" ry="2" /> |
|
<text text-anchor="" x="249.00" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.sysmon (7 samples, 10.00%)</title><rect x="1072.0" y="433" width="118.0" height="15.0" fill="rgb(225,155,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1075.00" y="443.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>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.NewClientStream (1 samples, 1.43%)</title><rect x="279.7" y="161" width="16.9" height="15.0" fill="rgb(252,47,17)" rx="2" ry="2" /> |
|
<text text-anchor="" x="282.71" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.schedule (13 samples, 18.57%)</title><rect x="836.0" y="433" width="219.1" height="15.0" fill="rgb(222,16,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="839.00" y="443.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/github.com/containerd/containerd/api/services/tasks/v1.(*GetResponse).Unmarshal (1 samples, 1.43%)</title><rect x="26.9" y="241" width="16.8" height="15.0" fill="rgb(209,211,10)" rx="2" ry="2" /> |
|
<text text-anchor="" x="29.86" 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.43%)</title><rect x="111.1" y="321" width="16.9" height="15.0" fill="rgb(223,149,31)" rx="2" ry="2" /> |
|
<text text-anchor="" x="114.14" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.Invoke (1 samples, 1.43%)</title><rect x="296.6" y="321" width="16.8" height="15.0" fill="rgb(243,114,10)" rx="2" ry="2" /> |
|
<text text-anchor="" x="299.57" 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.Walk (1 samples, 1.43%)</title><rect x="279.7" y="257" width="16.9" height="15.0" fill="rgb(207,180,41)" rx="2" ry="2" /> |
|
<text text-anchor="" x="282.71" 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 (3 samples, 4.29%)</title><rect x="144.9" y="385" width="50.5" height="15.0" fill="rgb(251,45,7)" rx="2" ry="2" /> |
|
<text text-anchor="" x="147.86" 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>encoding/json.(*sliceEncoder).(encoding/json.encode)-fm (1 samples, 1.43%)</title><rect x="128.0" y="209" width="16.9" height="15.0" fill="rgb(233,106,43)" rx="2" ry="2" /> |
|
<text text-anchor="" x="131.00" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os.(*File).Read (1 samples, 1.43%)</title><rect x="751.7" y="385" width="16.9" height="15.0" fill="rgb(220,18,1)" rx="2" ry="2" /> |
|
<text text-anchor="" x="754.71" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.usleep (4 samples, 5.71%)</title><rect x="1122.6" y="417" width="67.4" height="15.0" fill="rgb(215,6,51)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1125.57" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >runtime..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.ready (1 samples, 1.43%)</title><rect x="684.3" y="321" width="16.8" height="15.0" fill="rgb(247,92,50)" rx="2" ry="2" /> |
|
<text text-anchor="" x="687.29" 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.namespaceInterceptor.unary (1 samples, 1.43%)</title><rect x="397.7" y="273" width="16.9" height="15.0" fill="rgb(238,72,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="400.71" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*encodeState).reflectValue (1 samples, 1.43%)</title><rect x="128.0" y="289" width="16.9" height="15.0" fill="rgb(209,63,47)" rx="2" ry="2" /> |
|
<text text-anchor="" x="131.00" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.invoke (1 samples, 1.43%)</title><rect x="111.1" y="273" width="16.9" height="15.0" fill="rgb(254,102,22)" rx="2" ry="2" /> |
|
<text text-anchor="" x="114.14" 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/cri-o/ocicni/pkg/ocicni.(*cniNetworkPlugin).SetUpPod (5 samples, 7.14%)</title><rect x="313.4" y="369" width="84.3" height="15.0" fill="rgb(210,27,26)" rx="2" ry="2" /> |
|
<text text-anchor="" x="316.43" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.co..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.pcvalue (1 samples, 1.43%)</title><rect x="1055.1" y="385" width="16.9" height="15.0" fill="rgb(238,197,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1058.14" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.mallocgc (1 samples, 1.43%)</title><rect x="111.1" y="209" width="16.9" height="15.0" fill="rgb(251,155,33)" rx="2" ry="2" /> |
|
<text text-anchor="" x="114.14" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>internal/poll.(*pollDesc).waitRead (1 samples, 1.43%)</title><rect x="532.6" y="321" width="16.8" height="15.0" fill="rgb(244,15,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="535.57" 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.(*decodeState).object (1 samples, 1.43%)</title><rect x="347.1" y="145" width="16.9" height="15.0" fill="rgb(208,97,28)" rx="2" ry="2" /> |
|
<text text-anchor="" x="350.14" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>fmt.(*ss).notEOF (1 samples, 1.43%)</title><rect x="178.6" y="209" width="16.8" height="15.0" fill="rgb(224,68,4)" rx="2" ry="2" /> |
|
<text text-anchor="" x="181.57" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.park_m (13 samples, 18.57%)</title><rect x="836.0" y="449" width="219.1" height="15.0" fill="rgb(253,13,31)" rx="2" ry="2" /> |
|
<text text-anchor="" x="839.00" y="459.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>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc/transport.(*http2Client).NewStream (1 samples, 1.43%)</title><rect x="397.7" y="241" width="16.9" height="15.0" fill="rgb(234,188,14)" rx="2" ry="2" /> |
|
<text text-anchor="" x="400.71" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/pkg/containerd/opts.WithNewSnapshot.func1 (1 samples, 1.43%)</title><rect x="94.3" y="353" width="16.8" height="15.0" fill="rgb(231,42,13)" rx="2" ry="2" /> |
|
<text text-anchor="" x="97.29" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*ptrEncoder).(encoding/json.encode)-fm (1 samples, 1.43%)</title><rect x="128.0" y="273" width="16.9" height="15.0" fill="rgb(237,89,11)" rx="2" ry="2" /> |
|
<text text-anchor="" x="131.00" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/pkg/os.(*RealOS).Stat (1 samples, 1.43%)</title><rect x="77.4" y="337" width="16.9" height="15.0" fill="rgb(212,190,4)" rx="2" ry="2" /> |
|
<text text-anchor="" x="80.43" 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 (2 samples, 2.86%)</title><rect x="1021.4" y="353" width="33.7" height="15.0" fill="rgb(212,69,6)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1024.43" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ru..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.convI2I (1 samples, 1.43%)</title><rect x="60.6" y="449" width="16.8" height="15.0" fill="rgb(208,218,9)" rx="2" ry="2" /> |
|
<text text-anchor="" x="63.57" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.mput (1 samples, 1.43%)</title><rect x="937.1" y="385" width="16.9" height="15.0" fill="rgb(213,105,1)" rx="2" ry="2" /> |
|
<text text-anchor="" x="940.14" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.stopm (6 samples, 8.57%)</title><rect x="920.3" y="401" width="101.1" height="15.0" fill="rgb(210,42,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="923.29" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >runtime.stopm</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.43%)</title><rect x="111.1" y="337" width="16.9" height="15.0" fill="rgb(232,20,29)" rx="2" ry="2" /> |
|
<text text-anchor="" x="114.14" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>fmt.Sscanf (2 samples, 2.86%)</title><rect x="161.7" y="289" width="33.7" height="15.0" fill="rgb(253,111,49)" rx="2" ry="2" /> |
|
<text text-anchor="" x="164.71" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fm..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/pkg/server.(*instrumentedService).RunPodSandbox (10 samples, 14.29%)</title><rect x="229.1" y="401" width="168.6" height="15.0" fill="rgb(222,221,32)" rx="2" ry="2" /> |
|
<text text-anchor="" x="232.14" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/kubernetes..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.netpoll (1 samples, 1.43%)</title><rect x="819.1" y="401" width="16.9" height="15.0" fill="rgb(211,6,18)" rx="2" ry="2" /> |
|
<text text-anchor="" x="822.14" 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 (7 samples, 10.00%)</title><rect x="549.4" y="321" width="118.0" height="15.0" fill="rgb(206,116,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="552.43" y="331.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/k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime._RuntimeService_RemovePodSandbox_Handler (2 samples, 2.86%)</title><rect x="195.4" y="417" width="33.7" height="15.0" fill="rgb(214,67,6)" rx="2" ry="2" /> |
|
<text text-anchor="" x="198.43" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gi..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os.(*file).close (1 samples, 1.43%)</title><rect x="10.0" y="369" width="16.9" height="15.0" fill="rgb(231,220,13)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.00" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os/exec.(*Cmd).Start (1 samples, 1.43%)</title><rect x="330.3" y="257" width="16.8" height="15.0" fill="rgb(249,12,45)" rx="2" ry="2" /> |
|
<text text-anchor="" x="333.29" 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/os.RealOS.MkdirAll (1 samples, 1.43%)</title><rect x="262.9" y="337" width="16.8" height="15.0" fill="rgb(227,0,2)" rx="2" ry="2" /> |
|
<text text-anchor="" x="265.86" 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.memhash8 (1 samples, 1.43%)</title><rect x="667.4" y="417" width="16.9" height="15.0" fill="rgb(220,155,35)" rx="2" ry="2" /> |
|
<text text-anchor="" x="670.43" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Syscall (5 samples, 7.14%)</title><rect x="583.1" y="289" width="84.3" height="15.0" fill="rgb(229,33,38)" rx="2" ry="2" /> |
|
<text text-anchor="" x="586.14" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >syscall.S..</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/typeurl.MarshalAny (1 samples, 1.43%)</title><rect x="128.0" y="337" width="16.9" height="15.0" fill="rgb(238,94,15)" rx="2" ry="2" /> |
|
<text text-anchor="" x="131.00" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc/transport.(*http2Client).NewStream (1 samples, 1.43%)</title><rect x="296.6" y="257" width="16.8" height="15.0" fill="rgb(211,37,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="299.57" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os.Stat (1 samples, 1.43%)</title><rect x="262.9" y="305" width="16.8" height="15.0" fill="rgb(222,58,27)" rx="2" ry="2" /> |
|
<text text-anchor="" x="265.86" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.invoke (1 samples, 1.43%)</title><rect x="195.4" y="257" width="16.9" height="15.0" fill="rgb(205,23,38)" rx="2" ry="2" /> |
|
<text text-anchor="" x="198.43" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.newproc.func1 (1 samples, 1.43%)</title><rect x="330.3" y="209" width="16.8" height="15.0" fill="rgb(230,203,39)" rx="2" ry="2" /> |
|
<text text-anchor="" x="333.29" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containernetworking/cni/pkg/types/current.NewResult (3 samples, 4.29%)</title><rect x="347.1" y="273" width="50.6" height="15.0" fill="rgb(209,59,8)" rx="2" ry="2" /> |
|
<text text-anchor="" x="350.14" 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>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/cri-o/ocicni/pkg/ocicni.(*cniNetwork).addToNetwork (5 samples, 7.14%)</title><rect x="313.4" y="353" width="84.3" height="15.0" fill="rgb(217,71,23)" rx="2" ry="2" /> |
|
<text text-anchor="" x="316.43" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.co..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/api/services/tasks/v1.(*tasksClient).Kill (1 samples, 1.43%)</title><rect x="414.6" y="305" width="16.8" height="15.0" fill="rgb(210,44,39)" rx="2" ry="2" /> |
|
<text text-anchor="" x="417.57" 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>fmt.(*ss).scanOne (2 samples, 2.86%)</title><rect x="161.7" y="241" width="33.7" height="15.0" fill="rgb(206,37,40)" rx="2" ry="2" /> |
|
<text text-anchor="" x="164.71" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fm..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.nextFreeFast (1 samples, 1.43%)</title><rect x="111.1" y="193" width="16.9" height="15.0" fill="rgb(229,167,9)" rx="2" ry="2" /> |
|
<text text-anchor="" x="114.14" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.startm (2 samples, 2.86%)</title><rect x="1021.4" y="385" width="33.7" height="15.0" fill="rgb(250,66,31)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1024.43" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ru..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*decodeState).object (1 samples, 1.43%)</title><rect x="347.1" y="65" width="16.9" height="15.0" fill="rgb(250,126,14)" rx="2" ry="2" /> |
|
<text text-anchor="" x="350.14" 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/google.golang.org/grpc.Invoke (1 samples, 1.43%)</title><rect x="414.6" y="289" width="16.8" height="15.0" fill="rgb(219,67,6)" rx="2" ry="2" /> |
|
<text text-anchor="" x="417.57" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*arrayEncoder).encode (1 samples, 1.43%)</title><rect x="128.0" y="161" width="16.9" height="15.0" fill="rgb(224,75,35)" rx="2" ry="2" /> |
|
<text text-anchor="" x="131.00" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.schedule (1 samples, 1.43%)</title><rect x="819.1" y="433" width="16.9" height="15.0" fill="rgb(239,40,44)" rx="2" ry="2" /> |
|
<text text-anchor="" x="822.14" 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/transport.(*http2Server).itemHandler (1 samples, 1.43%)</title><rect x="734.9" y="417" width="16.8" height="15.0" fill="rgb(208,112,39)" rx="2" ry="2" /> |
|
<text text-anchor="" x="737.86" 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).RemoveContainer (3 samples, 4.29%)</title><rect x="144.9" y="401" width="50.5" height="15.0" fill="rgb(209,224,36)" rx="2" ry="2" /> |
|
<text text-anchor="" x="147.86" y="411.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/golang.org/x/net/http2/hpack.(*Decoder).parseHeaderFieldRepr (1 samples, 1.43%)</title><rect x="498.9" y="401" width="16.8" height="15.0" fill="rgb(218,12,25)" rx="2" ry="2" /> |
|
<text text-anchor="" x="501.86" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.futex (1 samples, 1.43%)</title><rect x="684.3" y="241" width="16.8" height="15.0" fill="rgb(252,87,51)" rx="2" ry="2" /> |
|
<text text-anchor="" x="687.29" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*decodeState).value (3 samples, 4.29%)</title><rect x="347.1" y="225" width="50.6" height="15.0" fill="rgb(222,129,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="350.14" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >encod..</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.43%)</title><rect x="246.0" y="49" width="16.9" height="15.0" fill="rgb(251,199,19)" rx="2" ry="2" /> |
|
<text text-anchor="" x="249.00" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.(*protoCodec).Unmarshal (1 samples, 1.43%)</title><rect x="26.9" y="289" width="16.8" height="15.0" fill="rgb(210,119,11)" rx="2" ry="2" /> |
|
<text text-anchor="" x="29.86" 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/containerd/containerd/images.(*Image).RootFS (1 samples, 1.43%)</title><rect x="279.7" y="321" width="16.9" height="15.0" fill="rgb(235,167,25)" rx="2" ry="2" /> |
|
<text text-anchor="" x="282.71" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.newstack (1 samples, 1.43%)</title><rect x="1055.1" y="449" width="16.9" height="15.0" fill="rgb(245,123,11)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1058.14" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*encodeState).reflectValue (1 samples, 1.43%)</title><rect x="313.4" y="257" width="16.9" height="15.0" fill="rgb(208,21,9)" rx="2" ry="2" /> |
|
<text text-anchor="" x="316.43" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.namespaceInterceptor.unary (1 samples, 1.43%)</title><rect x="212.3" y="273" width="16.8" height="15.0" fill="rgb(248,158,7)" rx="2" ry="2" /> |
|
<text text-anchor="" x="215.29" 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.WithProcessKill (2 samples, 2.86%)</title><rect x="414.6" y="337" width="33.7" height="15.0" fill="rgb(228,134,47)" rx="2" ry="2" /> |
|
<text text-anchor="" x="417.57" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gi..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/pkg/server.(*instrumentedService).CreateContainer (4 samples, 5.71%)</title><rect x="77.4" y="401" width="67.5" height="15.0" fill="rgb(219,61,23)" rx="2" ry="2" /> |
|
<text text-anchor="" x="80.43" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github...</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.futex (2 samples, 2.86%)</title><rect x="1021.4" y="337" width="33.7" height="15.0" fill="rgb(208,99,40)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1024.43" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ru..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.WithSnapshotCleanup (1 samples, 1.43%)</title><rect x="212.3" y="353" width="16.8" height="15.0" fill="rgb(210,130,36)" rx="2" ry="2" /> |
|
<text text-anchor="" x="215.29" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>internal/poll.(*FD).decref (1 samples, 1.43%)</title><rect x="10.0" y="337" width="16.9" height="15.0" fill="rgb(241,68,18)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.00" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*decodeState).literal (1 samples, 1.43%)</title><rect x="380.9" y="177" width="16.8" height="15.0" fill="rgb(209,202,24)" rx="2" ry="2" /> |
|
<text text-anchor="" x="383.86" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.convI2I (1 samples, 1.43%)</title><rect x="448.3" y="353" width="16.8" height="15.0" fill="rgb(240,171,18)" rx="2" ry="2" /> |
|
<text text-anchor="" x="451.29" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>all (70 samples, 100%)</title><rect x="10.0" y="481" width="1180.0" height="15.0" fill="rgb(249,28,34)" 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>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.(*remoteReaderAt).ReadAt (1 samples, 1.43%)</title><rect x="279.7" y="193" width="16.9" height="15.0" fill="rgb(245,140,43)" rx="2" ry="2" /> |
|
<text text-anchor="" x="282.71" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.notetsleep_internal (2 samples, 2.86%)</title><rect x="1072.0" y="401" width="33.7" height="15.0" fill="rgb(209,162,33)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1075.00" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ru..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.funcspdelta (1 samples, 1.43%)</title><rect x="1055.1" y="401" width="16.9" height="15.0" fill="rgb(206,57,52)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1058.14" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os/signal.loop (2 samples, 2.86%)</title><rect x="768.6" y="465" width="33.7" height="15.0" fill="rgb(234,104,29)" rx="2" ry="2" /> |
|
<text text-anchor="" x="771.57" y="475.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/pkg/server.(*criContainerdService).setupSandboxFiles (1 samples, 1.43%)</title><rect x="262.9" y="369" width="16.8" height="15.0" fill="rgb(233,188,23)" rx="2" ry="2" /> |
|
<text text-anchor="" x="265.86" 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.WithNewSnapshot.func1 (1 samples, 1.43%)</title><rect x="94.3" y="337" width="16.8" height="15.0" fill="rgb(209,52,21)" rx="2" ry="2" /> |
|
<text text-anchor="" x="97.29" 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/images.Manifest.func1 (1 samples, 1.43%)</title><rect x="94.3" y="209" width="16.8" height="15.0" fill="rgb(234,211,49)" rx="2" ry="2" /> |
|
<text text-anchor="" x="97.29" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/golang.org/x/net/http2/hpack.(*headerFieldTable).search (1 samples, 1.43%)</title><rect x="734.9" y="369" width="16.8" height="15.0" fill="rgb(210,181,39)" rx="2" ry="2" /> |
|
<text text-anchor="" x="737.86" 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.(*container).Delete (2 samples, 2.86%)</title><rect x="195.4" y="369" width="33.7" height="15.0" fill="rgb(215,141,39)" rx="2" ry="2" /> |
|
<text text-anchor="" x="198.43" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gi..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.makeslice (1 samples, 1.43%)</title><rect x="296.6" y="241" width="16.8" height="15.0" fill="rgb(233,60,1)" rx="2" ry="2" /> |
|
<text text-anchor="" x="299.57" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containernetworking/cni/libcni.(*CNIConfig).AddNetworkList (5 samples, 7.14%)</title><rect x="313.4" y="337" width="84.3" height="15.0" fill="rgb(244,9,17)" rx="2" ry="2" /> |
|
<text text-anchor="" x="316.43" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.co..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>fmt.(*ss).doScanf (2 samples, 2.86%)</title><rect x="161.7" y="257" width="33.7" height="15.0" fill="rgb(214,108,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="164.71" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fm..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.send (1 samples, 1.43%)</title><rect x="684.3" y="385" width="16.8" height="15.0" fill="rgb(212,31,26)" rx="2" ry="2" /> |
|
<text text-anchor="" x="687.29" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/images.Config (1 samples, 1.43%)</title><rect x="246.0" y="273" width="16.9" height="15.0" fill="rgb(245,159,27)" rx="2" ry="2" /> |
|
<text text-anchor="" x="249.00" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.mstart1 (7 samples, 10.00%)</title><rect x="1072.0" y="449" width="118.0" height="15.0" fill="rgb(252,219,27)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1075.00" y="459.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>runtime.mallocgc (1 samples, 1.43%)</title><rect x="296.6" y="225" width="16.8" height="15.0" fill="rgb(220,196,17)" rx="2" ry="2" /> |
|
<text text-anchor="" x="299.57" 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.startm (1 samples, 1.43%)</title><rect x="330.3" y="161" width="16.8" height="15.0" fill="rgb(229,105,41)" rx="2" ry="2" /> |
|
<text text-anchor="" x="333.29" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/images.(*Image).Config (1 samples, 1.43%)</title><rect x="279.7" y="305" width="16.9" height="15.0" fill="rgb(207,74,4)" rx="2" ry="2" /> |
|
<text text-anchor="" x="282.71" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*structEncoder).(encoding/json.encode)-fm (1 samples, 1.43%)</title><rect x="128.0" y="241" width="16.9" height="15.0" fill="rgb(231,117,11)" rx="2" ry="2" /> |
|
<text text-anchor="" x="131.00" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.getitab (1 samples, 1.43%)</title><rect x="60.6" y="433" width="16.8" height="15.0" fill="rgb(225,228,7)" rx="2" ry="2" /> |
|
<text text-anchor="" x="63.57" 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/exec.(*Cmd).Start.func1 (1 samples, 1.43%)</title><rect x="751.7" y="465" width="16.9" height="15.0" fill="rgb(230,153,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="754.71" 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/golang.org/x/net/lex/httplex.IsTokenRune (1 samples, 1.43%)</title><rect x="498.9" y="337" width="16.8" height="15.0" fill="rgb(250,118,24)" rx="2" ry="2" /> |
|
<text text-anchor="" x="501.86" 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/images.(*Image).RootFS (1 samples, 1.43%)</title><rect x="94.3" y="321" width="16.8" height="15.0" fill="rgb(231,112,38)" rx="2" ry="2" /> |
|
<text text-anchor="" x="97.29" 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/api/services/snapshot/v1.(*snapshotsClient).Remove (1 samples, 1.43%)</title><rect x="212.3" y="321" width="16.8" height="15.0" fill="rgb(236,123,40)" rx="2" ry="2" /> |
|
<text text-anchor="" x="215.29" 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.(*container).get (1 samples, 1.43%)</title><rect x="195.4" y="353" width="16.9" height="15.0" fill="rgb(241,70,8)" rx="2" ry="2" /> |
|
<text text-anchor="" x="198.43" 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.selectnbsend (1 samples, 1.43%)</title><rect x="684.3" y="417" width="16.8" height="15.0" fill="rgb(253,45,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="687.29" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc/transport.(*controlBuffer).put (1 samples, 1.43%)</title><rect x="684.3" y="433" width="16.8" height="15.0" fill="rgb(222,216,42)" rx="2" ry="2" /> |
|
<text text-anchor="" x="687.29" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*decodeState).unmarshal (1 samples, 1.43%)</title><rect x="347.1" y="97" width="16.9" height="15.0" fill="rgb(238,129,54)" rx="2" ry="2" /> |
|
<text text-anchor="" x="350.14" 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.newobject (1 samples, 1.43%)</title><rect x="414.6" y="193" width="16.8" height="15.0" fill="rgb(211,40,41)" rx="2" ry="2" /> |
|
<text text-anchor="" x="417.57" 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.callers.func1 (1 samples, 1.43%)</title><rect x="364.0" y="49" width="16.9" height="15.0" fill="rgb(214,121,14)" rx="2" ry="2" /> |
|
<text text-anchor="" x="367.00" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/docker/docker/pkg/mount.GetMounts (2 samples, 2.86%)</title><rect x="161.7" y="337" width="33.7" height="15.0" fill="rgb(223,70,43)" rx="2" ry="2" /> |
|
<text text-anchor="" x="164.71" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gi..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/pkg/store/container.(*statusStorage).Delete (1 samples, 1.43%)</title><rect x="144.9" y="353" width="16.8" height="15.0" fill="rgb(208,205,8)" rx="2" ry="2" /> |
|
<text text-anchor="" x="147.86" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.goready (1 samples, 1.43%)</title><rect x="684.3" y="369" width="16.8" height="15.0" fill="rgb(244,19,8)" rx="2" ry="2" /> |
|
<text text-anchor="" x="687.29" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/golang.org/x/net/http2.(*Framer).endWrite (1 samples, 1.43%)</title><rect x="701.1" y="385" width="16.9" height="15.0" fill="rgb(243,24,23)" rx="2" ry="2" /> |
|
<text text-anchor="" x="704.14" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>fmt.Fscanf (2 samples, 2.86%)</title><rect x="161.7" y="273" width="33.7" height="15.0" fill="rgb(251,50,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="164.71" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fm..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.futex (2 samples, 2.86%)</title><rect x="768.6" y="385" width="33.7" height="15.0" fill="rgb(238,83,41)" rx="2" ry="2" /> |
|
<text text-anchor="" x="771.57" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ru..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/docker/docker/pkg/ioutils.(*atomicFileWriter).Close (1 samples, 1.43%)</title><rect x="10.0" y="401" width="16.9" height="15.0" fill="rgb(242,194,17)" 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>runtime.heapBits.initSpan (1 samples, 1.43%)</title><rect x="414.6" y="65" width="16.8" height="15.0" fill="rgb(226,159,26)" rx="2" ry="2" /> |
|
<text text-anchor="" x="417.57" 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/docker/docker/pkg/ioutils.AtomicWriteFile (1 samples, 1.43%)</title><rect x="10.0" y="417" width="16.9" height="15.0" fill="rgb(222,190,20)" 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>fmt.(*ss).token (1 samples, 1.43%)</title><rect x="161.7" y="209" width="16.9" height="15.0" fill="rgb(214,130,13)" rx="2" ry="2" /> |
|
<text text-anchor="" x="164.71" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.(*remoteReaderAt).ReadAt (1 samples, 1.43%)</title><rect x="94.3" y="177" width="16.8" height="15.0" fill="rgb(235,165,6)" rx="2" ry="2" /> |
|
<text text-anchor="" x="97.29" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/golang.org/x/net/http2.typeFrameParser (1 samples, 1.43%)</title><rect x="667.4" y="449" width="16.9" height="15.0" fill="rgb(229,124,14)" rx="2" ry="2" /> |
|
<text text-anchor="" x="670.43" 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.newHTTP2Client.func3 (2 samples, 2.86%)</title><rect x="701.1" y="465" width="33.8" height="15.0" fill="rgb(225,211,41)" rx="2" ry="2" /> |
|
<text text-anchor="" x="704.14" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gi..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.(namespaceInterceptor).(github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.unary)-fm (1 samples, 1.43%)</title><rect x="414.6" y="273" width="16.8" height="15.0" fill="rgb(210,63,3)" rx="2" ry="2" /> |
|
<text text-anchor="" x="417.57" 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.Invoke (1 samples, 1.43%)</title><rect x="246.0" y="129" width="16.9" height="15.0" fill="rgb(228,123,49)" rx="2" ry="2" /> |
|
<text text-anchor="" x="249.00" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc/transport.(*http2Client).NewStream (1 samples, 1.43%)</title><rect x="414.6" y="225" width="16.8" height="15.0" fill="rgb(252,56,22)" rx="2" ry="2" /> |
|
<text text-anchor="" x="417.57" 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.(*eventMonitor).start.func1 (3 samples, 4.29%)</title><rect x="10.0" y="465" width="50.6" height="15.0" fill="rgb(243,214,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.00" 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>runtime.selectgo (1 samples, 1.43%)</title><rect x="43.7" y="449" width="16.9" height="15.0" fill="rgb(242,45,41)" rx="2" ry="2" /> |
|
<text text-anchor="" x="46.71" 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.(*remoteSnapshotter).Mounts (1 samples, 1.43%)</title><rect x="296.6" y="353" width="16.8" height="15.0" fill="rgb(250,75,49)" rx="2" ry="2" /> |
|
<text text-anchor="" x="299.57" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.findrunnable (1 samples, 1.43%)</title><rect x="819.1" y="417" width="16.9" height="15.0" fill="rgb(253,161,21)" rx="2" ry="2" /> |
|
<text text-anchor="" x="822.14" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.goexit0 (1 samples, 1.43%)</title><rect x="819.1" y="449" width="16.9" height="15.0" fill="rgb(247,0,24)" rx="2" ry="2" /> |
|
<text text-anchor="" x="822.14" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>io.ReadFull (1 samples, 1.43%)</title><rect x="161.7" y="129" width="16.9" height="15.0" fill="rgb(250,212,39)" rx="2" ry="2" /> |
|
<text text-anchor="" x="164.71" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>reflect.Value.Elem (1 samples, 1.43%)</title><rect x="380.9" y="129" width="16.8" height="15.0" fill="rgb(228,31,3)" rx="2" ry="2" /> |
|
<text text-anchor="" x="383.86" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/golang.org/x/net/http2/hpack.(*Encoder).searchTable (1 samples, 1.43%)</title><rect x="734.9" y="385" width="16.8" height="15.0" fill="rgb(213,130,26)" rx="2" ry="2" /> |
|
<text text-anchor="" x="737.86" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>fmt.(*readRune).readByte (1 samples, 1.43%)</title><rect x="161.7" y="145" width="16.9" height="15.0" fill="rgb(242,124,15)" rx="2" ry="2" /> |
|
<text text-anchor="" x="164.71" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Syscall (1 samples, 1.43%)</title><rect x="77.4" y="273" width="16.9" height="15.0" fill="rgb(206,165,10)" rx="2" ry="2" /> |
|
<text text-anchor="" x="80.43" 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/pkg/server.(*instrumentedService).StopPodSandbox (4 samples, 5.71%)</title><rect x="397.7" y="401" width="67.4" height="15.0" fill="rgb(236,144,17)" rx="2" ry="2" /> |
|
<text text-anchor="" x="400.71" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github...</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.namespaceInterceptor.unary (1 samples, 1.43%)</title><rect x="195.4" y="273" width="16.9" height="15.0" fill="rgb(207,112,15)" rx="2" ry="2" /> |
|
<text text-anchor="" x="198.43" 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.entersyscall_sysmon (2 samples, 2.86%)</title><rect x="633.7" y="225" width="33.7" height="15.0" fill="rgb(205,7,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="636.71" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ru..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.(*Server).processUnaryRPC (23 samples, 32.86%)</title><rect x="77.4" y="433" width="387.7" height="15.0" fill="rgb(236,103,34)" rx="2" ry="2" /> |
|
<text text-anchor="" x="80.43" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/kubernetes-incubator/cri-containerd/vendo..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.mallocgc (1 samples, 1.43%)</title><rect x="26.9" y="193" width="16.8" height="15.0" fill="rgb(228,99,37)" rx="2" ry="2" /> |
|
<text text-anchor="" x="29.86" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.resetspinning (2 samples, 2.86%)</title><rect x="1021.4" y="417" width="33.7" height="15.0" fill="rgb(221,111,52)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1024.43" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ru..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.memeqbody (1 samples, 1.43%)</title><rect x="347.1" y="49" width="16.9" height="15.0" fill="rgb(237,71,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="350.14" 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/github.com/containerd/containerd.(namespaceInterceptor).(github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.unary)-fm (1 samples, 1.43%)</title><rect x="111.1" y="305" width="16.9" height="15.0" fill="rgb(230,182,6)" rx="2" ry="2" /> |
|
<text text-anchor="" x="114.14" 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.(*task).Status (1 samples, 1.43%)</title><rect x="26.9" y="417" width="16.8" height="15.0" fill="rgb(222,208,10)" rx="2" ry="2" /> |
|
<text text-anchor="" x="29.86" 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.mstart (7 samples, 10.00%)</title><rect x="1072.0" y="465" width="118.0" height="15.0" fill="rgb(241,86,20)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1075.00" y="475.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>github.com/kubernetes-incubator/cri-containerd/pkg/server.(*criContainerdService).RemovePodSandbox (2 samples, 2.86%)</title><rect x="195.4" y="385" width="33.7" height="15.0" fill="rgb(240,25,25)" rx="2" ry="2" /> |
|
<text text-anchor="" x="198.43" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gi..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.newproc1 (1 samples, 1.43%)</title><rect x="330.3" y="193" width="16.8" height="15.0" fill="rgb(216,149,38)" rx="2" ry="2" /> |
|
<text text-anchor="" x="333.29" 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>internal/poll.(*FD).Read (1 samples, 1.43%)</title><rect x="751.7" y="353" width="16.9" height="15.0" fill="rgb(214,122,33)" rx="2" ry="2" /> |
|
<text text-anchor="" x="754.71" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>io.ReadFull (8 samples, 11.43%)</title><rect x="532.6" y="417" width="134.8" height="15.0" fill="rgb(217,181,17)" rx="2" ry="2" /> |
|
<text text-anchor="" x="535.57" y="427.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>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/images.Manifest.func1 (1 samples, 1.43%)</title><rect x="279.7" y="225" width="16.9" height="15.0" fill="rgb(229,151,13)" rx="2" ry="2" /> |
|
<text text-anchor="" x="282.71" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.goready.func1 (1 samples, 1.43%)</title><rect x="684.3" y="337" width="16.8" height="15.0" fill="rgb(212,41,36)" rx="2" ry="2" /> |
|
<text text-anchor="" x="687.29" 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/images.Walk (1 samples, 1.43%)</title><rect x="94.3" y="241" width="16.8" height="15.0" fill="rgb(209,113,43)" rx="2" ry="2" /> |
|
<text text-anchor="" x="97.29" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.Unmarshal (1 samples, 1.43%)</title><rect x="347.1" y="113" width="16.9" height="15.0" fill="rgb(224,196,11)" rx="2" ry="2" /> |
|
<text text-anchor="" x="350.14" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc/transport.(*http2Client).newStream (1 samples, 1.43%)</title><rect x="414.6" y="209" width="16.8" height="15.0" fill="rgb(243,22,4)" rx="2" ry="2" /> |
|
<text text-anchor="" x="417.57" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>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.43%)</title><rect x="26.9" y="369" width="16.8" height="15.0" fill="rgb(226,119,19)" rx="2" ry="2" /> |
|
<text text-anchor="" x="29.86" 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.(*task).Kill (1 samples, 1.43%)</title><rect x="414.6" y="321" width="16.8" height="15.0" fill="rgb(240,20,7)" rx="2" ry="2" /> |
|
<text text-anchor="" x="417.57" 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).localResolve.func1 (1 samples, 1.43%)</title><rect x="246.0" y="337" width="16.9" height="15.0" fill="rgb(252,167,15)" rx="2" ry="2" /> |
|
<text text-anchor="" x="249.00" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/golang.org/x/net/http2.(*Framer).readMetaFrame.func1 (1 samples, 1.43%)</title><rect x="498.9" y="353" width="16.8" height="15.0" fill="rgb(229,166,42)" rx="2" ry="2" /> |
|
<text text-anchor="" x="501.86" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.heapBitsSetType (1 samples, 1.43%)</title><rect x="296.6" y="209" width="16.8" height="15.0" fill="rgb(245,186,34)" rx="2" ry="2" /> |
|
<text text-anchor="" x="299.57" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.protoCodec.Unmarshal (1 samples, 1.43%)</title><rect x="94.3" y="97" width="16.8" height="15.0" fill="rgb(208,113,33)" rx="2" ry="2" /> |
|
<text text-anchor="" x="97.29" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/pkg/server.(*criContainerdService).ensureImageExists (1 samples, 1.43%)</title><rect x="246.0" y="369" width="16.9" height="15.0" fill="rgb(248,47,52)" rx="2" ry="2" /> |
|
<text text-anchor="" x="249.00" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containernetworking/cni/pkg/invoke.(*RawExec).ExecPlugin (1 samples, 1.43%)</title><rect x="330.3" y="289" width="16.8" height="15.0" fill="rgb(245,62,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="333.29" 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/containerd/containerd/content.ReadBlob (1 samples, 1.43%)</title><rect x="94.3" y="193" width="16.8" height="15.0" fill="rgb(227,25,17)" rx="2" ry="2" /> |
|
<text text-anchor="" x="97.29" 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>net.(*netFD).Read (8 samples, 11.43%)</title><rect x="532.6" y="353" width="134.8" height="15.0" fill="rgb(249,213,22)" rx="2" ry="2" /> |
|
<text text-anchor="" x="535.57" y="363.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>encoding/json.(*decodeState).array (2 samples, 2.86%)</title><rect x="347.1" y="177" width="33.8" height="15.0" fill="rgb(225,172,29)" rx="2" ry="2" /> |
|
<text text-anchor="" x="350.14" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >en..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Close (1 samples, 1.43%)</title><rect x="10.0" y="305" width="16.9" height="15.0" fill="rgb(207,143,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.00" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Stat (1 samples, 1.43%)</title><rect x="262.9" y="289" width="16.8" height="15.0" fill="rgb(224,187,7)" rx="2" ry="2" /> |
|
<text text-anchor="" x="265.86" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Syscall (1 samples, 1.43%)</title><rect x="229.1" y="289" width="16.9" height="15.0" fill="rgb(244,211,41)" rx="2" ry="2" /> |
|
<text text-anchor="" x="232.14" 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>internal/poll.(*FD).destroy (1 samples, 1.43%)</title><rect x="10.0" y="321" width="16.9" height="15.0" fill="rgb(224,79,2)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.00" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc/transport.(*http2Client).NewStream (1 samples, 1.43%)</title><rect x="111.1" y="257" width="16.9" height="15.0" fill="rgb(234,30,30)" rx="2" ry="2" /> |
|
<text text-anchor="" x="114.14" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.namespaceInterceptor.unary (1 samples, 1.43%)</title><rect x="414.6" y="257" width="16.8" height="15.0" fill="rgb(248,188,7)" rx="2" ry="2" /> |
|
<text text-anchor="" x="417.57" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.mallocgc (1 samples, 1.43%)</title><rect x="313.4" y="177" width="16.9" height="15.0" fill="rgb(244,124,19)" rx="2" ry="2" /> |
|
<text text-anchor="" x="316.43" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.(*container).NewTask (1 samples, 1.43%)</title><rect x="296.6" y="369" width="16.8" height="15.0" fill="rgb(252,59,25)" rx="2" ry="2" /> |
|
<text text-anchor="" x="299.57" 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.notewakeup (1 samples, 1.43%)</title><rect x="330.3" y="145" width="16.8" height="15.0" fill="rgb(206,20,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="333.29" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*decodeState).value (3 samples, 4.29%)</title><rect x="347.1" y="193" width="50.6" height="15.0" fill="rgb(249,124,0)" rx="2" ry="2" /> |
|
<text text-anchor="" x="350.14" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >encod..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.systemstack (2 samples, 2.86%)</title><rect x="633.7" y="241" width="33.7" height="15.0" fill="rgb(245,169,7)" rx="2" ry="2" /> |
|
<text text-anchor="" x="636.71" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ru..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/images.Manifest (1 samples, 1.43%)</title><rect x="94.3" y="273" width="16.8" height="15.0" fill="rgb(230,207,41)" rx="2" ry="2" /> |
|
<text text-anchor="" x="97.29" 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.namespaceInterceptor.unary (1 samples, 1.43%)</title><rect x="246.0" y="97" width="16.9" height="15.0" fill="rgb(226,169,37)" rx="2" ry="2" /> |
|
<text text-anchor="" x="249.00" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/api/services/containers/v1.(*containersClient).Get (1 samples, 1.43%)</title><rect x="195.4" y="321" width="16.9" height="15.0" fill="rgb(245,28,35)" rx="2" ry="2" /> |
|
<text text-anchor="" x="198.43" 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/k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime._RuntimeService_RemoveContainer_Handler (3 samples, 4.29%)</title><rect x="144.9" y="417" width="50.5" height="15.0" fill="rgb(250,220,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="147.86" y="427.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/google.golang.org/grpc.sendRequest (1 samples, 1.43%)</title><rect x="246.0" y="65" width="16.9" height="15.0" fill="rgb(240,223,26)" rx="2" ry="2" /> |
|
<text text-anchor="" x="249.00" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*encodeState).marshal (1 samples, 1.43%)</title><rect x="128.0" y="305" width="16.9" height="15.0" fill="rgb(209,116,23)" rx="2" ry="2" /> |
|
<text text-anchor="" x="131.00" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Syscall (1 samples, 1.43%)</title><rect x="262.9" y="273" width="16.8" height="15.0" fill="rgb(221,56,27)" rx="2" ry="2" /> |
|
<text text-anchor="" x="265.86" 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.preemptone (1 samples, 1.43%)</title><rect x="1105.7" y="417" width="16.9" height="15.0" fill="rgb(218,122,38)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1108.71" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containernetworking/cni/pkg/types.(*Route).UnmarshalJSON (1 samples, 1.43%)</title><rect x="347.1" y="129" width="16.9" height="15.0" fill="rgb(252,10,24)" rx="2" ry="2" /> |
|
<text text-anchor="" x="350.14" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/pkg/server.(*criContainerdService).addOCIBindMounts (1 samples, 1.43%)</title><rect x="77.4" y="353" width="16.9" height="15.0" fill="rgb(239,187,42)" rx="2" ry="2" /> |
|
<text text-anchor="" x="80.43" 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.findrunnable (11 samples, 15.71%)</title><rect x="836.0" y="417" width="185.4" height="15.0" fill="rgb(250,211,9)" rx="2" ry="2" /> |
|
<text text-anchor="" x="839.00" y="427.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>github.com/kubernetes-incubator/cri-containerd/pkg/server.(*criContainerdService).CreateContainer (4 samples, 5.71%)</title><rect x="77.4" y="385" width="67.5" height="15.0" fill="rgb(230,5,51)" rx="2" ry="2" /> |
|
<text text-anchor="" x="80.43" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github...</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.(*Client).NewContainer (3 samples, 4.29%)</title><rect x="94.3" y="369" width="50.6" height="15.0" fill="rgb(213,119,15)" rx="2" ry="2" /> |
|
<text text-anchor="" x="97.29" 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.(*Client).NewContainer (1 samples, 1.43%)</title><rect x="279.7" y="369" width="16.9" height="15.0" fill="rgb(213,63,22)" rx="2" ry="2" /> |
|
<text text-anchor="" x="282.71" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>fmt.(*ss).scanInt (1 samples, 1.43%)</title><rect x="178.6" y="225" width="16.8" height="15.0" fill="rgb(215,154,10)" rx="2" ry="2" /> |
|
<text text-anchor="" x="181.57" 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.loopyWriter (2 samples, 2.86%)</title><rect x="701.1" y="449" width="33.8" height="15.0" fill="rgb(211,97,32)" rx="2" ry="2" /> |
|
<text text-anchor="" x="704.14" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gi..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/api/services/content/v1.(*contentClient).Read (1 samples, 1.43%)</title><rect x="279.7" y="177" width="16.9" height="15.0" fill="rgb(216,150,48)" rx="2" ry="2" /> |
|
<text text-anchor="" x="282.71" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.casgstatus (1 samples, 1.43%)</title><rect x="869.7" y="401" width="16.9" height="15.0" fill="rgb(223,163,49)" rx="2" ry="2" /> |
|
<text text-anchor="" x="872.71" 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/containernetworking/cni/pkg/invoke.ExecPluginWithResult (4 samples, 5.71%)</title><rect x="330.3" y="321" width="67.4" height="15.0" fill="rgb(211,104,4)" rx="2" ry="2" /> |
|
<text text-anchor="" x="333.29" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github...</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/images.Walk (1 samples, 1.43%)</title><rect x="246.0" y="241" width="16.9" height="15.0" fill="rgb(236,212,27)" rx="2" ry="2" /> |
|
<text text-anchor="" x="249.00" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containernetworking/cni/pkg/invoke.(*PluginExec).WithResult (4 samples, 5.71%)</title><rect x="330.3" y="305" width="67.4" height="15.0" fill="rgb(224,30,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="333.29" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github...</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.(*mcache).nextFree (1 samples, 1.43%)</title><rect x="414.6" y="161" width="16.8" height="15.0" fill="rgb(242,122,9)" rx="2" ry="2" /> |
|
<text text-anchor="" x="417.57" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.nextFreeFast (1 samples, 1.43%)</title><rect x="26.9" y="177" width="16.8" height="15.0" fill="rgb(240,80,23)" rx="2" ry="2" /> |
|
<text text-anchor="" x="29.86" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.callers (1 samples, 1.43%)</title><rect x="364.0" y="81" width="16.9" height="15.0" fill="rgb(244,194,44)" rx="2" ry="2" /> |
|
<text text-anchor="" x="367.00" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.bgsweep (1 samples, 1.43%)</title><rect x="802.3" y="465" width="16.8" height="15.0" fill="rgb(247,228,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="805.29" 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/pkg/containerd/opts.WithNewSnapshot.func1 (1 samples, 1.43%)</title><rect x="279.7" y="353" width="16.9" height="15.0" fill="rgb(226,54,45)" rx="2" ry="2" /> |
|
<text text-anchor="" x="282.71" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.futexsleep (2 samples, 2.86%)</title><rect x="768.6" y="401" width="33.7" height="15.0" fill="rgb(242,201,26)" rx="2" ry="2" /> |
|
<text text-anchor="" x="771.57" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ru..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc/transport.(*http2Client).handlePing (1 samples, 1.43%)</title><rect x="684.3" y="449" width="16.8" height="15.0" fill="rgb(207,210,34)" rx="2" ry="2" /> |
|
<text text-anchor="" x="687.29" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os.Stat (1 samples, 1.43%)</title><rect x="77.4" y="305" width="16.9" height="15.0" fill="rgb(215,160,24)" rx="2" ry="2" /> |
|
<text text-anchor="" x="80.43" 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.wakep (1 samples, 1.43%)</title><rect x="330.3" y="177" width="16.8" height="15.0" fill="rgb(215,66,0)" rx="2" ry="2" /> |
|
<text text-anchor="" x="333.29" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os.Rename (1 samples, 1.43%)</title><rect x="144.9" y="337" width="16.8" height="15.0" fill="rgb(234,8,1)" rx="2" ry="2" /> |
|
<text text-anchor="" x="147.86" 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/server.(*eventMonitor).handleEvent (2 samples, 2.86%)</title><rect x="10.0" y="449" width="33.7" height="15.0" fill="rgb(247,90,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)" >gi..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os.(*File).Close (1 samples, 1.43%)</title><rect x="10.0" y="385" width="16.9" height="15.0" fill="rgb(244,137,40)" 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>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.(*remoteContainers).Get (1 samples, 1.43%)</title><rect x="195.4" y="337" width="16.9" height="15.0" fill="rgb(251,130,40)" rx="2" ry="2" /> |
|
<text text-anchor="" x="198.43" 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.(*task).Wait (1 samples, 1.43%)</title><rect x="431.4" y="321" width="16.9" height="15.0" fill="rgb(212,57,54)" rx="2" ry="2" /> |
|
<text text-anchor="" x="434.43" 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.mProf_Malloc (1 samples, 1.43%)</title><rect x="364.0" y="97" width="16.9" height="15.0" fill="rgb(246,183,41)" rx="2" ry="2" /> |
|
<text text-anchor="" x="367.00" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.futexwakeup (1 samples, 1.43%)</title><rect x="684.3" y="257" width="16.8" height="15.0" fill="rgb(214,55,1)" rx="2" ry="2" /> |
|
<text text-anchor="" x="687.29" 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.Stat (1 samples, 1.43%)</title><rect x="77.4" y="289" width="16.9" height="15.0" fill="rgb(233,124,37)" rx="2" ry="2" /> |
|
<text text-anchor="" x="80.43" 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.heapBitsSetType (1 samples, 1.43%)</title><rect x="313.4" y="161" width="16.9" height="15.0" fill="rgb(207,27,45)" rx="2" ry="2" /> |
|
<text text-anchor="" x="316.43" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc/transport.loopyWriter (1 samples, 1.43%)</title><rect x="734.9" y="449" width="16.8" height="15.0" fill="rgb(214,139,5)" rx="2" ry="2" /> |
|
<text text-anchor="" x="737.86" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.notetsleepg (2 samples, 2.86%)</title><rect x="768.6" y="433" width="33.7" height="15.0" fill="rgb(237,59,42)" rx="2" ry="2" /> |
|
<text text-anchor="" x="771.57" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ru..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.Invoke (1 samples, 1.43%)</title><rect x="397.7" y="305" width="16.9" height="15.0" fill="rgb(218,111,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="400.71" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>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 (1 samples, 1.43%)</title><rect x="701.1" y="433" width="16.9" height="15.0" fill="rgb(238,186,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="704.14" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>internal/poll.(*pollDesc).wait (1 samples, 1.43%)</title><rect x="532.6" y="305" width="16.8" height="15.0" fill="rgb(210,91,45)" rx="2" ry="2" /> |
|
<text text-anchor="" x="535.57" 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.netpoll (2 samples, 2.86%)</title><rect x="886.6" y="401" width="33.7" height="15.0" fill="rgb(235,145,54)" rx="2" ry="2" /> |
|
<text text-anchor="" x="889.57" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ru..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/docker/docker/pkg/system.EnsureRemoveAll (2 samples, 2.86%)</title><rect x="161.7" y="369" width="33.7" height="15.0" fill="rgb(238,205,45)" rx="2" ry="2" /> |
|
<text text-anchor="" x="164.71" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gi..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Renameat (1 samples, 1.43%)</title><rect x="144.9" y="289" width="16.8" height="15.0" fill="rgb(205,97,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="147.86" 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.convI2I (1 samples, 1.43%)</title><rect x="195.4" y="209" width="16.9" height="15.0" fill="rgb(210,190,5)" rx="2" ry="2" /> |
|
<text text-anchor="" x="198.43" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.notewakeup (2 samples, 2.86%)</title><rect x="633.7" y="209" width="33.7" height="15.0" fill="rgb(206,177,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="636.71" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ru..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/golang.org/x/net/http2.(*Framer).WriteHeaders (1 samples, 1.43%)</title><rect x="701.1" y="401" width="16.9" height="15.0" fill="rgb(227,116,45)" rx="2" ry="2" /> |
|
<text text-anchor="" x="704.14" 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.epollwait (2 samples, 2.86%)</title><rect x="886.6" y="385" width="33.7" height="15.0" fill="rgb(233,18,4)" rx="2" ry="2" /> |
|
<text text-anchor="" x="889.57" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ru..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Rename (1 samples, 1.43%)</title><rect x="144.9" y="305" width="16.8" height="15.0" fill="rgb(205,151,54)" rx="2" ry="2" /> |
|
<text text-anchor="" x="147.86" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>internal/poll.(*FD).Read (8 samples, 11.43%)</title><rect x="532.6" y="337" width="134.8" height="15.0" fill="rgb(217,136,27)" rx="2" ry="2" /> |
|
<text text-anchor="" x="535.57" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >internal/poll.(*F..</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.recvResponse (1 samples, 1.43%)</title><rect x="26.9" y="321" width="16.8" height="15.0" fill="rgb(225,4,29)" rx="2" ry="2" /> |
|
<text text-anchor="" x="29.86" 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>fmt.(*ss).ReadRune (1 samples, 1.43%)</title><rect x="178.6" y="177" width="16.8" height="15.0" fill="rgb(239,36,11)" rx="2" ry="2" /> |
|
<text text-anchor="" x="181.57" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>fmt.(*ss).getRune (1 samples, 1.43%)</title><rect x="178.6" y="193" width="16.8" height="15.0" fill="rgb(216,137,7)" rx="2" ry="2" /> |
|
<text text-anchor="" x="181.57" 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.(*remoteContainers).Create (1 samples, 1.43%)</title><rect x="111.1" y="353" width="16.9" height="15.0" fill="rgb(246,193,28)" rx="2" ry="2" /> |
|
<text text-anchor="" x="114.14" 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.acquirep (1 samples, 1.43%)</title><rect x="920.3" y="385" width="16.8" height="15.0" fill="rgb(238,199,19)" rx="2" ry="2" /> |
|
<text text-anchor="" x="923.29" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.futexwakeup (1 samples, 1.43%)</title><rect x="330.3" y="129" width="16.8" height="15.0" fill="rgb(239,48,47)" rx="2" ry="2" /> |
|
<text text-anchor="" x="333.29" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.recv (1 samples, 1.43%)</title><rect x="94.3" y="129" width="16.8" height="15.0" fill="rgb(223,73,46)" rx="2" ry="2" /> |
|
<text text-anchor="" x="97.29" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/golang.org/x/net/http2/hpack.(*Encoder).WriteField (1 samples, 1.43%)</title><rect x="734.9" y="401" width="16.8" height="15.0" fill="rgb(228,66,5)" rx="2" ry="2" /> |
|
<text text-anchor="" x="737.86" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.futexsleep (4 samples, 5.71%)</title><rect x="954.0" y="369" width="67.4" height="15.0" fill="rgb(246,124,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="957.00" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >runtime..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*decodeState).unmarshal (3 samples, 4.29%)</title><rect x="347.1" y="241" width="50.6" height="15.0" fill="rgb(218,78,17)" rx="2" ry="2" /> |
|
<text text-anchor="" x="350.14" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >encod..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*decodeState).object (3 samples, 4.29%)</title><rect x="347.1" y="209" width="50.6" height="15.0" fill="rgb(250,19,8)" rx="2" ry="2" /> |
|
<text text-anchor="" x="350.14" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >encod..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.profilealloc (1 samples, 1.43%)</title><rect x="364.0" y="113" width="16.9" height="15.0" fill="rgb(230,164,14)" rx="2" ry="2" /> |
|
<text text-anchor="" x="367.00" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.wakep (1 samples, 1.43%)</title><rect x="684.3" y="305" width="16.8" height="15.0" fill="rgb(244,140,5)" rx="2" ry="2" /> |
|
<text text-anchor="" x="687.29" 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.readFrameHeader (8 samples, 11.43%)</title><rect x="532.6" y="433" width="134.8" height="15.0" fill="rgb(205,176,44)" rx="2" ry="2" /> |
|
<text text-anchor="" x="535.57" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/kubern..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.makeslice (1 samples, 1.43%)</title><rect x="313.4" y="193" width="16.9" height="15.0" fill="rgb(239,37,48)" rx="2" ry="2" /> |
|
<text text-anchor="" x="316.43" 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/google.golang.org/grpc.invoke (1 samples, 1.43%)</title><rect x="296.6" y="273" width="16.8" height="15.0" fill="rgb(209,93,21)" rx="2" ry="2" /> |
|
<text text-anchor="" x="299.57" 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/golang.org/x/net/http2.(*Framer).readMetaFrame (2 samples, 2.86%)</title><rect x="482.0" y="433" width="33.7" height="15.0" fill="rgb(224,160,34)" rx="2" ry="2" /> |
|
<text text-anchor="" x="485.00" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gi..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd.(*task).Delete (1 samples, 1.43%)</title><rect x="26.9" y="433" width="16.8" height="15.0" fill="rgb(220,50,1)" rx="2" ry="2" /> |
|
<text text-anchor="" x="29.86" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.(*gcSweepBuf).pop (1 samples, 1.43%)</title><rect x="802.3" y="401" width="16.8" height="15.0" fill="rgb(218,0,50)" rx="2" ry="2" /> |
|
<text text-anchor="" x="805.29" 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.notetsleep (2 samples, 2.86%)</title><rect x="1072.0" y="417" width="33.7" height="15.0" fill="rgb(205,65,34)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1075.00" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ru..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/pkg/server.(*criContainerdService).RunPodSandbox (10 samples, 14.29%)</title><rect x="229.1" y="385" width="168.6" height="15.0" fill="rgb(254,189,28)" rx="2" ry="2" /> |
|
<text text-anchor="" x="232.14" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/kubernetes..</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.43%)</title><rect x="414.6" y="241" width="16.8" height="15.0" fill="rgb(219,198,38)" rx="2" ry="2" /> |
|
<text text-anchor="" x="417.57" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os.MkdirAll (1 samples, 1.43%)</title><rect x="229.1" y="337" width="16.9" height="15.0" fill="rgb(220,218,25)" rx="2" ry="2" /> |
|
<text text-anchor="" x="232.14" 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.Copy (1 samples, 1.43%)</title><rect x="751.7" y="433" width="16.9" height="15.0" fill="rgb(215,90,25)" rx="2" ry="2" /> |
|
<text text-anchor="" x="754.71" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>syscall.Syscall (1 samples, 1.43%)</title><rect x="10.0" y="289" width="16.9" height="15.0" fill="rgb(244,168,54)" rx="2" ry="2" /> |
|
<text text-anchor="" x="13.00" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc/transport.(*quotaPool).compareAndExecute (1 samples, 1.43%)</title><rect x="246.0" y="33" width="16.9" height="15.0" fill="rgb(245,180,8)" rx="2" ry="2" /> |
|
<text text-anchor="" x="249.00" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/images.Manifest (1 samples, 1.43%)</title><rect x="246.0" y="257" width="16.9" height="15.0" fill="rgb(249,43,27)" rx="2" ry="2" /> |
|
<text text-anchor="" x="249.00" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os/exec.(*Cmd).Run (1 samples, 1.43%)</title><rect x="330.3" y="273" width="16.8" height="15.0" fill="rgb(211,12,25)" rx="2" ry="2" /> |
|
<text text-anchor="" x="333.29" 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.copystack (1 samples, 1.43%)</title><rect x="1055.1" y="433" width="16.9" height="15.0" fill="rgb(218,95,31)" rx="2" ry="2" /> |
|
<text text-anchor="" x="1058.14" 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.Walk (1 samples, 1.43%)</title><rect x="94.3" y="257" width="16.8" height="15.0" fill="rgb(253,82,39)" rx="2" ry="2" /> |
|
<text text-anchor="" x="97.29" 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.(*Server).handleStream (23 samples, 32.86%)</title><rect x="77.4" y="449" width="387.7" height="15.0" fill="rgb(220,182,22)" rx="2" ry="2" /> |
|
<text text-anchor="" x="80.43" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/kubernetes-incubator/cri-containerd/vendo..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.chansend (1 samples, 1.43%)</title><rect x="684.3" y="401" width="16.8" height="15.0" fill="rgb(235,98,45)" rx="2" ry="2" /> |
|
<text text-anchor="" x="687.29" 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/os.(*RealOS).MkdirAll (1 samples, 1.43%)</title><rect x="262.9" y="353" width="16.8" height="15.0" fill="rgb(217,225,44)" rx="2" ry="2" /> |
|
<text text-anchor="" x="265.86" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/images.Config (1 samples, 1.43%)</title><rect x="94.3" y="289" width="16.8" height="15.0" fill="rgb(251,127,45)" rx="2" ry="2" /> |
|
<text text-anchor="" x="97.29" 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.(*clientStream).RecvMsg (1 samples, 1.43%)</title><rect x="94.3" y="145" width="16.8" height="15.0" fill="rgb(237,160,16)" rx="2" ry="2" /> |
|
<text text-anchor="" x="97.29" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/golang.org/x/net/http2.(*Framer).ReadFrame (11 samples, 15.71%)</title><rect x="482.0" y="449" width="185.4" height="15.0" fill="rgb(227,205,26)" rx="2" ry="2" /> |
|
<text text-anchor="" x="485.00" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >github.com/kubernetes-in..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.systemstack (1 samples, 1.43%)</title><rect x="364.0" y="65" width="16.9" height="15.0" fill="rgb(240,183,54)" rx="2" ry="2" /> |
|
<text text-anchor="" x="367.00" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/api/types/task.(*Process).Unmarshal (1 samples, 1.43%)</title><rect x="26.9" y="225" width="16.8" height="15.0" fill="rgb(229,76,28)" rx="2" ry="2" /> |
|
<text text-anchor="" x="29.86" 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/github.com/golang/protobuf/proto.(*Buffer).Unmarshal (1 samples, 1.43%)</title><rect x="26.9" y="257" width="16.8" height="15.0" fill="rgb(226,125,36)" rx="2" ry="2" /> |
|
<text text-anchor="" x="29.86" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>os.(*File).read (1 samples, 1.43%)</title><rect x="751.7" y="369" width="16.9" height="15.0" fill="rgb(222,17,0)" rx="2" ry="2" /> |
|
<text text-anchor="" x="754.71" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.(*hchan).sortkey (1 samples, 1.43%)</title><rect x="718.0" y="433" width="16.9" height="15.0" fill="rgb(232,29,44)" rx="2" ry="2" /> |
|
<text text-anchor="" x="721.00" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/images.HandlerFunc.Handle (1 samples, 1.43%)</title><rect x="279.7" y="241" width="16.9" height="15.0" fill="rgb(236,86,22)" rx="2" ry="2" /> |
|
<text text-anchor="" x="282.71" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>runtime.(*mcache).refill (1 samples, 1.43%)</title><rect x="414.6" y="113" width="16.8" height="15.0" fill="rgb(254,140,49)" rx="2" ry="2" /> |
|
<text text-anchor="" x="417.57" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/content.ReadBlob (1 samples, 1.43%)</title><rect x="246.0" y="193" width="16.9" height="15.0" fill="rgb(224,157,18)" rx="2" ry="2" /> |
|
<text text-anchor="" x="249.00" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>bufio.(*Reader).Read (8 samples, 11.43%)</title><rect x="532.6" y="385" width="134.8" height="15.0" fill="rgb(219,108,2)" rx="2" ry="2" /> |
|
<text text-anchor="" x="535.57" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bufio.(*Reader).R..</text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>encoding/json.(*mapEncoder).(encoding/json.encode)-fm (1 samples, 1.43%)</title><rect x="313.4" y="241" width="16.9" height="15.0" fill="rgb(229,223,43)" rx="2" ry="2" /> |
|
<text text-anchor="" x="316.43" 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/api/services/snapshot/v1.(*snapshotsClient).Mounts (1 samples, 1.43%)</title><rect x="296.6" y="337" width="16.8" height="15.0" fill="rgb(233,18,19)" rx="2" ry="2" /> |
|
<text text-anchor="" x="299.57" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/containerd/containerd/images.(*Image).Config (1 samples, 1.43%)</title><rect x="246.0" y="289" width="16.9" height="15.0" fill="rgb(253,189,34)" rx="2" ry="2" /> |
|
<text text-anchor="" x="249.00" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/google.golang.org/grpc.Invoke (1 samples, 1.43%)</title><rect x="26.9" y="385" width="16.8" height="15.0" fill="rgb(222,154,53)" rx="2" ry="2" /> |
|
<text text-anchor="" x="29.86" 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/hpack.(*Decoder).parseFieldIndexed (1 samples, 1.43%)</title><rect x="498.9" y="385" width="16.8" height="15.0" fill="rgb(231,222,5)" rx="2" ry="2" /> |
|
<text text-anchor="" x="501.86" 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/images.Manifest (1 samples, 1.43%)</title><rect x="279.7" y="273" width="16.9" height="15.0" fill="rgb(233,41,17)" rx="2" ry="2" /> |
|
<text text-anchor="" x="282.71" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> |
|
</g> |
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> |
|
<title>github.com/kubernetes-incubator/cri-containerd/vendor/github.com/docker/docker/pkg/mount.RecursiveUnmount (2 samples, 2.86%)</title><rect x="161.7" y="353" width="33.7" height="15.0" fill="rgb(216,197,12)" rx="2" ry="2" /> |
|
<text text-anchor="" x="164.71" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gi..</text> |
|
</g> |
|
</svg> |
|
|