|
<?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="2134" onload="init(evt)" viewBox="0 0 1200 2134" 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. --> |
|
<!-- NOTES: --> |
|
<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"> |
|
text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); } |
|
#search, #ignorecase { opacity:0.1; cursor:pointer; } |
|
#search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; } |
|
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); } |
|
#title { text-anchor:middle; font-size:17px} |
|
#unzoom { cursor:pointer; } |
|
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; } |
|
.hide { display:none; } |
|
.parent { opacity:0.5; } |
|
</style> |
|
<script type="text/ecmascript"> |
|
<![CDATA[ |
|
"use strict"; |
|
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn; |
|
function init(evt) { |
|
details = document.getElementById("details").firstChild; |
|
searchbtn = document.getElementById("search"); |
|
ignorecaseBtn = document.getElementById("ignorecase"); |
|
unzoombtn = document.getElementById("unzoom"); |
|
matchedtxt = document.getElementById("matched"); |
|
svg = document.getElementsByTagName("svg")[0]; |
|
searching = 0; |
|
currentSearchTerm = null; |
|
|
|
// use GET parameters to restore a flamegraphs state. |
|
var params = get_params(); |
|
if (params.x && params.y) |
|
zoom(find_group(document.querySelector('[x="' + params.x + '"][y="' + params.y + '"]'))); |
|
if (params.s) search(params.s); |
|
} |
|
|
|
// event listeners |
|
window.addEventListener("click", function(e) { |
|
var target = find_group(e.target); |
|
if (target) { |
|
if (target.nodeName == "a") { |
|
if (e.ctrlKey === false) return; |
|
e.preventDefault(); |
|
} |
|
if (target.classList.contains("parent")) unzoom(); |
|
zoom(target); |
|
if (!document.querySelector('.parent')) { |
|
clearzoom(); |
|
return; |
|
} |
|
|
|
// set parameters for zoom state |
|
var el = target.querySelector("rect"); |
|
if (el && el.attributes && el.attributes.y && el.attributes._orig_x) { |
|
var params = get_params() |
|
params.x = el.attributes._orig_x.value; |
|
params.y = el.attributes.y.value; |
|
history.replaceState(null, null, parse_params(params)); |
|
} |
|
} |
|
else if (e.target.id == "unzoom") clearzoom(); |
|
else if (e.target.id == "search") search_prompt(); |
|
else if (e.target.id == "ignorecase") toggle_ignorecase(); |
|
}, false) |
|
|
|
// mouse-over for info |
|
// show |
|
window.addEventListener("mouseover", function(e) { |
|
var target = find_group(e.target); |
|
if (target) details.nodeValue = "Function: " + g_to_text(target); |
|
}, false) |
|
|
|
// clear |
|
window.addEventListener("mouseout", function(e) { |
|
var target = find_group(e.target); |
|
if (target) details.nodeValue = ' '; |
|
}, false) |
|
|
|
// ctrl-F for search |
|
// ctrl-I to toggle case-sensitive search |
|
window.addEventListener("keydown",function (e) { |
|
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) { |
|
e.preventDefault(); |
|
search_prompt(); |
|
} |
|
else if (e.ctrlKey && e.keyCode === 73) { |
|
e.preventDefault(); |
|
toggle_ignorecase(); |
|
} |
|
}, false) |
|
|
|
// functions |
|
function get_params() { |
|
var params = {}; |
|
var paramsarr = window.location.search.substr(1).split('&'); |
|
for (var i = 0; i < paramsarr.length; ++i) { |
|
var tmp = paramsarr[i].split("="); |
|
if (!tmp[0] || !tmp[1]) continue; |
|
params[tmp[0]] = decodeURIComponent(tmp[1]); |
|
} |
|
return params; |
|
} |
|
function parse_params(params) { |
|
var uri = "?"; |
|
for (var key in params) { |
|
uri += key + '=' + encodeURIComponent(params[key]) + '&'; |
|
} |
|
if (uri.slice(-1) == "&") |
|
uri = uri.substring(0, uri.length - 1); |
|
if (uri == '?') |
|
uri = window.location.href.split('?')[0]; |
|
return uri; |
|
} |
|
function find_child(node, selector) { |
|
var children = node.querySelectorAll(selector); |
|
if (children.length) return children[0]; |
|
} |
|
function find_group(node) { |
|
var parent = node.parentElement; |
|
if (!parent) return; |
|
if (parent.id == "frames") return node; |
|
return find_group(parent); |
|
} |
|
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]").attributes.x.value + 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; |
|
|
|
unzoombtn.classList.remove("hide"); |
|
|
|
var el = document.getElementById("frames").children; |
|
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); |
|
var upstack; |
|
// Is it an ancestor |
|
if (0 == 0) { |
|
upstack = parseFloat(a.y.value) > ymin; |
|
} else { |
|
upstack = parseFloat(a.y.value) < ymin; |
|
} |
|
if (upstack) { |
|
// Direct ancestor |
|
if (ex <= xmin && (ex+ew+fudge) >= xmax) { |
|
e.classList.add("parent"); |
|
zoom_parent(e); |
|
update_text(e); |
|
} |
|
// not in current path |
|
else |
|
e.classList.add("hide"); |
|
} |
|
// Children maybe |
|
else { |
|
// no common path |
|
if (ex < xmin || ex + fudge >= xmax) { |
|
e.classList.add("hide"); |
|
} |
|
else { |
|
zoom_child(e, xmin, ratio); |
|
update_text(e); |
|
} |
|
} |
|
} |
|
search(); |
|
} |
|
function unzoom() { |
|
unzoombtn.classList.add("hide"); |
|
var el = document.getElementById("frames").children; |
|
for(var i = 0; i < el.length; i++) { |
|
el[i].classList.remove("parent"); |
|
el[i].classList.remove("hide"); |
|
zoom_reset(el[i]); |
|
update_text(el[i]); |
|
} |
|
search(); |
|
} |
|
function clearzoom() { |
|
unzoom(); |
|
|
|
// remove zoom state |
|
var params = get_params(); |
|
if (params.x) delete params.x; |
|
if (params.y) delete params.y; |
|
history.replaceState(null, null, parse_params(params)); |
|
} |
|
|
|
// search |
|
function toggle_ignorecase() { |
|
ignorecase = !ignorecase; |
|
if (ignorecase) { |
|
ignorecaseBtn.classList.add("show"); |
|
} else { |
|
ignorecaseBtn.classList.remove("show"); |
|
} |
|
reset_search(); |
|
search(); |
|
} |
|
function reset_search() { |
|
var el = document.querySelectorAll("#frames rect"); |
|
for (var i = 0; i < el.length; i++) { |
|
orig_load(el[i], "fill") |
|
} |
|
var params = get_params(); |
|
delete params.s; |
|
history.replaceState(null, null, parse_params(params)); |
|
} |
|
function search_prompt() { |
|
if (!searching) { |
|
var term = prompt("Enter a search term (regexp " + |
|
"allowed, eg: ^ext4_)" |
|
+ (ignorecase ? ", ignoring case" : "") |
|
+ "\nPress Ctrl-i to toggle case sensitivity", ""); |
|
if (term != null) search(term); |
|
} else { |
|
reset_search(); |
|
searching = 0; |
|
currentSearchTerm = null; |
|
searchbtn.classList.remove("show"); |
|
searchbtn.firstChild.nodeValue = "Search" |
|
matchedtxt.classList.add("hide"); |
|
matchedtxt.firstChild.nodeValue = "" |
|
} |
|
} |
|
function search(term) { |
|
if (term) currentSearchTerm = term; |
|
|
|
var re = new RegExp(currentSearchTerm, ignorecase ? 'i' : ''); |
|
var el = document.getElementById("frames").children; |
|
var matches = new Object(); |
|
var maxwidth = 0; |
|
for (var i = 0; i < el.length; i++) { |
|
var e = el[i]; |
|
var func = g_to_func(e); |
|
var rect = find_child(e, "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; |
|
var params = get_params(); |
|
params.s = currentSearchTerm; |
|
history.replaceState(null, null, parse_params(params)); |
|
|
|
searchbtn.classList.add("show"); |
|
searchbtn.firstChild.nodeValue = "Reset Search"; |
|
|
|
// calculate percent matched, excluding vertical overlap |
|
var count = 0; |
|
var lastx = -1; |
|
var lastw = 0; |
|
var keys = Array(); |
|
for (k in matches) { |
|
if (matches.hasOwnProperty(k)) |
|
keys.push(k); |
|
} |
|
// sort the matched frames by their x location |
|
// ascending, then width descending |
|
keys.sort(function(a, b){ |
|
return a - b; |
|
}); |
|
// Step through frames saving only the biggest bottom-up frames |
|
// thanks to the sort order. This relies on the tree property |
|
// where children are always smaller than their parents. |
|
var fudge = 0.0001; // JavaScript floating point |
|
for (var k in keys) { |
|
var x = parseFloat(keys[k]); |
|
var w = matches[keys[k]]; |
|
if (x >= lastx + lastw - fudge) { |
|
count += w; |
|
lastx = x; |
|
lastw = w; |
|
} |
|
} |
|
// display matched percent |
|
matchedtxt.classList.remove("hide"); |
|
var pct = 100 * count / maxwidth; |
|
if (pct != 100) pct = pct.toFixed(1) |
|
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%"; |
|
} |
|
]]> |
|
</script> |
|
<rect x="0.0" y="0" width="1200.0" height="2134.0" fill="url(#background)" /> |
|
<text id="title" x="600.00" y="24" >Flame Graph</text> |
|
<text id="details" x="10.00" y="2117" > </text> |
|
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text> |
|
<text id="search" x="1090.00" y="24" >Search</text> |
|
<text id="ignorecase" x="1174.00" y="24" >ic</text> |
|
<text id="matched" x="1090.00" y="2117" > </text> |
|
<g id="frames"> |
|
<g > |
|
<title>__libc_send (6 samples, 0.04%)</title><rect x="1035.9" y="2053" width="0.4" height="15.0" fill="rgb(220,63,2)" rx="2" ry="2" /> |
|
<text x="1038.90" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1014.5" y="2005" width="0.1" height="15.0" fill="rgb(244,63,8)" rx="2" ry="2" /> |
|
<text x="1017.51" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1047.0" y="1957" width="0.1" height="15.0" fill="rgb(213,152,29)" rx="2" ry="2" /> |
|
<text x="1049.95" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (13,132 samples, 78.85%)</title><rect x="46.6" y="2053" width="930.4" height="15.0" fill="rgb(248,31,8)" rx="2" ry="2" /> |
|
<text x="49.56" y="2063.5" >[unknown]</text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="11.0" y="1701" width="0.1" height="15.0" fill="rgb(237,223,36)" rx="2" ry="2" /> |
|
<text x="13.99" y="1711.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (10 samples, 0.06%)</title><rect x="1065.7" y="1989" width="0.7" height="15.0" fill="rgb(227,126,22)" rx="2" ry="2" /> |
|
<text x="1068.73" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="1045.1" y="1973" width="0.2" height="15.0" fill="rgb(220,154,15)" rx="2" ry="2" /> |
|
<text x="1048.11" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1045.1" y="1925" width="0.2" height="15.0" fill="rgb(212,78,3)" rx="2" ry="2" /> |
|
<text x="1048.11" y="1935.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1015.8" y="1989" width="0.1" height="15.0" fill="rgb(230,154,15)" rx="2" ry="2" /> |
|
<text x="1018.78" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1044.7" y="1957" width="0.1" height="15.0" fill="rgb(247,207,24)" rx="2" ry="2" /> |
|
<text x="1047.69" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="1047.9" y="2021" width="0.5" height="15.0" fill="rgb(245,112,46)" rx="2" ry="2" /> |
|
<text x="1050.95" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1461" width="0.5" height="15.0" fill="rgb(233,93,25)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1471.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (62 samples, 0.37%)</title><rect x="983.9" y="2021" width="4.4" height="15.0" fill="rgb(239,68,10)" rx="2" ry="2" /> |
|
<text x="986.90" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (10 samples, 0.06%)</title><rect x="1146.7" y="2021" width="0.7" height="15.0" fill="rgb(230,133,9)" rx="2" ry="2" /> |
|
<text x="1149.71" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1153.5" y="2005" width="0.2" height="15.0" fill="rgb(208,221,43)" rx="2" ry="2" /> |
|
<text x="1156.51" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (42 samples, 0.25%)</title><rect x="1099.0" y="2005" width="3.0" height="15.0" fill="rgb(238,161,26)" rx="2" ry="2" /> |
|
<text x="1102.03" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.02%)</title><rect x="1016.1" y="1989" width="0.2" height="15.0" fill="rgb(229,83,16)" rx="2" ry="2" /> |
|
<text x="1019.06" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="44.1" y="1989" width="0.2" height="15.0" fill="rgb(247,143,31)" rx="2" ry="2" /> |
|
<text x="47.15" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (6 samples, 0.04%)</title><rect x="1047.5" y="1989" width="0.4" height="15.0" fill="rgb(241,86,53)" rx="2" ry="2" /> |
|
<text x="1050.52" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1058.1" y="2005" width="0.1" height="15.0" fill="rgb(212,42,14)" rx="2" ry="2" /> |
|
<text x="1061.08" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (5 samples, 0.03%)</title><rect x="1092.5" y="1989" width="0.4" height="15.0" fill="rgb(213,102,0)" rx="2" ry="2" /> |
|
<text x="1095.51" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>__GI___open64_nocancel (2 samples, 0.01%)</title><rect x="1169.0" y="2037" width="0.1" height="15.0" fill="rgb(216,51,37)" rx="2" ry="2" /> |
|
<text x="1171.96" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="11.0" y="1733" width="0.1" height="15.0" fill="rgb(234,30,9)" rx="2" ry="2" /> |
|
<text x="13.99" y="1743.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (9 samples, 0.05%)</title><rect x="1180.9" y="1957" width="0.6" height="15.0" fill="rgb(239,48,0)" rx="2" ry="2" /> |
|
<text x="1183.86" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1317" width="0.2" height="15.0" fill="rgb(245,59,0)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1327.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1189.7" y="2005" width="0.2" height="15.0" fill="rgb(205,45,8)" rx="2" ry="2" /> |
|
<text x="1192.72" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1055.7" y="1973" width="0.2" height="15.0" fill="rgb(229,21,36)" rx="2" ry="2" /> |
|
<text x="1058.74" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>[libxul.so] (4 samples, 0.02%)</title><rect x="1022.2" y="2053" width="0.2" height="15.0" fill="rgb(213,151,46)" rx="2" ry="2" /> |
|
<text x="1025.16" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1014.9" y="2053" width="0.6" height="15.0" fill="rgb(241,70,5)" rx="2" ry="2" /> |
|
<text x="1017.93" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="805" width="0.5" height="15.0" fill="rgb(222,173,0)" rx="2" ry="2" /> |
|
<text x="1061.57" y="815.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1493" width="0.4" height="15.0" fill="rgb(253,192,54)" rx="2" ry="2" /> |
|
<text x="13.00" y="1503.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="869" width="0.5" height="15.0" fill="rgb(221,85,17)" rx="2" ry="2" /> |
|
<text x="1061.57" y="879.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1685" width="0.2" height="15.0" fill="rgb(230,33,49)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1695.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (9 samples, 0.05%)</title><rect x="34.2" y="2005" width="0.7" height="15.0" fill="rgb(250,189,6)" rx="2" ry="2" /> |
|
<text x="37.23" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1205" width="0.5" height="15.0" fill="rgb(254,175,52)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1215.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="165" width="0.2" height="15.0" fill="rgb(206,19,2)" rx="2" ry="2" /> |
|
<text x="1048.82" y="175.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1125" width="0.2" height="15.0" fill="rgb(211,46,10)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1135.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (26 samples, 0.16%)</title><rect x="10.0" y="1909" width="1.8" height="15.0" fill="rgb(233,93,1)" rx="2" ry="2" /> |
|
<text x="13.00" y="1919.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (9 samples, 0.05%)</title><rect x="1180.9" y="1989" width="0.6" height="15.0" fill="rgb(235,14,10)" rx="2" ry="2" /> |
|
<text x="1183.86" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.03%)</title><rect x="49.0" y="1941" width="0.4" height="15.0" fill="rgb(249,26,19)" rx="2" ry="2" /> |
|
<text x="52.04" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (62 samples, 0.37%)</title><rect x="983.9" y="2005" width="4.4" height="15.0" fill="rgb(217,220,14)" rx="2" ry="2" /> |
|
<text x="986.90" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1909" width="0.2" height="15.0" fill="rgb(242,93,30)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1919.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (52 samples, 0.31%)</title><rect x="38.8" y="1973" width="3.7" height="15.0" fill="rgb(242,182,10)" rx="2" ry="2" /> |
|
<text x="41.84" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="49.4" y="1941" width="0.1" height="15.0" fill="rgb(234,168,20)" rx="2" ry="2" /> |
|
<text x="52.39" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="997" width="0.2" height="15.0" fill="rgb(206,18,37)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1007.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (14 samples, 0.08%)</title><rect x="1009.1" y="2037" width="1.0" height="15.0" fill="rgb(247,159,14)" rx="2" ry="2" /> |
|
<text x="1012.12" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_read (4 samples, 0.02%)</title><rect x="35.0" y="2037" width="0.3" height="15.0" fill="rgb(225,12,32)" rx="2" ry="2" /> |
|
<text x="38.01" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1012.6" y="1957" width="0.1" height="15.0" fill="rgb(211,96,31)" rx="2" ry="2" /> |
|
<text x="1015.59" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (6,548 samples, 39.32%)</title><rect x="512.8" y="1989" width="463.9" height="15.0" fill="rgb(248,95,48)" rx="2" ry="2" /> |
|
<text x="515.82" y="1999.5" >syscall_exit_to_user_mode</text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (112 samples, 0.67%)</title><rect x="1028.0" y="2021" width="7.9" height="15.0" fill="rgb(231,36,21)" rx="2" ry="2" /> |
|
<text x="1030.97" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (5 samples, 0.03%)</title><rect x="45.1" y="1957" width="0.4" height="15.0" fill="rgb(238,70,15)" rx="2" ry="2" /> |
|
<text x="48.14" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (10 samples, 0.06%)</title><rect x="1168.2" y="1989" width="0.8" height="15.0" fill="rgb(221,150,11)" rx="2" ry="2" /> |
|
<text x="1171.25" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>__setitimer (8 samples, 0.05%)</title><rect x="1062.7" y="2053" width="0.6" height="15.0" fill="rgb(221,173,28)" rx="2" ry="2" /> |
|
<text x="1065.68" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1022.9" y="2005" width="0.1" height="15.0" fill="rgb(212,15,9)" rx="2" ry="2" /> |
|
<text x="1025.87" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="677" width="0.5" height="15.0" fill="rgb(252,154,49)" rx="2" ry="2" /> |
|
<text x="1061.57" y="687.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1169.0" y="2021" width="0.1" height="15.0" fill="rgb(214,128,23)" rx="2" ry="2" /> |
|
<text x="1171.96" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1067.1" y="1973" width="0.3" height="15.0" fill="rgb(235,175,16)" rx="2" ry="2" /> |
|
<text x="1070.15" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (10 samples, 0.06%)</title><rect x="1169.9" y="1989" width="0.8" height="15.0" fill="rgb(224,37,52)" rx="2" ry="2" /> |
|
<text x="1172.95" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="1047.0" y="2005" width="0.1" height="15.0" fill="rgb(251,70,41)" rx="2" ry="2" /> |
|
<text x="1049.95" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1557" width="0.2" height="15.0" fill="rgb(223,163,6)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1567.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_start_main (40 samples, 0.24%)</title><rect x="46.7" y="2037" width="2.8" height="15.0" fill="rgb(253,168,49)" rx="2" ry="2" /> |
|
<text x="49.70" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1445" width="0.2" height="15.0" fill="rgb(233,114,43)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1455.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (35 samples, 0.21%)</title><rect x="977.0" y="1925" width="2.5" height="15.0" fill="rgb(207,181,50)" rx="2" ry="2" /> |
|
<text x="980.03" y="1935.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="35.2" y="2005" width="0.1" height="15.0" fill="rgb(215,214,16)" rx="2" ry="2" /> |
|
<text x="38.15" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (20 samples, 0.12%)</title><rect x="1038.6" y="1989" width="1.4" height="15.0" fill="rgb(250,1,35)" rx="2" ry="2" /> |
|
<text x="1041.59" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (25 samples, 0.15%)</title><rect x="37.1" y="1957" width="1.7" height="15.0" fill="rgb(229,178,34)" rx="2" ry="2" /> |
|
<text x="40.06" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="325" width="0.5" height="15.0" fill="rgb(250,41,17)" rx="2" ry="2" /> |
|
<text x="1061.57" y="335.5" ></text> |
|
</g> |
|
<g > |
|
<title>_dl_map_object (206 samples, 1.24%)</title><rect x="1167.5" y="2053" width="14.6" height="15.0" fill="rgb(248,131,29)" rx="2" ry="2" /> |
|
<text x="1170.54" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1024.7" y="2021" width="0.3" height="15.0" fill="rgb(243,119,9)" rx="2" ry="2" /> |
|
<text x="1027.71" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (10 samples, 0.06%)</title><rect x="45.1" y="2037" width="0.7" height="15.0" fill="rgb(216,101,6)" rx="2" ry="2" /> |
|
<text x="48.14" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="10.2" y="1365" width="0.2" height="15.0" fill="rgb(233,103,0)" rx="2" ry="2" /> |
|
<text x="13.21" y="1375.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (6 samples, 0.04%)</title><rect x="44.7" y="1989" width="0.4" height="15.0" fill="rgb(251,9,26)" rx="2" ry="2" /> |
|
<text x="47.72" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (84 samples, 0.50%)</title><rect x="1077.6" y="2021" width="6.0" height="15.0" fill="rgb(247,27,42)" rx="2" ry="2" /> |
|
<text x="1080.63" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1021.4" y="2021" width="0.2" height="15.0" fill="rgb(247,88,28)" rx="2" ry="2" /> |
|
<text x="1024.45" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1733" width="0.5" height="15.0" fill="rgb(240,2,2)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1743.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (46 samples, 0.28%)</title><rect x="1109.9" y="2005" width="3.2" height="15.0" fill="rgb(205,60,43)" rx="2" ry="2" /> |
|
<text x="1112.87" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>__open64_nocancel (10 samples, 0.06%)</title><rect x="1092.5" y="2037" width="0.7" height="15.0" fill="rgb(229,53,1)" rx="2" ry="2" /> |
|
<text x="1095.51" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (5 samples, 0.03%)</title><rect x="991.3" y="1973" width="0.3" height="15.0" fill="rgb(231,111,35)" rx="2" ry="2" /> |
|
<text x="994.27" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (8 samples, 0.05%)</title><rect x="1076.4" y="1989" width="0.5" height="15.0" fill="rgb(252,96,32)" rx="2" ry="2" /> |
|
<text x="1079.36" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>__mmap (20 samples, 0.12%)</title><rect x="1146.0" y="2053" width="1.4" height="15.0" fill="rgb(220,194,20)" rx="2" ry="2" /> |
|
<text x="1149.00" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>_xstat (44 samples, 0.26%)</title><rect x="1170.7" y="2037" width="3.1" height="15.0" fill="rgb(233,205,46)" rx="2" ry="2" /> |
|
<text x="1173.66" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1253" width="0.2" height="15.0" fill="rgb(215,95,10)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1263.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1066.6" y="2021" width="0.1" height="15.0" fill="rgb(214,119,41)" rx="2" ry="2" /> |
|
<text x="1069.58" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (2 samples, 0.01%)</title><rect x="1055.7" y="2005" width="0.2" height="15.0" fill="rgb(254,203,28)" rx="2" ry="2" /> |
|
<text x="1058.74" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="33.7" y="1909" width="0.2" height="15.0" fill="rgb(250,29,12)" rx="2" ry="2" /> |
|
<text x="36.73" y="1919.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (101 samples, 0.61%)</title><rect x="1048.5" y="2005" width="7.2" height="15.0" fill="rgb(245,213,16)" rx="2" ry="2" /> |
|
<text x="1051.51" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="581" width="0.2" height="15.0" fill="rgb(252,162,27)" rx="2" ry="2" /> |
|
<text x="1048.82" y="591.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (4 samples, 0.02%)</title><rect x="1022.2" y="2021" width="0.2" height="15.0" fill="rgb(231,0,20)" rx="2" ry="2" /> |
|
<text x="1025.16" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>__close (2 samples, 0.01%)</title><rect x="46.7" y="1973" width="0.1" height="15.0" fill="rgb(236,141,33)" rx="2" ry="2" /> |
|
<text x="49.70" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>pt_TimedWait (2 samples, 0.01%)</title><rect x="1014.5" y="2037" width="0.1" height="15.0" fill="rgb(254,56,35)" rx="2" ry="2" /> |
|
<text x="1017.51" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>__getpid (4 samples, 0.02%)</title><rect x="1017.1" y="2037" width="0.2" height="15.0" fill="rgb(233,49,24)" rx="2" ry="2" /> |
|
<text x="1020.06" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (6 samples, 0.04%)</title><rect x="1145.4" y="2005" width="0.5" height="15.0" fill="rgb(239,143,34)" rx="2" ry="2" /> |
|
<text x="1148.44" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (17 samples, 0.10%)</title><rect x="1093.6" y="1973" width="1.2" height="15.0" fill="rgb(248,17,22)" rx="2" ry="2" /> |
|
<text x="1096.64" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>__setitimer (4 samples, 0.02%)</title><rect x="1058.9" y="101" width="0.2" height="15.0" fill="rgb(246,160,39)" rx="2" ry="2" /> |
|
<text x="1061.86" y="111.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1058.1" y="1989" width="0.1" height="15.0" fill="rgb(249,115,37)" rx="2" ry="2" /> |
|
<text x="1061.08" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (5 samples, 0.03%)</title><rect x="46.2" y="2021" width="0.4" height="15.0" fill="rgb(214,205,15)" rx="2" ry="2" /> |
|
<text x="49.20" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="373" width="0.2" height="15.0" fill="rgb(232,95,31)" rx="2" ry="2" /> |
|
<text x="1048.82" y="383.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1153.5" y="2037" width="0.3" height="15.0" fill="rgb(235,83,26)" rx="2" ry="2" /> |
|
<text x="1156.51" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="453" width="0.5" height="15.0" fill="rgb(220,139,43)" rx="2" ry="2" /> |
|
<text x="1061.57" y="463.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (94 samples, 0.56%)</title><rect x="1154.2" y="2021" width="6.7" height="15.0" fill="rgb(251,208,19)" rx="2" ry="2" /> |
|
<text x="1157.22" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (22 samples, 0.13%)</title><rect x="1058.6" y="2037" width="1.5" height="15.0" fill="rgb(229,39,49)" rx="2" ry="2" /> |
|
<text x="1061.57" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1024.1" y="1989" width="0.2" height="15.0" fill="rgb(224,24,24)" rx="2" ry="2" /> |
|
<text x="1027.14" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (3 samples, 0.02%)</title><rect x="1016.1" y="2005" width="0.2" height="15.0" fill="rgb(231,221,26)" rx="2" ry="2" /> |
|
<text x="1019.06" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (5 samples, 0.03%)</title><rect x="1061.4" y="1973" width="0.4" height="15.0" fill="rgb(241,74,26)" rx="2" ry="2" /> |
|
<text x="1064.41" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (8 samples, 0.05%)</title><rect x="1042.7" y="2021" width="0.6" height="15.0" fill="rgb(224,222,51)" rx="2" ry="2" /> |
|
<text x="1045.70" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1011.8" y="2005" width="0.2" height="15.0" fill="rgb(215,227,27)" rx="2" ry="2" /> |
|
<text x="1014.81" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="10.0" y="1365" width="0.2" height="15.0" fill="rgb(208,20,47)" rx="2" ry="2" /> |
|
<text x="13.00" y="1375.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (7 samples, 0.04%)</title><rect x="1059.6" y="1989" width="0.5" height="15.0" fill="rgb(228,192,13)" rx="2" ry="2" /> |
|
<text x="1062.64" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (12 samples, 0.07%)</title><rect x="1047.1" y="2021" width="0.8" height="15.0" fill="rgb(226,122,22)" rx="2" ry="2" /> |
|
<text x="1050.10" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="389" width="0.5" height="15.0" fill="rgb(228,42,29)" rx="2" ry="2" /> |
|
<text x="1061.57" y="399.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="597" width="0.5" height="15.0" fill="rgb(231,215,30)" rx="2" ry="2" /> |
|
<text x="1061.57" y="607.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="1048.4" y="2021" width="0.1" height="15.0" fill="rgb(211,179,5)" rx="2" ry="2" /> |
|
<text x="1051.37" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (26 samples, 0.16%)</title><rect x="10.0" y="1973" width="1.8" height="15.0" fill="rgb(213,94,44)" rx="2" ry="2" /> |
|
<text x="13.00" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (45 samples, 0.27%)</title><rect x="1177.7" y="1989" width="3.2" height="15.0" fill="rgb(233,64,40)" rx="2" ry="2" /> |
|
<text x="1180.67" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1016.1" y="1973" width="0.2" height="15.0" fill="rgb(252,56,30)" rx="2" ry="2" /> |
|
<text x="1019.06" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (124 samples, 0.74%)</title><rect x="1083.6" y="2021" width="8.8" height="15.0" fill="rgb(226,69,41)" rx="2" ry="2" /> |
|
<text x="1086.58" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (10 samples, 0.06%)</title><rect x="1167.5" y="1973" width="0.7" height="15.0" fill="rgb(206,222,52)" rx="2" ry="2" /> |
|
<text x="1170.54" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (10 samples, 0.06%)</title><rect x="1169.2" y="1989" width="0.7" height="15.0" fill="rgb(246,176,40)" rx="2" ry="2" /> |
|
<text x="1172.24" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_lseek64 (84 samples, 0.50%)</title><rect x="1077.6" y="2037" width="6.0" height="15.0" fill="rgb(253,160,32)" rx="2" ry="2" /> |
|
<text x="1080.63" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (35 samples, 0.21%)</title><rect x="977.0" y="1909" width="2.5" height="15.0" fill="rgb(232,196,11)" rx="2" ry="2" /> |
|
<text x="980.03" y="1919.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1007.0" y="1973" width="0.1" height="15.0" fill="rgb(223,164,0)" rx="2" ry="2" /> |
|
<text x="1010.00" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (3 samples, 0.02%)</title><rect x="33.7" y="1957" width="0.2" height="15.0" fill="rgb(231,70,40)" rx="2" ry="2" /> |
|
<text x="36.73" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (20 samples, 0.12%)</title><rect x="1065.0" y="2021" width="1.4" height="15.0" fill="rgb(209,20,35)" rx="2" ry="2" /> |
|
<text x="1068.02" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (290 samples, 1.74%)</title><rect x="11.8" y="2037" width="20.6" height="15.0" fill="rgb(237,61,24)" rx="2" ry="2" /> |
|
<text x="14.84" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1669" width="0.2" height="15.0" fill="rgb(218,124,31)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1679.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="990.8" y="1941" width="0.3" height="15.0" fill="rgb(208,216,38)" rx="2" ry="2" /> |
|
<text x="993.84" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.05%)</title><rect x="1062.7" y="2037" width="0.6" height="15.0" fill="rgb(235,108,11)" rx="2" ry="2" /> |
|
<text x="1065.68" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="885" width="0.5" height="15.0" fill="rgb(207,43,46)" rx="2" ry="2" /> |
|
<text x="1061.57" y="895.5" ></text> |
|
</g> |
|
<g > |
|
<title>Compositor (274 samples, 1.65%)</title><rect x="990.8" y="2069" width="19.5" height="15.0" fill="rgb(226,21,27)" rx="2" ry="2" /> |
|
<text x="993.84" y="2079.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.05%)</title><rect x="32.4" y="2021" width="0.6" height="15.0" fill="rgb(237,220,51)" rx="2" ry="2" /> |
|
<text x="35.39" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>pthread_cond_wait@@GLIBC_2.3.2 (2 samples, 0.01%)</title><rect x="1014.1" y="2053" width="0.1" height="15.0" fill="rgb(244,173,47)" rx="2" ry="2" /> |
|
<text x="1017.08" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1189" width="0.5" height="15.0" fill="rgb(233,138,50)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1199.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (2 samples, 0.01%)</title><rect x="1045.1" y="1957" width="0.2" height="15.0" fill="rgb(218,222,33)" rx="2" ry="2" /> |
|
<text x="1048.11" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1333" width="0.5" height="15.0" fill="rgb(242,196,50)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1343.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="36.9" y="1957" width="0.2" height="15.0" fill="rgb(236,47,8)" rx="2" ry="2" /> |
|
<text x="39.85" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1541" width="0.5" height="15.0" fill="rgb(251,136,50)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1551.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1017.3" y="1973" width="0.3" height="15.0" fill="rgb(231,26,42)" rx="2" ry="2" /> |
|
<text x="1020.34" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (2 samples, 0.01%)</title><rect x="34.1" y="1989" width="0.1" height="15.0" fill="rgb(214,110,5)" rx="2" ry="2" /> |
|
<text x="37.09" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="693" width="0.2" height="15.0" fill="rgb(213,218,11)" rx="2" ry="2" /> |
|
<text x="1048.82" y="703.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="990.8" y="1989" width="0.5" height="15.0" fill="rgb(231,155,30)" rx="2" ry="2" /> |
|
<text x="993.84" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.05%)</title><rect x="11.3" y="1877" width="0.5" height="15.0" fill="rgb(246,164,34)" rx="2" ry="2" /> |
|
<text x="14.28" y="1887.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1021.2" y="2021" width="0.1" height="15.0" fill="rgb(250,175,45)" rx="2" ry="2" /> |
|
<text x="1024.17" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (22 samples, 0.13%)</title><rect x="1170.7" y="2005" width="1.5" height="15.0" fill="rgb(207,216,42)" rx="2" ry="2" /> |
|
<text x="1173.66" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>.firefox-wrappe (144 samples, 0.86%)</title><rect x="33.5" y="2069" width="10.2" height="15.0" fill="rgb(215,101,30)" rx="2" ry="2" /> |
|
<text x="36.52" y="2079.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="501" width="0.2" height="15.0" fill="rgb(209,206,23)" rx="2" ry="2" /> |
|
<text x="1048.82" y="511.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1014.2" y="1925" width="0.2" height="15.0" fill="rgb(232,37,30)" rx="2" ry="2" /> |
|
<text x="1017.22" y="1935.5" ></text> |
|
</g> |
|
<g > |
|
<title>_Py_wrealpath (4 samples, 0.02%)</title><rect x="1064.7" y="2037" width="0.3" height="15.0" fill="rgb(208,71,47)" rx="2" ry="2" /> |
|
<text x="1067.74" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1013" width="0.5" height="15.0" fill="rgb(248,103,12)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1023.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1011.5" y="1989" width="0.1" height="15.0" fill="rgb(211,220,25)" rx="2" ry="2" /> |
|
<text x="1014.46" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>__setitimer (4 samples, 0.02%)</title><rect x="1058.6" y="85" width="0.3" height="15.0" fill="rgb(214,169,11)" rx="2" ry="2" /> |
|
<text x="1061.57" y="95.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="1022.2" y="1989" width="0.2" height="15.0" fill="rgb(227,140,31)" rx="2" ry="2" /> |
|
<text x="1025.16" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>__GI___ioctl (10 samples, 0.06%)</title><rect x="1016.3" y="2037" width="0.8" height="15.0" fill="rgb(254,129,8)" rx="2" ry="2" /> |
|
<text x="1019.35" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>__pthread_initialize_minimal_internal (6 samples, 0.04%)</title><rect x="1153.8" y="2053" width="0.4" height="15.0" fill="rgb(252,18,23)" rx="2" ry="2" /> |
|
<text x="1156.80" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1045.5" y="1957" width="0.2" height="15.0" fill="rgb(251,139,30)" rx="2" ry="2" /> |
|
<text x="1048.54" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (50 samples, 0.30%)</title><rect x="1068.1" y="2005" width="3.6" height="15.0" fill="rgb(213,142,36)" rx="2" ry="2" /> |
|
<text x="1071.14" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (18 samples, 0.11%)</title><rect x="10.0" y="1861" width="1.3" height="15.0" fill="rgb(221,72,5)" rx="2" ry="2" /> |
|
<text x="13.00" y="1871.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1013.5" y="1989" width="0.2" height="15.0" fill="rgb(232,224,52)" rx="2" ry="2" /> |
|
<text x="1016.51" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>X_ (66 samples, 0.40%)</title><rect x="1058.6" y="2069" width="4.7" height="15.0" fill="rgb(213,70,3)" rx="2" ry="2" /> |
|
<text x="1061.57" y="2079.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1182.7" y="2021" width="0.2" height="15.0" fill="rgb(251,205,28)" rx="2" ry="2" /> |
|
<text x="1185.70" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>__close_nocancel (16 samples, 0.10%)</title><rect x="1075.2" y="2037" width="1.2" height="15.0" fill="rgb(252,192,39)" rx="2" ry="2" /> |
|
<text x="1078.22" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1064.7" y="1989" width="0.2" height="15.0" fill="rgb(235,177,15)" rx="2" ry="2" /> |
|
<text x="1067.74" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="933" width="0.2" height="15.0" fill="rgb(225,22,36)" rx="2" ry="2" /> |
|
<text x="1048.82" y="943.5" ></text> |
|
</g> |
|
<g > |
|
<title>mmap64 (94 samples, 0.56%)</title><rect x="1182.9" y="2053" width="6.7" height="15.0" fill="rgb(252,138,5)" rx="2" ry="2" /> |
|
<text x="1185.92" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="11.1" y="1733" width="0.2" height="15.0" fill="rgb(212,57,36)" rx="2" ry="2" /> |
|
<text x="14.13" y="1743.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="469" width="0.2" height="15.0" fill="rgb(213,34,25)" rx="2" ry="2" /> |
|
<text x="1048.82" y="479.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1067.4" y="1989" width="0.3" height="15.0" fill="rgb(234,71,17)" rx="2" ry="2" /> |
|
<text x="1070.43" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>pthread_cond_broadcast@@GLIBC_2.3.2 (4 samples, 0.02%)</title><rect x="990.6" y="2037" width="0.2" height="15.0" fill="rgb(251,77,0)" rx="2" ry="2" /> |
|
<text x="993.56" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.02%)</title><rect x="33.5" y="2005" width="0.2" height="15.0" fill="rgb(241,117,23)" rx="2" ry="2" /> |
|
<text x="36.52" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1009.5" y="1893" width="0.3" height="15.0" fill="rgb(247,37,6)" rx="2" ry="2" /> |
|
<text x="1012.55" y="1903.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="437" width="0.2" height="15.0" fill="rgb(235,105,50)" rx="2" ry="2" /> |
|
<text x="1048.82" y="447.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1009.1" y="1909" width="0.2" height="15.0" fill="rgb(235,159,32)" rx="2" ry="2" /> |
|
<text x="1012.12" y="1919.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (27 samples, 0.16%)</title><rect x="1048.5" y="1973" width="1.9" height="15.0" fill="rgb(225,198,51)" rx="2" ry="2" /> |
|
<text x="1051.51" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="36.4" y="2021" width="0.3" height="15.0" fill="rgb(205,174,23)" rx="2" ry="2" /> |
|
<text x="39.43" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (2 samples, 0.01%)</title><rect x="1048.4" y="2005" width="0.1" height="15.0" fill="rgb(242,31,20)" rx="2" ry="2" /> |
|
<text x="1051.37" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="43.9" y="1989" width="0.1" height="15.0" fill="rgb(238,115,24)" rx="2" ry="2" /> |
|
<text x="46.87" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (17 samples, 0.10%)</title><rect x="1094.8" y="2005" width="1.3" height="15.0" fill="rgb(205,18,31)" rx="2" ry="2" /> |
|
<text x="1097.85" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1024.4" y="1989" width="0.3" height="15.0" fill="rgb(235,112,1)" rx="2" ry="2" /> |
|
<text x="1027.42" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (56 samples, 0.34%)</title><rect x="1028.0" y="1973" width="3.9" height="15.0" fill="rgb(206,51,13)" rx="2" ry="2" /> |
|
<text x="1030.97" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (4 samples, 0.02%)</title><rect x="1025.0" y="2021" width="0.3" height="15.0" fill="rgb(223,0,10)" rx="2" ry="2" /> |
|
<text x="1027.99" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="34.1" y="2005" width="0.1" height="15.0" fill="rgb(229,29,3)" rx="2" ry="2" /> |
|
<text x="37.09" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (8 samples, 0.05%)</title><rect x="47.9" y="1925" width="0.6" height="15.0" fill="rgb(222,169,43)" rx="2" ry="2" /> |
|
<text x="50.90" y="1935.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (16 samples, 0.10%)</title><rect x="1025.7" y="2005" width="1.1" height="15.0" fill="rgb(219,157,47)" rx="2" ry="2" /> |
|
<text x="1028.70" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1009.8" y="1909" width="0.3" height="15.0" fill="rgb(210,120,34)" rx="2" ry="2" /> |
|
<text x="1012.83" y="1919.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (26 samples, 0.16%)</title><rect x="10.0" y="1941" width="1.8" height="15.0" fill="rgb(229,206,2)" rx="2" ry="2" /> |
|
<text x="13.00" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1021.0" y="2021" width="0.2" height="15.0" fill="rgb(205,0,46)" rx="2" ry="2" /> |
|
<text x="1024.02" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.02%)</title><rect x="36.9" y="1989" width="0.2" height="15.0" fill="rgb(210,223,17)" rx="2" ry="2" /> |
|
<text x="39.85" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1653" width="0.4" height="15.0" fill="rgb(215,42,28)" rx="2" ry="2" /> |
|
<text x="13.00" y="1663.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (84 samples, 0.50%)</title><rect x="1133.1" y="2005" width="6.0" height="15.0" fill="rgb(240,35,43)" rx="2" ry="2" /> |
|
<text x="1136.11" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1733" width="0.2" height="15.0" fill="rgb(225,202,50)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1743.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (10 samples, 0.06%)</title><rect x="1146.0" y="1989" width="0.7" height="15.0" fill="rgb(241,139,19)" rx="2" ry="2" /> |
|
<text x="1149.00" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (125 samples, 0.75%)</title><rect x="33.7" y="2053" width="8.9" height="15.0" fill="rgb(230,215,17)" rx="2" ry="2" /> |
|
<text x="36.73" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="181" width="0.5" height="15.0" fill="rgb(254,65,51)" rx="2" ry="2" /> |
|
<text x="1061.57" y="191.5" ></text> |
|
</g> |
|
<g > |
|
<title>__GI___libc_open (6 samples, 0.04%)</title><rect x="1105.1" y="2053" width="0.4" height="15.0" fill="rgb(248,9,50)" rx="2" ry="2" /> |
|
<text x="1108.05" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1253" width="0.5" height="15.0" fill="rgb(234,79,11)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1263.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1104.0" y="1973" width="0.2" height="15.0" fill="rgb(252,171,40)" rx="2" ry="2" /> |
|
<text x="1106.99" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>read (6 samples, 0.04%)</title><rect x="1104.2" y="2037" width="0.4" height="15.0" fill="rgb(228,62,35)" rx="2" ry="2" /> |
|
<text x="1107.20" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="581" width="0.5" height="15.0" fill="rgb(249,157,53)" rx="2" ry="2" /> |
|
<text x="1061.57" y="591.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (8 samples, 0.05%)</title><rect x="1060.8" y="1989" width="0.6" height="15.0" fill="rgb(220,129,5)" rx="2" ry="2" /> |
|
<text x="1063.84" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (90 samples, 0.54%)</title><rect x="1113.6" y="2021" width="6.3" height="15.0" fill="rgb(234,39,24)" rx="2" ry="2" /> |
|
<text x="1116.55" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="1104.6" y="2037" width="0.5" height="15.0" fill="rgb(217,208,35)" rx="2" ry="2" /> |
|
<text x="1107.63" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (9 samples, 0.05%)</title><rect x="1181.5" y="1989" width="0.6" height="15.0" fill="rgb(242,153,36)" rx="2" ry="2" /> |
|
<text x="1184.50" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="997" width="0.5" height="15.0" fill="rgb(224,70,48)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1007.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="990.6" y="1973" width="0.1" height="15.0" fill="rgb(210,176,45)" rx="2" ry="2" /> |
|
<text x="993.56" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (20 samples, 0.12%)</title><rect x="1038.6" y="1957" width="1.4" height="15.0" fill="rgb(215,4,16)" rx="2" ry="2" /> |
|
<text x="1041.59" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1182.7" y="2005" width="0.2" height="15.0" fill="rgb(209,104,45)" rx="2" ry="2" /> |
|
<text x="1185.70" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>__poll (14 samples, 0.08%)</title><rect x="42.6" y="2053" width="1.0" height="15.0" fill="rgb(219,180,13)" rx="2" ry="2" /> |
|
<text x="45.59" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>__GI___close_nocancel (20 samples, 0.12%)</title><rect x="1167.5" y="2037" width="1.5" height="15.0" fill="rgb(250,128,41)" rx="2" ry="2" /> |
|
<text x="1170.54" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (8 samples, 0.05%)</title><rect x="1042.7" y="1989" width="0.6" height="15.0" fill="rgb(226,105,21)" rx="2" ry="2" /> |
|
<text x="1045.70" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1153.7" y="2005" width="0.1" height="15.0" fill="rgb(216,42,31)" rx="2" ry="2" /> |
|
<text x="1156.65" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1058.9" y="53" width="0.2" height="15.0" fill="rgb(226,66,22)" rx="2" ry="2" /> |
|
<text x="1061.86" y="63.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_recvmsg (2 samples, 0.01%)</title><rect x="1010.4" y="2037" width="0.1" height="15.0" fill="rgb(213,178,36)" rx="2" ry="2" /> |
|
<text x="1013.40" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1007.3" y="2021" width="0.2" height="15.0" fill="rgb(225,29,22)" rx="2" ry="2" /> |
|
<text x="1010.28" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1021.4" y="2037" width="0.3" height="15.0" fill="rgb(219,155,2)" rx="2" ry="2" /> |
|
<text x="1024.45" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1093.4" y="2021" width="0.2" height="15.0" fill="rgb(237,125,31)" rx="2" ry="2" /> |
|
<text x="1096.36" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (24 samples, 0.14%)</title><rect x="1022.4" y="2053" width="1.7" height="15.0" fill="rgb(254,18,37)" rx="2" ry="2" /> |
|
<text x="1025.44" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (2 samples, 0.01%)</title><rect x="1047.0" y="1989" width="0.1" height="15.0" fill="rgb(247,91,19)" rx="2" ry="2" /> |
|
<text x="1049.95" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>__pthread_mutex_unlock_usercnt (8 samples, 0.05%)</title><rect x="1009.5" y="1957" width="0.6" height="15.0" fill="rgb(242,180,27)" rx="2" ry="2" /> |
|
<text x="1012.55" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="677" width="0.2" height="15.0" fill="rgb(210,218,27)" rx="2" ry="2" /> |
|
<text x="1048.82" y="687.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1014.2" y="1957" width="0.2" height="15.0" fill="rgb(211,178,23)" rx="2" ry="2" /> |
|
<text x="1017.22" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="1009.1" y="1925" width="0.4" height="15.0" fill="rgb(206,165,36)" rx="2" ry="2" /> |
|
<text x="1012.12" y="1935.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_recvmsg (12 samples, 0.07%)</title><rect x="44.3" y="2037" width="0.8" height="15.0" fill="rgb(243,102,17)" rx="2" ry="2" /> |
|
<text x="47.29" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>GLXVsyncThread (26 samples, 0.16%)</title><rect x="1010.3" y="2069" width="1.8" height="15.0" fill="rgb(209,185,8)" rx="2" ry="2" /> |
|
<text x="1013.25" y="2079.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1445" width="0.5" height="15.0" fill="rgb(238,147,42)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1455.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.05%)</title><rect x="1063.3" y="2005" width="0.5" height="15.0" fill="rgb(214,104,39)" rx="2" ry="2" /> |
|
<text x="1066.25" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1557" width="0.5" height="15.0" fill="rgb(243,152,46)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1567.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="357" width="0.5" height="15.0" fill="rgb(254,131,6)" rx="2" ry="2" /> |
|
<text x="1061.57" y="367.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1015.4" y="1989" width="0.1" height="15.0" fill="rgb(213,72,44)" rx="2" ry="2" /> |
|
<text x="1018.36" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (6 samples, 0.04%)</title><rect x="1037.5" y="2005" width="0.5" height="15.0" fill="rgb(230,2,12)" rx="2" ry="2" /> |
|
<text x="1040.53" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (16 samples, 0.10%)</title><rect x="1060.3" y="2021" width="1.1" height="15.0" fill="rgb(241,117,12)" rx="2" ry="2" /> |
|
<text x="1063.27" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (3 samples, 0.02%)</title><rect x="33.5" y="2037" width="0.2" height="15.0" fill="rgb(242,220,7)" rx="2" ry="2" /> |
|
<text x="36.52" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (9 samples, 0.05%)</title><rect x="1038.0" y="1957" width="0.6" height="15.0" fill="rgb(234,184,35)" rx="2" ry="2" /> |
|
<text x="1040.96" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1317" width="0.5" height="15.0" fill="rgb(241,222,53)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1327.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (15 samples, 0.09%)</title><rect x="1057.0" y="2005" width="1.1" height="15.0" fill="rgb(237,117,30)" rx="2" ry="2" /> |
|
<text x="1060.02" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_gettimeofday (6 samples, 0.04%)</title><rect x="10.0" y="1413" width="0.4" height="15.0" fill="rgb(231,97,34)" rx="2" ry="2" /> |
|
<text x="13.00" y="1423.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="43.7" y="1957" width="0.2" height="15.0" fill="rgb(223,132,0)" rx="2" ry="2" /> |
|
<text x="46.72" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (290 samples, 1.74%)</title><rect x="11.8" y="2021" width="20.6" height="15.0" fill="rgb(253,164,24)" rx="2" ry="2" /> |
|
<text x="14.84" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1685" width="0.5" height="15.0" fill="rgb(223,181,25)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1695.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="869" width="0.2" height="15.0" fill="rgb(244,78,50)" rx="2" ry="2" /> |
|
<text x="1048.82" y="879.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="805" width="0.2" height="15.0" fill="rgb(216,107,43)" rx="2" ry="2" /> |
|
<text x="1048.82" y="815.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1058.6" y="69" width="0.3" height="15.0" fill="rgb(228,183,6)" rx="2" ry="2" /> |
|
<text x="1061.57" y="79.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1205" width="0.2" height="15.0" fill="rgb(214,164,38)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1215.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.02%)</title><rect x="1023.9" y="1989" width="0.2" height="15.0" fill="rgb(251,196,24)" rx="2" ry="2" /> |
|
<text x="1026.93" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1012.2" y="1989" width="0.1" height="15.0" fill="rgb(233,60,22)" rx="2" ry="2" /> |
|
<text x="1015.17" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="2005" width="0.5" height="15.0" fill="rgb(243,12,11)" rx="2" ry="2" /> |
|
<text x="1061.57" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (7 samples, 0.04%)</title><rect x="43.1" y="2021" width="0.5" height="15.0" fill="rgb(246,98,31)" rx="2" ry="2" /> |
|
<text x="46.09" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (10 samples, 0.06%)</title><rect x="1044.0" y="1989" width="0.7" height="15.0" fill="rgb(251,223,40)" rx="2" ry="2" /> |
|
<text x="1046.98" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1055.7" y="1989" width="0.2" height="15.0" fill="rgb(241,40,47)" rx="2" ry="2" /> |
|
<text x="1058.74" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>.perf-wrapped (13,212 samples, 79.33%)</title><rect x="46.6" y="2069" width="936.0" height="15.0" fill="rgb(231,150,26)" rx="2" ry="2" /> |
|
<text x="49.56" y="2079.5" >.perf-wrapped</text> |
|
</g> |
|
<g > |
|
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (8 samples, 0.05%)</title><rect x="1024.4" y="2053" width="0.6" height="15.0" fill="rgb(251,136,19)" rx="2" ry="2" /> |
|
<text x="1027.42" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1909" width="0.5" height="15.0" fill="rgb(212,103,13)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1919.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1125" width="0.5" height="15.0" fill="rgb(208,38,48)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1135.5" ></text> |
|
</g> |
|
<g > |
|
<title>[perf-109130.map] (6 samples, 0.04%)</title><rect x="10.0" y="1557" width="0.4" height="15.0" fill="rgb(254,194,32)" rx="2" ry="2" /> |
|
<text x="13.00" y="1567.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (13 samples, 0.08%)</title><rect x="34.1" y="2037" width="0.9" height="15.0" fill="rgb(236,29,4)" rx="2" ry="2" /> |
|
<text x="37.09" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1025.3" y="2005" width="0.2" height="15.0" fill="rgb(244,25,7)" rx="2" ry="2" /> |
|
<text x="1028.27" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="1105.1" y="2037" width="0.4" height="15.0" fill="rgb(233,228,2)" rx="2" ry="2" /> |
|
<text x="1108.05" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (20 samples, 0.12%)</title><rect x="1045.7" y="2037" width="1.4" height="15.0" fill="rgb(219,209,47)" rx="2" ry="2" /> |
|
<text x="1048.68" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1067.1" y="1989" width="0.3" height="15.0" fill="rgb(223,202,54)" rx="2" ry="2" /> |
|
<text x="1070.15" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (9 samples, 0.05%)</title><rect x="34.2" y="1989" width="0.7" height="15.0" fill="rgb(208,23,31)" rx="2" ry="2" /> |
|
<text x="37.23" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1007.1" y="2005" width="0.2" height="15.0" fill="rgb(221,227,9)" rx="2" ry="2" /> |
|
<text x="1010.14" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>pthread_cond_signal@@GLIBC_2.3.2 (4 samples, 0.02%)</title><rect x="1021.4" y="2053" width="0.3" height="15.0" fill="rgb(220,150,51)" rx="2" ry="2" /> |
|
<text x="1024.45" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1064.9" y="1973" width="0.1" height="15.0" fill="rgb(207,35,32)" rx="2" ry="2" /> |
|
<text x="1067.88" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1461" width="0.2" height="15.0" fill="rgb(221,2,26)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1471.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (6 samples, 0.04%)</title><rect x="1037.5" y="1973" width="0.5" height="15.0" fill="rgb(230,52,11)" rx="2" ry="2" /> |
|
<text x="1040.53" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1022.9" y="1989" width="0.1" height="15.0" fill="rgb(248,209,34)" rx="2" ry="2" /> |
|
<text x="1025.87" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1013.1" y="2021" width="0.1" height="15.0" fill="rgb(241,35,5)" rx="2" ry="2" /> |
|
<text x="1016.09" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (47 samples, 0.28%)</title><rect x="1126.4" y="2021" width="3.4" height="15.0" fill="rgb(238,159,38)" rx="2" ry="2" /> |
|
<text x="1129.45" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (9 samples, 0.05%)</title><rect x="1007.7" y="2037" width="0.6" height="15.0" fill="rgb(221,12,49)" rx="2" ry="2" /> |
|
<text x="1010.70" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>run_builtin (40 samples, 0.24%)</title><rect x="46.7" y="2005" width="2.8" height="15.0" fill="rgb(207,23,14)" rx="2" ry="2" /> |
|
<text x="49.70" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="1037.5" y="1957" width="0.5" height="15.0" fill="rgb(221,140,1)" rx="2" ry="2" /> |
|
<text x="1040.53" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1153.5" y="1989" width="0.2" height="15.0" fill="rgb(214,134,9)" rx="2" ry="2" /> |
|
<text x="1156.51" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="33.9" y="1941" width="0.2" height="15.0" fill="rgb(226,103,2)" rx="2" ry="2" /> |
|
<text x="36.95" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (52 samples, 0.31%)</title><rect x="38.8" y="1989" width="3.7" height="15.0" fill="rgb(230,134,53)" rx="2" ry="2" /> |
|
<text x="41.84" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1182.5" y="1989" width="0.2" height="15.0" fill="rgb(222,40,10)" rx="2" ry="2" /> |
|
<text x="1185.49" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (3 samples, 0.02%)</title><rect x="1045.0" y="1989" width="0.3" height="15.0" fill="rgb(238,169,3)" rx="2" ry="2" /> |
|
<text x="1048.04" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (6,539 samples, 39.26%)</title><rect x="49.5" y="1973" width="463.3" height="15.0" fill="rgb(225,35,32)" rx="2" ry="2" /> |
|
<text x="52.53" y="1983.5" >syscall_trace_enter.constprop.0</text> |
|
</g> |
|
<g > |
|
<title>IPC_I/O_Parent (6 samples, 0.04%)</title><rect x="1013.1" y="2069" width="0.4" height="15.0" fill="rgb(234,168,14)" rx="2" ry="2" /> |
|
<text x="1016.09" y="2079.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (14 samples, 0.08%)</title><rect x="42.6" y="2037" width="1.0" height="15.0" fill="rgb(222,131,29)" rx="2" ry="2" /> |
|
<text x="45.59" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (43 samples, 0.26%)</title><rect x="1147.4" y="2005" width="3.1" height="15.0" fill="rgb(235,195,8)" rx="2" ry="2" /> |
|
<text x="1150.42" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (6 samples, 0.04%)</title><rect x="982.6" y="1973" width="0.4" height="15.0" fill="rgb(238,92,35)" rx="2" ry="2" /> |
|
<text x="985.62" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (90 samples, 0.54%)</title><rect x="1113.6" y="1989" width="6.3" height="15.0" fill="rgb(209,190,27)" rx="2" ry="2" /> |
|
<text x="1116.55" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1058.1" y="1973" width="0.1" height="15.0" fill="rgb(220,219,24)" rx="2" ry="2" /> |
|
<text x="1061.08" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1046.0" y="1973" width="0.2" height="15.0" fill="rgb(208,96,2)" rx="2" ry="2" /> |
|
<text x="1049.03" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="933" width="0.5" height="15.0" fill="rgb(217,179,37)" rx="2" ry="2" /> |
|
<text x="1061.57" y="943.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1013.7" y="2021" width="0.2" height="15.0" fill="rgb(244,131,2)" rx="2" ry="2" /> |
|
<text x="1016.73" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (8 samples, 0.05%)</title><rect x="1105.5" y="2005" width="0.5" height="15.0" fill="rgb(212,69,31)" rx="2" ry="2" /> |
|
<text x="1108.48" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1064.1" y="1989" width="0.3" height="15.0" fill="rgb(216,67,4)" rx="2" ry="2" /> |
|
<text x="1067.10" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1062.7" y="2005" width="0.3" height="15.0" fill="rgb(249,136,10)" rx="2" ry="2" /> |
|
<text x="1065.68" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (62 samples, 0.37%)</title><rect x="1083.6" y="2005" width="4.4" height="15.0" fill="rgb(243,167,11)" rx="2" ry="2" /> |
|
<text x="1086.58" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="33.9" y="1909" width="0.2" height="15.0" fill="rgb(221,51,6)" rx="2" ry="2" /> |
|
<text x="36.95" y="1919.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1017.2" y="2005" width="0.1" height="15.0" fill="rgb(213,51,25)" rx="2" ry="2" /> |
|
<text x="1020.20" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>access (3 samples, 0.02%)</title><rect x="1102.0" y="2021" width="0.2" height="15.0" fill="rgb(252,132,1)" rx="2" ry="2" /> |
|
<text x="1105.00" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1045.5" y="1973" width="0.2" height="15.0" fill="rgb(217,121,24)" rx="2" ry="2" /> |
|
<text x="1048.54" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (10 samples, 0.06%)</title><rect x="1168.2" y="2005" width="0.8" height="15.0" fill="rgb(208,78,17)" rx="2" ry="2" /> |
|
<text x="1171.25" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (9 samples, 0.05%)</title><rect x="34.2" y="1973" width="0.7" height="15.0" fill="rgb(236,192,4)" rx="2" ry="2" /> |
|
<text x="37.23" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="1058.1" y="2037" width="0.1" height="15.0" fill="rgb(246,116,22)" rx="2" ry="2" /> |
|
<text x="1061.08" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1012.3" y="2005" width="0.2" height="15.0" fill="rgb(244,178,31)" rx="2" ry="2" /> |
|
<text x="1015.31" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>__GI___getegid (2 samples, 0.01%)</title><rect x="1066.4" y="2037" width="0.2" height="15.0" fill="rgb(244,50,9)" rx="2" ry="2" /> |
|
<text x="1069.44" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="693" width="0.5" height="15.0" fill="rgb(246,162,41)" rx="2" ry="2" /> |
|
<text x="1061.57" y="703.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (10 samples, 0.06%)</title><rect x="1044.0" y="1973" width="0.7" height="15.0" fill="rgb(229,158,12)" rx="2" ry="2" /> |
|
<text x="1046.98" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="501" width="0.5" height="15.0" fill="rgb(229,61,1)" rx="2" ry="2" /> |
|
<text x="1061.57" y="511.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.03%)</title><rect x="47.6" y="1941" width="0.3" height="15.0" fill="rgb(248,29,39)" rx="2" ry="2" /> |
|
<text x="50.55" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>__GI___sigaltstack (6 samples, 0.04%)</title><rect x="1067.7" y="2037" width="0.4" height="15.0" fill="rgb(209,99,52)" rx="2" ry="2" /> |
|
<text x="1070.71" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (12 samples, 0.07%)</title><rect x="1023.1" y="1989" width="0.8" height="15.0" fill="rgb(231,93,54)" rx="2" ry="2" /> |
|
<text x="1026.08" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (50 samples, 0.30%)</title><rect x="1071.7" y="2005" width="3.5" height="15.0" fill="rgb(234,186,35)" rx="2" ry="2" /> |
|
<text x="1074.68" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1009.3" y="1893" width="0.2" height="15.0" fill="rgb(220,199,26)" rx="2" ry="2" /> |
|
<text x="1012.33" y="1903.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_read (4 samples, 0.02%)</title><rect x="44.0" y="2037" width="0.3" height="15.0" fill="rgb(229,193,45)" rx="2" ry="2" /> |
|
<text x="47.01" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (39 samples, 0.23%)</title><rect x="1017.8" y="2037" width="2.8" height="15.0" fill="rgb(205,81,36)" rx="2" ry="2" /> |
|
<text x="1020.84" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1013" width="0.2" height="15.0" fill="rgb(254,171,46)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1023.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (6 samples, 0.04%)</title><rect x="990.8" y="2021" width="0.5" height="15.0" fill="rgb(249,221,49)" rx="2" ry="2" /> |
|
<text x="993.84" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (42 samples, 0.25%)</title><rect x="1077.6" y="2005" width="3.0" height="15.0" fill="rgb(205,20,11)" rx="2" ry="2" /> |
|
<text x="1080.63" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>run_builtin (70 samples, 0.42%)</title><rect x="977.0" y="2021" width="4.9" height="15.0" fill="rgb(219,179,25)" rx="2" ry="2" /> |
|
<text x="979.96" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="43.7" y="1989" width="0.2" height="15.0" fill="rgb(217,227,9)" rx="2" ry="2" /> |
|
<text x="46.72" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1014.4" y="1957" width="0.1" height="15.0" fill="rgb(250,74,27)" rx="2" ry="2" /> |
|
<text x="1017.36" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (14 samples, 0.08%)</title><rect x="1012.1" y="2053" width="1.0" height="15.0" fill="rgb(242,1,24)" rx="2" ry="2" /> |
|
<text x="1015.10" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1009.1" y="1877" width="0.2" height="15.0" fill="rgb(229,171,37)" rx="2" ry="2" /> |
|
<text x="1012.12" y="1887.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1023.9" y="1941" width="0.2" height="15.0" fill="rgb(206,207,22)" rx="2" ry="2" /> |
|
<text x="1026.93" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (30 samples, 0.18%)</title><rect x="1056.0" y="2037" width="2.1" height="15.0" fill="rgb(235,104,43)" rx="2" ry="2" /> |
|
<text x="1058.95" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1047.0" y="1925" width="0.1" height="15.0" fill="rgb(246,153,9)" rx="2" ry="2" /> |
|
<text x="1049.95" y="1935.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1105.1" y="2021" width="0.2" height="15.0" fill="rgb(242,119,30)" rx="2" ry="2" /> |
|
<text x="1108.05" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1017.3" y="1989" width="0.3" height="15.0" fill="rgb(248,106,24)" rx="2" ry="2" /> |
|
<text x="1020.34" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (5 samples, 0.03%)</title><rect x="1174.1" y="2005" width="0.4" height="15.0" fill="rgb(240,70,41)" rx="2" ry="2" /> |
|
<text x="1177.13" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (11 samples, 0.07%)</title><rect x="1102.2" y="1941" width="0.8" height="15.0" fill="rgb(215,138,13)" rx="2" ry="2" /> |
|
<text x="1105.22" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (46 samples, 0.28%)</title><rect x="1109.9" y="2021" width="3.2" height="15.0" fill="rgb(218,155,13)" rx="2" ry="2" /> |
|
<text x="1112.87" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (102 samples, 0.61%)</title><rect x="1048.5" y="2037" width="7.2" height="15.0" fill="rgb(227,52,40)" rx="2" ry="2" /> |
|
<text x="1051.51" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>__GI___writev (2 samples, 0.01%)</title><rect x="1010.3" y="2021" width="0.1" height="15.0" fill="rgb(224,223,31)" rx="2" ry="2" /> |
|
<text x="1013.25" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_write (6 samples, 0.04%)</title><rect x="1047.9" y="2037" width="0.5" height="15.0" fill="rgb(253,160,29)" rx="2" ry="2" /> |
|
<text x="1050.95" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="405" width="0.2" height="15.0" fill="rgb(221,217,28)" rx="2" ry="2" /> |
|
<text x="1048.82" y="415.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="885" width="0.2" height="15.0" fill="rgb(223,154,42)" rx="2" ry="2" /> |
|
<text x="1048.82" y="895.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="45.9" y="2005" width="0.3" height="15.0" fill="rgb(252,214,29)" rx="2" ry="2" /> |
|
<text x="48.92" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (5 samples, 0.03%)</title><rect x="991.3" y="1941" width="0.3" height="15.0" fill="rgb(242,56,31)" rx="2" ry="2" /> |
|
<text x="994.27" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1062.1" y="2005" width="0.3" height="15.0" fill="rgb(236,120,1)" rx="2" ry="2" /> |
|
<text x="1065.12" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1973" width="0.5" height="15.0" fill="rgb(240,186,41)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (34 samples, 0.20%)</title><rect x="979.5" y="1941" width="2.4" height="15.0" fill="rgb(249,154,33)" rx="2" ry="2" /> |
|
<text x="982.51" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1669" width="0.5" height="15.0" fill="rgb(234,69,9)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1679.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (4 samples, 0.02%)</title><rect x="1014.2" y="2021" width="0.3" height="15.0" fill="rgb(239,151,53)" rx="2" ry="2" /> |
|
<text x="1017.22" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1066.4" y="2021" width="0.2" height="15.0" fill="rgb(220,30,31)" rx="2" ry="2" /> |
|
<text x="1069.44" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1333" width="0.2" height="15.0" fill="rgb(247,206,28)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1343.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_lseek64 (94 samples, 0.56%)</title><rect x="1126.4" y="2053" width="6.7" height="15.0" fill="rgb(242,130,8)" rx="2" ry="2" /> |
|
<text x="1129.45" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (217 samples, 1.30%)</title><rect x="991.6" y="2037" width="15.4" height="15.0" fill="rgb(213,12,17)" rx="2" ry="2" /> |
|
<text x="994.62" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>mozilla::detail::MutexImpl::lock (2 samples, 0.01%)</title><rect x="1055.7" y="2037" width="0.2" height="15.0" fill="rgb(208,124,23)" rx="2" ry="2" /> |
|
<text x="1058.74" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1058.3" y="1989" width="0.1" height="15.0" fill="rgb(244,67,44)" rx="2" ry="2" /> |
|
<text x="1061.29" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1067.7" y="1973" width="0.2" height="15.0" fill="rgb(245,54,16)" rx="2" ry="2" /> |
|
<text x="1070.71" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1189" width="0.2" height="15.0" fill="rgb(227,60,11)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1199.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1541" width="0.2" height="15.0" fill="rgb(237,164,14)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1551.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="49.0" y="1909" width="0.3" height="15.0" fill="rgb(239,69,30)" rx="2" ry="2" /> |
|
<text x="52.04" y="1919.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (47 samples, 0.28%)</title><rect x="1126.4" y="1989" width="3.4" height="15.0" fill="rgb(245,166,15)" rx="2" ry="2" /> |
|
<text x="1129.45" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1017.2" y="1989" width="0.1" height="15.0" fill="rgb(213,158,25)" rx="2" ry="2" /> |
|
<text x="1020.20" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_recvmsg (12 samples, 0.07%)</title><rect x="982.6" y="2037" width="0.9" height="15.0" fill="rgb(234,134,15)" rx="2" ry="2" /> |
|
<text x="985.62" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1022.7" y="2021" width="0.3" height="15.0" fill="rgb(245,95,8)" rx="2" ry="2" /> |
|
<text x="1025.72" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>__pthread_mutex_unlock_usercnt (4 samples, 0.02%)</title><rect x="1022.7" y="2037" width="0.3" height="15.0" fill="rgb(224,59,13)" rx="2" ry="2" /> |
|
<text x="1025.72" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (10 samples, 0.06%)</title><rect x="1065.0" y="1973" width="0.7" height="15.0" fill="rgb(220,188,44)" rx="2" ry="2" /> |
|
<text x="1068.02" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (34 samples, 0.20%)</title><rect x="979.5" y="1925" width="2.4" height="15.0" fill="rgb(238,195,45)" rx="2" ry="2" /> |
|
<text x="982.51" y="1935.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="1025.3" y="2021" width="0.4" height="15.0" fill="rgb(209,17,25)" rx="2" ry="2" /> |
|
<text x="1028.27" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>__pthread_mutex_unlock_usercnt (2 samples, 0.01%)</title><rect x="1013.5" y="2005" width="0.2" height="15.0" fill="rgb(252,9,5)" rx="2" ry="2" /> |
|
<text x="1016.51" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>sched_getaffinity@@GLIBC_2.3.4 (2 samples, 0.01%)</title><rect x="47.4" y="1957" width="0.2" height="15.0" fill="rgb(218,219,16)" rx="2" ry="2" /> |
|
<text x="50.41" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_read (2 samples, 0.01%)</title><rect x="46.6" y="2037" width="0.1" height="15.0" fill="rgb(232,19,16)" rx="2" ry="2" /> |
|
<text x="49.56" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="990.6" y="1989" width="0.1" height="15.0" fill="rgb(234,12,17)" rx="2" ry="2" /> |
|
<text x="993.56" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1009.8" y="1925" width="0.3" height="15.0" fill="rgb(235,18,42)" rx="2" ry="2" /> |
|
<text x="1012.83" y="1935.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_read (168 samples, 1.01%)</title><rect x="1133.1" y="2053" width="11.9" height="15.0" fill="rgb(207,181,44)" rx="2" ry="2" /> |
|
<text x="1136.11" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (22 samples, 0.13%)</title><rect x="1172.2" y="2005" width="1.6" height="15.0" fill="rgb(208,21,14)" rx="2" ry="2" /> |
|
<text x="1175.22" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="1055.7" y="2021" width="0.2" height="15.0" fill="rgb(214,222,50)" rx="2" ry="2" /> |
|
<text x="1058.74" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (44 samples, 0.26%)</title><rect x="1170.7" y="2021" width="3.1" height="15.0" fill="rgb(232,118,10)" rx="2" ry="2" /> |
|
<text x="1173.66" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1021.9" y="2037" width="0.3" height="15.0" fill="rgb(240,134,7)" rx="2" ry="2" /> |
|
<text x="1024.87" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>__poll (2 samples, 0.01%)</title><rect x="1021.3" y="2053" width="0.1" height="15.0" fill="rgb(208,33,18)" rx="2" ry="2" /> |
|
<text x="1024.31" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1011.5" y="2021" width="0.1" height="15.0" fill="rgb(209,64,17)" rx="2" ry="2" /> |
|
<text x="1014.46" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="261" width="0.2" height="15.0" fill="rgb(224,108,4)" rx="2" ry="2" /> |
|
<text x="1048.82" y="271.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (10 samples, 0.06%)</title><rect x="34.2" y="2021" width="0.7" height="15.0" fill="rgb(217,15,14)" rx="2" ry="2" /> |
|
<text x="37.23" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1045.1" y="1909" width="0.2" height="15.0" fill="rgb(240,97,1)" rx="2" ry="2" /> |
|
<text x="1048.11" y="1919.5" ></text> |
|
</g> |
|
<g > |
|
<title>WRRende~ckend#1 (92 samples, 0.55%)</title><rect x="1037.5" y="2069" width="6.5" height="15.0" fill="rgb(226,5,36)" rx="2" ry="2" /> |
|
<text x="1040.46" y="2079.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="597" width="0.2" height="15.0" fill="rgb(239,78,24)" rx="2" ry="2" /> |
|
<text x="1048.82" y="607.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (180 samples, 1.08%)</title><rect x="1113.6" y="2037" width="12.7" height="15.0" fill="rgb(211,7,37)" rx="2" ry="2" /> |
|
<text x="1116.55" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1045.3" y="1909" width="0.2" height="15.0" fill="rgb(205,148,6)" rx="2" ry="2" /> |
|
<text x="1048.25" y="1919.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (8 samples, 0.05%)</title><rect x="35.3" y="1973" width="0.6" height="15.0" fill="rgb(221,56,27)" rx="2" ry="2" /> |
|
<text x="38.29" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.03%)</title><rect x="1010.7" y="2005" width="0.3" height="15.0" fill="rgb(254,95,22)" rx="2" ry="2" /> |
|
<text x="1013.68" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.02%)</title><rect x="1013.9" y="2005" width="0.2" height="15.0" fill="rgb(245,115,5)" rx="2" ry="2" /> |
|
<text x="1016.87" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (10 samples, 0.06%)</title><rect x="1044.0" y="1957" width="0.7" height="15.0" fill="rgb(216,112,13)" rx="2" ry="2" /> |
|
<text x="1046.98" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1413" width="0.2" height="15.0" fill="rgb(217,215,43)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1423.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1045.1" y="1893" width="0.2" height="15.0" fill="rgb(227,30,28)" rx="2" ry="2" /> |
|
<text x="1048.11" y="1903.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.02%)</title><rect x="33.7" y="1941" width="0.2" height="15.0" fill="rgb(241,164,33)" rx="2" ry="2" /> |
|
<text x="36.73" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1861" width="0.5" height="15.0" fill="rgb(221,70,22)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1871.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (7 samples, 0.04%)</title><rect x="1059.1" y="1957" width="0.5" height="15.0" fill="rgb(209,38,22)" rx="2" ry="2" /> |
|
<text x="1062.14" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (8 samples, 0.05%)</title><rect x="1075.2" y="2005" width="0.6" height="15.0" fill="rgb(207,162,15)" rx="2" ry="2" /> |
|
<text x="1078.22" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>PR_Now (4 samples, 0.02%)</title><rect x="1014.2" y="2005" width="0.3" height="15.0" fill="rgb(230,26,15)" rx="2" ry="2" /> |
|
<text x="1017.22" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="1153.8" y="2037" width="0.4" height="15.0" fill="rgb(218,142,29)" rx="2" ry="2" /> |
|
<text x="1156.80" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (47 samples, 0.28%)</title><rect x="1182.9" y="2005" width="3.3" height="15.0" fill="rgb(221,24,41)" rx="2" ry="2" /> |
|
<text x="1185.92" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (10 samples, 0.06%)</title><rect x="981.9" y="2037" width="0.7" height="15.0" fill="rgb(241,38,45)" rx="2" ry="2" /> |
|
<text x="984.91" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (10 samples, 0.06%)</title><rect x="1146.0" y="2005" width="0.7" height="15.0" fill="rgb(228,101,4)" rx="2" ry="2" /> |
|
<text x="1149.00" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="46.8" y="1925" width="0.3" height="15.0" fill="rgb(231,115,40)" rx="2" ry="2" /> |
|
<text x="49.84" y="1935.5" ></text> |
|
</g> |
|
<g > |
|
<title>__close (2 samples, 0.01%)</title><rect x="49.4" y="1957" width="0.1" height="15.0" fill="rgb(239,15,36)" rx="2" ry="2" /> |
|
<text x="52.39" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="11.3" y="1845" width="0.3" height="15.0" fill="rgb(239,196,41)" rx="2" ry="2" /> |
|
<text x="14.28" y="1855.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1063.0" y="2005" width="0.3" height="15.0" fill="rgb(213,213,38)" rx="2" ry="2" /> |
|
<text x="1065.97" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1045" width="0.5" height="15.0" fill="rgb(206,180,31)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1055.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (94 samples, 0.56%)</title><rect x="1160.9" y="2021" width="6.6" height="15.0" fill="rgb(245,26,5)" rx="2" ry="2" /> |
|
<text x="1163.88" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (47 samples, 0.28%)</title><rect x="1126.4" y="2005" width="3.4" height="15.0" fill="rgb(245,146,41)" rx="2" ry="2" /> |
|
<text x="1129.45" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1046.0" y="1957" width="0.2" height="15.0" fill="rgb(206,66,40)" rx="2" ry="2" /> |
|
<text x="1049.03" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (10 samples, 0.06%)</title><rect x="1169.2" y="2005" width="0.7" height="15.0" fill="rgb(245,3,3)" rx="2" ry="2" /> |
|
<text x="1172.24" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (35 samples, 0.21%)</title><rect x="977.0" y="1941" width="2.5" height="15.0" fill="rgb(225,137,22)" rx="2" ry="2" /> |
|
<text x="980.03" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>__fxstat64 (180 samples, 1.08%)</title><rect x="1113.6" y="2053" width="12.7" height="15.0" fill="rgb(254,198,50)" rx="2" ry="2" /> |
|
<text x="1116.55" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1103.8" y="1957" width="0.2" height="15.0" fill="rgb(210,12,34)" rx="2" ry="2" /> |
|
<text x="1106.85" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1285" width="0.2" height="15.0" fill="rgb(250,52,23)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1295.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="33.9" y="1925" width="0.2" height="15.0" fill="rgb(222,46,6)" rx="2" ry="2" /> |
|
<text x="36.95" y="1935.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (8 samples, 0.05%)</title><rect x="1075.2" y="1989" width="0.6" height="15.0" fill="rgb(239,178,39)" rx="2" ry="2" /> |
|
<text x="1078.22" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="725" width="0.2" height="15.0" fill="rgb(252,205,5)" rx="2" ry="2" /> |
|
<text x="1048.82" y="735.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_write (4 samples, 0.02%)</title><rect x="1022.4" y="2037" width="0.3" height="15.0" fill="rgb(206,112,14)" rx="2" ry="2" /> |
|
<text x="1025.44" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (5 samples, 0.03%)</title><rect x="1092.5" y="2005" width="0.4" height="15.0" fill="rgb(240,209,21)" rx="2" ry="2" /> |
|
<text x="1095.51" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1957" width="0.5" height="15.0" fill="rgb(227,19,4)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_gettimeofday (8 samples, 0.05%)</title><rect x="10.4" y="1733" width="0.6" height="15.0" fill="rgb(216,90,23)" rx="2" ry="2" /> |
|
<text x="13.43" y="1743.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1765" width="0.5" height="15.0" fill="rgb(229,89,14)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1775.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1685" width="0.4" height="15.0" fill="rgb(236,150,12)" rx="2" ry="2" /> |
|
<text x="13.00" y="1695.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (17 samples, 0.10%)</title><rect x="1017.8" y="1973" width="1.2" height="15.0" fill="rgb(225,116,51)" rx="2" ry="2" /> |
|
<text x="1020.84" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1046.0" y="1941" width="0.2" height="15.0" fill="rgb(230,20,10)" rx="2" ry="2" /> |
|
<text x="1049.03" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_start_main (26 samples, 0.16%)</title><rect x="10.0" y="2037" width="1.8" height="15.0" fill="rgb(237,207,33)" rx="2" ry="2" /> |
|
<text x="13.00" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1429" width="0.4" height="15.0" fill="rgb(246,156,53)" rx="2" ry="2" /> |
|
<text x="13.00" y="1439.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1014.9" y="2021" width="0.2" height="15.0" fill="rgb(213,69,50)" rx="2" ry="2" /> |
|
<text x="1017.93" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1064.1" y="2005" width="0.3" height="15.0" fill="rgb(230,210,0)" rx="2" ry="2" /> |
|
<text x="1067.10" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (84 samples, 0.50%)</title><rect x="1133.1" y="2021" width="6.0" height="15.0" fill="rgb(208,223,43)" rx="2" ry="2" /> |
|
<text x="1136.11" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_read (12 samples, 0.07%)</title><rect x="1047.1" y="2037" width="0.8" height="15.0" fill="rgb(246,78,16)" rx="2" ry="2" /> |
|
<text x="1050.10" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>__tls_get_addr (2 samples, 0.01%)</title><rect x="1048.4" y="2037" width="0.1" height="15.0" fill="rgb(247,101,8)" rx="2" ry="2" /> |
|
<text x="1051.37" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (31 samples, 0.19%)</title><rect x="983.9" y="1973" width="2.2" height="15.0" fill="rgb(234,112,2)" rx="2" ry="2" /> |
|
<text x="986.90" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1365" width="0.5" height="15.0" fill="rgb(211,145,5)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1375.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (62 samples, 0.37%)</title><rect x="1088.0" y="2005" width="4.4" height="15.0" fill="rgb(239,54,6)" rx="2" ry="2" /> |
|
<text x="1090.98" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1024.1" y="2037" width="0.3" height="15.0" fill="rgb(241,226,10)" rx="2" ry="2" /> |
|
<text x="1027.14" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1637" width="0.5" height="15.0" fill="rgb(237,32,22)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1647.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1021.0" y="1989" width="0.2" height="15.0" fill="rgb(250,142,49)" rx="2" ry="2" /> |
|
<text x="1024.02" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1021.9" y="1989" width="0.1" height="15.0" fill="rgb(247,77,33)" rx="2" ry="2" /> |
|
<text x="1024.87" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="991.1" y="1973" width="0.2" height="15.0" fill="rgb(206,202,23)" rx="2" ry="2" /> |
|
<text x="994.05" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1157" width="0.2" height="15.0" fill="rgb(230,70,46)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1167.5" ></text> |
|
</g> |
|
<g > |
|
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (9 samples, 0.05%)</title><rect x="1007.7" y="2053" width="0.6" height="15.0" fill="rgb(250,172,41)" rx="2" ry="2" /> |
|
<text x="1010.70" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="629" width="0.5" height="15.0" fill="rgb(223,121,2)" rx="2" ry="2" /> |
|
<text x="1061.57" y="639.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1022.2" y="1957" width="0.2" height="15.0" fill="rgb(244,171,0)" rx="2" ry="2" /> |
|
<text x="1025.16" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_recvmsg (16 samples, 0.10%)</title><rect x="35.3" y="2037" width="1.1" height="15.0" fill="rgb(211,228,38)" rx="2" ry="2" /> |
|
<text x="38.29" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (6 samples, 0.04%)</title><rect x="1145.0" y="2005" width="0.4" height="15.0" fill="rgb(233,153,16)" rx="2" ry="2" /> |
|
<text x="1148.01" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1010.3" y="2037" width="0.1" height="15.0" fill="rgb(241,96,11)" rx="2" ry="2" /> |
|
<text x="1013.25" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (11 samples, 0.07%)</title><rect x="1102.2" y="1973" width="0.8" height="15.0" fill="rgb(218,219,23)" rx="2" ry="2" /> |
|
<text x="1105.22" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="853" width="0.5" height="15.0" fill="rgb(233,123,7)" rx="2" ry="2" /> |
|
<text x="1061.57" y="863.5" ></text> |
|
</g> |
|
<g > |
|
<title>Timer (44 samples, 0.26%)</title><rect x="1022.2" y="2069" width="3.1" height="15.0" fill="rgb(229,67,31)" rx="2" ry="2" /> |
|
<text x="1025.16" y="2079.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1011.8" y="1989" width="0.2" height="15.0" fill="rgb(211,191,45)" rx="2" ry="2" /> |
|
<text x="1014.81" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (5 samples, 0.03%)</title><rect x="1008.3" y="2005" width="0.4" height="15.0" fill="rgb(244,19,26)" rx="2" ry="2" /> |
|
<text x="1011.34" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (9 samples, 0.05%)</title><rect x="1038.0" y="1973" width="0.6" height="15.0" fill="rgb(224,196,37)" rx="2" ry="2" /> |
|
<text x="1040.96" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1093" width="0.2" height="15.0" fill="rgb(214,124,34)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1103.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="485" width="0.2" height="15.0" fill="rgb(223,70,47)" rx="2" ry="2" /> |
|
<text x="1048.82" y="495.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (8 samples, 0.05%)</title><rect x="1105.5" y="1989" width="0.5" height="15.0" fill="rgb(207,6,19)" rx="2" ry="2" /> |
|
<text x="1108.48" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="35.0" y="2021" width="0.3" height="15.0" fill="rgb(221,35,30)" rx="2" ry="2" /> |
|
<text x="38.01" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>__pthread_once_slow (6 samples, 0.04%)</title><rect x="1093.2" y="2037" width="0.4" height="15.0" fill="rgb(250,7,4)" rx="2" ry="2" /> |
|
<text x="1096.22" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (62 samples, 0.37%)</title><rect x="1083.6" y="1973" width="4.4" height="15.0" fill="rgb(244,70,14)" rx="2" ry="2" /> |
|
<text x="1086.58" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (18 samples, 0.11%)</title><rect x="10.0" y="1893" width="1.3" height="15.0" fill="rgb(208,174,9)" rx="2" ry="2" /> |
|
<text x="13.00" y="1903.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="1182.5" y="2037" width="0.4" height="15.0" fill="rgb(220,1,6)" rx="2" ry="2" /> |
|
<text x="1185.49" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (7 samples, 0.04%)</title><rect x="42.6" y="2005" width="0.5" height="15.0" fill="rgb(252,51,33)" rx="2" ry="2" /> |
|
<text x="45.59" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>evlist__enable (21 samples, 0.13%)</title><rect x="47.9" y="1973" width="1.5" height="15.0" fill="rgb(220,189,44)" rx="2" ry="2" /> |
|
<text x="50.90" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="773" width="0.5" height="15.0" fill="rgb(222,22,40)" rx="2" ry="2" /> |
|
<text x="1061.57" y="783.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1011.0" y="2021" width="0.2" height="15.0" fill="rgb(208,168,28)" rx="2" ry="2" /> |
|
<text x="1014.03" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1011.0" y="2005" width="0.2" height="15.0" fill="rgb(214,203,45)" rx="2" ry="2" /> |
|
<text x="1014.03" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (56 samples, 0.34%)</title><rect x="1038.6" y="2037" width="4.0" height="15.0" fill="rgb(249,52,13)" rx="2" ry="2" /> |
|
<text x="1041.59" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (9 samples, 0.05%)</title><rect x="981.9" y="2005" width="0.7" height="15.0" fill="rgb(218,77,11)" rx="2" ry="2" /> |
|
<text x="984.91" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>pthread_cond_signal@@GLIBC_2.3.2 (2 samples, 0.01%)</title><rect x="1043.8" y="2053" width="0.2" height="15.0" fill="rgb(239,78,53)" rx="2" ry="2" /> |
|
<text x="1046.84" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="1024.4" y="2021" width="0.3" height="15.0" fill="rgb(250,4,43)" rx="2" ry="2" /> |
|
<text x="1027.42" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (8 samples, 0.05%)</title><rect x="1063.3" y="2021" width="0.5" height="15.0" fill="rgb(219,154,31)" rx="2" ry="2" /> |
|
<text x="1066.25" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="213" width="0.5" height="15.0" fill="rgb(237,38,11)" rx="2" ry="2" /> |
|
<text x="1061.57" y="223.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (217 samples, 1.30%)</title><rect x="991.6" y="2005" width="15.4" height="15.0" fill="rgb(223,85,5)" rx="2" ry="2" /> |
|
<text x="994.62" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1024.4" y="2005" width="0.3" height="15.0" fill="rgb(216,164,18)" rx="2" ry="2" /> |
|
<text x="1027.42" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1021.6" y="2021" width="0.1" height="15.0" fill="rgb(211,55,31)" rx="2" ry="2" /> |
|
<text x="1024.59" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="1063.3" y="1989" width="0.2" height="15.0" fill="rgb(237,213,5)" rx="2" ry="2" /> |
|
<text x="1066.25" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (46 samples, 0.28%)</title><rect x="1106.6" y="2021" width="3.3" height="15.0" fill="rgb(243,126,9)" rx="2" ry="2" /> |
|
<text x="1109.61" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1573" width="0.4" height="15.0" fill="rgb(208,47,30)" rx="2" ry="2" /> |
|
<text x="13.00" y="1583.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="293" width="0.2" height="15.0" fill="rgb(213,52,15)" rx="2" ry="2" /> |
|
<text x="1048.82" y="303.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1010.7" y="1989" width="0.1" height="15.0" fill="rgb(253,84,30)" rx="2" ry="2" /> |
|
<text x="1013.68" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1941" width="0.2" height="15.0" fill="rgb(225,126,21)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1589" width="0.2" height="15.0" fill="rgb(249,139,30)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1599.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1182.3" y="2037" width="0.2" height="15.0" fill="rgb(215,50,4)" rx="2" ry="2" /> |
|
<text x="1185.35" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1717" width="0.4" height="15.0" fill="rgb(245,126,40)" rx="2" ry="2" /> |
|
<text x="13.00" y="1727.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (42 samples, 0.25%)</title><rect x="1096.1" y="2005" width="2.9" height="15.0" fill="rgb(211,100,30)" rx="2" ry="2" /> |
|
<text x="1099.05" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (5 samples, 0.03%)</title><rect x="1008.3" y="2021" width="0.4" height="15.0" fill="rgb(253,201,15)" rx="2" ry="2" /> |
|
<text x="1011.34" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="33.9" y="1989" width="0.2" height="15.0" fill="rgb(236,188,28)" rx="2" ry="2" /> |
|
<text x="36.95" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1011.2" y="2005" width="0.1" height="15.0" fill="rgb(242,220,31)" rx="2" ry="2" /> |
|
<text x="1014.18" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (5 samples, 0.03%)</title><rect x="45.1" y="1973" width="0.4" height="15.0" fill="rgb(216,212,22)" rx="2" ry="2" /> |
|
<text x="48.14" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_gettimeofday (4 samples, 0.02%)</title><rect x="1014.2" y="1989" width="0.3" height="15.0" fill="rgb(246,187,51)" rx="2" ry="2" /> |
|
<text x="1017.22" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="47.1" y="1909" width="0.3" height="15.0" fill="rgb(239,53,44)" rx="2" ry="2" /> |
|
<text x="50.13" y="1919.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="229" width="0.2" height="15.0" fill="rgb(237,37,5)" rx="2" ry="2" /> |
|
<text x="1048.82" y="239.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1781" width="0.5" height="15.0" fill="rgb(208,121,43)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1791.5" ></text> |
|
</g> |
|
<g > |
|
<title>__GI___getdents64 (20 samples, 0.12%)</title><rect x="1065.0" y="2037" width="1.4" height="15.0" fill="rgb(243,32,15)" rx="2" ry="2" /> |
|
<text x="1068.02" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (145 samples, 0.87%)</title><rect x="22.1" y="1973" width="10.3" height="15.0" fill="rgb(208,217,6)" rx="2" ry="2" /> |
|
<text x="25.12" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="35.0" y="2005" width="0.2" height="15.0" fill="rgb(230,96,29)" rx="2" ry="2" /> |
|
<text x="38.01" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>Renderer (88 samples, 0.53%)</title><rect x="1015.6" y="2069" width="6.3" height="15.0" fill="rgb(232,158,11)" rx="2" ry="2" /> |
|
<text x="1018.64" y="2079.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (3 samples, 0.02%)</title><rect x="1023.9" y="2021" width="0.2" height="15.0" fill="rgb(225,185,23)" rx="2" ry="2" /> |
|
<text x="1026.93" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (8 samples, 0.05%)</title><rect x="1060.8" y="2005" width="0.6" height="15.0" fill="rgb(225,181,10)" rx="2" ry="2" /> |
|
<text x="1063.84" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1029" width="0.5" height="15.0" fill="rgb(237,4,54)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1039.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1015.1" y="2021" width="0.1" height="15.0" fill="rgb(205,84,33)" rx="2" ry="2" /> |
|
<text x="1018.07" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1113.3" y="2005" width="0.3" height="15.0" fill="rgb(221,92,26)" rx="2" ry="2" /> |
|
<text x="1116.34" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="149" width="0.2" height="15.0" fill="rgb(217,116,4)" rx="2" ry="2" /> |
|
<text x="1048.82" y="159.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="709" width="0.2" height="15.0" fill="rgb(216,72,34)" rx="2" ry="2" /> |
|
<text x="1048.82" y="719.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="965" width="0.2" height="15.0" fill="rgb(205,126,19)" rx="2" ry="2" /> |
|
<text x="1048.82" y="975.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (50 samples, 0.30%)</title><rect x="1058.6" y="2053" width="3.5" height="15.0" fill="rgb(239,121,1)" rx="2" ry="2" /> |
|
<text x="1061.57" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (5 samples, 0.03%)</title><rect x="1012.6" y="2021" width="0.3" height="15.0" fill="rgb(237,216,12)" rx="2" ry="2" /> |
|
<text x="1015.59" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (56 samples, 0.34%)</title><rect x="1038.6" y="2021" width="4.0" height="15.0" fill="rgb(210,192,12)" rx="2" ry="2" /> |
|
<text x="1041.59" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (6 samples, 0.04%)</title><rect x="983.0" y="1989" width="0.5" height="15.0" fill="rgb(254,80,35)" rx="2" ry="2" /> |
|
<text x="986.05" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (69 samples, 0.41%)</title><rect x="977.0" y="1957" width="4.9" height="15.0" fill="rgb(241,196,18)" rx="2" ry="2" /> |
|
<text x="980.03" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1104.4" y="1989" width="0.2" height="15.0" fill="rgb(221,125,20)" rx="2" ry="2" /> |
|
<text x="1107.41" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.05%)</title><rect x="1063.8" y="2021" width="0.6" height="15.0" fill="rgb(245,215,5)" rx="2" ry="2" /> |
|
<text x="1066.82" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (3 samples, 0.02%)</title><rect x="36.9" y="2005" width="0.2" height="15.0" fill="rgb(243,200,17)" rx="2" ry="2" /> |
|
<text x="39.85" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1045.1" y="1941" width="0.2" height="15.0" fill="rgb(253,202,25)" rx="2" ry="2" /> |
|
<text x="1048.11" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (16 samples, 0.10%)</title><rect x="988.3" y="1973" width="1.1" height="15.0" fill="rgb(226,201,42)" rx="2" ry="2" /> |
|
<text x="991.29" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (8 samples, 0.05%)</title><rect x="1076.4" y="1973" width="0.5" height="15.0" fill="rgb(226,20,33)" rx="2" ry="2" /> |
|
<text x="1079.36" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1349" width="0.5" height="15.0" fill="rgb(218,34,16)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1359.5" ></text> |
|
</g> |
|
<g > |
|
<title>mprotect (22 samples, 0.13%)</title><rect x="1102.2" y="2005" width="1.6" height="15.0" fill="rgb(227,150,52)" rx="2" ry="2" /> |
|
<text x="1105.22" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (16 samples, 0.10%)</title><rect x="1026.8" y="1989" width="1.2" height="15.0" fill="rgb(227,223,10)" rx="2" ry="2" /> |
|
<text x="1029.83" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1173" width="0.5" height="15.0" fill="rgb(221,78,1)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1183.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (15 samples, 0.09%)</title><rect x="1056.0" y="2005" width="1.0" height="15.0" fill="rgb(206,207,23)" rx="2" ry="2" /> |
|
<text x="1058.95" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="837" width="0.2" height="15.0" fill="rgb(239,213,5)" rx="2" ry="2" /> |
|
<text x="1048.82" y="847.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.05%)</title><rect x="1024.4" y="2037" width="0.6" height="15.0" fill="rgb(236,107,3)" rx="2" ry="2" /> |
|
<text x="1027.42" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (32 samples, 0.19%)</title><rect x="988.3" y="2021" width="2.3" height="15.0" fill="rgb(242,136,47)" rx="2" ry="2" /> |
|
<text x="991.29" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1021.2" y="2005" width="0.1" height="15.0" fill="rgb(230,43,45)" rx="2" ry="2" /> |
|
<text x="1024.17" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="47.4" y="1941" width="0.2" height="15.0" fill="rgb(238,85,35)" rx="2" ry="2" /> |
|
<text x="50.41" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1064.9" y="1989" width="0.1" height="15.0" fill="rgb(247,151,3)" rx="2" ry="2" /> |
|
<text x="1067.88" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>__getpid (4 samples, 0.02%)</title><rect x="1021.0" y="2053" width="0.3" height="15.0" fill="rgb(233,214,0)" rx="2" ry="2" /> |
|
<text x="1024.02" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.03%)</title><rect x="1012.6" y="2005" width="0.3" height="15.0" fill="rgb(206,95,47)" rx="2" ry="2" /> |
|
<text x="1015.59" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1058.9" y="37" width="0.2" height="15.0" fill="rgb(221,183,34)" rx="2" ry="2" /> |
|
<text x="1061.86" y="47.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1011.6" y="2005" width="0.1" height="15.0" fill="rgb(224,184,37)" rx="2" ry="2" /> |
|
<text x="1014.60" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="983.7" y="1989" width="0.2" height="15.0" fill="rgb(208,184,25)" rx="2" ry="2" /> |
|
<text x="986.69" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (84 samples, 0.50%)</title><rect x="1139.1" y="2021" width="5.9" height="15.0" fill="rgb(247,172,25)" rx="2" ry="2" /> |
|
<text x="1142.06" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (22 samples, 0.13%)</title><rect x="1019.0" y="1973" width="1.6" height="15.0" fill="rgb(231,44,35)" rx="2" ry="2" /> |
|
<text x="1022.04" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="133" width="0.5" height="15.0" fill="rgb(205,166,42)" rx="2" ry="2" /> |
|
<text x="1061.57" y="143.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (7 samples, 0.04%)</title><rect x="42.6" y="1989" width="0.5" height="15.0" fill="rgb(220,126,19)" rx="2" ry="2" /> |
|
<text x="45.59" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>sched_setaffinity@@GLIBC_2.3.4 (5 samples, 0.03%)</title><rect x="47.6" y="1957" width="0.3" height="15.0" fill="rgb(207,108,31)" rx="2" ry="2" /> |
|
<text x="50.55" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>epoll_wait (8 samples, 0.05%)</title><rect x="1063.8" y="2037" width="0.6" height="15.0" fill="rgb(241,103,49)" rx="2" ry="2" /> |
|
<text x="1066.82" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (7 samples, 0.04%)</title><rect x="42.6" y="2021" width="0.5" height="15.0" fill="rgb(219,222,38)" rx="2" ry="2" /> |
|
<text x="45.59" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="45.9" y="1989" width="0.3" height="15.0" fill="rgb(210,19,41)" rx="2" ry="2" /> |
|
<text x="48.92" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.05%)</title><rect x="1009.5" y="1941" width="0.6" height="15.0" fill="rgb(208,134,16)" rx="2" ry="2" /> |
|
<text x="1012.55" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1653" width="0.2" height="15.0" fill="rgb(234,65,6)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1663.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="11.0" y="1717" width="0.1" height="15.0" fill="rgb(206,36,32)" rx="2" ry="2" /> |
|
<text x="13.99" y="1727.5" ></text> |
|
</g> |
|
<g > |
|
<title>__GI___geteuid (2 samples, 0.01%)</title><rect x="1066.6" y="2037" width="0.1" height="15.0" fill="rgb(245,162,44)" rx="2" ry="2" /> |
|
<text x="1069.58" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="1017.3" y="2021" width="0.5" height="15.0" fill="rgb(231,70,45)" rx="2" ry="2" /> |
|
<text x="1020.34" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>__lll_lock_wait (2 samples, 0.01%)</title><rect x="1011.3" y="2053" width="0.2" height="15.0" fill="rgb(238,160,24)" rx="2" ry="2" /> |
|
<text x="1014.32" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1093.4" y="1973" width="0.1" height="15.0" fill="rgb(205,62,43)" rx="2" ry="2" /> |
|
<text x="1096.36" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>__open64_nocancel (2 samples, 0.01%)</title><rect x="1093.2" y="2021" width="0.2" height="15.0" fill="rgb(253,183,14)" rx="2" ry="2" /> |
|
<text x="1096.22" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="309" width="0.5" height="15.0" fill="rgb(205,17,54)" rx="2" ry="2" /> |
|
<text x="1061.57" y="319.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_read (2 samples, 0.01%)</title><rect x="1060.1" y="2037" width="0.2" height="15.0" fill="rgb(221,70,25)" rx="2" ry="2" /> |
|
<text x="1063.13" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (22 samples, 0.13%)</title><rect x="1170.7" y="1989" width="1.5" height="15.0" fill="rgb(219,172,3)" rx="2" ry="2" /> |
|
<text x="1173.66" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="277" width="0.5" height="15.0" fill="rgb(237,157,3)" rx="2" ry="2" /> |
|
<text x="1061.57" y="287.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (17 samples, 0.10%)</title><rect x="1093.6" y="2005" width="1.2" height="15.0" fill="rgb(210,134,39)" rx="2" ry="2" /> |
|
<text x="1096.64" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1877" width="0.2" height="15.0" fill="rgb(225,166,16)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1887.5" ></text> |
|
</g> |
|
<g > |
|
<title>cmd_record (70 samples, 0.42%)</title><rect x="977.0" y="2005" width="4.9" height="15.0" fill="rgb(206,206,0)" rx="2" ry="2" /> |
|
<text x="979.96" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (11 samples, 0.07%)</title><rect x="1046.2" y="1957" width="0.8" height="15.0" fill="rgb(231,224,29)" rx="2" ry="2" /> |
|
<text x="1049.18" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (4 samples, 0.02%)</title><rect x="1015.6" y="2021" width="0.3" height="15.0" fill="rgb(209,27,21)" rx="2" ry="2" /> |
|
<text x="1018.64" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (14 samples, 0.08%)</title><rect x="10.0" y="1749" width="1.0" height="15.0" fill="rgb(239,135,49)" rx="2" ry="2" /> |
|
<text x="13.00" y="1759.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (16 samples, 0.10%)</title><rect x="1076.4" y="2021" width="1.1" height="15.0" fill="rgb(208,37,30)" rx="2" ry="2" /> |
|
<text x="1079.36" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="1067.7" y="2021" width="0.4" height="15.0" fill="rgb(227,217,26)" rx="2" ry="2" /> |
|
<text x="1070.71" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (8 samples, 0.05%)</title><rect x="1075.8" y="1989" width="0.6" height="15.0" fill="rgb(210,171,12)" rx="2" ry="2" /> |
|
<text x="1078.79" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1024.7" y="2005" width="0.3" height="15.0" fill="rgb(236,38,22)" rx="2" ry="2" /> |
|
<text x="1027.71" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1025.0" y="1957" width="0.3" height="15.0" fill="rgb(227,62,50)" rx="2" ry="2" /> |
|
<text x="1027.99" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (324 samples, 1.95%)</title><rect x="10.0" y="2053" width="23.0" height="15.0" fill="rgb(253,26,48)" rx="2" ry="2" /> |
|
<text x="13.00" y="2063.5" >[..</text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.02%)</title><rect x="1102.0" y="2005" width="0.2" height="15.0" fill="rgb(249,10,44)" rx="2" ry="2" /> |
|
<text x="1105.00" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (10 samples, 0.06%)</title><rect x="1065.0" y="1989" width="0.7" height="15.0" fill="rgb(230,189,50)" rx="2" ry="2" /> |
|
<text x="1068.02" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1024.1" y="2005" width="0.2" height="15.0" fill="rgb(254,44,42)" rx="2" ry="2" /> |
|
<text x="1027.14" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (9 samples, 0.05%)</title><rect x="981.9" y="2021" width="0.7" height="15.0" fill="rgb(224,172,48)" rx="2" ry="2" /> |
|
<text x="984.91" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1093" width="0.5" height="15.0" fill="rgb(236,6,32)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1103.5" ></text> |
|
</g> |
|
<g > |
|
<title>__poll (30 samples, 0.18%)</title><rect x="1056.0" y="2053" width="2.1" height="15.0" fill="rgb(231,119,8)" rx="2" ry="2" /> |
|
<text x="1058.95" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="36.7" y="2021" width="0.2" height="15.0" fill="rgb(237,152,53)" rx="2" ry="2" /> |
|
<text x="39.71" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="341" width="0.2" height="15.0" fill="rgb(230,217,52)" rx="2" ry="2" /> |
|
<text x="1048.82" y="351.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1058.3" y="2005" width="0.1" height="15.0" fill="rgb(253,3,17)" rx="2" ry="2" /> |
|
<text x="1061.29" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1105.3" y="2021" width="0.2" height="15.0" fill="rgb(216,79,33)" rx="2" ry="2" /> |
|
<text x="1108.26" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (86 samples, 0.52%)</title><rect x="1147.4" y="2037" width="6.1" height="15.0" fill="rgb(228,116,16)" rx="2" ry="2" /> |
|
<text x="1150.42" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (36 samples, 0.22%)</title><rect x="1040.0" y="1989" width="2.6" height="15.0" fill="rgb(208,149,7)" rx="2" ry="2" /> |
|
<text x="1043.01" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (10 samples, 0.06%)</title><rect x="1173.8" y="2021" width="0.7" height="15.0" fill="rgb(245,85,6)" rx="2" ry="2" /> |
|
<text x="1176.78" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1043.8" y="2037" width="0.2" height="15.0" fill="rgb(217,13,18)" rx="2" ry="2" /> |
|
<text x="1046.84" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1013.5" y="2053" width="0.6" height="15.0" fill="rgb(244,69,31)" rx="2" ry="2" /> |
|
<text x="1016.51" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1093.5" y="2005" width="0.1" height="15.0" fill="rgb(207,141,20)" rx="2" ry="2" /> |
|
<text x="1096.50" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1017.1" y="1973" width="0.1" height="15.0" fill="rgb(247,63,13)" rx="2" ry="2" /> |
|
<text x="1020.06" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1014.2" y="1973" width="0.3" height="15.0" fill="rgb(239,5,22)" rx="2" ry="2" /> |
|
<text x="1017.22" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>_dl_sysdep_start (25 samples, 0.15%)</title><rect x="1102.0" y="2037" width="1.8" height="15.0" fill="rgb(227,201,3)" rx="2" ry="2" /> |
|
<text x="1105.00" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="773" width="0.2" height="15.0" fill="rgb(224,35,50)" rx="2" ry="2" /> |
|
<text x="1048.82" y="783.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1525" width="0.4" height="15.0" fill="rgb(252,51,12)" rx="2" ry="2" /> |
|
<text x="13.00" y="1535.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1589" width="0.4" height="15.0" fill="rgb(228,175,29)" rx="2" ry="2" /> |
|
<text x="13.00" y="1599.5" ></text> |
|
</g> |
|
<g > |
|
<title>__fcntl64_nocancel_adjusted (6 samples, 0.04%)</title><rect x="1113.1" y="2053" width="0.5" height="15.0" fill="rgb(209,203,36)" rx="2" ry="2" /> |
|
<text x="1116.13" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1020.6" y="2005" width="0.2" height="15.0" fill="rgb(228,132,22)" rx="2" ry="2" /> |
|
<text x="1023.60" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1012.6" y="1989" width="0.1" height="15.0" fill="rgb(220,198,40)" rx="2" ry="2" /> |
|
<text x="1015.59" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (5 samples, 0.03%)</title><rect x="1012.6" y="2037" width="0.3" height="15.0" fill="rgb(217,177,15)" rx="2" ry="2" /> |
|
<text x="1015.59" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1012.5" y="2021" width="0.1" height="15.0" fill="rgb(245,147,14)" rx="2" ry="2" /> |
|
<text x="1015.45" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (7 samples, 0.04%)</title><rect x="43.1" y="2005" width="0.5" height="15.0" fill="rgb(230,225,22)" rx="2" ry="2" /> |
|
<text x="46.09" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1012.2" y="2005" width="0.1" height="15.0" fill="rgb(245,144,53)" rx="2" ry="2" /> |
|
<text x="1015.17" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>__GI___ioctl (8 samples, 0.05%)</title><rect x="46.8" y="1957" width="0.6" height="15.0" fill="rgb(227,11,19)" rx="2" ry="2" /> |
|
<text x="49.84" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1008.1" y="2021" width="0.2" height="15.0" fill="rgb(240,166,45)" rx="2" ry="2" /> |
|
<text x="1011.06" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="1020.6" y="2037" width="0.4" height="15.0" fill="rgb(226,23,32)" rx="2" ry="2" /> |
|
<text x="1023.60" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1365" width="0.2" height="15.0" fill="rgb(248,37,23)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1375.5" ></text> |
|
</g> |
|
<g > |
|
<title>__GI___getuid (2 samples, 0.01%)</title><rect x="1067.0" y="2037" width="0.1" height="15.0" fill="rgb(232,72,50)" rx="2" ry="2" /> |
|
<text x="1070.01" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="2021" width="0.5" height="15.0" fill="rgb(231,31,3)" rx="2" ry="2" /> |
|
<text x="1061.57" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (47 samples, 0.28%)</title><rect x="1182.9" y="1989" width="3.3" height="15.0" fill="rgb(237,223,49)" rx="2" ry="2" /> |
|
<text x="1185.92" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1637" width="0.2" height="15.0" fill="rgb(208,227,6)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1647.5" ></text> |
|
</g> |
|
<g > |
|
<title>__pthread_mutex_unlock_usercnt (4 samples, 0.02%)</title><rect x="1024.1" y="2053" width="0.3" height="15.0" fill="rgb(251,215,38)" rx="2" ry="2" /> |
|
<text x="1027.14" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="35.0" y="1989" width="0.2" height="15.0" fill="rgb(249,132,1)" rx="2" ry="2" /> |
|
<text x="38.01" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (62 samples, 0.37%)</title><rect x="1088.0" y="1989" width="4.4" height="15.0" fill="rgb(250,65,41)" rx="2" ry="2" /> |
|
<text x="1090.98" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (9 samples, 0.05%)</title><rect x="1038.0" y="2021" width="0.6" height="15.0" fill="rgb(231,189,52)" rx="2" ry="2" /> |
|
<text x="1040.96" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>__GI___getgid (2 samples, 0.01%)</title><rect x="1066.7" y="2037" width="0.2" height="15.0" fill="rgb(215,112,40)" rx="2" ry="2" /> |
|
<text x="1069.72" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (6 samples, 0.04%)</title><rect x="1037.5" y="2021" width="0.5" height="15.0" fill="rgb(249,38,43)" rx="2" ry="2" /> |
|
<text x="1040.53" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1157" width="0.5" height="15.0" fill="rgb(242,21,41)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1167.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="629" width="0.2" height="15.0" fill="rgb(205,227,10)" rx="2" ry="2" /> |
|
<text x="1048.82" y="639.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (3 samples, 0.02%)</title><rect x="1045.3" y="1989" width="0.2" height="15.0" fill="rgb(219,63,30)" rx="2" ry="2" /> |
|
<text x="1048.25" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="35.2" y="1989" width="0.1" height="15.0" fill="rgb(226,48,39)" rx="2" ry="2" /> |
|
<text x="38.15" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="853" width="0.2" height="15.0" fill="rgb(248,102,21)" rx="2" ry="2" /> |
|
<text x="1048.82" y="863.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_write (2 samples, 0.01%)</title><rect x="1013.7" y="2037" width="0.2" height="15.0" fill="rgb(213,93,32)" rx="2" ry="2" /> |
|
<text x="1016.73" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1012.9" y="2021" width="0.2" height="15.0" fill="rgb(234,149,6)" rx="2" ry="2" /> |
|
<text x="1015.95" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (43 samples, 0.26%)</title><rect x="1150.5" y="2021" width="3.0" height="15.0" fill="rgb(251,204,7)" rx="2" ry="2" /> |
|
<text x="1153.47" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_gettimeofday (2 samples, 0.01%)</title><rect x="1045.7" y="1957" width="0.1" height="15.0" fill="rgb(207,183,19)" rx="2" ry="2" /> |
|
<text x="1048.68" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1021.9" y="2005" width="0.1" height="15.0" fill="rgb(244,50,46)" rx="2" ry="2" /> |
|
<text x="1024.87" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1989" width="0.5" height="15.0" fill="rgb(251,82,37)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="44.0" y="2021" width="0.3" height="15.0" fill="rgb(247,209,13)" rx="2" ry="2" /> |
|
<text x="47.01" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (5 samples, 0.03%)</title><rect x="991.3" y="1957" width="0.3" height="15.0" fill="rgb(227,171,3)" rx="2" ry="2" /> |
|
<text x="994.27" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="991.1" y="1957" width="0.2" height="15.0" fill="rgb(241,4,53)" rx="2" ry="2" /> |
|
<text x="994.05" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="197" width="0.2" height="15.0" fill="rgb(246,35,23)" rx="2" ry="2" /> |
|
<text x="1048.82" y="207.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1045" width="0.2" height="15.0" fill="rgb(207,90,43)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1055.5" ></text> |
|
</g> |
|
<g > |
|
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (8 samples, 0.05%)</title><rect x="33.0" y="2053" width="0.5" height="15.0" fill="rgb(216,138,1)" rx="2" ry="2" /> |
|
<text x="35.96" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (74 samples, 0.44%)</title><rect x="1037.5" y="2053" width="5.2" height="15.0" fill="rgb(237,5,10)" rx="2" ry="2" /> |
|
<text x="1040.46" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (18 samples, 0.11%)</title><rect x="10.0" y="1813" width="1.3" height="15.0" fill="rgb(223,155,3)" rx="2" ry="2" /> |
|
<text x="13.00" y="1823.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1285" width="0.5" height="15.0" fill="rgb(220,123,15)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1295.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="10.4" y="1669" width="0.3" height="15.0" fill="rgb(253,50,24)" rx="2" ry="2" /> |
|
<text x="13.43" y="1679.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (94 samples, 0.56%)</title><rect x="1182.9" y="2037" width="6.7" height="15.0" fill="rgb(206,46,37)" rx="2" ry="2" /> |
|
<text x="1185.92" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>__close (92 samples, 0.55%)</title><rect x="1106.6" y="2053" width="6.5" height="15.0" fill="rgb(243,197,47)" rx="2" ry="2" /> |
|
<text x="1109.61" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="990.6" y="2021" width="0.2" height="15.0" fill="rgb(241,197,10)" rx="2" ry="2" /> |
|
<text x="993.56" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1153.8" y="2021" width="0.2" height="15.0" fill="rgb(244,162,44)" rx="2" ry="2" /> |
|
<text x="1156.80" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1765" width="0.2" height="15.0" fill="rgb(233,28,34)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1775.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (12 samples, 0.07%)</title><rect x="1044.7" y="2021" width="0.8" height="15.0" fill="rgb(248,24,27)" rx="2" ry="2" /> |
|
<text x="1047.69" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (5 samples, 0.03%)</title><rect x="1016.7" y="1989" width="0.4" height="15.0" fill="rgb(213,99,35)" rx="2" ry="2" /> |
|
<text x="1019.70" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>__GI___writev (14 samples, 0.08%)</title><rect x="1059.1" y="2021" width="1.0" height="15.0" fill="rgb(224,102,7)" rx="2" ry="2" /> |
|
<text x="1062.14" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (232 samples, 1.39%)</title><rect x="990.8" y="2053" width="16.5" height="15.0" fill="rgb(209,214,34)" rx="2" ry="2" /> |
|
<text x="993.84" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>__xstat64 (188 samples, 1.13%)</title><rect x="1154.2" y="2053" width="13.3" height="15.0" fill="rgb(230,141,18)" rx="2" ry="2" /> |
|
<text x="1157.22" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="725" width="0.5" height="15.0" fill="rgb(214,139,1)" rx="2" ry="2" /> |
|
<text x="1061.57" y="735.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1025.3" y="1989" width="0.2" height="15.0" fill="rgb(241,64,0)" rx="2" ry="2" /> |
|
<text x="1028.27" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (16 samples, 0.10%)</title><rect x="988.3" y="2005" width="1.1" height="15.0" fill="rgb(230,111,21)" rx="2" ry="2" /> |
|
<text x="991.29" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (16 samples, 0.10%)</title><rect x="1075.2" y="2021" width="1.2" height="15.0" fill="rgb(247,227,41)" rx="2" ry="2" /> |
|
<text x="1078.22" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>__GI___sysinfo (2 samples, 0.01%)</title><rect x="1064.4" y="2021" width="0.1" height="15.0" fill="rgb(243,50,7)" rx="2" ry="2" /> |
|
<text x="1067.38" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (10 samples, 0.06%)</title><rect x="1016.3" y="2021" width="0.8" height="15.0" fill="rgb(253,149,11)" rx="2" ry="2" /> |
|
<text x="1019.35" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (42 samples, 0.25%)</title><rect x="1080.6" y="1989" width="3.0" height="15.0" fill="rgb(212,156,28)" rx="2" ry="2" /> |
|
<text x="1083.61" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (8 samples, 0.05%)</title><rect x="1060.3" y="1973" width="0.5" height="15.0" fill="rgb(243,83,1)" rx="2" ry="2" /> |
|
<text x="1063.27" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1413" width="0.5" height="15.0" fill="rgb(215,88,48)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1423.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall (2 samples, 0.01%)</title><rect x="1010.1" y="2053" width="0.2" height="15.0" fill="rgb(251,50,2)" rx="2" ry="2" /> |
|
<text x="1013.11" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1036.1" y="2005" width="0.2" height="15.0" fill="rgb(213,182,16)" rx="2" ry="2" /> |
|
<text x="1039.11" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (4 samples, 0.02%)</title><rect x="43.7" y="2037" width="0.3" height="15.0" fill="rgb(252,133,19)" rx="2" ry="2" /> |
|
<text x="46.72" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>VizCompositorTh (172 samples, 1.03%)</title><rect x="1025.3" y="2069" width="12.2" height="15.0" fill="rgb(251,180,9)" rx="2" ry="2" /> |
|
<text x="1028.27" y="2079.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1012.2" y="1973" width="0.1" height="15.0" fill="rgb(229,70,46)" rx="2" ry="2" /> |
|
<text x="1015.17" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (111 samples, 0.67%)</title><rect x="999.1" y="1973" width="7.9" height="15.0" fill="rgb(211,12,36)" rx="2" ry="2" /> |
|
<text x="1002.13" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (5 samples, 0.03%)</title><rect x="1092.9" y="2005" width="0.3" height="15.0" fill="rgb(233,77,13)" rx="2" ry="2" /> |
|
<text x="1095.87" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_write (2 samples, 0.01%)</title><rect x="1015.1" y="2037" width="0.1" height="15.0" fill="rgb(238,9,13)" rx="2" ry="2" /> |
|
<text x="1018.07" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1861" width="0.2" height="15.0" fill="rgb(214,18,32)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1871.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (9 samples, 0.05%)</title><rect x="1181.5" y="1973" width="0.6" height="15.0" fill="rgb(213,207,32)" rx="2" ry="2" /> |
|
<text x="1184.50" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="990.8" y="1957" width="0.3" height="15.0" fill="rgb(213,106,46)" rx="2" ry="2" /> |
|
<text x="993.84" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (5 samples, 0.03%)</title><rect x="991.3" y="2021" width="0.3" height="15.0" fill="rgb(217,166,42)" rx="2" ry="2" /> |
|
<text x="994.27" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (9 samples, 0.05%)</title><rect x="34.2" y="1957" width="0.7" height="15.0" fill="rgb(225,218,34)" rx="2" ry="2" /> |
|
<text x="37.23" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1010.4" y="2021" width="0.1" height="15.0" fill="rgb(225,79,33)" rx="2" ry="2" /> |
|
<text x="1013.40" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (6 samples, 0.04%)</title><rect x="1037.5" y="1989" width="0.5" height="15.0" fill="rgb(240,221,38)" rx="2" ry="2" /> |
|
<text x="1040.53" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1017.6" y="1989" width="0.2" height="15.0" fill="rgb(250,75,10)" rx="2" ry="2" /> |
|
<text x="1020.55" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1093.5" y="1989" width="0.1" height="15.0" fill="rgb(227,90,2)" rx="2" ry="2" /> |
|
<text x="1096.50" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (11 samples, 0.07%)</title><rect x="1046.2" y="2021" width="0.8" height="15.0" fill="rgb(223,58,27)" rx="2" ry="2" /> |
|
<text x="1049.18" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="45.9" y="2021" width="0.3" height="15.0" fill="rgb(226,226,6)" rx="2" ry="2" /> |
|
<text x="48.92" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1044.8" y="1941" width="0.2" height="15.0" fill="rgb(238,99,8)" rx="2" ry="2" /> |
|
<text x="1047.83" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1025.0" y="2005" width="0.3" height="15.0" fill="rgb(232,123,29)" rx="2" ry="2" /> |
|
<text x="1027.99" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1022.4" y="1973" width="0.2" height="15.0" fill="rgb(205,30,18)" rx="2" ry="2" /> |
|
<text x="1025.44" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_write (2 samples, 0.01%)</title><rect x="1012.5" y="2037" width="0.1" height="15.0" fill="rgb(236,185,13)" rx="2" ry="2" /> |
|
<text x="1015.45" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1877" width="0.5" height="15.0" fill="rgb(217,150,42)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1887.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="32.7" y="2005" width="0.3" height="15.0" fill="rgb(218,133,53)" rx="2" ry="2" /> |
|
<text x="35.67" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="33.2" y="2021" width="0.3" height="15.0" fill="rgb(205,97,50)" rx="2" ry="2" /> |
|
<text x="36.24" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (45 samples, 0.27%)</title><rect x="1174.5" y="1957" width="3.2" height="15.0" fill="rgb(222,169,22)" rx="2" ry="2" /> |
|
<text x="1177.48" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1182.5" y="2005" width="0.2" height="15.0" fill="rgb(226,68,30)" rx="2" ry="2" /> |
|
<text x="1185.49" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1025.3" y="1973" width="0.2" height="15.0" fill="rgb(232,70,41)" rx="2" ry="2" /> |
|
<text x="1028.27" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (5 samples, 0.03%)</title><rect x="1173.8" y="1989" width="0.3" height="15.0" fill="rgb(229,125,8)" rx="2" ry="2" /> |
|
<text x="1176.78" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (74 samples, 0.44%)</title><rect x="1050.4" y="1989" width="5.3" height="15.0" fill="rgb(232,147,20)" rx="2" ry="2" /> |
|
<text x="1053.43" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>__GI___getrandom (2 samples, 0.01%)</title><rect x="1066.9" y="2037" width="0.1" height="15.0" fill="rgb(222,192,5)" rx="2" ry="2" /> |
|
<text x="1069.86" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>__open64_nocancel (2 samples, 0.01%)</title><rect x="1189.9" y="2021" width="0.1" height="15.0" fill="rgb(235,71,25)" rx="2" ry="2" /> |
|
<text x="1192.86" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1011.0" y="1989" width="0.2" height="15.0" fill="rgb(238,72,4)" rx="2" ry="2" /> |
|
<text x="1014.03" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1058.1" y="1957" width="0.1" height="15.0" fill="rgb(232,53,7)" rx="2" ry="2" /> |
|
<text x="1061.08" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_read (2 samples, 0.01%)</title><rect x="1014.9" y="2037" width="0.2" height="15.0" fill="rgb(238,201,43)" rx="2" ry="2" /> |
|
<text x="1017.93" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (106 samples, 0.64%)</title><rect x="991.6" y="1989" width="7.5" height="15.0" fill="rgb(230,31,10)" rx="2" ry="2" /> |
|
<text x="994.62" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (11 samples, 0.07%)</title><rect x="1102.2" y="1957" width="0.8" height="15.0" fill="rgb(219,159,41)" rx="2" ry="2" /> |
|
<text x="1105.22" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (8 samples, 0.05%)</title><rect x="1075.2" y="1973" width="0.6" height="15.0" fill="rgb(216,10,46)" rx="2" ry="2" /> |
|
<text x="1078.22" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1173" width="0.2" height="15.0" fill="rgb(241,43,15)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1183.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (5 samples, 0.03%)</title><rect x="46.2" y="2005" width="0.4" height="15.0" fill="rgb(239,111,3)" rx="2" ry="2" /> |
|
<text x="49.20" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (10 samples, 0.06%)</title><rect x="1065.7" y="2005" width="0.7" height="15.0" fill="rgb(236,184,20)" rx="2" ry="2" /> |
|
<text x="1068.73" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (6 samples, 0.04%)</title><rect x="1037.5" y="1909" width="0.5" height="15.0" fill="rgb(220,108,11)" rx="2" ry="2" /> |
|
<text x="1040.53" y="1919.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1349" width="0.2" height="15.0" fill="rgb(244,135,44)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1359.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="837" width="0.5" height="15.0" fill="rgb(217,11,2)" rx="2" ry="2" /> |
|
<text x="1061.57" y="847.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (10 samples, 0.06%)</title><rect x="1092.5" y="2021" width="0.7" height="15.0" fill="rgb(250,55,42)" rx="2" ry="2" /> |
|
<text x="1095.51" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (8 samples, 0.05%)</title><rect x="1060.3" y="1989" width="0.5" height="15.0" fill="rgb(237,138,52)" rx="2" ry="2" /> |
|
<text x="1063.27" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (6 samples, 0.04%)</title><rect x="1047.5" y="2005" width="0.4" height="15.0" fill="rgb(220,31,3)" rx="2" ry="2" /> |
|
<text x="1050.52" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1733" width="0.4" height="15.0" fill="rgb(253,163,20)" rx="2" ry="2" /> |
|
<text x="13.00" y="1743.5" ></text> |
|
</g> |
|
<g > |
|
<title>__poll (9 samples, 0.05%)</title><rect x="45.9" y="2053" width="0.7" height="15.0" fill="rgb(247,177,4)" rx="2" ry="2" /> |
|
<text x="48.92" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1093.2" y="2005" width="0.2" height="15.0" fill="rgb(242,13,9)" rx="2" ry="2" /> |
|
<text x="1096.22" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (15 samples, 0.09%)</title><rect x="1037.5" y="2037" width="1.1" height="15.0" fill="rgb(240,77,25)" rx="2" ry="2" /> |
|
<text x="1040.53" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1189.6" y="2005" width="0.1" height="15.0" fill="rgb(227,162,52)" rx="2" ry="2" /> |
|
<text x="1192.57" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (7 samples, 0.04%)</title><rect x="1045.7" y="2021" width="0.5" height="15.0" fill="rgb(245,160,18)" rx="2" ry="2" /> |
|
<text x="1048.68" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1021.0" y="2037" width="0.3" height="15.0" fill="rgb(234,119,41)" rx="2" ry="2" /> |
|
<text x="1024.02" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (18 samples, 0.11%)</title><rect x="10.0" y="1877" width="1.3" height="15.0" fill="rgb(207,49,39)" rx="2" ry="2" /> |
|
<text x="13.00" y="1887.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (10 samples, 0.06%)</title><rect x="1167.5" y="2005" width="0.7" height="15.0" fill="rgb(213,179,37)" rx="2" ry="2" /> |
|
<text x="1170.54" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1044.7" y="1973" width="0.3" height="15.0" fill="rgb(235,186,17)" rx="2" ry="2" /> |
|
<text x="1047.69" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1653" width="0.5" height="15.0" fill="rgb(247,152,18)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1663.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1063.3" y="1973" width="0.2" height="15.0" fill="rgb(233,144,23)" rx="2" ry="2" /> |
|
<text x="1066.25" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (5 samples, 0.03%)</title><rect x="1010.7" y="2037" width="0.3" height="15.0" fill="rgb(209,190,13)" rx="2" ry="2" /> |
|
<text x="1013.68" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>__pthread_mutex_unlock_usercnt (6 samples, 0.04%)</title><rect x="1009.1" y="1941" width="0.4" height="15.0" fill="rgb(227,146,23)" rx="2" ry="2" /> |
|
<text x="1012.12" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1029" width="0.2" height="15.0" fill="rgb(205,226,9)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1039.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="990.6" y="2005" width="0.1" height="15.0" fill="rgb(208,124,33)" rx="2" ry="2" /> |
|
<text x="993.56" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[libxul.so] (14 samples, 0.08%)</title><rect x="1044.7" y="2037" width="1.0" height="15.0" fill="rgb(207,104,39)" rx="2" ry="2" /> |
|
<text x="1047.69" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1781" width="0.2" height="15.0" fill="rgb(222,202,46)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1791.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1063.0" y="2021" width="0.3" height="15.0" fill="rgb(205,68,0)" rx="2" ry="2" /> |
|
<text x="1065.97" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1113.1" y="2021" width="0.2" height="15.0" fill="rgb(207,217,4)" rx="2" ry="2" /> |
|
<text x="1116.13" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>__GI___readlink (8 samples, 0.05%)</title><rect x="1067.1" y="2037" width="0.6" height="15.0" fill="rgb(240,113,18)" rx="2" ry="2" /> |
|
<text x="1070.15" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1047.0" y="1941" width="0.1" height="15.0" fill="rgb(210,124,4)" rx="2" ry="2" /> |
|
<text x="1049.95" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (106 samples, 0.64%)</title><rect x="991.6" y="1957" width="7.5" height="15.0" fill="rgb(242,14,47)" rx="2" ry="2" /> |
|
<text x="994.62" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (5 samples, 0.03%)</title><rect x="1045.7" y="2005" width="0.3" height="15.0" fill="rgb(234,9,40)" rx="2" ry="2" /> |
|
<text x="1048.68" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1058.6" y="37" width="0.3" height="15.0" fill="rgb(250,141,35)" rx="2" ry="2" /> |
|
<text x="1061.57" y="47.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="245" width="0.5" height="15.0" fill="rgb(223,115,47)" rx="2" ry="2" /> |
|
<text x="1061.57" y="255.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1104.2" y="2005" width="0.2" height="15.0" fill="rgb(214,166,54)" rx="2" ry="2" /> |
|
<text x="1107.20" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (3 samples, 0.02%)</title><rect x="1023.9" y="2005" width="0.2" height="15.0" fill="rgb(222,196,54)" rx="2" ry="2" /> |
|
<text x="1026.93" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (5 samples, 0.03%)</title><rect x="45.1" y="1989" width="0.4" height="15.0" fill="rgb(243,193,5)" rx="2" ry="2" /> |
|
<text x="48.14" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1066.7" y="2021" width="0.2" height="15.0" fill="rgb(209,92,4)" rx="2" ry="2" /> |
|
<text x="1069.72" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="965" width="0.5" height="15.0" fill="rgb(214,214,1)" rx="2" ry="2" /> |
|
<text x="1061.57" y="975.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="36.4" y="1973" width="0.2" height="15.0" fill="rgb(224,73,18)" rx="2" ry="2" /> |
|
<text x="39.43" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (3 samples, 0.02%)</title><rect x="33.7" y="1989" width="0.2" height="15.0" fill="rgb(233,19,54)" rx="2" ry="2" /> |
|
<text x="36.73" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="709" width="0.5" height="15.0" fill="rgb(219,22,50)" rx="2" ry="2" /> |
|
<text x="1061.57" y="719.5" ></text> |
|
</g> |
|
<g > |
|
<title>pthread_cond_wait@@GLIBC_2.3.2 (2 samples, 0.01%)</title><rect x="1021.7" y="2053" width="0.2" height="15.0" fill="rgb(212,147,50)" rx="2" ry="2" /> |
|
<text x="1024.73" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1010.8" y="1989" width="0.2" height="15.0" fill="rgb(224,198,42)" rx="2" ry="2" /> |
|
<text x="1013.82" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_recvmsg (6 samples, 0.04%)</title><rect x="1017.3" y="2037" width="0.5" height="15.0" fill="rgb(245,192,7)" rx="2" ry="2" /> |
|
<text x="1020.34" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>PyInit_posix (2 samples, 0.01%)</title><rect x="1064.4" y="2037" width="0.1" height="15.0" fill="rgb(253,183,6)" rx="2" ry="2" /> |
|
<text x="1067.38" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (10 samples, 0.06%)</title><rect x="1065.0" y="2005" width="0.7" height="15.0" fill="rgb(241,141,36)" rx="2" ry="2" /> |
|
<text x="1068.02" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="46.8" y="1909" width="0.3" height="15.0" fill="rgb(230,167,3)" rx="2" ry="2" /> |
|
<text x="49.84" y="1919.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="36.9" y="1941" width="0.2" height="15.0" fill="rgb(253,15,35)" rx="2" ry="2" /> |
|
<text x="39.85" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1012.6" y="1973" width="0.1" height="15.0" fill="rgb(210,16,38)" rx="2" ry="2" /> |
|
<text x="1015.59" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>mozilla::detail::MutexImpl::lock (3 samples, 0.02%)</title><rect x="1023.9" y="2037" width="0.2" height="15.0" fill="rgb(251,183,3)" rx="2" ry="2" /> |
|
<text x="1026.93" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall (2 samples, 0.01%)</title><rect x="1042.6" y="2037" width="0.1" height="15.0" fill="rgb(254,54,13)" rx="2" ry="2" /> |
|
<text x="1045.56" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1020.6" y="1989" width="0.2" height="15.0" fill="rgb(240,82,12)" rx="2" ry="2" /> |
|
<text x="1023.60" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="983.7" y="2005" width="0.2" height="15.0" fill="rgb(237,122,9)" rx="2" ry="2" /> |
|
<text x="986.69" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="33.9" y="1957" width="0.2" height="15.0" fill="rgb(213,226,26)" rx="2" ry="2" /> |
|
<text x="36.95" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (145 samples, 0.87%)</title><rect x="22.1" y="1989" width="10.3" height="15.0" fill="rgb(208,45,52)" rx="2" ry="2" /> |
|
<text x="25.12" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (5 samples, 0.03%)</title><rect x="1010.7" y="2021" width="0.3" height="15.0" fill="rgb(230,167,38)" rx="2" ry="2" /> |
|
<text x="1013.68" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="1058.9" y="69" width="0.2" height="15.0" fill="rgb(226,123,54)" rx="2" ry="2" /> |
|
<text x="1061.86" y="79.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1013.5" y="2021" width="0.2" height="15.0" fill="rgb(221,84,2)" rx="2" ry="2" /> |
|
<text x="1016.51" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1066.9" y="2021" width="0.1" height="15.0" fill="rgb(209,221,44)" rx="2" ry="2" /> |
|
<text x="1069.86" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1126.3" y="2037" width="0.1" height="15.0" fill="rgb(209,103,48)" rx="2" ry="2" /> |
|
<text x="1129.31" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.05%)</title><rect x="10.4" y="1717" width="0.6" height="15.0" fill="rgb(217,63,16)" rx="2" ry="2" /> |
|
<text x="13.43" y="1727.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1113.1" y="2005" width="0.2" height="15.0" fill="rgb(226,187,37)" rx="2" ry="2" /> |
|
<text x="1116.13" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="421" width="0.5" height="15.0" fill="rgb(209,132,31)" rx="2" ry="2" /> |
|
<text x="1061.57" y="431.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1589" width="0.5" height="15.0" fill="rgb(233,78,21)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1599.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_recvmsg (32 samples, 0.19%)</title><rect x="1025.7" y="2037" width="2.3" height="15.0" fill="rgb(215,56,42)" rx="2" ry="2" /> |
|
<text x="1028.70" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>__GI___ioctl (6 samples, 0.04%)</title><rect x="1020.6" y="2053" width="0.4" height="15.0" fill="rgb(212,193,11)" rx="2" ry="2" /> |
|
<text x="1023.60" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1093.4" y="2005" width="0.1" height="15.0" fill="rgb(239,159,39)" rx="2" ry="2" /> |
|
<text x="1096.36" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="1104.2" y="2021" width="0.4" height="15.0" fill="rgb(253,33,3)" rx="2" ry="2" /> |
|
<text x="1107.20" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>mozilla::detail::MutexImpl::lock (2 samples, 0.01%)</title><rect x="1058.1" y="2053" width="0.1" height="15.0" fill="rgb(249,34,19)" rx="2" ry="2" /> |
|
<text x="1061.08" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (15 samples, 0.09%)</title><rect x="1056.0" y="2021" width="1.0" height="15.0" fill="rgb(221,3,10)" rx="2" ry="2" /> |
|
<text x="1058.95" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (11 samples, 0.07%)</title><rect x="1008.3" y="2037" width="0.8" height="15.0" fill="rgb(214,123,18)" rx="2" ry="2" /> |
|
<text x="1011.34" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_gettimeofday (4 samples, 0.02%)</title><rect x="1044.7" y="1989" width="0.3" height="15.0" fill="rgb(253,226,45)" rx="2" ry="2" /> |
|
<text x="1047.69" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (8 samples, 0.05%)</title><rect x="1076.4" y="2005" width="0.5" height="15.0" fill="rgb(223,141,51)" rx="2" ry="2" /> |
|
<text x="1079.36" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="517" width="0.5" height="15.0" fill="rgb(224,184,36)" rx="2" ry="2" /> |
|
<text x="1061.57" y="527.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1269" width="0.2" height="15.0" fill="rgb(223,199,32)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1279.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1105.1" y="1989" width="0.2" height="15.0" fill="rgb(212,37,21)" rx="2" ry="2" /> |
|
<text x="1108.05" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (3 samples, 0.02%)</title><rect x="1013.9" y="2021" width="0.2" height="15.0" fill="rgb(218,92,25)" rx="2" ry="2" /> |
|
<text x="1016.87" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>__GI___open64_nocancel (90 samples, 0.54%)</title><rect x="1174.5" y="2021" width="6.4" height="15.0" fill="rgb(224,198,38)" rx="2" ry="2" /> |
|
<text x="1177.48" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (16 samples, 0.10%)</title><rect x="988.3" y="1989" width="1.1" height="15.0" fill="rgb(215,196,5)" rx="2" ry="2" /> |
|
<text x="991.29" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>__close_nocancel (2 samples, 0.01%)</title><rect x="1189.6" y="2021" width="0.1" height="15.0" fill="rgb(239,18,35)" rx="2" ry="2" /> |
|
<text x="1192.57" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1845" width="0.5" height="15.0" fill="rgb(230,96,13)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1855.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (9 samples, 0.05%)</title><rect x="34.2" y="1941" width="0.7" height="15.0" fill="rgb(251,104,3)" rx="2" ry="2" /> |
|
<text x="37.23" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1020.8" y="2021" width="0.2" height="15.0" fill="rgb(214,73,16)" rx="2" ry="2" /> |
|
<text x="1023.81" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>IPDL_Background (10 samples, 0.06%)</title><rect x="1013.5" y="2069" width="0.7" height="15.0" fill="rgb(236,120,17)" rx="2" ry="2" /> |
|
<text x="1016.51" y="2079.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="165" width="0.5" height="15.0" fill="rgb(213,167,25)" rx="2" ry="2" /> |
|
<text x="1061.57" y="175.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1048.4" y="1989" width="0.1" height="15.0" fill="rgb(234,24,11)" rx="2" ry="2" /> |
|
<text x="1051.37" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1153.8" y="1989" width="0.2" height="15.0" fill="rgb(229,128,28)" rx="2" ry="2" /> |
|
<text x="1156.80" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="33.7" y="1893" width="0.2" height="15.0" fill="rgb(206,151,19)" rx="2" ry="2" /> |
|
<text x="36.73" y="1903.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1014.8" y="2037" width="0.1" height="15.0" fill="rgb(244,184,40)" rx="2" ry="2" /> |
|
<text x="1017.79" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1749" width="0.5" height="15.0" fill="rgb(224,121,24)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1759.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (6 samples, 0.04%)</title><rect x="44.3" y="2005" width="0.4" height="15.0" fill="rgb(243,125,47)" rx="2" ry="2" /> |
|
<text x="47.29" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1509" width="0.4" height="15.0" fill="rgb(230,21,38)" rx="2" ry="2" /> |
|
<text x="13.00" y="1519.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (13,087 samples, 78.58%)</title><rect x="49.5" y="2021" width="927.2" height="15.0" fill="rgb(254,3,27)" rx="2" ry="2" /> |
|
<text x="52.53" y="2031.5" >entry_SYSCALL_64_after_hwframe</text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="990.7" y="1989" width="0.1" height="15.0" fill="rgb(236,27,7)" rx="2" ry="2" /> |
|
<text x="993.70" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (17 samples, 0.10%)</title><rect x="1017.8" y="1957" width="1.2" height="15.0" fill="rgb(244,145,22)" rx="2" ry="2" /> |
|
<text x="1020.84" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="36.6" y="1989" width="0.1" height="15.0" fill="rgb(208,182,50)" rx="2" ry="2" /> |
|
<text x="39.57" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (4 samples, 0.02%)</title><rect x="1025.0" y="2037" width="0.3" height="15.0" fill="rgb(230,12,11)" rx="2" ry="2" /> |
|
<text x="1027.99" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1048.4" y="1973" width="0.1" height="15.0" fill="rgb(221,123,17)" rx="2" ry="2" /> |
|
<text x="1051.37" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (4 samples, 0.02%)</title><rect x="1015.2" y="2021" width="0.3" height="15.0" fill="rgb(241,45,29)" rx="2" ry="2" /> |
|
<text x="1018.21" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>__GI___dup (6 samples, 0.04%)</title><rect x="1104.6" y="2053" width="0.5" height="15.0" fill="rgb(211,42,46)" rx="2" ry="2" /> |
|
<text x="1107.63" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>update_get_addr (4 samples, 0.02%)</title><rect x="1025.0" y="2053" width="0.3" height="15.0" fill="rgb(211,127,2)" rx="2" ry="2" /> |
|
<text x="1027.99" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="741" width="0.2" height="15.0" fill="rgb(207,24,0)" rx="2" ry="2" /> |
|
<text x="1048.82" y="751.5" ></text> |
|
</g> |
|
<g > |
|
<title>setlocale (6 samples, 0.04%)</title><rect x="1189.6" y="2053" width="0.4" height="15.0" fill="rgb(230,22,21)" rx="2" ry="2" /> |
|
<text x="1192.57" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="34.1" y="1925" width="0.1" height="15.0" fill="rgb(225,102,25)" rx="2" ry="2" /> |
|
<text x="37.09" y="1935.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1062.4" y="2005" width="0.3" height="15.0" fill="rgb(226,129,47)" rx="2" ry="2" /> |
|
<text x="1065.40" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="10.7" y="1685" width="0.3" height="15.0" fill="rgb(205,136,27)" rx="2" ry="2" /> |
|
<text x="13.71" y="1695.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="32.4" y="1973" width="0.3" height="15.0" fill="rgb(215,190,39)" rx="2" ry="2" /> |
|
<text x="35.39" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (45 samples, 0.27%)</title><rect x="1174.5" y="1989" width="3.2" height="15.0" fill="rgb(214,85,26)" rx="2" ry="2" /> |
|
<text x="1177.48" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (3 samples, 0.02%)</title><rect x="1013.9" y="2037" width="0.2" height="15.0" fill="rgb(211,228,53)" rx="2" ry="2" /> |
|
<text x="1016.87" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="1025.0" y="1989" width="0.3" height="15.0" fill="rgb(214,76,20)" rx="2" ry="2" /> |
|
<text x="1027.99" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="983.5" y="1989" width="0.2" height="15.0" fill="rgb(239,210,16)" rx="2" ry="2" /> |
|
<text x="986.47" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>v8::internal::Execution::Call (6 samples, 0.04%)</title><rect x="10.0" y="1621" width="0.4" height="15.0" fill="rgb(238,144,3)" rx="2" ry="2" /> |
|
<text x="13.00" y="1631.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1061" width="0.5" height="15.0" fill="rgb(227,227,16)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1071.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (116 samples, 0.70%)</title><rect x="982.6" y="2053" width="8.2" height="15.0" fill="rgb(248,44,1)" rx="2" ry="2" /> |
|
<text x="985.62" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (8 samples, 0.05%)</title><rect x="1106.0" y="2021" width="0.6" height="15.0" fill="rgb(249,165,42)" rx="2" ry="2" /> |
|
<text x="1109.04" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (10 samples, 0.06%)</title><rect x="1146.7" y="2005" width="0.7" height="15.0" fill="rgb(229,220,37)" rx="2" ry="2" /> |
|
<text x="1149.71" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1015.2" y="1973" width="0.2" height="15.0" fill="rgb(234,99,51)" rx="2" ry="2" /> |
|
<text x="1018.21" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (47 samples, 0.28%)</title><rect x="1186.2" y="2005" width="3.4" height="15.0" fill="rgb(206,186,0)" rx="2" ry="2" /> |
|
<text x="1189.24" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="983.5" y="2021" width="0.4" height="15.0" fill="rgb(230,169,15)" rx="2" ry="2" /> |
|
<text x="986.47" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="325" width="0.2" height="15.0" fill="rgb(230,208,8)" rx="2" ry="2" /> |
|
<text x="1048.82" y="335.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (145 samples, 0.87%)</title><rect x="11.8" y="1973" width="10.3" height="15.0" fill="rgb(232,182,16)" rx="2" ry="2" /> |
|
<text x="14.84" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="49.0" y="1893" width="0.3" height="15.0" fill="rgb(211,56,39)" rx="2" ry="2" /> |
|
<text x="52.04" y="1903.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (34 samples, 0.20%)</title><rect x="1093.6" y="2021" width="2.5" height="15.0" fill="rgb(238,88,1)" rx="2" ry="2" /> |
|
<text x="1096.64" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1893" width="0.2" height="15.0" fill="rgb(249,202,38)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1903.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (74 samples, 0.44%)</title><rect x="1050.4" y="1973" width="5.3" height="15.0" fill="rgb(244,79,3)" rx="2" ry="2" /> |
|
<text x="1053.43" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.02%)</title><rect x="1045.3" y="1957" width="0.2" height="15.0" fill="rgb(206,134,18)" rx="2" ry="2" /> |
|
<text x="1048.25" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1013.9" y="1989" width="0.2" height="15.0" fill="rgb(218,127,25)" rx="2" ry="2" /> |
|
<text x="1016.94" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1493" width="0.5" height="15.0" fill="rgb(221,221,7)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1503.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (2 samples, 0.01%)</title><rect x="1058.1" y="2021" width="0.1" height="15.0" fill="rgb(222,148,12)" rx="2" ry="2" /> |
|
<text x="1061.08" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (6 samples, 0.04%)</title><rect x="1145.4" y="2021" width="0.5" height="15.0" fill="rgb(253,109,22)" rx="2" ry="2" /> |
|
<text x="1148.44" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>.kitty-wrapped (40 samples, 0.24%)</title><rect x="43.7" y="2069" width="2.9" height="15.0" fill="rgb(239,173,15)" rx="2" ry="2" /> |
|
<text x="46.72" y="2079.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.03%)</title><rect x="991.3" y="1989" width="0.3" height="15.0" fill="rgb(211,34,21)" rx="2" ry="2" /> |
|
<text x="994.27" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (16 samples, 0.10%)</title><rect x="35.3" y="2021" width="1.1" height="15.0" fill="rgb(234,210,24)" rx="2" ry="2" /> |
|
<text x="38.29" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1381" width="0.5" height="15.0" fill="rgb(216,217,33)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1391.5" ></text> |
|
</g> |
|
<g > |
|
<title>perf_event__synthesize_comm (2 samples, 0.01%)</title><rect x="49.4" y="1973" width="0.1" height="15.0" fill="rgb(208,90,40)" rx="2" ry="2" /> |
|
<text x="52.39" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>init_tls (2 samples, 0.01%)</title><rect x="1182.3" y="2053" width="0.2" height="15.0" fill="rgb(206,83,10)" rx="2" ry="2" /> |
|
<text x="1185.35" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>brk (2 samples, 0.01%)</title><rect x="1182.2" y="2053" width="0.1" height="15.0" fill="rgb(226,84,25)" rx="2" ry="2" /> |
|
<text x="1185.21" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>mprotect (10 samples, 0.06%)</title><rect x="1173.8" y="2037" width="0.7" height="15.0" fill="rgb(249,217,37)" rx="2" ry="2" /> |
|
<text x="1176.78" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (5 samples, 0.03%)</title><rect x="1173.8" y="1973" width="0.3" height="15.0" fill="rgb(248,35,12)" rx="2" ry="2" /> |
|
<text x="1176.78" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_write (4 samples, 0.02%)</title><rect x="36.4" y="2037" width="0.3" height="15.0" fill="rgb(215,141,7)" rx="2" ry="2" /> |
|
<text x="39.43" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1022.2" y="1973" width="0.2" height="15.0" fill="rgb(218,167,40)" rx="2" ry="2" /> |
|
<text x="1025.16" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>__pthread_mutex_unlock_usercnt (2 samples, 0.01%)</title><rect x="1010.5" y="2037" width="0.2" height="15.0" fill="rgb(228,41,24)" rx="2" ry="2" /> |
|
<text x="1013.54" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (5 samples, 0.03%)</title><rect x="1008.3" y="1989" width="0.4" height="15.0" fill="rgb(243,128,12)" rx="2" ry="2" /> |
|
<text x="1011.34" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1058.3" y="2037" width="0.3" height="15.0" fill="rgb(246,123,3)" rx="2" ry="2" /> |
|
<text x="1061.29" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="47.1" y="1925" width="0.3" height="15.0" fill="rgb(253,87,37)" rx="2" ry="2" /> |
|
<text x="50.13" y="1935.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1113.3" y="2021" width="0.3" height="15.0" fill="rgb(239,212,43)" rx="2" ry="2" /> |
|
<text x="1116.34" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="645" width="0.5" height="15.0" fill="rgb(234,18,20)" rx="2" ry="2" /> |
|
<text x="1061.57" y="655.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1067.9" y="2005" width="0.2" height="15.0" fill="rgb(249,45,15)" rx="2" ry="2" /> |
|
<text x="1070.93" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1045.3" y="1941" width="0.2" height="15.0" fill="rgb(206,137,25)" rx="2" ry="2" /> |
|
<text x="1048.25" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (43 samples, 0.26%)</title><rect x="1147.4" y="1989" width="3.1" height="15.0" fill="rgb(218,99,34)" rx="2" ry="2" /> |
|
<text x="1150.42" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (5 samples, 0.03%)</title><rect x="1174.1" y="1989" width="0.4" height="15.0" fill="rgb(207,137,11)" rx="2" ry="2" /> |
|
<text x="1177.13" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1153.8" y="2005" width="0.2" height="15.0" fill="rgb(235,121,37)" rx="2" ry="2" /> |
|
<text x="1156.80" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>__munmap (2 samples, 0.01%)</title><rect x="1092.4" y="2037" width="0.1" height="15.0" fill="rgb(233,146,31)" rx="2" ry="2" /> |
|
<text x="1095.37" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1153.7" y="2021" width="0.1" height="15.0" fill="rgb(229,156,14)" rx="2" ry="2" /> |
|
<text x="1156.65" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1046.0" y="1925" width="0.2" height="15.0" fill="rgb(210,59,41)" rx="2" ry="2" /> |
|
<text x="1049.03" y="1935.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1011.0" y="2037" width="0.3" height="15.0" fill="rgb(254,155,0)" rx="2" ry="2" /> |
|
<text x="1014.03" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>__getpid (2 samples, 0.01%)</title><rect x="1015.6" y="2005" width="0.2" height="15.0" fill="rgb(208,105,14)" rx="2" ry="2" /> |
|
<text x="1018.64" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1829" width="0.5" height="15.0" fill="rgb(230,44,38)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1839.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="981" width="0.5" height="15.0" fill="rgb(216,179,4)" rx="2" ry="2" /> |
|
<text x="1061.57" y="991.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="1067.1" y="2005" width="0.3" height="15.0" fill="rgb(253,35,54)" rx="2" ry="2" /> |
|
<text x="1070.15" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1067.0" y="2021" width="0.1" height="15.0" fill="rgb(216,90,18)" rx="2" ry="2" /> |
|
<text x="1070.01" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (3 samples, 0.02%)</title><rect x="33.7" y="1973" width="0.2" height="15.0" fill="rgb(252,220,42)" rx="2" ry="2" /> |
|
<text x="36.73" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (26 samples, 0.16%)</title><rect x="10.0" y="2021" width="1.8" height="15.0" fill="rgb(250,200,35)" rx="2" ry="2" /> |
|
<text x="13.00" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="533" width="0.2" height="15.0" fill="rgb(230,170,13)" rx="2" ry="2" /> |
|
<text x="1048.82" y="543.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1022.4" y="2005" width="0.2" height="15.0" fill="rgb(222,53,10)" rx="2" ry="2" /> |
|
<text x="1025.44" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1113.1" y="1989" width="0.2" height="15.0" fill="rgb(206,139,8)" rx="2" ry="2" /> |
|
<text x="1116.13" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (6 samples, 0.04%)</title><rect x="44.3" y="1973" width="0.4" height="15.0" fill="rgb(224,32,29)" rx="2" ry="2" /> |
|
<text x="47.29" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1104.6" y="2005" width="0.2" height="15.0" fill="rgb(241,8,44)" rx="2" ry="2" /> |
|
<text x="1107.63" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (6 samples, 0.04%)</title><rect x="1013.1" y="2053" width="0.4" height="15.0" fill="rgb(237,218,9)" rx="2" ry="2" /> |
|
<text x="1016.09" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (14 samples, 0.08%)</title><rect x="1059.1" y="2005" width="1.0" height="15.0" fill="rgb(247,188,22)" rx="2" ry="2" /> |
|
<text x="1062.14" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_send (6 samples, 0.04%)</title><rect x="1007.3" y="2053" width="0.4" height="15.0" fill="rgb(233,179,23)" rx="2" ry="2" /> |
|
<text x="1010.28" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1154.0" y="2005" width="0.2" height="15.0" fill="rgb(238,220,42)" rx="2" ry="2" /> |
|
<text x="1157.01" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.05%)</title><rect x="1067.1" y="2021" width="0.6" height="15.0" fill="rgb(222,112,14)" rx="2" ry="2" /> |
|
<text x="1070.15" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="661" width="0.2" height="15.0" fill="rgb(215,84,32)" rx="2" ry="2" /> |
|
<text x="1048.82" y="671.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="949" width="0.2" height="15.0" fill="rgb(223,36,6)" rx="2" ry="2" /> |
|
<text x="1048.82" y="959.5" ></text> |
|
</g> |
|
<g > |
|
<title>__poll (2 samples, 0.01%)</title><rect x="1015.5" y="2053" width="0.1" height="15.0" fill="rgb(207,22,32)" rx="2" ry="2" /> |
|
<text x="1018.50" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (5 samples, 0.03%)</title><rect x="45.5" y="1973" width="0.3" height="15.0" fill="rgb(215,220,40)" rx="2" ry="2" /> |
|
<text x="48.50" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (6 samples, 0.04%)</title><rect x="44.3" y="1989" width="0.4" height="15.0" fill="rgb(212,132,24)" rx="2" ry="2" /> |
|
<text x="47.29" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (15 samples, 0.09%)</title><rect x="1056.0" y="1989" width="1.0" height="15.0" fill="rgb(226,49,12)" rx="2" ry="2" /> |
|
<text x="1058.95" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_gettimeofday (2 samples, 0.01%)</title><rect x="1014.5" y="2021" width="0.1" height="15.0" fill="rgb(229,74,46)" rx="2" ry="2" /> |
|
<text x="1017.51" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (5 samples, 0.03%)</title><rect x="1173.8" y="2005" width="0.3" height="15.0" fill="rgb(223,166,38)" rx="2" ry="2" /> |
|
<text x="1176.78" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="453" width="0.2" height="15.0" fill="rgb(217,82,31)" rx="2" ry="2" /> |
|
<text x="1048.82" y="463.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1014.2" y="1941" width="0.2" height="15.0" fill="rgb(239,175,14)" rx="2" ry="2" /> |
|
<text x="1017.22" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (8 samples, 0.05%)</title><rect x="1036.9" y="2005" width="0.6" height="15.0" fill="rgb(212,41,25)" rx="2" ry="2" /> |
|
<text x="1039.89" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="373" width="0.5" height="15.0" fill="rgb(210,128,0)" rx="2" ry="2" /> |
|
<text x="1061.57" y="383.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1060.1" y="2021" width="0.2" height="15.0" fill="rgb(223,7,6)" rx="2" ry="2" /> |
|
<text x="1063.13" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (18 samples, 0.11%)</title><rect x="10.0" y="1765" width="1.3" height="15.0" fill="rgb(248,20,33)" rx="2" ry="2" /> |
|
<text x="13.00" y="1775.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (11 samples, 0.07%)</title><rect x="1010.3" y="2053" width="0.7" height="15.0" fill="rgb(219,5,54)" rx="2" ry="2" /> |
|
<text x="1013.25" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (5 samples, 0.03%)</title><rect x="1016.3" y="1989" width="0.4" height="15.0" fill="rgb(228,222,9)" rx="2" ry="2" /> |
|
<text x="1019.35" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="34.1" y="1941" width="0.1" height="15.0" fill="rgb(229,119,4)" rx="2" ry="2" /> |
|
<text x="37.09" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (62 samples, 0.37%)</title><rect x="983.9" y="2037" width="4.4" height="15.0" fill="rgb(252,212,26)" rx="2" ry="2" /> |
|
<text x="986.90" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (6,539 samples, 39.26%)</title><rect x="49.5" y="1989" width="463.3" height="15.0" fill="rgb(215,192,22)" rx="2" ry="2" /> |
|
<text x="52.53" y="1999.5" >syscall_trace_enter.constprop.0</text> |
|
</g> |
|
<g > |
|
<title>.electron-wrapp (332 samples, 1.99%)</title><rect x="10.0" y="2069" width="23.5" height="15.0" fill="rgb(207,208,23)" rx="2" ry="2" /> |
|
<text x="13.00" y="2079.5" >...</text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (20 samples, 0.12%)</title><rect x="1169.2" y="2021" width="1.5" height="15.0" fill="rgb(234,221,22)" rx="2" ry="2" /> |
|
<text x="1172.24" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (16 samples, 0.10%)</title><rect x="989.4" y="1989" width="1.2" height="15.0" fill="rgb(239,211,34)" rx="2" ry="2" /> |
|
<text x="992.42" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="389" width="0.2" height="15.0" fill="rgb(213,79,7)" rx="2" ry="2" /> |
|
<text x="1048.82" y="399.5" ></text> |
|
</g> |
|
<g > |
|
<title>pthread_cond_broadcast@@GLIBC_2.3.2 (4 samples, 0.02%)</title><rect x="1007.0" y="2037" width="0.3" height="15.0" fill="rgb(223,52,12)" rx="2" ry="2" /> |
|
<text x="1010.00" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1062.1" y="1989" width="0.3" height="15.0" fill="rgb(246,86,14)" rx="2" ry="2" /> |
|
<text x="1065.12" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="33.0" y="1989" width="0.2" height="15.0" fill="rgb(245,10,21)" rx="2" ry="2" /> |
|
<text x="35.96" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1104.6" y="1989" width="0.2" height="15.0" fill="rgb(224,107,34)" rx="2" ry="2" /> |
|
<text x="1107.63" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1012.7" y="1989" width="0.2" height="15.0" fill="rgb(218,109,22)" rx="2" ry="2" /> |
|
<text x="1015.73" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1605" width="0.2" height="15.0" fill="rgb(222,14,16)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1615.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1397" width="0.2" height="15.0" fill="rgb(205,121,3)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1407.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (111 samples, 0.67%)</title><rect x="999.1" y="1989" width="7.9" height="15.0" fill="rgb(236,185,37)" rx="2" ry="2" /> |
|
<text x="1002.13" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (22 samples, 0.13%)</title><rect x="1170.7" y="1973" width="1.5" height="15.0" fill="rgb(254,67,35)" rx="2" ry="2" /> |
|
<text x="1173.66" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>all (16,655 samples, 100%)</title><rect x="10.0" y="2085" width="1180.0" height="15.0" fill="rgb(253,177,45)" rx="2" ry="2" /> |
|
<text x="13.00" y="2095.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="469" width="0.5" height="15.0" fill="rgb(222,109,18)" rx="2" ry="2" /> |
|
<text x="1061.57" y="479.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1013.2" y="2021" width="0.2" height="15.0" fill="rgb(208,153,12)" rx="2" ry="2" /> |
|
<text x="1016.23" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (6,548 samples, 39.32%)</title><rect x="512.8" y="2005" width="463.9" height="15.0" fill="rgb(218,128,28)" rx="2" ry="2" /> |
|
<text x="515.82" y="2015.5" >syscall_exit_to_user_mode</text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1477" width="0.2" height="15.0" fill="rgb(212,202,1)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1487.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="757" width="0.5" height="15.0" fill="rgb(216,22,18)" rx="2" ry="2" /> |
|
<text x="1061.57" y="767.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="46.7" y="1957" width="0.1" height="15.0" fill="rgb(231,228,29)" rx="2" ry="2" /> |
|
<text x="49.70" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1020.8" y="2005" width="0.2" height="15.0" fill="rgb(227,219,0)" rx="2" ry="2" /> |
|
<text x="1023.81" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (39 samples, 0.23%)</title><rect x="1017.8" y="2021" width="2.8" height="15.0" fill="rgb(220,224,6)" rx="2" ry="2" /> |
|
<text x="1020.84" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (11 samples, 0.07%)</title><rect x="1103.0" y="1957" width="0.8" height="15.0" fill="rgb(237,175,47)" rx="2" ry="2" /> |
|
<text x="1106.00" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>__open64 (2 samples, 0.01%)</title><rect x="976.7" y="2037" width="0.2" height="15.0" fill="rgb(220,201,54)" rx="2" ry="2" /> |
|
<text x="979.74" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1077" width="0.2" height="15.0" fill="rgb(212,37,48)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1087.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="44.0" y="1973" width="0.1" height="15.0" fill="rgb(223,68,6)" rx="2" ry="2" /> |
|
<text x="47.01" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="437" width="0.5" height="15.0" fill="rgb(233,128,35)" rx="2" ry="2" /> |
|
<text x="1061.57" y="447.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (12 samples, 0.07%)</title><rect x="982.6" y="2021" width="0.9" height="15.0" fill="rgb(226,12,33)" rx="2" ry="2" /> |
|
<text x="985.62" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>cmd_record (40 samples, 0.24%)</title><rect x="46.7" y="1989" width="2.8" height="15.0" fill="rgb(234,190,17)" rx="2" ry="2" /> |
|
<text x="49.70" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.05%)</title><rect x="46.8" y="1941" width="0.6" height="15.0" fill="rgb(208,27,19)" rx="2" ry="2" /> |
|
<text x="49.84" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (26 samples, 0.16%)</title><rect x="10.0" y="2005" width="1.8" height="15.0" fill="rgb(225,197,18)" rx="2" ry="2" /> |
|
<text x="13.00" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (8 samples, 0.05%)</title><rect x="1036.3" y="2021" width="0.6" height="15.0" fill="rgb(209,80,54)" rx="2" ry="2" /> |
|
<text x="1039.33" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1301" width="0.5" height="15.0" fill="rgb(230,153,32)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1311.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="36.6" y="2005" width="0.1" height="15.0" fill="rgb(232,8,46)" rx="2" ry="2" /> |
|
<text x="39.57" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (42 samples, 0.25%)</title><rect x="1077.6" y="1973" width="3.0" height="15.0" fill="rgb(213,65,27)" rx="2" ry="2" /> |
|
<text x="1080.63" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (5 samples, 0.03%)</title><rect x="1092.9" y="1989" width="0.3" height="15.0" fill="rgb(253,58,23)" rx="2" ry="2" /> |
|
<text x="1095.87" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>perf_evlist__prepare_workload (69 samples, 0.41%)</title><rect x="977.0" y="1989" width="4.9" height="15.0" fill="rgb(223,84,3)" rx="2" ry="2" /> |
|
<text x="980.03" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (31 samples, 0.19%)</title><rect x="986.1" y="1989" width="2.2" height="15.0" fill="rgb(227,38,43)" rx="2" ry="2" /> |
|
<text x="989.09" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (5 samples, 0.03%)</title><rect x="1007.7" y="2021" width="0.4" height="15.0" fill="rgb(213,61,4)" rx="2" ry="2" /> |
|
<text x="1010.70" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (8 samples, 0.05%)</title><rect x="35.9" y="2005" width="0.5" height="15.0" fill="rgb(232,206,3)" rx="2" ry="2" /> |
|
<text x="38.86" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1010.3" y="2005" width="0.1" height="15.0" fill="rgb(223,16,21)" rx="2" ry="2" /> |
|
<text x="1013.25" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="33.2" y="2005" width="0.3" height="15.0" fill="rgb(229,112,6)" rx="2" ry="2" /> |
|
<text x="36.24" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="10.7" y="1701" width="0.3" height="15.0" fill="rgb(205,193,17)" rx="2" ry="2" /> |
|
<text x="13.71" y="1711.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (94 samples, 0.56%)</title><rect x="1160.9" y="2005" width="6.6" height="15.0" fill="rgb(239,166,23)" rx="2" ry="2" /> |
|
<text x="1163.88" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1669" width="0.4" height="15.0" fill="rgb(243,146,3)" rx="2" ry="2" /> |
|
<text x="13.00" y="1679.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (77 samples, 0.46%)</title><rect x="37.1" y="2005" width="5.4" height="15.0" fill="rgb(232,55,2)" rx="2" ry="2" /> |
|
<text x="40.06" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="1062.7" y="2021" width="0.3" height="15.0" fill="rgb(248,5,13)" rx="2" ry="2" /> |
|
<text x="1065.68" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1025.5" y="1989" width="0.2" height="15.0" fill="rgb(222,205,37)" rx="2" ry="2" /> |
|
<text x="1028.49" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1104.6" y="2021" width="0.2" height="15.0" fill="rgb(219,217,36)" rx="2" ry="2" /> |
|
<text x="1107.63" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1011.3" y="2037" width="0.2" height="15.0" fill="rgb(233,169,23)" rx="2" ry="2" /> |
|
<text x="1014.32" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (6 samples, 0.04%)</title><rect x="982.6" y="2005" width="0.4" height="15.0" fill="rgb(239,13,14)" rx="2" ry="2" /> |
|
<text x="985.62" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1022.7" y="1989" width="0.2" height="15.0" fill="rgb(254,54,25)" rx="2" ry="2" /> |
|
<text x="1025.72" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (47 samples, 0.28%)</title><rect x="1129.8" y="2005" width="3.3" height="15.0" fill="rgb(215,209,14)" rx="2" ry="2" /> |
|
<text x="1132.78" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (56 samples, 0.34%)</title><rect x="1038.6" y="2005" width="4.0" height="15.0" fill="rgb(232,214,32)" rx="2" ry="2" /> |
|
<text x="1041.59" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[libxul.so] (3 samples, 0.02%)</title><rect x="33.5" y="2053" width="0.2" height="15.0" fill="rgb(206,170,9)" rx="2" ry="2" /> |
|
<text x="36.52" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1024.3" y="2005" width="0.1" height="15.0" fill="rgb(223,164,43)" rx="2" ry="2" /> |
|
<text x="1027.28" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (8 samples, 0.05%)</title><rect x="1076.9" y="2005" width="0.6" height="15.0" fill="rgb(206,106,45)" rx="2" ry="2" /> |
|
<text x="1079.92" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (6 samples, 0.04%)</title><rect x="982.6" y="1989" width="0.4" height="15.0" fill="rgb(225,10,3)" rx="2" ry="2" /> |
|
<text x="985.62" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (20 samples, 0.12%)</title><rect x="1146.0" y="2037" width="1.4" height="15.0" fill="rgb(227,171,17)" rx="2" ry="2" /> |
|
<text x="1149.00" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1007.0" y="2021" width="0.3" height="15.0" fill="rgb(246,146,34)" rx="2" ry="2" /> |
|
<text x="1010.00" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1047.9" y="2005" width="0.3" height="15.0" fill="rgb(209,219,28)" rx="2" ry="2" /> |
|
<text x="1050.95" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (5 samples, 0.03%)</title><rect x="1092.5" y="1973" width="0.4" height="15.0" fill="rgb(222,132,48)" rx="2" ry="2" /> |
|
<text x="1095.51" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (45 samples, 0.27%)</title><rect x="1174.5" y="1973" width="3.2" height="15.0" fill="rgb(243,66,23)" rx="2" ry="2" /> |
|
<text x="1177.48" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="1009.5" y="1925" width="0.3" height="15.0" fill="rgb(231,5,10)" rx="2" ry="2" /> |
|
<text x="1012.55" y="1935.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1104.0" y="1989" width="0.2" height="15.0" fill="rgb(244,60,27)" rx="2" ry="2" /> |
|
<text x="1106.99" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (5 samples, 0.03%)</title><rect x="1016.3" y="2005" width="0.4" height="15.0" fill="rgb(221,121,50)" rx="2" ry="2" /> |
|
<text x="1019.35" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1063.8" y="1973" width="0.3" height="15.0" fill="rgb(210,106,29)" rx="2" ry="2" /> |
|
<text x="1066.82" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>__brk (16 samples, 0.10%)</title><rect x="1105.5" y="2053" width="1.1" height="15.0" fill="rgb(244,99,35)" rx="2" ry="2" /> |
|
<text x="1108.48" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="645" width="0.2" height="15.0" fill="rgb(214,94,29)" rx="2" ry="2" /> |
|
<text x="1048.82" y="655.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1007.1" y="1989" width="0.2" height="15.0" fill="rgb(252,219,16)" rx="2" ry="2" /> |
|
<text x="1010.14" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="1009.1" y="1957" width="0.4" height="15.0" fill="rgb(233,69,42)" rx="2" ry="2" /> |
|
<text x="1012.12" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (7 samples, 0.04%)</title><rect x="1059.1" y="1973" width="0.5" height="15.0" fill="rgb(226,30,21)" rx="2" ry="2" /> |
|
<text x="1062.14" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>python3 (1,773 samples, 10.65%)</title><rect x="1064.4" y="2069" width="125.6" height="15.0" fill="rgb(209,0,30)" rx="2" ry="2" /> |
|
<text x="1067.38" y="2079.5" >python3</text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1048.2" y="2005" width="0.2" height="15.0" fill="rgb(253,162,18)" rx="2" ry="2" /> |
|
<text x="1051.16" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1035.9" y="2021" width="0.2" height="15.0" fill="rgb(216,59,2)" rx="2" ry="2" /> |
|
<text x="1038.90" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (18 samples, 0.11%)</title><rect x="10.0" y="1781" width="1.3" height="15.0" fill="rgb(237,53,42)" rx="2" ry="2" /> |
|
<text x="13.00" y="1791.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="181" width="0.2" height="15.0" fill="rgb(234,52,23)" rx="2" ry="2" /> |
|
<text x="1048.82" y="191.5" ></text> |
|
</g> |
|
<g > |
|
<title>PR_Now (4 samples, 0.02%)</title><rect x="1044.7" y="2005" width="0.3" height="15.0" fill="rgb(236,0,24)" rx="2" ry="2" /> |
|
<text x="1047.69" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1047.9" y="1973" width="0.3" height="15.0" fill="rgb(245,163,10)" rx="2" ry="2" /> |
|
<text x="1050.95" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (13 samples, 0.08%)</title><rect x="1023.0" y="2005" width="0.9" height="15.0" fill="rgb(236,14,16)" rx="2" ry="2" /> |
|
<text x="1026.01" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1973" width="0.2" height="15.0" fill="rgb(227,154,30)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (11 samples, 0.07%)</title><rect x="1046.2" y="1941" width="0.8" height="15.0" fill="rgb(235,158,51)" rx="2" ry="2" /> |
|
<text x="1049.18" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="11.3" y="1829" width="0.3" height="15.0" fill="rgb(248,151,22)" rx="2" ry="2" /> |
|
<text x="14.28" y="1839.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.05%)</title><rect x="33.0" y="2037" width="0.5" height="15.0" fill="rgb(250,136,43)" rx="2" ry="2" /> |
|
<text x="35.96" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (77 samples, 0.46%)</title><rect x="37.1" y="2021" width="5.4" height="15.0" fill="rgb(212,188,2)" rx="2" ry="2" /> |
|
<text x="40.06" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1044.8" y="1957" width="0.2" height="15.0" fill="rgb(236,32,7)" rx="2" ry="2" /> |
|
<text x="1047.83" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1893" width="0.5" height="15.0" fill="rgb(205,81,38)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1903.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1021.7" y="2037" width="0.2" height="15.0" fill="rgb(215,28,46)" rx="2" ry="2" /> |
|
<text x="1024.73" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (6 samples, 0.04%)</title><rect x="44.7" y="2005" width="0.4" height="15.0" fill="rgb(251,15,41)" rx="2" ry="2" /> |
|
<text x="47.72" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1103.8" y="1973" width="0.2" height="15.0" fill="rgb(216,146,26)" rx="2" ry="2" /> |
|
<text x="1106.85" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (112 samples, 0.67%)</title><rect x="1028.0" y="2005" width="7.9" height="15.0" fill="rgb(205,79,25)" rx="2" ry="2" /> |
|
<text x="1030.97" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1493" width="0.2" height="15.0" fill="rgb(248,39,14)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1503.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (27 samples, 0.16%)</title><rect x="1048.5" y="1957" width="1.9" height="15.0" fill="rgb(217,215,28)" rx="2" ry="2" /> |
|
<text x="1051.51" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (3 samples, 0.02%)</title><rect x="36.9" y="2021" width="0.2" height="15.0" fill="rgb(240,163,32)" rx="2" ry="2" /> |
|
<text x="39.85" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (16 samples, 0.10%)</title><rect x="1025.7" y="1973" width="1.1" height="15.0" fill="rgb(231,66,11)" rx="2" ry="2" /> |
|
<text x="1028.70" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1013.4" y="2021" width="0.1" height="15.0" fill="rgb(231,34,3)" rx="2" ry="2" /> |
|
<text x="1016.37" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1021.9" y="2021" width="0.1" height="15.0" fill="rgb(245,161,29)" rx="2" ry="2" /> |
|
<text x="1024.87" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>_fxstat (20 samples, 0.12%)</title><rect x="1169.2" y="2037" width="1.5" height="15.0" fill="rgb(234,156,50)" rx="2" ry="2" /> |
|
<text x="1172.24" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="983.5" y="1973" width="0.2" height="15.0" fill="rgb(233,137,14)" rx="2" ry="2" /> |
|
<text x="986.47" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1093.4" y="1989" width="0.1" height="15.0" fill="rgb(235,89,52)" rx="2" ry="2" /> |
|
<text x="1096.36" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (18 samples, 0.11%)</title><rect x="10.0" y="1797" width="1.3" height="15.0" fill="rgb(209,221,42)" rx="2" ry="2" /> |
|
<text x="13.00" y="1807.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1381" width="0.2" height="15.0" fill="rgb(236,178,0)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1391.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (47 samples, 0.28%)</title><rect x="1186.2" y="2021" width="3.4" height="15.0" fill="rgb(249,158,25)" rx="2" ry="2" /> |
|
<text x="1189.24" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1021.0" y="2005" width="0.2" height="15.0" fill="rgb(226,17,21)" rx="2" ry="2" /> |
|
<text x="1024.02" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="47.6" y="1925" width="0.3" height="15.0" fill="rgb(209,178,23)" rx="2" ry="2" /> |
|
<text x="50.62" y="1935.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (8 samples, 0.05%)</title><rect x="47.9" y="1909" width="0.6" height="15.0" fill="rgb(217,27,52)" rx="2" ry="2" /> |
|
<text x="50.90" y="1919.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (31 samples, 0.19%)</title><rect x="43.7" y="2053" width="2.2" height="15.0" fill="rgb(231,45,44)" rx="2" ry="2" /> |
|
<text x="46.72" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (10 samples, 0.06%)</title><rect x="1146.0" y="2021" width="0.7" height="15.0" fill="rgb(228,11,48)" rx="2" ry="2" /> |
|
<text x="1149.00" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (6 samples, 0.04%)</title><rect x="1037.5" y="1941" width="0.5" height="15.0" fill="rgb(208,133,21)" rx="2" ry="2" /> |
|
<text x="1040.53" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="741" width="0.5" height="15.0" fill="rgb(248,9,50)" rx="2" ry="2" /> |
|
<text x="1061.57" y="751.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (16 samples, 0.10%)</title><rect x="989.4" y="2005" width="1.2" height="15.0" fill="rgb(237,41,44)" rx="2" ry="2" /> |
|
<text x="992.42" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (6 samples, 0.04%)</title><rect x="1008.7" y="2021" width="0.4" height="15.0" fill="rgb(223,21,10)" rx="2" ry="2" /> |
|
<text x="1011.70" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (10 samples, 0.06%)</title><rect x="1169.9" y="2005" width="0.8" height="15.0" fill="rgb(219,168,54)" rx="2" ry="2" /> |
|
<text x="1172.95" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>__GI___read_nocancel (18 samples, 0.11%)</title><rect x="1180.9" y="2021" width="1.2" height="15.0" fill="rgb(239,0,44)" rx="2" ry="2" /> |
|
<text x="1183.86" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (9 samples, 0.05%)</title><rect x="1038.0" y="2005" width="0.6" height="15.0" fill="rgb(247,165,30)" rx="2" ry="2" /> |
|
<text x="1040.96" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1021.4" y="2005" width="0.2" height="15.0" fill="rgb(232,10,40)" rx="2" ry="2" /> |
|
<text x="1024.45" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1063.3" y="1957" width="0.2" height="15.0" fill="rgb(235,91,39)" rx="2" ry="2" /> |
|
<text x="1066.25" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (8 samples, 0.05%)</title><rect x="1036.3" y="2005" width="0.6" height="15.0" fill="rgb(227,25,28)" rx="2" ry="2" /> |
|
<text x="1039.33" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>node (16 samples, 0.10%)</title><rect x="1063.3" y="2069" width="1.1" height="15.0" fill="rgb(228,43,46)" rx="2" ry="2" /> |
|
<text x="1066.25" y="2079.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="36.4" y="2005" width="0.2" height="15.0" fill="rgb(221,26,2)" rx="2" ry="2" /> |
|
<text x="39.43" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1023.9" y="1957" width="0.2" height="15.0" fill="rgb(220,26,49)" rx="2" ry="2" /> |
|
<text x="1026.93" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (50 samples, 0.30%)</title><rect x="1071.7" y="1989" width="3.5" height="15.0" fill="rgb(248,102,21)" rx="2" ry="2" /> |
|
<text x="1074.68" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (5 samples, 0.03%)</title><rect x="1061.8" y="2005" width="0.3" height="15.0" fill="rgb(251,212,46)" rx="2" ry="2" /> |
|
<text x="1064.76" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1017.1" y="2005" width="0.1" height="15.0" fill="rgb(209,143,36)" rx="2" ry="2" /> |
|
<text x="1020.06" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1061" width="0.2" height="15.0" fill="rgb(252,97,52)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1071.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="517" width="0.2" height="15.0" fill="rgb(225,104,42)" rx="2" ry="2" /> |
|
<text x="1048.82" y="527.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1269" width="0.5" height="15.0" fill="rgb(209,82,20)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1279.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1011.8" y="2037" width="0.3" height="15.0" fill="rgb(222,75,27)" rx="2" ry="2" /> |
|
<text x="1014.81" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="34.1" y="1957" width="0.1" height="15.0" fill="rgb(225,66,33)" rx="2" ry="2" /> |
|
<text x="37.09" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1007.0" y="1989" width="0.1" height="15.0" fill="rgb(210,10,36)" rx="2" ry="2" /> |
|
<text x="1010.00" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="49.0" y="1925" width="0.3" height="15.0" fill="rgb(240,203,34)" rx="2" ry="2" /> |
|
<text x="52.04" y="1935.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (43 samples, 0.26%)</title><rect x="1147.4" y="2021" width="3.1" height="15.0" fill="rgb(206,130,36)" rx="2" ry="2" /> |
|
<text x="1150.42" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1008.1" y="2005" width="0.2" height="15.0" fill="rgb(243,136,41)" rx="2" ry="2" /> |
|
<text x="1011.06" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1845" width="0.2" height="15.0" fill="rgb(252,168,24)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1855.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (20 samples, 0.12%)</title><rect x="1038.6" y="1973" width="1.4" height="15.0" fill="rgb(219,26,48)" rx="2" ry="2" /> |
|
<text x="1041.59" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="357" width="0.2" height="15.0" fill="rgb(253,17,43)" rx="2" ry="2" /> |
|
<text x="1048.82" y="367.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (10 samples, 0.06%)</title><rect x="1044.0" y="2005" width="0.7" height="15.0" fill="rgb(213,174,18)" rx="2" ry="2" /> |
|
<text x="1046.98" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1013.9" y="1973" width="0.2" height="15.0" fill="rgb(244,161,54)" rx="2" ry="2" /> |
|
<text x="1016.94" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (42 samples, 0.25%)</title><rect x="1077.6" y="1989" width="3.0" height="15.0" fill="rgb(226,135,14)" rx="2" ry="2" /> |
|
<text x="1080.63" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="32.4" y="2005" width="0.3" height="15.0" fill="rgb(217,51,51)" rx="2" ry="2" /> |
|
<text x="35.39" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1048.4" y="1941" width="0.1" height="15.0" fill="rgb(216,9,26)" rx="2" ry="2" /> |
|
<text x="1051.37" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1104.8" y="2021" width="0.3" height="15.0" fill="rgb(221,194,20)" rx="2" ry="2" /> |
|
<text x="1107.84" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1010.1" y="2037" width="0.2" height="15.0" fill="rgb(225,97,24)" rx="2" ry="2" /> |
|
<text x="1013.11" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1749" width="0.2" height="15.0" fill="rgb(241,145,14)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1759.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1015.5" y="2037" width="0.1" height="15.0" fill="rgb(250,130,14)" rx="2" ry="2" /> |
|
<text x="1018.50" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1058.4" y="2021" width="0.2" height="15.0" fill="rgb(238,189,38)" rx="2" ry="2" /> |
|
<text x="1061.43" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1022.2" y="2005" width="0.2" height="15.0" fill="rgb(232,13,0)" rx="2" ry="2" /> |
|
<text x="1025.16" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_write (10 samples, 0.06%)</title><rect x="981.9" y="2053" width="0.7" height="15.0" fill="rgb(241,68,8)" rx="2" ry="2" /> |
|
<text x="984.91" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="1045.5" y="2021" width="0.2" height="15.0" fill="rgb(213,4,45)" rx="2" ry="2" /> |
|
<text x="1048.54" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (217 samples, 1.30%)</title><rect x="991.6" y="2021" width="15.4" height="15.0" fill="rgb(220,7,35)" rx="2" ry="2" /> |
|
<text x="994.62" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (11 samples, 0.07%)</title><rect x="1103.0" y="1973" width="0.8" height="15.0" fill="rgb(223,88,39)" rx="2" ry="2" /> |
|
<text x="1106.00" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (5 samples, 0.03%)</title><rect x="1061.4" y="1989" width="0.4" height="15.0" fill="rgb(243,7,49)" rx="2" ry="2" /> |
|
<text x="1064.41" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1025.0" y="1973" width="0.3" height="15.0" fill="rgb(223,91,30)" rx="2" ry="2" /> |
|
<text x="1027.99" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>[libxul.so] (6 samples, 0.04%)</title><rect x="990.8" y="2037" width="0.5" height="15.0" fill="rgb(247,118,29)" rx="2" ry="2" /> |
|
<text x="993.84" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (22 samples, 0.13%)</title><rect x="1019.0" y="1989" width="1.6" height="15.0" fill="rgb(246,169,34)" rx="2" ry="2" /> |
|
<text x="1022.04" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (10 samples, 0.06%)</title><rect x="1044.0" y="2037" width="0.7" height="15.0" fill="rgb(212,49,35)" rx="2" ry="2" /> |
|
<text x="1046.98" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>pthread_cond_signal@@GLIBC_2.3.2 (4 samples, 0.02%)</title><rect x="1011.8" y="2053" width="0.3" height="15.0" fill="rgb(205,146,52)" rx="2" ry="2" /> |
|
<text x="1014.81" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1012.7" y="1973" width="0.2" height="15.0" fill="rgb(248,200,31)" rx="2" ry="2" /> |
|
<text x="1015.73" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1035.9" y="1989" width="0.2" height="15.0" fill="rgb(249,104,16)" rx="2" ry="2" /> |
|
<text x="1038.90" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (12 samples, 0.07%)</title><rect x="1145.0" y="2037" width="0.9" height="15.0" fill="rgb(241,164,9)" rx="2" ry="2" /> |
|
<text x="1148.01" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1301" width="0.2" height="15.0" fill="rgb(230,141,39)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1311.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (26 samples, 0.16%)</title><rect x="10.0" y="1957" width="1.8" height="15.0" fill="rgb(238,178,48)" rx="2" ry="2" /> |
|
<text x="13.00" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (8 samples, 0.05%)</title><rect x="1106.0" y="2005" width="0.6" height="15.0" fill="rgb(218,111,22)" rx="2" ry="2" /> |
|
<text x="1109.04" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="46.8" y="1893" width="0.3" height="15.0" fill="rgb(244,199,36)" rx="2" ry="2" /> |
|
<text x="49.84" y="1903.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="11.1" y="1717" width="0.2" height="15.0" fill="rgb(222,207,54)" rx="2" ry="2" /> |
|
<text x="14.13" y="1727.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1067.4" y="2005" width="0.3" height="15.0" fill="rgb(216,128,31)" rx="2" ry="2" /> |
|
<text x="1070.43" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1048.2" y="1989" width="0.2" height="15.0" fill="rgb(230,78,33)" rx="2" ry="2" /> |
|
<text x="1051.16" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1035.9" y="2005" width="0.2" height="15.0" fill="rgb(248,103,44)" rx="2" ry="2" /> |
|
<text x="1038.90" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (106 samples, 0.64%)</title><rect x="991.6" y="1973" width="7.5" height="15.0" fill="rgb(215,159,16)" rx="2" ry="2" /> |
|
<text x="994.62" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (13 samples, 0.08%)</title><rect x="1023.0" y="2021" width="0.9" height="15.0" fill="rgb(229,222,23)" rx="2" ry="2" /> |
|
<text x="1026.01" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (6 samples, 0.04%)</title><rect x="1014.2" y="2053" width="0.4" height="15.0" fill="rgb(206,169,12)" rx="2" ry="2" /> |
|
<text x="1017.22" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (16 samples, 0.10%)</title><rect x="1026.8" y="2005" width="1.2" height="15.0" fill="rgb(224,177,1)" rx="2" ry="2" /> |
|
<text x="1029.83" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="976.7" y="2021" width="0.2" height="15.0" fill="rgb(215,161,36)" rx="2" ry="2" /> |
|
<text x="979.74" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (8 samples, 0.05%)</title><rect x="1060.3" y="2005" width="0.5" height="15.0" fill="rgb(215,17,5)" rx="2" ry="2" /> |
|
<text x="1063.27" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (10 samples, 0.06%)</title><rect x="1169.2" y="1973" width="0.7" height="15.0" fill="rgb(209,28,51)" rx="2" ry="2" /> |
|
<text x="1172.24" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1024.3" y="2021" width="0.1" height="15.0" fill="rgb(241,181,0)" rx="2" ry="2" /> |
|
<text x="1027.28" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1058.9" y="85" width="0.2" height="15.0" fill="rgb(235,202,40)" rx="2" ry="2" /> |
|
<text x="1061.86" y="95.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1477" width="0.5" height="15.0" fill="rgb(251,217,54)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1487.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1102.0" y="1973" width="0.1" height="15.0" fill="rgb(247,85,45)" rx="2" ry="2" /> |
|
<text x="1105.00" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (56 samples, 0.34%)</title><rect x="1028.0" y="1957" width="3.9" height="15.0" fill="rgb(244,195,53)" rx="2" ry="2" /> |
|
<text x="1030.97" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="10.4" y="1685" width="0.3" height="15.0" fill="rgb(209,144,26)" rx="2" ry="2" /> |
|
<text x="13.43" y="1695.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1048.4" y="1957" width="0.1" height="15.0" fill="rgb(254,39,2)" rx="2" ry="2" /> |
|
<text x="1051.37" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (5 samples, 0.03%)</title><rect x="45.5" y="1989" width="0.3" height="15.0" fill="rgb(243,185,40)" rx="2" ry="2" /> |
|
<text x="48.50" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (4 samples, 0.02%)</title><rect x="1015.2" y="2037" width="0.3" height="15.0" fill="rgb(222,70,22)" rx="2" ry="2" /> |
|
<text x="1018.21" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (92 samples, 0.55%)</title><rect x="1106.6" y="2037" width="6.5" height="15.0" fill="rgb(236,41,33)" rx="2" ry="2" /> |
|
<text x="1109.61" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (90 samples, 0.54%)</title><rect x="1174.5" y="2005" width="6.4" height="15.0" fill="rgb(225,52,36)" rx="2" ry="2" /> |
|
<text x="1177.48" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (10 samples, 0.06%)</title><rect x="45.1" y="2021" width="0.7" height="15.0" fill="rgb(226,132,28)" rx="2" ry="2" /> |
|
<text x="48.14" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1045.5" y="1989" width="0.2" height="15.0" fill="rgb(240,70,28)" rx="2" ry="2" /> |
|
<text x="1048.54" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>main (40 samples, 0.24%)</title><rect x="46.7" y="2021" width="2.8" height="15.0" fill="rgb(213,127,0)" rx="2" ry="2" /> |
|
<text x="49.70" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="757" width="0.2" height="15.0" fill="rgb(227,197,16)" rx="2" ry="2" /> |
|
<text x="1048.82" y="767.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1014.1" y="2037" width="0.1" height="15.0" fill="rgb(205,114,40)" rx="2" ry="2" /> |
|
<text x="1017.08" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (84 samples, 0.50%)</title><rect x="1096.1" y="2021" width="5.9" height="15.0" fill="rgb(213,150,41)" rx="2" ry="2" /> |
|
<text x="1099.05" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1023.9" y="1973" width="0.2" height="15.0" fill="rgb(254,25,54)" rx="2" ry="2" /> |
|
<text x="1026.93" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_recvmsg (4 samples, 0.02%)</title><rect x="1012.2" y="2037" width="0.3" height="15.0" fill="rgb(232,58,34)" rx="2" ry="2" /> |
|
<text x="1015.17" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (6 samples, 0.04%)</title><rect x="1015.9" y="2037" width="0.4" height="15.0" fill="rgb(226,65,45)" rx="2" ry="2" /> |
|
<text x="1018.92" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1077.5" y="2005" width="0.1" height="15.0" fill="rgb(239,149,46)" rx="2" ry="2" /> |
|
<text x="1080.49" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (3 samples, 0.02%)</title><rect x="1064.5" y="2037" width="0.2" height="15.0" fill="rgb(249,39,48)" rx="2" ry="2" /> |
|
<text x="1067.53" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1077" width="0.5" height="15.0" fill="rgb(229,45,35)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1087.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (14 samples, 0.08%)</title><rect x="1009.1" y="1973" width="1.0" height="15.0" fill="rgb(216,123,37)" rx="2" ry="2" /> |
|
<text x="1012.12" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (94 samples, 0.56%)</title><rect x="1126.4" y="2037" width="6.7" height="15.0" fill="rgb(251,192,28)" rx="2" ry="2" /> |
|
<text x="1129.45" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1022.0" y="2005" width="0.2" height="15.0" fill="rgb(218,162,48)" rx="2" ry="2" /> |
|
<text x="1025.02" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1009.1" y="1893" width="0.2" height="15.0" fill="rgb(215,151,37)" rx="2" ry="2" /> |
|
<text x="1012.12" y="1903.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (8 samples, 0.05%)</title><rect x="47.9" y="1893" width="0.6" height="15.0" fill="rgb(212,6,8)" rx="2" ry="2" /> |
|
<text x="50.90" y="1903.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="10.0" y="1381" width="0.2" height="15.0" fill="rgb(240,52,27)" rx="2" ry="2" /> |
|
<text x="13.00" y="1391.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (90 samples, 0.54%)</title><rect x="1113.6" y="2005" width="6.3" height="15.0" fill="rgb(222,160,52)" rx="2" ry="2" /> |
|
<text x="1116.55" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (8 samples, 0.05%)</title><rect x="1105.5" y="2021" width="0.5" height="15.0" fill="rgb(242,152,51)" rx="2" ry="2" /> |
|
<text x="1108.48" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1092.4" y="2021" width="0.1" height="15.0" fill="rgb(209,46,23)" rx="2" ry="2" /> |
|
<text x="1095.37" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="990.7" y="2005" width="0.1" height="15.0" fill="rgb(245,6,8)" rx="2" ry="2" /> |
|
<text x="993.70" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_write (13,087 samples, 78.58%)</title><rect x="49.5" y="2037" width="927.2" height="15.0" fill="rgb(216,183,42)" rx="2" ry="2" /> |
|
<text x="52.53" y="2047.5" >__libc_write</text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="1062.1" y="2021" width="0.3" height="15.0" fill="rgb(231,156,53)" rx="2" ry="2" /> |
|
<text x="1065.12" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (8 samples, 0.05%)</title><rect x="1043.3" y="2005" width="0.5" height="15.0" fill="rgb(247,184,47)" rx="2" ry="2" /> |
|
<text x="1046.27" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (25 samples, 0.15%)</title><rect x="37.1" y="1973" width="1.7" height="15.0" fill="rgb(254,89,19)" rx="2" ry="2" /> |
|
<text x="40.06" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (47 samples, 0.28%)</title><rect x="1129.8" y="2021" width="3.3" height="15.0" fill="rgb(248,218,54)" rx="2" ry="2" /> |
|
<text x="1132.78" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>Chrome_ChildIOT (116 samples, 0.70%)</title><rect x="982.6" y="2069" width="8.2" height="15.0" fill="rgb(219,7,2)" rx="2" ry="2" /> |
|
<text x="985.62" y="2079.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1397" width="0.5" height="15.0" fill="rgb(226,78,41)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1407.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="261" width="0.5" height="15.0" fill="rgb(205,163,2)" rx="2" ry="2" /> |
|
<text x="1061.57" y="271.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1010.7" y="1957" width="0.1" height="15.0" fill="rgb(213,60,53)" rx="2" ry="2" /> |
|
<text x="1013.68" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (25 samples, 0.15%)</title><rect x="37.1" y="1989" width="1.7" height="15.0" fill="rgb(229,92,19)" rx="2" ry="2" /> |
|
<text x="40.06" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>Web_Content (206 samples, 1.24%)</title><rect x="1044.0" y="2069" width="14.6" height="15.0" fill="rgb(223,43,45)" rx="2" ry="2" /> |
|
<text x="1046.98" y="2079.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1007.3" y="2005" width="0.2" height="15.0" fill="rgb(207,0,54)" rx="2" ry="2" /> |
|
<text x="1010.28" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (27 samples, 0.16%)</title><rect x="1048.5" y="1989" width="1.9" height="15.0" fill="rgb(212,45,38)" rx="2" ry="2" /> |
|
<text x="1051.51" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (31 samples, 0.19%)</title><rect x="983.9" y="1989" width="2.2" height="15.0" fill="rgb(247,222,13)" rx="2" ry="2" /> |
|
<text x="986.90" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_write (6 samples, 0.04%)</title><rect x="983.5" y="2037" width="0.4" height="15.0" fill="rgb(226,203,0)" rx="2" ry="2" /> |
|
<text x="986.47" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (5 samples, 0.03%)</title><rect x="1103.8" y="2037" width="0.4" height="15.0" fill="rgb(221,29,5)" rx="2" ry="2" /> |
|
<text x="1106.85" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (5 samples, 0.03%)</title><rect x="991.3" y="2037" width="0.3" height="15.0" fill="rgb(230,153,41)" rx="2" ry="2" /> |
|
<text x="994.27" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="35.0" y="1973" width="0.2" height="15.0" fill="rgb(246,128,50)" rx="2" ry="2" /> |
|
<text x="38.01" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1605" width="0.5" height="15.0" fill="rgb(211,30,12)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1615.5" ></text> |
|
</g> |
|
<g > |
|
<title>__pthread_mutex_unlock_usercnt (6 samples, 0.04%)</title><rect x="990.8" y="2005" width="0.5" height="15.0" fill="rgb(235,204,38)" rx="2" ry="2" /> |
|
<text x="993.84" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>__open64 (86 samples, 0.52%)</title><rect x="1147.4" y="2053" width="6.1" height="15.0" fill="rgb(252,1,6)" rx="2" ry="2" /> |
|
<text x="1150.42" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_start_main (70 samples, 0.42%)</title><rect x="977.0" y="2053" width="4.9" height="15.0" fill="rgb(209,212,19)" rx="2" ry="2" /> |
|
<text x="979.96" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (8 samples, 0.05%)</title><rect x="35.3" y="2005" width="0.6" height="15.0" fill="rgb(210,100,24)" rx="2" ry="2" /> |
|
<text x="38.29" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="405" width="0.5" height="15.0" fill="rgb(213,173,5)" rx="2" ry="2" /> |
|
<text x="1061.57" y="415.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="32.7" y="1989" width="0.3" height="15.0" fill="rgb(206,61,15)" rx="2" ry="2" /> |
|
<text x="35.67" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="981" width="0.2" height="15.0" fill="rgb(230,158,35)" rx="2" ry="2" /> |
|
<text x="1048.82" y="991.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="11.6" y="1845" width="0.2" height="15.0" fill="rgb(254,215,14)" rx="2" ry="2" /> |
|
<text x="14.56" y="1855.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1064.4" y="2005" width="0.1" height="15.0" fill="rgb(245,141,32)" rx="2" ry="2" /> |
|
<text x="1067.38" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (45 samples, 0.27%)</title><rect x="1177.7" y="1973" width="3.2" height="15.0" fill="rgb(216,88,27)" rx="2" ry="2" /> |
|
<text x="1180.67" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1829" width="0.2" height="15.0" fill="rgb(242,180,32)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1839.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (11 samples, 0.07%)</title><rect x="1046.2" y="2005" width="0.8" height="15.0" fill="rgb(219,38,33)" rx="2" ry="2" /> |
|
<text x="1049.18" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="33.0" y="2005" width="0.2" height="15.0" fill="rgb(227,147,50)" rx="2" ry="2" /> |
|
<text x="35.96" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (5 samples, 0.03%)</title><rect x="1103.8" y="2021" width="0.4" height="15.0" fill="rgb(206,199,10)" rx="2" ry="2" /> |
|
<text x="1106.85" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (5 samples, 0.03%)</title><rect x="33.7" y="2005" width="0.4" height="15.0" fill="rgb(212,70,2)" rx="2" ry="2" /> |
|
<text x="36.73" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_sigaction (12 samples, 0.07%)</title><rect x="1145.0" y="2053" width="0.9" height="15.0" fill="rgb(221,160,45)" rx="2" ry="2" /> |
|
<text x="1148.01" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="533" width="0.5" height="15.0" fill="rgb(223,1,27)" rx="2" ry="2" /> |
|
<text x="1061.57" y="543.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1022.6" y="2005" width="0.1" height="15.0" fill="rgb(243,102,29)" rx="2" ry="2" /> |
|
<text x="1025.58" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>evlist__disable (15 samples, 0.09%)</title><rect x="46.8" y="1973" width="1.1" height="15.0" fill="rgb(227,186,47)" rx="2" ry="2" /> |
|
<text x="49.84" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (94 samples, 0.56%)</title><rect x="1154.2" y="2005" width="6.7" height="15.0" fill="rgb(212,195,47)" rx="2" ry="2" /> |
|
<text x="1157.22" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="34.1" y="1973" width="0.1" height="15.0" fill="rgb(219,143,3)" rx="2" ry="2" /> |
|
<text x="37.09" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="661" width="0.5" height="15.0" fill="rgb(218,161,43)" rx="2" ry="2" /> |
|
<text x="1061.57" y="671.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="949" width="0.5" height="15.0" fill="rgb(238,95,46)" rx="2" ry="2" /> |
|
<text x="1061.57" y="959.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1007.0" y="2005" width="0.1" height="15.0" fill="rgb(238,169,8)" rx="2" ry="2" /> |
|
<text x="1010.00" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="821" width="0.5" height="15.0" fill="rgb(240,209,12)" rx="2" ry="2" /> |
|
<text x="1061.57" y="831.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="789" width="0.5" height="15.0" fill="rgb(230,142,30)" rx="2" ry="2" /> |
|
<text x="1061.57" y="799.5" ></text> |
|
</g> |
|
<g > |
|
<title>__pthread_mutex_unlock_usercnt (2 samples, 0.01%)</title><rect x="36.7" y="2037" width="0.2" height="15.0" fill="rgb(206,217,20)" rx="2" ry="2" /> |
|
<text x="39.71" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>__poll (4 samples, 0.02%)</title><rect x="1011.5" y="2053" width="0.2" height="15.0" fill="rgb(233,113,39)" rx="2" ry="2" /> |
|
<text x="1014.46" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1022.4" y="2021" width="0.3" height="15.0" fill="rgb(211,157,26)" rx="2" ry="2" /> |
|
<text x="1025.44" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1036.1" y="2021" width="0.2" height="15.0" fill="rgb(214,204,54)" rx="2" ry="2" /> |
|
<text x="1039.11" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (17 samples, 0.10%)</title><rect x="1093.6" y="1989" width="1.2" height="15.0" fill="rgb(229,65,26)" rx="2" ry="2" /> |
|
<text x="1096.64" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1045.3" y="1925" width="0.2" height="15.0" fill="rgb(241,224,53)" rx="2" ry="2" /> |
|
<text x="1048.25" y="1935.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (10 samples, 0.06%)</title><rect x="45.1" y="2005" width="0.7" height="15.0" fill="rgb(246,194,27)" rx="2" ry="2" /> |
|
<text x="48.14" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1477" width="0.4" height="15.0" fill="rgb(249,111,45)" rx="2" ry="2" /> |
|
<text x="13.00" y="1487.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1154.0" y="2021" width="0.2" height="15.0" fill="rgb(223,117,0)" rx="2" ry="2" /> |
|
<text x="1157.01" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1109" width="0.2" height="15.0" fill="rgb(252,208,43)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1119.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1105.1" y="2005" width="0.2" height="15.0" fill="rgb(213,215,11)" rx="2" ry="2" /> |
|
<text x="1108.05" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1925" width="0.2" height="15.0" fill="rgb(220,136,13)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1935.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="1046.0" y="2005" width="0.2" height="15.0" fill="rgb(217,173,10)" rx="2" ry="2" /> |
|
<text x="1049.03" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1022.7" y="2005" width="0.2" height="15.0" fill="rgb(248,191,0)" rx="2" ry="2" /> |
|
<text x="1025.72" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1007.5" y="2021" width="0.2" height="15.0" fill="rgb(227,93,31)" rx="2" ry="2" /> |
|
<text x="1010.49" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1062.7" y="1989" width="0.3" height="15.0" fill="rgb(210,221,35)" rx="2" ry="2" /> |
|
<text x="1065.68" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>__fxstat64 (2 samples, 0.01%)</title><rect x="1077.5" y="2021" width="0.1" height="15.0" fill="rgb(211,62,40)" rx="2" ry="2" /> |
|
<text x="1080.49" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (101 samples, 0.61%)</title><rect x="1048.5" y="2021" width="7.2" height="15.0" fill="rgb(253,145,1)" rx="2" ry="2" /> |
|
<text x="1051.51" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1017.6" y="2005" width="0.2" height="15.0" fill="rgb(222,88,23)" rx="2" ry="2" /> |
|
<text x="1020.55" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (77 samples, 0.46%)</title><rect x="37.1" y="2037" width="5.4" height="15.0" fill="rgb(218,87,4)" rx="2" ry="2" /> |
|
<text x="40.06" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>pthread_cond_wait@@GLIBC_2.3.2 (11 samples, 0.07%)</title><rect x="1008.3" y="2053" width="0.8" height="15.0" fill="rgb(230,145,36)" rx="2" ry="2" /> |
|
<text x="1011.34" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="613" width="0.5" height="15.0" fill="rgb(226,3,5)" rx="2" ry="2" /> |
|
<text x="1061.57" y="623.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (12 samples, 0.07%)</title><rect x="1023.1" y="1973" width="0.8" height="15.0" fill="rgb(208,165,18)" rx="2" ry="2" /> |
|
<text x="1026.08" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1509" width="0.5" height="15.0" fill="rgb(226,128,1)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1519.5" ></text> |
|
</g> |
|
<g > |
|
<title>v8::Function::Call (6 samples, 0.04%)</title><rect x="10.0" y="1637" width="0.4" height="15.0" fill="rgb(215,144,26)" rx="2" ry="2" /> |
|
<text x="13.00" y="1647.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="34.1" y="2021" width="0.1" height="15.0" fill="rgb(236,38,36)" rx="2" ry="2" /> |
|
<text x="37.09" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1047.9" y="1989" width="0.3" height="15.0" fill="rgb(254,187,40)" rx="2" ry="2" /> |
|
<text x="1050.95" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1011.8" y="2021" width="0.2" height="15.0" fill="rgb(239,180,19)" rx="2" ry="2" /> |
|
<text x="1014.81" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1014.6" y="2037" width="0.2" height="15.0" fill="rgb(253,172,18)" rx="2" ry="2" /> |
|
<text x="1017.65" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1221" width="0.5" height="15.0" fill="rgb(235,186,0)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1231.5" ></text> |
|
</g> |
|
<g > |
|
<title>__GI___read_nocancel (2 samples, 0.01%)</title><rect x="1169.1" y="2037" width="0.1" height="15.0" fill="rgb(240,140,2)" rx="2" ry="2" /> |
|
<text x="1172.10" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (46 samples, 0.28%)</title><rect x="1106.6" y="1989" width="3.3" height="15.0" fill="rgb(234,224,39)" rx="2" ry="2" /> |
|
<text x="1109.61" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.03%)</title><rect x="1103.8" y="2005" width="0.4" height="15.0" fill="rgb(243,90,36)" rx="2" ry="2" /> |
|
<text x="1106.85" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="1007.3" y="2037" width="0.4" height="15.0" fill="rgb(239,149,54)" rx="2" ry="2" /> |
|
<text x="1010.28" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (12 samples, 0.07%)</title><rect x="44.3" y="2021" width="0.8" height="15.0" fill="rgb(227,32,44)" rx="2" ry="2" /> |
|
<text x="47.29" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1701" width="0.2" height="15.0" fill="rgb(210,83,36)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1711.5" ></text> |
|
</g> |
|
<g > |
|
<title>sched_setaffinity@@GLIBC_2.3.4 (5 samples, 0.03%)</title><rect x="49.0" y="1957" width="0.4" height="15.0" fill="rgb(214,52,35)" rx="2" ry="2" /> |
|
<text x="52.04" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="36.4" y="1989" width="0.2" height="15.0" fill="rgb(229,103,33)" rx="2" ry="2" /> |
|
<text x="39.43" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1016.1" y="1957" width="0.2" height="15.0" fill="rgb(232,183,54)" rx="2" ry="2" /> |
|
<text x="1019.06" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (5 samples, 0.03%)</title><rect x="1061.4" y="2005" width="0.4" height="15.0" fill="rgb(246,81,41)" rx="2" ry="2" /> |
|
<text x="1064.41" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1169.1" y="2021" width="0.1" height="15.0" fill="rgb(216,212,41)" rx="2" ry="2" /> |
|
<text x="1172.10" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (10 samples, 0.06%)</title><rect x="1167.5" y="1989" width="0.7" height="15.0" fill="rgb(230,70,40)" rx="2" ry="2" /> |
|
<text x="1170.54" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (14 samples, 0.08%)</title><rect x="1009.1" y="2021" width="1.0" height="15.0" fill="rgb(217,207,54)" rx="2" ry="2" /> |
|
<text x="1012.12" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (100 samples, 0.60%)</title><rect x="1068.1" y="2021" width="7.1" height="15.0" fill="rgb(208,4,16)" rx="2" ry="2" /> |
|
<text x="1071.14" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="10.2" y="1381" width="0.2" height="15.0" fill="rgb(242,54,8)" rx="2" ry="2" /> |
|
<text x="13.21" y="1391.5" ></text> |
|
</g> |
|
<g > |
|
<title>llseek@GLIBC_2.2.5 (6 samples, 0.04%)</title><rect x="1182.5" y="2053" width="0.4" height="15.0" fill="rgb(233,10,22)" rx="2" ry="2" /> |
|
<text x="1185.49" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1015.2" y="1957" width="0.2" height="15.0" fill="rgb(207,201,53)" rx="2" ry="2" /> |
|
<text x="1018.21" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>epoll_wait (2 samples, 0.01%)</title><rect x="1013.4" y="2037" width="0.1" height="15.0" fill="rgb(222,215,33)" rx="2" ry="2" /> |
|
<text x="1016.37" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_nanosleep@@GLIBC_2.17 (4 samples, 0.02%)</title><rect x="1021.9" y="2053" width="0.3" height="15.0" fill="rgb(253,210,12)" rx="2" ry="2" /> |
|
<text x="1024.87" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1022.4" y="1989" width="0.2" height="15.0" fill="rgb(224,147,41)" rx="2" ry="2" /> |
|
<text x="1025.44" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.05%)</title><rect x="1062.1" y="2037" width="0.6" height="15.0" fill="rgb(235,167,30)" rx="2" ry="2" /> |
|
<text x="1065.12" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>__gcc_personality_v0 (2 samples, 0.01%)</title><rect x="1077.5" y="2037" width="0.1" height="15.0" fill="rgb(219,120,12)" rx="2" ry="2" /> |
|
<text x="1080.49" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>epoll_wait (10 samples, 0.06%)</title><rect x="1061.4" y="2037" width="0.7" height="15.0" fill="rgb(213,37,14)" rx="2" ry="2" /> |
|
<text x="1064.41" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (42 samples, 0.25%)</title><rect x="1096.1" y="1989" width="2.9" height="15.0" fill="rgb(237,216,38)" rx="2" ry="2" /> |
|
<text x="1099.05" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1014.4" y="1941" width="0.1" height="15.0" fill="rgb(216,189,45)" rx="2" ry="2" /> |
|
<text x="1017.36" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1022.0" y="2021" width="0.2" height="15.0" fill="rgb(230,164,0)" rx="2" ry="2" /> |
|
<text x="1025.02" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (168 samples, 1.01%)</title><rect x="1133.1" y="2037" width="11.9" height="15.0" fill="rgb(227,16,22)" rx="2" ry="2" /> |
|
<text x="1136.11" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_sigaction (124 samples, 0.74%)</title><rect x="1083.6" y="2037" width="8.8" height="15.0" fill="rgb(209,178,15)" rx="2" ry="2" /> |
|
<text x="1086.58" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (50 samples, 0.30%)</title><rect x="1068.1" y="1973" width="3.6" height="15.0" fill="rgb(207,43,8)" rx="2" ry="2" /> |
|
<text x="1071.14" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="485" width="0.5" height="15.0" fill="rgb(213,156,6)" rx="2" ry="2" /> |
|
<text x="1061.57" y="495.5" ></text> |
|
</g> |
|
<g > |
|
<title>main (70 samples, 0.42%)</title><rect x="977.0" y="2037" width="4.9" height="15.0" fill="rgb(229,124,24)" rx="2" ry="2" /> |
|
<text x="979.96" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="917" width="0.2" height="15.0" fill="rgb(221,112,7)" rx="2" ry="2" /> |
|
<text x="1048.82" y="927.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1015.9" y="2005" width="0.2" height="15.0" fill="rgb(205,74,5)" rx="2" ry="2" /> |
|
<text x="1018.92" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1055.7" y="1957" width="0.2" height="15.0" fill="rgb(214,65,48)" rx="2" ry="2" /> |
|
<text x="1058.74" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (8 samples, 0.05%)</title><rect x="1076.9" y="1989" width="0.6" height="15.0" fill="rgb(236,19,10)" rx="2" ry="2" /> |
|
<text x="1079.92" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_read (6 samples, 0.04%)</title><rect x="1025.3" y="2037" width="0.4" height="15.0" fill="rgb(223,140,53)" rx="2" ry="2" /> |
|
<text x="1028.27" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1461" width="0.4" height="15.0" fill="rgb(217,173,6)" rx="2" ry="2" /> |
|
<text x="13.00" y="1471.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (188 samples, 1.13%)</title><rect x="1154.2" y="2037" width="13.3" height="15.0" fill="rgb(241,130,35)" rx="2" ry="2" /> |
|
<text x="1157.22" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (26 samples, 0.16%)</title><rect x="10.0" y="1989" width="1.8" height="15.0" fill="rgb(245,88,20)" rx="2" ry="2" /> |
|
<text x="13.00" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="565" width="0.2" height="15.0" fill="rgb(252,81,45)" rx="2" ry="2" /> |
|
<text x="1048.82" y="575.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (4 samples, 0.02%)</title><rect x="1058.6" y="101" width="0.3" height="15.0" fill="rgb(236,87,28)" rx="2" ry="2" /> |
|
<text x="1061.57" y="111.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (10 samples, 0.06%)</title><rect x="1044.0" y="2021" width="0.7" height="15.0" fill="rgb(236,169,3)" rx="2" ry="2" /> |
|
<text x="1046.98" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (50 samples, 0.30%)</title><rect x="1068.1" y="1989" width="3.6" height="15.0" fill="rgb(235,8,52)" rx="2" ry="2" /> |
|
<text x="1071.14" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1941" width="0.5" height="15.0" fill="rgb(227,69,21)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (56 samples, 0.34%)</title><rect x="1031.9" y="1973" width="4.0" height="15.0" fill="rgb(233,70,14)" rx="2" ry="2" /> |
|
<text x="1034.93" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1011.2" y="2021" width="0.1" height="15.0" fill="rgb(220,190,46)" rx="2" ry="2" /> |
|
<text x="1014.18" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1797" width="0.2" height="15.0" fill="rgb(236,174,0)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1807.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1063.5" y="1973" width="0.3" height="15.0" fill="rgb(239,187,31)" rx="2" ry="2" /> |
|
<text x="1066.53" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (32 samples, 0.19%)</title><rect x="1025.7" y="2021" width="2.3" height="15.0" fill="rgb(217,100,30)" rx="2" ry="2" /> |
|
<text x="1028.70" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (7 samples, 0.04%)</title><rect x="1059.6" y="1973" width="0.5" height="15.0" fill="rgb(213,1,2)" rx="2" ry="2" /> |
|
<text x="1062.64" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (5 samples, 0.03%)</title><rect x="1007.7" y="1989" width="0.4" height="15.0" fill="rgb(237,46,5)" rx="2" ry="2" /> |
|
<text x="1010.70" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (3 samples, 0.02%)</title><rect x="1016.1" y="2021" width="0.2" height="15.0" fill="rgb(218,39,1)" rx="2" ry="2" /> |
|
<text x="1019.06" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1429" width="0.2" height="15.0" fill="rgb(234,55,45)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1439.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1044.7" y="1925" width="0.1" height="15.0" fill="rgb(225,200,36)" rx="2" ry="2" /> |
|
<text x="1047.69" y="1935.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="33.7" y="1925" width="0.2" height="15.0" fill="rgb(251,77,1)" rx="2" ry="2" /> |
|
<text x="36.73" y="1935.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (84 samples, 0.50%)</title><rect x="1139.1" y="2005" width="5.9" height="15.0" fill="rgb(243,30,44)" rx="2" ry="2" /> |
|
<text x="1142.06" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1621" width="0.2" height="15.0" fill="rgb(213,126,2)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1631.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="117" width="0.5" height="15.0" fill="rgb(226,138,45)" rx="2" ry="2" /> |
|
<text x="1061.57" y="127.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (8 samples, 0.05%)</title><rect x="1063.3" y="2037" width="0.5" height="15.0" fill="rgb(239,111,13)" rx="2" ry="2" /> |
|
<text x="1066.25" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1010.5" y="2021" width="0.2" height="15.0" fill="rgb(231,125,46)" rx="2" ry="2" /> |
|
<text x="1013.54" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1022.7" y="1973" width="0.2" height="15.0" fill="rgb(226,18,36)" rx="2" ry="2" /> |
|
<text x="1025.72" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (8 samples, 0.05%)</title><rect x="35.9" y="1989" width="0.5" height="15.0" fill="rgb(243,70,9)" rx="2" ry="2" /> |
|
<text x="38.86" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>__GI___ioctl (16 samples, 0.10%)</title><rect x="47.9" y="1957" width="1.1" height="15.0" fill="rgb(254,135,52)" rx="2" ry="2" /> |
|
<text x="50.90" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (6 samples, 0.04%)</title><rect x="1047.1" y="2005" width="0.4" height="15.0" fill="rgb(207,219,36)" rx="2" ry="2" /> |
|
<text x="1050.10" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (62 samples, 0.37%)</title><rect x="1083.6" y="1989" width="4.4" height="15.0" fill="rgb(221,58,17)" rx="2" ry="2" /> |
|
<text x="1086.58" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (9 samples, 0.05%)</title><rect x="45.9" y="2037" width="0.7" height="15.0" fill="rgb(225,72,53)" rx="2" ry="2" /> |
|
<text x="48.92" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (26 samples, 0.16%)</title><rect x="10.0" y="1925" width="1.8" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" /> |
|
<text x="13.00" y="1935.5" ></text> |
|
</g> |
|
<g > |
|
<title>start_thread (14 samples, 0.08%)</title><rect x="1009.1" y="2053" width="1.0" height="15.0" fill="rgb(251,5,5)" rx="2" ry="2" /> |
|
<text x="1012.12" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1141" width="0.5" height="15.0" fill="rgb(213,47,45)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1151.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="149" width="0.5" height="15.0" fill="rgb(210,190,23)" rx="2" ry="2" /> |
|
<text x="1061.57" y="159.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1058.6" y="53" width="0.3" height="15.0" fill="rgb(245,190,24)" rx="2" ry="2" /> |
|
<text x="1061.57" y="63.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1044.7" y="1941" width="0.1" height="15.0" fill="rgb(221,136,6)" rx="2" ry="2" /> |
|
<text x="1047.69" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="43.7" y="2005" width="0.3" height="15.0" fill="rgb(230,221,39)" rx="2" ry="2" /> |
|
<text x="46.72" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="10.4" y="1701" width="0.3" height="15.0" fill="rgb(230,194,21)" rx="2" ry="2" /> |
|
<text x="13.43" y="1711.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="33.5" y="1989" width="0.2" height="15.0" fill="rgb(207,211,32)" rx="2" ry="2" /> |
|
<text x="36.52" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1525" width="0.5" height="15.0" fill="rgb(254,103,8)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1535.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="293" width="0.5" height="15.0" fill="rgb(207,118,28)" rx="2" ry="2" /> |
|
<text x="1061.57" y="303.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="44.0" y="2005" width="0.1" height="15.0" fill="rgb(234,10,24)" rx="2" ry="2" /> |
|
<text x="47.01" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="1113.1" y="2037" width="0.5" height="15.0" fill="rgb(213,3,46)" rx="2" ry="2" /> |
|
<text x="1116.13" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_read (2 samples, 0.01%)</title><rect x="1013.1" y="2037" width="0.1" height="15.0" fill="rgb(241,103,52)" rx="2" ry="2" /> |
|
<text x="1016.09" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="213" width="0.2" height="15.0" fill="rgb(237,85,11)" rx="2" ry="2" /> |
|
<text x="1048.82" y="223.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (145 samples, 0.87%)</title><rect x="11.8" y="1957" width="10.3" height="15.0" fill="rgb(225,192,8)" rx="2" ry="2" /> |
|
<text x="14.84" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (8 samples, 0.05%)</title><rect x="48.5" y="1909" width="0.5" height="15.0" fill="rgb(241,214,36)" rx="2" ry="2" /> |
|
<text x="51.47" y="1919.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="901" width="0.5" height="15.0" fill="rgb(250,92,29)" rx="2" ry="2" /> |
|
<text x="1061.57" y="911.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="229" width="0.5" height="15.0" fill="rgb(228,139,49)" rx="2" ry="2" /> |
|
<text x="1061.57" y="239.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (22 samples, 0.13%)</title><rect x="1172.2" y="1989" width="1.6" height="15.0" fill="rgb(210,160,3)" rx="2" ry="2" /> |
|
<text x="1175.22" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (11 samples, 0.07%)</title><rect x="1046.2" y="1973" width="0.8" height="15.0" fill="rgb(243,90,37)" rx="2" ry="2" /> |
|
<text x="1049.18" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (9 samples, 0.05%)</title><rect x="1180.9" y="1973" width="0.6" height="15.0" fill="rgb(224,46,35)" rx="2" ry="2" /> |
|
<text x="1183.86" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>IPC_I/O_Child (14 samples, 0.08%)</title><rect x="1012.1" y="2069" width="1.0" height="15.0" fill="rgb(217,126,3)" rx="2" ry="2" /> |
|
<text x="1015.10" y="2079.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (9 samples, 0.05%)</title><rect x="981.9" y="1989" width="0.7" height="15.0" fill="rgb(210,47,45)" rx="2" ry="2" /> |
|
<text x="984.91" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (6 samples, 0.04%)</title><rect x="983.0" y="2005" width="0.5" height="15.0" fill="rgb(215,130,2)" rx="2" ry="2" /> |
|
<text x="986.05" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1104.2" y="1989" width="0.2" height="15.0" fill="rgb(229,27,37)" rx="2" ry="2" /> |
|
<text x="1107.20" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>__GI___writev (2 samples, 0.01%)</title><rect x="1015.9" y="2021" width="0.2" height="15.0" fill="rgb(223,119,4)" rx="2" ry="2" /> |
|
<text x="1018.92" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1011.6" y="2021" width="0.1" height="15.0" fill="rgb(219,208,45)" rx="2" ry="2" /> |
|
<text x="1014.60" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="33.5" y="1957" width="0.2" height="15.0" fill="rgb(221,78,44)" rx="2" ry="2" /> |
|
<text x="36.52" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_sendmsg (2 samples, 0.01%)</title><rect x="1013.2" y="2037" width="0.2" height="15.0" fill="rgb(234,38,51)" rx="2" ry="2" /> |
|
<text x="1016.23" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1063.5" y="1989" width="0.3" height="15.0" fill="rgb(221,27,21)" rx="2" ry="2" /> |
|
<text x="1066.53" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[libxul.so] (10 samples, 0.06%)</title><rect x="1044.0" y="2053" width="0.7" height="15.0" fill="rgb(211,26,2)" rx="2" ry="2" /> |
|
<text x="1046.98" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="990.8" y="1973" width="0.3" height="15.0" fill="rgb(250,185,30)" rx="2" ry="2" /> |
|
<text x="993.84" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="309" width="0.2" height="15.0" fill="rgb(210,200,26)" rx="2" ry="2" /> |
|
<text x="1048.82" y="319.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1012.2" y="2021" width="0.3" height="15.0" fill="rgb(254,1,14)" rx="2" ry="2" /> |
|
<text x="1015.17" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1021.6" y="2005" width="0.1" height="15.0" fill="rgb(211,196,19)" rx="2" ry="2" /> |
|
<text x="1024.59" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>__fxstat64 (16 samples, 0.10%)</title><rect x="1076.4" y="2037" width="1.1" height="15.0" fill="rgb(219,210,43)" rx="2" ry="2" /> |
|
<text x="1079.36" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1237" width="0.2" height="15.0" fill="rgb(254,2,5)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1247.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (4 samples, 0.02%)</title><rect x="1022.2" y="2037" width="0.2" height="15.0" fill="rgb(228,133,34)" rx="2" ry="2" /> |
|
<text x="1025.16" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="33.5" y="1973" width="0.2" height="15.0" fill="rgb(230,49,21)" rx="2" ry="2" /> |
|
<text x="36.52" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>__pthread_mutex_unlock_usercnt (8 samples, 0.05%)</title><rect x="11.3" y="1893" width="0.5" height="15.0" fill="rgb(250,24,37)" rx="2" ry="2" /> |
|
<text x="14.28" y="1903.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="44.1" y="2005" width="0.2" height="15.0" fill="rgb(233,53,24)" rx="2" ry="2" /> |
|
<text x="47.15" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1064.7" y="1957" width="0.2" height="15.0" fill="rgb(225,222,47)" rx="2" ry="2" /> |
|
<text x="1067.74" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>[libxul.so] (4 samples, 0.02%)</title><rect x="1015.6" y="2037" width="0.3" height="15.0" fill="rgb(228,149,8)" rx="2" ry="2" /> |
|
<text x="1018.64" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (18 samples, 0.11%)</title><rect x="1180.9" y="2005" width="1.2" height="15.0" fill="rgb(225,70,2)" rx="2" ry="2" /> |
|
<text x="1183.86" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (90 samples, 0.54%)</title><rect x="1119.9" y="2005" width="6.4" height="15.0" fill="rgb(210,81,3)" rx="2" ry="2" /> |
|
<text x="1122.93" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1717" width="0.5" height="15.0" fill="rgb(230,131,38)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1727.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="43.9" y="1973" width="0.1" height="15.0" fill="rgb(238,52,44)" rx="2" ry="2" /> |
|
<text x="46.87" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1701" width="0.4" height="15.0" fill="rgb(236,62,27)" rx="2" ry="2" /> |
|
<text x="13.00" y="1711.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (150 samples, 0.90%)</title><rect x="1025.3" y="2053" width="10.6" height="15.0" fill="rgb(219,53,23)" rx="2" ry="2" /> |
|
<text x="1028.27" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (7 samples, 0.04%)</title><rect x="1059.1" y="1989" width="0.5" height="15.0" fill="rgb(243,176,9)" rx="2" ry="2" /> |
|
<text x="1062.14" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (18 samples, 0.11%)</title><rect x="10.0" y="1829" width="1.3" height="15.0" fill="rgb(215,148,8)" rx="2" ry="2" /> |
|
<text x="13.00" y="1839.5" ></text> |
|
</g> |
|
<g > |
|
<title>__open64_nocancel (4 samples, 0.02%)</title><rect x="1153.5" y="2053" width="0.3" height="15.0" fill="rgb(209,68,49)" rx="2" ry="2" /> |
|
<text x="1156.51" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1064.7" y="1973" width="0.2" height="15.0" fill="rgb(216,187,42)" rx="2" ry="2" /> |
|
<text x="1067.74" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="277" width="0.2" height="15.0" fill="rgb(254,155,22)" rx="2" ry="2" /> |
|
<text x="1048.82" y="287.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (5 samples, 0.03%)</title><rect x="991.3" y="2005" width="0.3" height="15.0" fill="rgb(245,32,37)" rx="2" ry="2" /> |
|
<text x="994.27" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1957" width="0.2" height="15.0" fill="rgb(242,174,31)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1573" width="0.2" height="15.0" fill="rgb(236,89,54)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1583.5" ></text> |
|
</g> |
|
<g > |
|
<title>__tls_get_addr (3 samples, 0.02%)</title><rect x="36.9" y="2037" width="0.2" height="15.0" fill="rgb(235,5,30)" rx="2" ry="2" /> |
|
<text x="39.85" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (47 samples, 0.28%)</title><rect x="1182.9" y="2021" width="3.3" height="15.0" fill="rgb(235,191,46)" rx="2" ry="2" /> |
|
<text x="1185.92" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (6 samples, 0.04%)</title><rect x="1047.1" y="1973" width="0.4" height="15.0" fill="rgb(241,82,30)" rx="2" ry="2" /> |
|
<text x="1050.10" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (56 samples, 0.34%)</title><rect x="1028.0" y="1989" width="3.9" height="15.0" fill="rgb(251,12,17)" rx="2" ry="2" /> |
|
<text x="1030.97" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="549" width="0.2" height="15.0" fill="rgb(210,92,22)" rx="2" ry="2" /> |
|
<text x="1048.82" y="559.5" ></text> |
|
</g> |
|
<g > |
|
<title>__GI___writev (4 samples, 0.02%)</title><rect x="43.7" y="2021" width="0.3" height="15.0" fill="rgb(239,162,53)" rx="2" ry="2" /> |
|
<text x="46.72" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (15 samples, 0.09%)</title><rect x="1057.0" y="2021" width="1.1" height="15.0" fill="rgb(226,117,5)" rx="2" ry="2" /> |
|
<text x="1060.02" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (14 samples, 0.08%)</title><rect x="1009.1" y="2005" width="1.0" height="15.0" fill="rgb(226,94,12)" rx="2" ry="2" /> |
|
<text x="1012.12" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (6 samples, 0.04%)</title><rect x="1047.1" y="1989" width="0.4" height="15.0" fill="rgb(210,171,5)" rx="2" ry="2" /> |
|
<text x="1050.10" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1445" width="0.4" height="15.0" fill="rgb(219,91,44)" rx="2" ry="2" /> |
|
<text x="13.00" y="1455.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (8 samples, 0.05%)</title><rect x="48.5" y="1925" width="0.5" height="15.0" fill="rgb(246,82,0)" rx="2" ry="2" /> |
|
<text x="51.47" y="1935.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1021.4" y="1989" width="0.2" height="15.0" fill="rgb(232,157,16)" rx="2" ry="2" /> |
|
<text x="1024.45" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (5 samples, 0.03%)</title><rect x="1016.3" y="1973" width="0.4" height="15.0" fill="rgb(254,222,15)" rx="2" ry="2" /> |
|
<text x="1019.35" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1012.0" y="2005" width="0.1" height="15.0" fill="rgb(246,228,24)" rx="2" ry="2" /> |
|
<text x="1014.95" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>pthread_cond_signal@@GLIBC_2.3.2 (4 samples, 0.02%)</title><rect x="1058.3" y="2053" width="0.3" height="15.0" fill="rgb(249,103,2)" rx="2" ry="2" /> |
|
<text x="1061.29" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>__sched_yield (16 samples, 0.10%)</title><rect x="1042.7" y="2053" width="1.1" height="15.0" fill="rgb(222,199,29)" rx="2" ry="2" /> |
|
<text x="1045.70" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1813" width="0.5" height="15.0" fill="rgb(248,171,45)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1823.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1047.0" y="1973" width="0.1" height="15.0" fill="rgb(224,184,47)" rx="2" ry="2" /> |
|
<text x="1049.95" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (94 samples, 0.56%)</title><rect x="1154.2" y="1989" width="6.7" height="15.0" fill="rgb(246,64,16)" rx="2" ry="2" /> |
|
<text x="1157.22" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (3 samples, 0.02%)</title><rect x="33.5" y="2021" width="0.2" height="15.0" fill="rgb(245,74,47)" rx="2" ry="2" /> |
|
<text x="36.52" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (8 samples, 0.05%)</title><rect x="1036.9" y="2021" width="0.6" height="15.0" fill="rgb(244,145,13)" rx="2" ry="2" /> |
|
<text x="1039.89" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="11.6" y="1861" width="0.2" height="15.0" fill="rgb(226,41,7)" rx="2" ry="2" /> |
|
<text x="14.56" y="1871.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="565" width="0.5" height="15.0" fill="rgb(207,159,25)" rx="2" ry="2" /> |
|
<text x="1061.57" y="575.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1797" width="0.5" height="15.0" fill="rgb(231,119,0)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1807.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1015.2" y="1989" width="0.2" height="15.0" fill="rgb(234,155,41)" rx="2" ry="2" /> |
|
<text x="1018.21" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1009.5" y="1909" width="0.3" height="15.0" fill="rgb(221,43,54)" rx="2" ry="2" /> |
|
<text x="1012.55" y="1919.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1022.6" y="1989" width="0.1" height="15.0" fill="rgb(246,74,0)" rx="2" ry="2" /> |
|
<text x="1025.58" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>__read_nocancel (34 samples, 0.20%)</title><rect x="1093.6" y="2037" width="2.5" height="15.0" fill="rgb(254,0,41)" rx="2" ry="2" /> |
|
<text x="1096.64" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1011.5" y="2005" width="0.1" height="15.0" fill="rgb(249,137,30)" rx="2" ry="2" /> |
|
<text x="1014.46" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1429" width="0.5" height="15.0" fill="rgb(251,164,48)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1439.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1067.7" y="1989" width="0.2" height="15.0" fill="rgb(214,208,20)" rx="2" ry="2" /> |
|
<text x="1070.71" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1189.9" y="2005" width="0.1" height="15.0" fill="rgb(249,141,12)" rx="2" ry="2" /> |
|
<text x="1192.86" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (6 samples, 0.04%)</title><rect x="1045.0" y="2005" width="0.5" height="15.0" fill="rgb(249,87,54)" rx="2" ry="2" /> |
|
<text x="1048.04" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (6 samples, 0.04%)</title><rect x="1145.0" y="1989" width="0.4" height="15.0" fill="rgb(212,7,29)" rx="2" ry="2" /> |
|
<text x="1148.01" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="1035.9" y="2037" width="0.4" height="15.0" fill="rgb(205,169,38)" rx="2" ry="2" /> |
|
<text x="1038.90" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (42 samples, 0.25%)</title><rect x="1080.6" y="2005" width="3.0" height="15.0" fill="rgb(248,187,33)" rx="2" ry="2" /> |
|
<text x="1083.61" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (10 samples, 0.06%)</title><rect x="1061.4" y="2021" width="0.7" height="15.0" fill="rgb(210,176,28)" rx="2" ry="2" /> |
|
<text x="1064.41" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1017.1" y="2021" width="0.2" height="15.0" fill="rgb(220,86,21)" rx="2" ry="2" /> |
|
<text x="1020.06" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1012.0" y="2021" width="0.1" height="15.0" fill="rgb(224,15,19)" rx="2" ry="2" /> |
|
<text x="1014.95" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>open_path (108 samples, 0.65%)</title><rect x="1174.5" y="2037" width="7.6" height="15.0" fill="rgb(246,135,38)" rx="2" ry="2" /> |
|
<text x="1177.48" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (290 samples, 1.74%)</title><rect x="11.8" y="2005" width="20.6" height="15.0" fill="rgb(211,176,54)" rx="2" ry="2" /> |
|
<text x="14.84" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (36 samples, 0.22%)</title><rect x="1040.0" y="1973" width="2.6" height="15.0" fill="rgb(242,100,40)" rx="2" ry="2" /> |
|
<text x="1043.01" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1104.8" y="2005" width="0.3" height="15.0" fill="rgb(254,140,49)" rx="2" ry="2" /> |
|
<text x="1107.84" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="10.0" y="1397" width="0.4" height="15.0" fill="rgb(222,24,53)" rx="2" ry="2" /> |
|
<text x="13.00" y="1407.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1105.3" y="2005" width="0.2" height="15.0" fill="rgb(222,31,48)" rx="2" ry="2" /> |
|
<text x="1108.26" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1064.6" y="1989" width="0.1" height="15.0" fill="rgb(245,160,2)" rx="2" ry="2" /> |
|
<text x="1067.60" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="341" width="0.5" height="15.0" fill="rgb(214,229,41)" rx="2" ry="2" /> |
|
<text x="1061.57" y="351.5" ></text> |
|
</g> |
|
<g > |
|
<title>mprotect (2 samples, 0.01%)</title><rect x="1064.6" y="2005" width="0.1" height="15.0" fill="rgb(238,132,3)" rx="2" ry="2" /> |
|
<text x="1067.60" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1153.5" y="2021" width="0.2" height="15.0" fill="rgb(253,218,14)" rx="2" ry="2" /> |
|
<text x="1156.51" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (39 samples, 0.23%)</title><rect x="1017.8" y="2005" width="2.8" height="15.0" fill="rgb(238,111,40)" rx="2" ry="2" /> |
|
<text x="1020.84" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1010.8" y="1973" width="0.2" height="15.0" fill="rgb(238,99,21)" rx="2" ry="2" /> |
|
<text x="1013.82" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (70 samples, 0.42%)</title><rect x="1015.6" y="2053" width="5.0" height="15.0" fill="rgb(212,151,21)" rx="2" ry="2" /> |
|
<text x="1018.64" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1058.3" y="2021" width="0.1" height="15.0" fill="rgb(252,223,0)" rx="2" ry="2" /> |
|
<text x="1061.29" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1007.3" y="1989" width="0.2" height="15.0" fill="rgb(228,82,12)" rx="2" ry="2" /> |
|
<text x="1010.28" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (17 samples, 0.10%)</title><rect x="1017.8" y="1989" width="1.2" height="15.0" fill="rgb(222,81,29)" rx="2" ry="2" /> |
|
<text x="1020.84" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="917" width="0.5" height="15.0" fill="rgb(241,127,13)" rx="2" ry="2" /> |
|
<text x="1061.57" y="927.5" ></text> |
|
</g> |
|
<g > |
|
<title>dl_open_worker (2 samples, 0.01%)</title><rect x="1064.6" y="2021" width="0.1" height="15.0" fill="rgb(230,50,38)" rx="2" ry="2" /> |
|
<text x="1067.60" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (16 samples, 0.10%)</title><rect x="1036.3" y="2037" width="1.2" height="15.0" fill="rgb(214,105,16)" rx="2" ry="2" /> |
|
<text x="1039.33" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1009.3" y="1909" width="0.2" height="15.0" fill="rgb(234,153,10)" rx="2" ry="2" /> |
|
<text x="1012.33" y="1919.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (145 samples, 0.87%)</title><rect x="11.8" y="1989" width="10.3" height="15.0" fill="rgb(216,32,20)" rx="2" ry="2" /> |
|
<text x="14.84" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1062.4" y="2021" width="0.3" height="15.0" fill="rgb(232,168,39)" rx="2" ry="2" /> |
|
<text x="1065.40" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1016.1" y="1941" width="0.2" height="15.0" fill="rgb(253,68,19)" rx="2" ry="2" /> |
|
<text x="1019.06" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (16 samples, 0.10%)</title><rect x="1063.3" y="2053" width="1.1" height="15.0" fill="rgb(231,159,32)" rx="2" ry="2" /> |
|
<text x="1066.25" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1509" width="0.2" height="15.0" fill="rgb(218,141,1)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1519.5" ></text> |
|
</g> |
|
<g > |
|
<title>__pthread_mutex_unlock_usercnt (2 samples, 0.01%)</title><rect x="1014.6" y="2053" width="0.2" height="15.0" fill="rgb(232,217,18)" rx="2" ry="2" /> |
|
<text x="1017.65" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (14 samples, 0.08%)</title><rect x="1009.1" y="1989" width="1.0" height="15.0" fill="rgb(209,171,40)" rx="2" ry="2" /> |
|
<text x="1012.12" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[libxul.so] (5 samples, 0.03%)</title><rect x="33.7" y="2037" width="0.4" height="15.0" fill="rgb(235,2,39)" rx="2" ry="2" /> |
|
<text x="36.73" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (84 samples, 0.50%)</title><rect x="1133.1" y="1989" width="6.0" height="15.0" fill="rgb(237,162,17)" rx="2" ry="2" /> |
|
<text x="1136.11" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="613" width="0.2" height="15.0" fill="rgb(224,40,45)" rx="2" ry="2" /> |
|
<text x="1048.82" y="623.5" ></text> |
|
</g> |
|
<g > |
|
<title>_nl_find_locale (6 samples, 0.04%)</title><rect x="1189.6" y="2037" width="0.4" height="15.0" fill="rgb(231,43,18)" rx="2" ry="2" /> |
|
<text x="1192.57" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="11.3" y="1861" width="0.3" height="15.0" fill="rgb(238,47,6)" rx="2" ry="2" /> |
|
<text x="14.28" y="1871.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1221" width="0.2" height="15.0" fill="rgb(214,111,40)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1231.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (8 samples, 0.05%)</title><rect x="1042.7" y="2005" width="0.6" height="15.0" fill="rgb(228,153,2)" rx="2" ry="2" /> |
|
<text x="1045.70" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (5 samples, 0.03%)</title><rect x="1016.7" y="2005" width="0.4" height="15.0" fill="rgb(249,113,18)" rx="2" ry="2" /> |
|
<text x="1019.70" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[libxul.so] (2 samples, 0.01%)</title><rect x="1045.7" y="1973" width="0.1" height="15.0" fill="rgb(243,33,16)" rx="2" ry="2" /> |
|
<text x="1048.68" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (8 samples, 0.05%)</title><rect x="35.3" y="1989" width="0.6" height="15.0" fill="rgb(230,188,9)" rx="2" ry="2" /> |
|
<text x="38.29" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1017.1" y="1989" width="0.1" height="15.0" fill="rgb(232,2,16)" rx="2" ry="2" /> |
|
<text x="1020.06" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1012.3" y="1989" width="0.2" height="15.0" fill="rgb(251,3,16)" rx="2" ry="2" /> |
|
<text x="1015.31" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1701" width="0.5" height="15.0" fill="rgb(244,85,4)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1711.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (90 samples, 0.54%)</title><rect x="1119.9" y="2021" width="6.4" height="15.0" fill="rgb(215,142,27)" rx="2" ry="2" /> |
|
<text x="1122.93" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (6 samples, 0.04%)</title><rect x="1145.0" y="2021" width="0.4" height="15.0" fill="rgb(212,68,53)" rx="2" ry="2" /> |
|
<text x="1148.01" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1102.0" y="1989" width="0.1" height="15.0" fill="rgb(247,25,45)" rx="2" ry="2" /> |
|
<text x="1105.00" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>dl_main (22 samples, 0.13%)</title><rect x="1102.2" y="2021" width="1.6" height="15.0" fill="rgb(247,181,10)" rx="2" ry="2" /> |
|
<text x="1105.22" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (3 samples, 0.02%)</title><rect x="1045.3" y="1973" width="0.2" height="15.0" fill="rgb(212,126,15)" rx="2" ry="2" /> |
|
<text x="1048.25" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="821" width="0.2" height="15.0" fill="rgb(212,76,23)" rx="2" ry="2" /> |
|
<text x="1048.82" y="831.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="789" width="0.2" height="15.0" fill="rgb(227,97,9)" rx="2" ry="2" /> |
|
<text x="1048.82" y="799.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="44.0" y="1989" width="0.1" height="15.0" fill="rgb(237,82,39)" rx="2" ry="2" /> |
|
<text x="47.01" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1067.9" y="1989" width="0.2" height="15.0" fill="rgb(251,65,50)" rx="2" ry="2" /> |
|
<text x="1070.93" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>__GI___ioctl (8 samples, 0.05%)</title><rect x="1062.1" y="2053" width="0.6" height="15.0" fill="rgb(230,167,34)" rx="2" ry="2" /> |
|
<text x="1065.12" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (22 samples, 0.13%)</title><rect x="1102.2" y="1989" width="1.6" height="15.0" fill="rgb(223,206,32)" rx="2" ry="2" /> |
|
<text x="1105.22" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1007.5" y="2005" width="0.2" height="15.0" fill="rgb(244,160,48)" rx="2" ry="2" /> |
|
<text x="1010.49" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (568 samples, 3.41%)</title><rect x="1064.4" y="2053" width="40.2" height="15.0" fill="rgb(232,21,2)" rx="2" ry="2" /> |
|
<text x="1067.38" y="2063.5" >[un..</text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="197" width="0.5" height="15.0" fill="rgb(221,228,47)" rx="2" ry="2" /> |
|
<text x="1061.57" y="207.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (112 samples, 0.67%)</title><rect x="1028.0" y="2037" width="7.9" height="15.0" fill="rgb(230,99,9)" rx="2" ry="2" /> |
|
<text x="1030.97" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1102.0" y="1957" width="0.1" height="15.0" fill="rgb(250,92,46)" rx="2" ry="2" /> |
|
<text x="1105.00" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1925" width="0.5" height="15.0" fill="rgb(216,137,40)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1935.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (11 samples, 0.07%)</title><rect x="1046.2" y="1989" width="0.8" height="15.0" fill="rgb(224,212,22)" rx="2" ry="2" /> |
|
<text x="1049.18" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>__GI___execve (69 samples, 0.41%)</title><rect x="977.0" y="1973" width="4.9" height="15.0" fill="rgb(246,207,25)" rx="2" ry="2" /> |
|
<text x="980.03" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (46 samples, 0.28%)</title><rect x="1106.6" y="2005" width="3.3" height="15.0" fill="rgb(236,7,2)" rx="2" ry="2" /> |
|
<text x="1109.61" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1109" width="0.5" height="15.0" fill="rgb(250,210,41)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1119.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="33.0" y="2021" width="0.2" height="15.0" fill="rgb(254,42,16)" rx="2" ry="2" /> |
|
<text x="35.96" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (17 samples, 0.10%)</title><rect x="1094.8" y="1989" width="1.3" height="15.0" fill="rgb(230,11,16)" rx="2" ry="2" /> |
|
<text x="1097.85" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1024.1" y="2021" width="0.2" height="15.0" fill="rgb(218,157,22)" rx="2" ry="2" /> |
|
<text x="1027.14" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (16 samples, 0.10%)</title><rect x="1042.7" y="2037" width="1.1" height="15.0" fill="rgb(254,39,53)" rx="2" ry="2" /> |
|
<text x="1045.70" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[libxul.so] (4 samples, 0.02%)</title><rect x="1014.2" y="2037" width="0.3" height="15.0" fill="rgb(248,48,31)" rx="2" ry="2" /> |
|
<text x="1017.22" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="549" width="0.5" height="15.0" fill="rgb(205,111,49)" rx="2" ry="2" /> |
|
<text x="1061.57" y="559.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1063.8" y="1989" width="0.3" height="15.0" fill="rgb(234,11,49)" rx="2" ry="2" /> |
|
<text x="1066.82" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1573" width="0.5" height="15.0" fill="rgb(217,223,42)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1583.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1145.9" y="2037" width="0.1" height="15.0" fill="rgb(223,150,17)" rx="2" ry="2" /> |
|
<text x="1148.86" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (5 samples, 0.03%)</title><rect x="33.7" y="2021" width="0.4" height="15.0" fill="rgb(219,33,1)" rx="2" ry="2" /> |
|
<text x="36.73" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1182.5" y="2021" width="0.2" height="15.0" fill="rgb(232,53,6)" rx="2" ry="2" /> |
|
<text x="1185.49" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1104.4" y="2005" width="0.2" height="15.0" fill="rgb(227,180,16)" rx="2" ry="2" /> |
|
<text x="1107.41" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1015.6" y="1989" width="0.2" height="15.0" fill="rgb(223,109,23)" rx="2" ry="2" /> |
|
<text x="1018.64" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>__getpid (4 samples, 0.02%)</title><rect x="1011.0" y="2053" width="0.3" height="15.0" fill="rgb(210,140,25)" rx="2" ry="2" /> |
|
<text x="1014.03" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (31 samples, 0.19%)</title><rect x="983.9" y="1957" width="2.2" height="15.0" fill="rgb(235,79,27)" rx="2" ry="2" /> |
|
<text x="986.90" y="1967.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1058.4" y="2005" width="0.2" height="15.0" fill="rgb(244,69,28)" rx="2" ry="2" /> |
|
<text x="1061.43" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>mozilla::detail::MutexImpl::unlock (2 samples, 0.01%)</title><rect x="1047.0" y="2021" width="0.1" height="15.0" fill="rgb(225,58,20)" rx="2" ry="2" /> |
|
<text x="1049.95" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (42 samples, 0.25%)</title><rect x="1099.0" y="1989" width="3.0" height="15.0" fill="rgb(236,185,11)" rx="2" ry="2" /> |
|
<text x="1102.03" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>KittyChildMon (10 samples, 0.06%)</title><rect x="1014.9" y="2069" width="0.7" height="15.0" fill="rgb(246,100,48)" rx="2" ry="2" /> |
|
<text x="1017.93" y="2079.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (9 samples, 0.05%)</title><rect x="1038.0" y="1989" width="0.6" height="15.0" fill="rgb(222,178,27)" rx="2" ry="2" /> |
|
<text x="1040.96" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="32.4" y="1989" width="0.3" height="15.0" fill="rgb(224,147,25)" rx="2" ry="2" /> |
|
<text x="35.39" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1813" width="0.2" height="15.0" fill="rgb(248,51,19)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1823.5" ></text> |
|
</g> |
|
<g > |
|
<title>__xstat64 (84 samples, 0.50%)</title><rect x="1096.1" y="2037" width="5.9" height="15.0" fill="rgb(248,68,42)" rx="2" ry="2" /> |
|
<text x="1099.05" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="36.9" y="1973" width="0.2" height="15.0" fill="rgb(248,8,49)" rx="2" ry="2" /> |
|
<text x="39.85" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1042.6" y="2021" width="0.1" height="15.0" fill="rgb(226,190,2)" rx="2" ry="2" /> |
|
<text x="1045.56" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (16 samples, 0.10%)</title><rect x="1025.7" y="1989" width="1.1" height="15.0" fill="rgb(215,55,26)" rx="2" ry="2" /> |
|
<text x="1028.70" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1045.5" y="1941" width="0.2" height="15.0" fill="rgb(211,95,31)" rx="2" ry="2" /> |
|
<text x="1048.54" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1017.3" y="2005" width="0.3" height="15.0" fill="rgb(248,27,26)" rx="2" ry="2" /> |
|
<text x="1020.34" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (6 samples, 0.04%)</title><rect x="1037.5" y="1925" width="0.5" height="15.0" fill="rgb(229,39,26)" rx="2" ry="2" /> |
|
<text x="1040.53" y="1935.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1237" width="0.5" height="15.0" fill="rgb(213,170,27)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1247.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="1063.8" y="2005" width="0.3" height="15.0" fill="rgb(230,75,29)" rx="2" ry="2" /> |
|
<text x="1066.82" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>JS_Watchdog (10 samples, 0.06%)</title><rect x="1014.2" y="2069" width="0.7" height="15.0" fill="rgb(223,229,44)" rx="2" ry="2" /> |
|
<text x="1017.22" y="2079.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (4 samples, 0.02%)</title><rect x="1045.7" y="1989" width="0.3" height="15.0" fill="rgb(211,219,48)" rx="2" ry="2" /> |
|
<text x="1048.68" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1025.5" y="2005" width="0.2" height="15.0" fill="rgb(223,1,42)" rx="2" ry="2" /> |
|
<text x="1028.49" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (159 samples, 0.95%)</title><rect x="1044.7" y="2053" width="11.3" height="15.0" fill="rgb(230,50,24)" rx="2" ry="2" /> |
|
<text x="1047.69" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>__GI___tcgetattr (100 samples, 0.60%)</title><rect x="1068.1" y="2037" width="7.1" height="15.0" fill="rgb(243,146,49)" rx="2" ry="2" /> |
|
<text x="1071.14" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1055.7" y="1941" width="0.2" height="15.0" fill="rgb(215,29,39)" rx="2" ry="2" /> |
|
<text x="1058.74" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (6,539 samples, 39.26%)</title><rect x="49.5" y="2005" width="463.3" height="15.0" fill="rgb(237,164,43)" rx="2" ry="2" /> |
|
<text x="52.53" y="2015.5" >do_syscall_64</text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (8 samples, 0.05%)</title><rect x="1075.8" y="2005" width="0.6" height="15.0" fill="rgb(214,108,26)" rx="2" ry="2" /> |
|
<text x="1078.79" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1717" width="0.2" height="15.0" fill="rgb(251,67,1)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1727.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (6 samples, 0.04%)</title><rect x="1008.7" y="2005" width="0.4" height="15.0" fill="rgb(234,126,2)" rx="2" ry="2" /> |
|
<text x="1011.70" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>__poll (16 samples, 0.10%)</title><rect x="1036.3" y="2053" width="1.2" height="15.0" fill="rgb(223,26,52)" rx="2" ry="2" /> |
|
<text x="1039.33" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1010.7" y="1973" width="0.1" height="15.0" fill="rgb(225,56,49)" rx="2" ry="2" /> |
|
<text x="1013.68" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1064.7" y="2005" width="0.3" height="15.0" fill="rgb(229,150,10)" rx="2" ry="2" /> |
|
<text x="1067.74" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="43.7" y="1973" width="0.2" height="15.0" fill="rgb(229,174,13)" rx="2" ry="2" /> |
|
<text x="46.72" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (18 samples, 0.11%)</title><rect x="10.0" y="1845" width="1.3" height="15.0" fill="rgb(213,98,5)" rx="2" ry="2" /> |
|
<text x="13.00" y="1855.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (20 samples, 0.12%)</title><rect x="1167.5" y="2021" width="1.5" height="15.0" fill="rgb(233,160,6)" rx="2" ry="2" /> |
|
<text x="1170.54" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1605" width="0.4" height="15.0" fill="rgb(213,193,53)" rx="2" ry="2" /> |
|
<text x="13.00" y="1615.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (2 samples, 0.01%)</title><rect x="1046.0" y="1989" width="0.2" height="15.0" fill="rgb(247,226,14)" rx="2" ry="2" /> |
|
<text x="1049.03" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (8 samples, 0.05%)</title><rect x="1043.3" y="2021" width="0.5" height="15.0" fill="rgb(241,75,24)" rx="2" ry="2" /> |
|
<text x="1046.27" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (2 samples, 0.01%)</title><rect x="33.9" y="1973" width="0.2" height="15.0" fill="rgb(213,128,32)" rx="2" ry="2" /> |
|
<text x="36.95" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_recvmsg (16 samples, 0.10%)</title><rect x="1060.3" y="2037" width="1.1" height="15.0" fill="rgb(206,94,43)" rx="2" ry="2" /> |
|
<text x="1063.27" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="11.0" y="1749" width="0.3" height="15.0" fill="rgb(222,181,42)" rx="2" ry="2" /> |
|
<text x="13.99" y="1759.5" ></text> |
|
</g> |
|
<g > |
|
<title>clock_gettime@GLIBC_2.2.5 (13 samples, 0.08%)</title><rect x="1023.0" y="2037" width="0.9" height="15.0" fill="rgb(253,59,4)" rx="2" ry="2" /> |
|
<text x="1026.01" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1525" width="0.2" height="15.0" fill="rgb(221,187,5)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1535.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (16 samples, 0.10%)</title><rect x="1105.5" y="2037" width="1.1" height="15.0" fill="rgb(207,110,52)" rx="2" ry="2" /> |
|
<text x="1108.48" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="10.0" y="1349" width="0.2" height="15.0" fill="rgb(235,28,46)" rx="2" ry="2" /> |
|
<text x="13.00" y="1359.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (31 samples, 0.19%)</title><rect x="986.1" y="1973" width="2.2" height="15.0" fill="rgb(244,132,21)" rx="2" ry="2" /> |
|
<text x="989.09" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (5 samples, 0.03%)</title><rect x="1061.8" y="1989" width="0.3" height="15.0" fill="rgb(251,5,35)" rx="2" ry="2" /> |
|
<text x="1064.76" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1182.2" y="2037" width="0.1" height="15.0" fill="rgb(231,142,54)" rx="2" ry="2" /> |
|
<text x="1185.21" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1067.7" y="2005" width="0.2" height="15.0" fill="rgb(225,3,22)" rx="2" ry="2" /> |
|
<text x="1070.71" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1103.8" y="1989" width="0.2" height="15.0" fill="rgb(248,28,43)" rx="2" ry="2" /> |
|
<text x="1106.85" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>__fxstat64 (2 samples, 0.01%)</title><rect x="1189.7" y="2021" width="0.2" height="15.0" fill="rgb(247,91,3)" rx="2" ry="2" /> |
|
<text x="1192.72" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1015.4" y="1973" width="0.1" height="15.0" fill="rgb(207,75,35)" rx="2" ry="2" /> |
|
<text x="1018.36" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (56 samples, 0.34%)</title><rect x="1031.9" y="1989" width="4.0" height="15.0" fill="rgb(214,102,30)" rx="2" ry="2" /> |
|
<text x="1034.93" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>epoll_wait (32 samples, 0.19%)</title><rect x="988.3" y="2037" width="2.3" height="15.0" fill="rgb(217,27,18)" rx="2" ry="2" /> |
|
<text x="991.29" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="901" width="0.2" height="15.0" fill="rgb(229,26,19)" rx="2" ry="2" /> |
|
<text x="1048.82" y="911.5" ></text> |
|
</g> |
|
<g > |
|
<title>epoll_wait (2 samples, 0.01%)</title><rect x="1012.9" y="2037" width="0.2" height="15.0" fill="rgb(254,32,10)" rx="2" ry="2" /> |
|
<text x="1015.95" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1045.7" y="1941" width="0.1" height="15.0" fill="rgb(206,55,16)" rx="2" ry="2" /> |
|
<text x="1048.68" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="46.6" y="2021" width="0.1" height="15.0" fill="rgb(253,87,46)" rx="2" ry="2" /> |
|
<text x="49.56" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>__pthread_mutex_unlock_usercnt (2 samples, 0.01%)</title><rect x="1015.8" y="2005" width="0.1" height="15.0" fill="rgb(215,97,46)" rx="2" ry="2" /> |
|
<text x="1018.78" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>__lxstat64 (4 samples, 0.02%)</title><rect x="1064.7" y="2021" width="0.3" height="15.0" fill="rgb(213,228,44)" rx="2" ry="2" /> |
|
<text x="1067.74" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="421" width="0.2" height="15.0" fill="rgb(236,101,3)" rx="2" ry="2" /> |
|
<text x="1048.82" y="431.5" ></text> |
|
</g> |
|
<g > |
|
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (2 samples, 0.01%)</title><rect x="1014.8" y="2053" width="0.1" height="15.0" fill="rgb(205,149,37)" rx="2" ry="2" /> |
|
<text x="1017.79" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="245" width="0.2" height="15.0" fill="rgb(221,17,10)" rx="2" ry="2" /> |
|
<text x="1048.82" y="255.5" ></text> |
|
</g> |
|
<g > |
|
<title>SCTP_timer (4 samples, 0.02%)</title><rect x="1021.9" y="2069" width="0.3" height="15.0" fill="rgb(217,72,52)" rx="2" ry="2" /> |
|
<text x="1024.87" y="2079.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="47.6" y="1909" width="0.3" height="15.0" fill="rgb(240,86,41)" rx="2" ry="2" /> |
|
<text x="50.62" y="1919.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (8 samples, 0.05%)</title><rect x="1036.3" y="1989" width="0.6" height="15.0" fill="rgb(214,7,49)" rx="2" ry="2" /> |
|
<text x="1039.33" y="1999.5" ></text> |
|
</g> |
|
<g > |
|
<title>[libxul.so] (2 samples, 0.01%)</title><rect x="1013.5" y="2037" width="0.2" height="15.0" fill="rgb(243,101,33)" rx="2" ry="2" /> |
|
<text x="1016.51" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1621" width="0.5" height="15.0" fill="rgb(228,229,12)" rx="2" ry="2" /> |
|
<text x="1061.57" y="1631.5" ></text> |
|
</g> |
|
<g > |
|
<title>__getrlimit (2 samples, 0.01%)</title><rect x="1126.3" y="2053" width="0.1" height="15.0" fill="rgb(207,73,51)" rx="2" ry="2" /> |
|
<text x="1129.31" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (5 samples, 0.03%)</title><rect x="1007.7" y="2005" width="0.4" height="15.0" fill="rgb(212,56,19)" rx="2" ry="2" /> |
|
<text x="1010.70" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>pthread_cond_broadcast@@GLIBC_2.3.2 (8 samples, 0.05%)</title><rect x="32.4" y="2037" width="0.6" height="15.0" fill="rgb(209,208,39)" rx="2" ry="2" /> |
|
<text x="35.39" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (16 samples, 0.10%)</title><rect x="47.9" y="1941" width="1.1" height="15.0" fill="rgb(234,72,17)" rx="2" ry="2" /> |
|
<text x="50.90" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>__vdso_clock_gettime (2 samples, 0.01%)</title><rect x="1045.5" y="2005" width="0.2" height="15.0" fill="rgb(249,187,3)" rx="2" ry="2" /> |
|
<text x="1048.54" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1011.5" y="2037" width="0.2" height="15.0" fill="rgb(211,15,23)" rx="2" ry="2" /> |
|
<text x="1014.46" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>__libc_write (2 samples, 0.01%)</title><rect x="1145.9" y="2053" width="0.1" height="15.0" fill="rgb(207,16,21)" rx="2" ry="2" /> |
|
<text x="1148.86" y="2063.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (9 samples, 0.05%)</title><rect x="1038.0" y="1941" width="0.6" height="15.0" fill="rgb(234,215,1)" rx="2" ry="2" /> |
|
<text x="1040.96" y="1951.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="983.5" y="2005" width="0.2" height="15.0" fill="rgb(210,84,8)" rx="2" ry="2" /> |
|
<text x="986.47" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1104.2" y="1973" width="0.2" height="15.0" fill="rgb(219,105,13)" rx="2" ry="2" /> |
|
<text x="1107.20" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1541" width="0.4" height="15.0" fill="rgb(249,4,22)" rx="2" ry="2" /> |
|
<text x="13.00" y="1551.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1021.3" y="2037" width="0.1" height="15.0" fill="rgb(222,18,44)" rx="2" ry="2" /> |
|
<text x="1024.31" y="2047.5" ></text> |
|
</g> |
|
<g > |
|
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1020.6" y="2021" width="0.2" height="15.0" fill="rgb(227,121,35)" rx="2" ry="2" /> |
|
<text x="1023.60" y="2031.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_exit_to_user_mode (43 samples, 0.26%)</title><rect x="1150.5" y="2005" width="3.0" height="15.0" fill="rgb(237,12,31)" rx="2" ry="2" /> |
|
<text x="1153.47" y="2015.5" ></text> |
|
</g> |
|
<g > |
|
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1141" width="0.2" height="15.0" fill="rgb(250,122,24)" rx="2" ry="2" /> |
|
<text x="1048.82" y="1151.5" ></text> |
|
</g> |
|
<g > |
|
<title>syscall_trace_enter.constprop.0 (42 samples, 0.25%)</title><rect x="1096.1" y="1973" width="2.9" height="15.0" fill="rgb(206,27,1)" rx="2" ry="2" /> |
|
<text x="1099.05" y="1983.5" ></text> |
|
</g> |
|
<g > |
|
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1015.2" y="2005" width="0.3" height="15.0" fill="rgb(233,63,45)" rx="2" ry="2" /> |
|
<text x="1018.21" y="2015.5" ></text> |
|
</g> |
|
</g> |
|
</svg> |