737 lines
28 KiB
XML
737 lines
28 KiB
XML
|
|
<?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="758" onload="init(evt)" viewBox="0 0 1200 758" 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;
|
||
|
|
}
|
||
|
|
|
||
|
|
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);
|
||
|
|
}
|
||
|
|
else if (e.target.id == "unzoom") unzoom();
|
||
|
|
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
|
||
|
|
window.addEventListener("keydown",function (e) {
|
||
|
|
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
|
||
|
|
e.preventDefault();
|
||
|
|
search_prompt();
|
||
|
|
}
|
||
|
|
}, false)
|
||
|
|
|
||
|
|
// ctrl-I to toggle case-sensitive search
|
||
|
|
window.addEventListener("keydown",function (e) {
|
||
|
|
if (e.ctrlKey && e.keyCode === 73) {
|
||
|
|
e.preventDefault();
|
||
|
|
toggle_ignorecase();
|
||
|
|
}
|
||
|
|
}, false)
|
||
|
|
|
||
|
|
// functions
|
||
|
|
function find_child(node, selector) {
|
||
|
|
var children = node.querySelectorAll(selector);
|
||
|
|
if (children.length) return children[0];
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
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();
|
||
|
|
}
|
||
|
|
|
||
|
|
// 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")
|
||
|
|
}
|
||
|
|
}
|
||
|
|
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) {
|
||
|
|
currentSearchTerm = term;
|
||
|
|
search();
|
||
|
|
}
|
||
|
|
} 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 (currentSearchTerm === null) return;
|
||
|
|
var term = currentSearchTerm;
|
||
|
|
|
||
|
|
var re = new RegExp(term, 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;
|
||
|
|
|
||
|
|
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="758.0" fill="url(#background)" />
|
||
|
|
<text id="title" x="600.00" y="24" >Flame Graph</text>
|
||
|
|
<text id="details" x="10.00" y="741" > </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="741" > </text>
|
||
|
|
<g id="frames">
|
||
|
|
<g >
|
||
|
|
<title>__mark_inode_dirty (8 samples, 0.04%)</title><rect x="10.2" y="421" width="0.4" height="15.0" fill="rgb(246,135,47)" rx="2" ry="2" />
|
||
|
|
<text x="13.18" y="431.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>__libc_write (26 samples, 0.13%)</title><rect x="10.0" y="597" width="1.5" height="15.0" fill="rgb(233,223,33)" rx="2" ry="2" />
|
||
|
|
<text x="13.00" y="607.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>call_streamentry (19,984 samples, 99.87%)</title><rect x="11.5" y="501" width="1178.4" height="15.0" fill="rgb(239,104,9)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="511.5" >call_streamentry</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>http_callPlugin (19,984 samples, 99.87%)</title><rect x="11.5" y="325" width="1178.4" height="15.0" fill="rgb(208,41,42)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="335.5" >http_callPlugin</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>HTTP_ENTRY (19,984 samples, 99.87%)</title><rect x="11.5" y="373" width="1178.4" height="15.0" fill="rgb(205,69,45)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="383.5" >HTTP_ENTRY</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>sysvec_apic_timer_interrupt (29 samples, 0.14%)</title><rect x="1188.2" y="101" width="1.7" height="15.0" fill="rgb(211,63,28)" rx="2" ry="2" />
|
||
|
|
<text x="1191.23" y="111.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>[sapp] (19,984 samples, 99.87%)</title><rect x="11.5" y="677" width="1178.4" height="15.0" fill="rgb(244,58,6)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="687.5" >[sapp]</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>__alloc_pages (2 samples, 0.01%)</title><rect x="11.3" y="389" width="0.1" height="15.0" fill="rgb(230,208,4)" rx="2" ry="2" />
|
||
|
|
<text x="14.30" y="399.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>start_this_handle (2 samples, 0.01%)</title><rect x="10.5" y="357" width="0.1" height="15.0" fill="rgb(223,166,1)" rx="2" ry="2" />
|
||
|
|
<text x="13.47" y="367.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>__mem_cgroup_charge (2 samples, 0.01%)</title><rect x="11.0" y="373" width="0.1" height="15.0" fill="rgb(213,24,50)" rx="2" ry="2" />
|
||
|
|
<text x="14.00" y="383.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>folio_alloc (2 samples, 0.01%)</title><rect x="11.3" y="405" width="0.1" height="15.0" fill="rgb(244,215,32)" rx="2" ry="2" />
|
||
|
|
<text x="14.30" y="415.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>TLD_append_streaminfo (19,984 samples, 99.87%)</title><rect x="11.5" y="165" width="1178.4" height="15.0" fill="rgb(217,27,52)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="175.5" >TLD_append_streaminfo</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>pagecache_get_page (7 samples, 0.03%)</title><rect x="11.0" y="437" width="0.4" height="15.0" fill="rgb(232,39,6)" rx="2" ry="2" />
|
||
|
|
<text x="14.00" y="447.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>plugin_call_streamentry (19,984 samples, 99.87%)</title><rect x="11.5" y="389" width="1178.4" height="15.0" fill="rgb(247,158,32)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="399.5" >plugin_call_streamentry</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>generic_update_time (8 samples, 0.04%)</title><rect x="10.2" y="437" width="0.4" height="15.0" fill="rgb(244,16,27)" rx="2" ry="2" />
|
||
|
|
<text x="13.18" y="447.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>file_update_time (9 samples, 0.04%)</title><rect x="10.1" y="453" width="0.5" height="15.0" fill="rgb(219,35,49)" rx="2" ry="2" />
|
||
|
|
<text x="13.12" y="463.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>__filemap_add_folio (3 samples, 0.01%)</title><rect x="11.0" y="389" width="0.2" height="15.0" fill="rgb(209,184,47)" rx="2" ry="2" />
|
||
|
|
<text x="14.00" y="399.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>__softirqentry_text_start (2 samples, 0.01%)</title><rect x="1188.0" y="69" width="0.1" height="15.0" fill="rgb(254,204,47)" rx="2" ry="2" />
|
||
|
|
<text x="1191.00" y="79.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>all (20,011 samples, 100%)</title><rect x="10.0" y="709" width="1180.0" height="15.0" fill="rgb(223,17,21)" rx="2" ry="2" />
|
||
|
|
<text x="13.00" y="719.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>_raw_spin_trylock (2 samples, 0.01%)</title><rect x="1189.8" y="37" width="0.1" height="15.0" fill="rgb(248,219,48)" rx="2" ry="2" />
|
||
|
|
<text x="1192.82" y="47.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>vfs_write (25 samples, 0.12%)</title><rect x="10.1" y="533" width="1.4" height="15.0" fill="rgb(243,123,14)" rx="2" ry="2" />
|
||
|
|
<text x="13.06" y="543.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>[session_record.so] (19,984 samples, 99.87%)</title><rect x="11.5" y="261" width="1178.4" height="15.0" fill="rgb(226,103,45)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="271.5" >[session_record.so]</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>asm_sysvec_apic_timer_interrupt (31 samples, 0.15%)</title><rect x="1188.1" y="117" width="1.8" height="15.0" fill="rgb(241,185,4)" rx="2" ry="2" />
|
||
|
|
<text x="1191.11" y="127.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>deal_event_rules (19,984 samples, 99.87%)</title><rect x="11.5" y="197" width="1178.4" height="15.0" fill="rgb(232,79,19)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="207.5" >deal_event_rules</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>deal_socks_proxy (19,984 samples, 99.87%)</title><rect x="11.5" y="469" width="1178.4" height="15.0" fill="rgb(205,88,43)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="479.5" >deal_socks_proxy</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>ksys_write (26 samples, 0.13%)</title><rect x="10.0" y="549" width="1.5" height="15.0" fill="rgb(235,105,33)" rx="2" ry="2" />
|
||
|
|
<text x="13.00" y="559.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>tsg_send_log (19,984 samples, 99.87%)</title><rect x="11.5" y="213" width="1178.4" height="15.0" fill="rgb(244,219,49)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="223.5" >tsg_send_log</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>jbd2__journal_start (6 samples, 0.03%)</title><rect x="10.2" y="373" width="0.4" height="15.0" fill="rgb(238,160,51)" rx="2" ry="2" />
|
||
|
|
<text x="13.24" y="383.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>tcp_free_stream (19,984 samples, 99.87%)</title><rect x="11.5" y="549" width="1178.4" height="15.0" fill="rgb(206,35,37)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="559.5" >tcp_free_stream</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>__block_write_begin_int (4 samples, 0.02%)</title><rect x="10.8" y="437" width="0.2" height="15.0" fill="rgb(238,44,48)" rx="2" ry="2" />
|
||
|
|
<text x="13.77" y="447.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>[perf] (26 samples, 0.13%)</title><rect x="10.0" y="613" width="1.5" height="15.0" fill="rgb(247,47,21)" rx="2" ry="2" />
|
||
|
|
<text x="13.00" y="623.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>exit_to_user_mode_prepare (2 samples, 0.01%)</title><rect x="1188.1" y="85" width="0.1" height="15.0" fill="rgb(233,55,12)" rx="2" ry="2" />
|
||
|
|
<text x="1191.11" y="95.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>add_transaction_credits (2 samples, 0.01%)</title><rect x="10.5" y="341" width="0.1" height="15.0" fill="rgb(235,201,11)" rx="2" ry="2" />
|
||
|
|
<text x="13.47" y="351.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>__ext4_journal_start_sb (7 samples, 0.03%)</title><rect x="10.2" y="389" width="0.4" height="15.0" fill="rgb(215,129,14)" rx="2" ry="2" />
|
||
|
|
<text x="13.18" y="399.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>ext4_buffered_write_iter (25 samples, 0.12%)</title><rect x="10.1" y="485" width="1.4" height="15.0" fill="rgb(240,184,36)" rx="2" ry="2" />
|
||
|
|
<text x="13.06" y="495.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>del_stream_by_time (19,984 samples, 99.87%)</title><rect x="11.5" y="565" width="1178.4" height="15.0" fill="rgb(241,182,39)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="575.5" >del_stream_by_time</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>[tsg_master.so] (19,984 samples, 99.87%)</title><rect x="11.5" y="133" width="1178.4" height="15.0" fill="rgb(236,3,14)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="143.5" >[tsg_master.so]</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>stream_process (19,984 samples, 99.87%)</title><rect x="11.5" y="517" width="1178.4" height="15.0" fill="rgb(246,118,18)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="527.5" >stream_process</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>irq_exit_rcu (2 samples, 0.01%)</title><rect x="1188.0" y="85" width="0.1" height="15.0" fill="rgb(250,38,29)" rx="2" ry="2" />
|
||
|
|
<text x="1191.00" y="95.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>http_callPluginField (19,984 samples, 99.87%)</title><rect x="11.5" y="309" width="1178.4" height="15.0" fill="rgb(205,119,30)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="319.5" >http_callPluginField</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>[perf] (26 samples, 0.13%)</title><rect x="10.0" y="629" width="1.5" height="15.0" fill="rgb(212,121,9)" rx="2" ry="2" />
|
||
|
|
<text x="13.00" y="639.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>rcu_core (27 samples, 0.13%)</title><rect x="1188.2" y="53" width="1.6" height="15.0" fill="rgb(206,188,51)" rx="2" ry="2" />
|
||
|
|
<text x="1191.23" y="63.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>asm_common_interrupt (2 samples, 0.01%)</title><rect x="1188.0" y="117" width="0.1" height="15.0" fill="rgb(248,126,20)" rx="2" ry="2" />
|
||
|
|
<text x="1191.00" y="127.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>[sapp] (19,984 samples, 99.87%)</title><rect x="11.5" y="597" width="1178.4" height="15.0" fill="rgb(253,27,11)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="607.5" >[sapp]</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>http_releaseHttpStream (19,984 samples, 99.87%)</title><rect x="11.5" y="357" width="1178.4" height="15.0" fill="rgb(248,102,16)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="367.5" >http_releaseHttpStream</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>__softirqentry_text_start (29 samples, 0.14%)</title><rect x="1188.2" y="69" width="1.7" height="15.0" fill="rgb(237,212,54)" rx="2" ry="2" />
|
||
|
|
<text x="1191.23" y="79.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>ext4_write_checks (10 samples, 0.05%)</title><rect x="10.1" y="469" width="0.5" height="15.0" fill="rgb(206,88,15)" rx="2" ry="2" />
|
||
|
|
<text x="13.06" y="479.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>set_l4_protocol (19,984 samples, 99.87%)</title><rect x="11.5" y="149" width="1178.4" height="15.0" fill="rgb(238,15,46)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="159.5" >set_l4_protocol</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>eth_entry (19,984 samples, 99.87%)</title><rect x="11.5" y="645" width="1178.4" height="15.0" fill="rgb(234,35,33)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="655.5" >eth_entry</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>stream_process (19,984 samples, 99.87%)</title><rect x="11.5" y="421" width="1178.4" height="15.0" fill="rgb(254,126,43)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="431.5" >stream_process</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>filemap_add_folio (5 samples, 0.02%)</title><rect x="11.0" y="405" width="0.3" height="15.0" fill="rgb(242,15,14)" rx="2" ry="2" />
|
||
|
|
<text x="14.00" y="415.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>entry_SYSCALL_64_after_hwframe (26 samples, 0.13%)</title><rect x="10.0" y="581" width="1.5" height="15.0" fill="rgb(213,6,14)" rx="2" ry="2" />
|
||
|
|
<text x="13.00" y="591.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>perf (26 samples, 0.13%)</title><rect x="10.0" y="693" width="1.5" height="15.0" fill="rgb(249,113,22)" rx="2" ry="2" />
|
||
|
|
<text x="13.00" y="703.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>lrustream (19,984 samples, 99.87%)</title><rect x="11.5" y="581" width="1178.4" height="15.0" fill="rgb(216,77,31)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="591.5" >lrustream</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>rebalance_domains (2 samples, 0.01%)</title><rect x="1189.8" y="53" width="0.1" height="15.0" fill="rgb(242,154,38)" rx="2" ry="2" />
|
||
|
|
<text x="1192.82" y="63.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>sapp_marsio_16 (19,984 samples, 99.87%)</title><rect x="11.5" y="693" width="1178.4" height="15.0" fill="rgb(207,32,5)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="703.5" >sapp_marsio_16</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>plugin_call_streamentry (19,984 samples, 99.87%)</title><rect x="11.5" y="485" width="1178.4" height="15.0" fill="rgb(239,27,18)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="495.5" >plugin_call_streamentry</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>net_rx_action (2 samples, 0.01%)</title><rect x="1188.0" y="53" width="0.1" height="15.0" fill="rgb(243,190,14)" rx="2" ry="2" />
|
||
|
|
<text x="1191.00" y="63.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>ext4_file_write_iter (25 samples, 0.12%)</title><rect x="10.1" y="501" width="1.4" height="15.0" fill="rgb(218,98,23)" rx="2" ry="2" />
|
||
|
|
<text x="13.06" y="511.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>http_releaseHttpLinkNode (19,984 samples, 99.87%)</title><rect x="11.5" y="341" width="1178.4" height="15.0" fill="rgb(225,224,11)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="351.5" >http_releaseHttpLinkNode</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>schedule (2 samples, 0.01%)</title><rect x="1188.1" y="69" width="0.1" height="15.0" fill="rgb(227,38,45)" rx="2" ry="2" />
|
||
|
|
<text x="1191.11" y="79.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>kmem_cache_alloc (3 samples, 0.01%)</title><rect x="10.3" y="357" width="0.2" height="15.0" fill="rgb(225,183,8)" rx="2" ry="2" />
|
||
|
|
<text x="13.29" y="367.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>stream_process_tcp (19,984 samples, 99.87%)</title><rect x="11.5" y="533" width="1178.4" height="15.0" fill="rgb(238,125,26)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="543.5" >stream_process_tcp</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>stream_process_tcp (19,984 samples, 99.87%)</title><rect x="11.5" y="437" width="1178.4" height="15.0" fill="rgb(241,91,5)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="447.5" >stream_process_tcp</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>[sapp] (19,984 samples, 99.87%)</title><rect x="11.5" y="661" width="1178.4" height="15.0" fill="rgb(238,19,0)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="671.5" >[sapp]</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>deal_tcp_in_proxy_stream (19,984 samples, 99.87%)</title><rect x="11.5" y="453" width="1178.4" height="15.0" fill="rgb(230,144,35)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="463.5" >deal_tcp_in_proxy_stream</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>irq_exit_rcu (29 samples, 0.14%)</title><rect x="1188.2" y="85" width="1.7" height="15.0" fill="rgb(214,170,6)" rx="2" ry="2" />
|
||
|
|
<text x="1191.23" y="95.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>finish_task_switch (2 samples, 0.01%)</title><rect x="1188.1" y="37" width="0.1" height="15.0" fill="rgb(243,65,22)" rx="2" ry="2" />
|
||
|
|
<text x="1191.11" y="47.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>plugin_process_close (19,984 samples, 99.87%)</title><rect x="11.5" y="293" width="1178.4" height="15.0" fill="rgb(245,84,47)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="303.5" >plugin_process_close</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>folio_add_lru (2 samples, 0.01%)</title><rect x="11.2" y="389" width="0.1" height="15.0" fill="rgb(216,189,34)" rx="2" ry="2" />
|
||
|
|
<text x="14.18" y="399.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>[session_record.so] (19,984 samples, 99.87%)</title><rect x="11.5" y="229" width="1178.4" height="15.0" fill="rgb(246,201,29)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="239.5" >[session_record.so]</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>[perf] (26 samples, 0.13%)</title><rect x="10.0" y="661" width="1.5" height="15.0" fill="rgb(215,67,22)" rx="2" ry="2" />
|
||
|
|
<text x="13.00" y="671.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>call_streamentry (19,984 samples, 99.87%)</title><rect x="11.5" y="405" width="1178.4" height="15.0" fill="rgb(247,1,28)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="415.5" >call_streamentry</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>perf_mmap__push (26 samples, 0.13%)</title><rect x="10.0" y="645" width="1.5" height="15.0" fill="rgb(250,137,45)" rx="2" ry="2" />
|
||
|
|
<text x="13.00" y="655.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>ext4_dirty_inode (8 samples, 0.04%)</title><rect x="10.2" y="405" width="0.4" height="15.0" fill="rgb(205,15,45)" rx="2" ry="2" />
|
||
|
|
<text x="13.18" y="415.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>do_syscall_64 (26 samples, 0.13%)</title><rect x="10.0" y="565" width="1.5" height="15.0" fill="rgb(212,179,8)" rx="2" ry="2" />
|
||
|
|
<text x="13.00" y="575.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>generic_perform_write (14 samples, 0.07%)</title><rect x="10.6" y="469" width="0.9" height="15.0" fill="rgb(207,93,4)" rx="2" ry="2" />
|
||
|
|
<text x="13.65" y="479.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>plugin_call_appentry (19,984 samples, 99.87%)</title><rect x="11.5" y="277" width="1178.4" height="15.0" fill="rgb(253,144,23)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="287.5" >plugin_call_appentry</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>cmd_record (26 samples, 0.13%)</title><rect x="10.0" y="677" width="1.5" height="15.0" fill="rgb(240,29,3)" rx="2" ry="2" />
|
||
|
|
<text x="13.00" y="687.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>append_common_field (19,984 samples, 99.87%)</title><rect x="11.5" y="181" width="1178.4" height="15.0" fill="rgb(243,27,28)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="191.5" >append_common_field</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>mpls_uc_entry (19,984 samples, 99.87%)</title><rect x="11.5" y="629" width="1178.4" height="15.0" fill="rgb(234,0,10)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="639.5" >mpls_uc_entry</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>ipv4_entry (19,984 samples, 99.87%)</title><rect x="11.5" y="613" width="1178.4" height="15.0" fill="rgb(228,64,27)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="623.5" >ipv4_entry</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>__schedule (2 samples, 0.01%)</title><rect x="1188.1" y="53" width="0.1" height="15.0" fill="rgb(250,39,30)" rx="2" ry="2" />
|
||
|
|
<text x="1191.11" y="63.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>[session_record.so] (19,984 samples, 99.87%)</title><rect x="11.5" y="245" width="1178.4" height="15.0" fill="rgb(219,180,18)" rx="2" ry="2" />
|
||
|
|
<text x="14.53" y="255.5" >[session_record.so]</text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>__napi_poll (2 samples, 0.01%)</title><rect x="1188.0" y="37" width="0.1" height="15.0" fill="rgb(245,161,13)" rx="2" ry="2" />
|
||
|
|
<text x="1191.00" y="47.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>irqentry_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1188.1" y="101" width="0.1" height="15.0" fill="rgb(251,139,4)" rx="2" ry="2" />
|
||
|
|
<text x="1191.11" y="111.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>common_interrupt (2 samples, 0.01%)</title><rect x="1188.0" y="101" width="0.1" height="15.0" fill="rgb(251,194,33)" rx="2" ry="2" />
|
||
|
|
<text x="1191.00" y="111.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>ext4_da_write_begin (12 samples, 0.06%)</title><rect x="10.7" y="453" width="0.7" height="15.0" fill="rgb(215,37,9)" rx="2" ry="2" />
|
||
|
|
<text x="13.71" y="463.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>__filemap_get_folio (7 samples, 0.03%)</title><rect x="11.0" y="421" width="0.4" height="15.0" fill="rgb(220,74,41)" rx="2" ry="2" />
|
||
|
|
<text x="14.00" y="431.5" ></text>
|
||
|
|
</g>
|
||
|
|
<g >
|
||
|
|
<title>new_sync_write (25 samples, 0.12%)</title><rect x="10.1" y="517" width="1.4" height="15.0" fill="rgb(212,121,42)" rx="2" ry="2" />
|
||
|
|
<text x="13.06" y="527.5" ></text>
|
||
|
|
</g>
|
||
|
|
</g>
|
||
|
|
</svg>
|